2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2009 The FreeBSD Foundation
6 * This software was developed by Rui Paulo under sponsorship from the
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * IEEE 802.11s Mesh Point (MBSS) support.
34 * Based on March 2009, D3.0 802.11s draft spec.
39 #include <sys/param.h>
40 #include <sys/systm.h>
42 #include <sys/malloc.h>
43 #include <sys/kernel.h>
45 #include <sys/socket.h>
46 #include <sys/sockio.h>
47 #include <sys/endian.h>
48 #include <sys/errno.h>
50 #include <sys/sysctl.h>
54 #include <net/if_var.h>
55 #include <net/if_media.h>
56 #include <net/if_llc.h>
57 #include <net/if_private.h>
58 #include <net/ethernet.h>
60 #include <net80211/ieee80211_var.h>
61 #include <net80211/ieee80211_action.h>
62 #ifdef IEEE80211_SUPPORT_SUPERG
63 #include <net80211/ieee80211_superg.h>
65 #include <net80211/ieee80211_input.h>
66 #include <net80211/ieee80211_mesh.h>
68 static void mesh_rt_flush_invalid(struct ieee80211vap
*);
69 static int mesh_select_proto_path(struct ieee80211vap
*, const char *);
70 static int mesh_select_proto_metric(struct ieee80211vap
*, const char *);
71 static void mesh_vattach(struct ieee80211vap
*);
72 static int mesh_newstate(struct ieee80211vap
*, enum ieee80211_state
, int);
73 static void mesh_rt_cleanup_cb(void *);
74 static void mesh_gatemode_setup(struct ieee80211vap
*);
75 static void mesh_gatemode_cb(void *);
76 static void mesh_linkchange(struct ieee80211_node
*,
77 enum ieee80211_mesh_mlstate
);
78 static void mesh_checkid(void *, struct ieee80211_node
*);
79 static uint32_t mesh_generateid(struct ieee80211vap
*);
80 static int mesh_checkpseq(struct ieee80211vap
*,
81 const uint8_t [IEEE80211_ADDR_LEN
], uint32_t);
82 static void mesh_transmit_to_gate(struct ieee80211vap
*, struct mbuf
*,
83 struct ieee80211_mesh_route
*);
84 static void mesh_forward(struct ieee80211vap
*, struct mbuf
*,
85 const struct ieee80211_meshcntl
*);
86 static int mesh_input(struct ieee80211_node
*, struct mbuf
*,
87 const struct ieee80211_rx_stats
*rxs
, int, int);
88 static void mesh_recv_mgmt(struct ieee80211_node
*, struct mbuf
*, int,
89 const struct ieee80211_rx_stats
*rxs
, int, int);
90 static void mesh_recv_ctl(struct ieee80211_node
*, struct mbuf
*, int);
91 static void mesh_peer_timeout_setup(struct ieee80211_node
*);
92 static void mesh_peer_timeout_backoff(struct ieee80211_node
*);
93 static void mesh_peer_timeout_cb(void *);
95 mesh_peer_timeout_stop(struct ieee80211_node
*);
96 static int mesh_verify_meshid(struct ieee80211vap
*, const uint8_t *);
97 static int mesh_verify_meshconf(struct ieee80211vap
*, const uint8_t *);
98 static int mesh_verify_meshpeer(struct ieee80211vap
*, uint8_t,
100 uint32_t mesh_airtime_calc(struct ieee80211_node
*);
103 * Timeout values come from the specification and are in milliseconds.
105 static SYSCTL_NODE(_net_wlan
, OID_AUTO
, mesh
, CTLFLAG_RD
| CTLFLAG_MPSAFE
, 0,
106 "IEEE 802.11s parameters");
107 static int ieee80211_mesh_gateint
= -1;
108 SYSCTL_PROC(_net_wlan_mesh
, OID_AUTO
, gateint
,
109 CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_NEEDGIANT
,
110 &ieee80211_mesh_gateint
, 0, ieee80211_sysctl_msecs_ticks
, "I",
111 "mesh gate interval (ms)");
112 static int ieee80211_mesh_retrytimeout
= -1;
113 SYSCTL_PROC(_net_wlan_mesh
, OID_AUTO
, retrytimeout
,
114 CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_NEEDGIANT
,
115 &ieee80211_mesh_retrytimeout
, 0, ieee80211_sysctl_msecs_ticks
, "I",
116 "Retry timeout (msec)");
117 static int ieee80211_mesh_holdingtimeout
= -1;
119 SYSCTL_PROC(_net_wlan_mesh
, OID_AUTO
, holdingtimeout
,
120 CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_NEEDGIANT
,
121 &ieee80211_mesh_holdingtimeout
, 0, ieee80211_sysctl_msecs_ticks
, "I",
122 "Holding state timeout (msec)");
123 static int ieee80211_mesh_confirmtimeout
= -1;
124 SYSCTL_PROC(_net_wlan_mesh
, OID_AUTO
, confirmtimeout
,
125 CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_NEEDGIANT
,
126 &ieee80211_mesh_confirmtimeout
, 0, ieee80211_sysctl_msecs_ticks
, "I",
127 "Confirm state timeout (msec)");
128 static int ieee80211_mesh_backofftimeout
= -1;
129 SYSCTL_PROC(_net_wlan_mesh
, OID_AUTO
, backofftimeout
,
130 CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_NEEDGIANT
,
131 &ieee80211_mesh_backofftimeout
, 0, ieee80211_sysctl_msecs_ticks
, "I",
132 "Backoff timeout (msec). This is to throutles peering forever when "
133 "not receiving answer or is rejected by a neighbor");
134 static int ieee80211_mesh_maxretries
= 2;
135 SYSCTL_INT(_net_wlan_mesh
, OID_AUTO
, maxretries
, CTLFLAG_RW
,
136 &ieee80211_mesh_maxretries
, 0,
137 "Maximum retries during peer link establishment");
138 static int ieee80211_mesh_maxholding
= 2;
139 SYSCTL_INT(_net_wlan_mesh
, OID_AUTO
, maxholding
, CTLFLAG_RW
,
140 &ieee80211_mesh_maxholding
, 0,
141 "Maximum times we are allowed to transition to HOLDING state before "
142 "backinoff during peer link establishment");
144 static const uint8_t broadcastaddr
[IEEE80211_ADDR_LEN
] =
145 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
147 static ieee80211_recv_action_func mesh_recv_action_meshpeering_open
;
148 static ieee80211_recv_action_func mesh_recv_action_meshpeering_confirm
;
149 static ieee80211_recv_action_func mesh_recv_action_meshpeering_close
;
150 static ieee80211_recv_action_func mesh_recv_action_meshlmetric
;
151 static ieee80211_recv_action_func mesh_recv_action_meshgate
;
153 static ieee80211_send_action_func mesh_send_action_meshpeering_open
;
154 static ieee80211_send_action_func mesh_send_action_meshpeering_confirm
;
155 static ieee80211_send_action_func mesh_send_action_meshpeering_close
;
156 static ieee80211_send_action_func mesh_send_action_meshlmetric
;
157 static ieee80211_send_action_func mesh_send_action_meshgate
;
159 static const struct ieee80211_mesh_proto_metric mesh_metric_airtime
= {
160 .mpm_descr
= "AIRTIME",
161 .mpm_ie
= IEEE80211_MESHCONF_METRIC_AIRTIME
,
162 .mpm_metric
= mesh_airtime_calc
,
165 static struct ieee80211_mesh_proto_path mesh_proto_paths
[4];
166 static struct ieee80211_mesh_proto_metric mesh_proto_metrics
[4];
168 MALLOC_DEFINE(M_80211_MESH_PREQ
, "80211preq", "802.11 MESH Path Request frame");
169 MALLOC_DEFINE(M_80211_MESH_PREP
, "80211prep", "802.11 MESH Path Reply frame");
170 MALLOC_DEFINE(M_80211_MESH_PERR
, "80211perr", "802.11 MESH Path Error frame");
172 /* The longer one of the lifetime should be stored as new lifetime */
173 #define MESH_ROUTE_LIFETIME_MAX(a, b) (a > b ? a : b)
175 MALLOC_DEFINE(M_80211_MESH_RT
, "80211mesh_rt", "802.11s routing table");
176 MALLOC_DEFINE(M_80211_MESH_GT_RT
, "80211mesh_gt", "802.11s known gates table");
179 * Helper functions to manipulate the Mesh routing table.
182 static struct ieee80211_mesh_route
*
183 mesh_rt_find_locked(struct ieee80211_mesh_state
*ms
,
184 const uint8_t dest
[IEEE80211_ADDR_LEN
])
186 struct ieee80211_mesh_route
*rt
;
188 MESH_RT_LOCK_ASSERT(ms
);
190 TAILQ_FOREACH(rt
, &ms
->ms_routes
, rt_next
) {
191 if (IEEE80211_ADDR_EQ(dest
, rt
->rt_dest
))
197 static struct ieee80211_mesh_route
*
198 mesh_rt_add_locked(struct ieee80211vap
*vap
,
199 const uint8_t dest
[IEEE80211_ADDR_LEN
])
201 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
202 struct ieee80211_mesh_route
*rt
;
204 KASSERT(!IEEE80211_ADDR_EQ(broadcastaddr
, dest
),
205 ("%s: adding broadcast to the routing table", __func__
));
207 MESH_RT_LOCK_ASSERT(ms
);
209 rt
= IEEE80211_MALLOC(ALIGN(sizeof(struct ieee80211_mesh_route
)) +
210 ms
->ms_ppath
->mpp_privlen
, M_80211_MESH_RT
,
211 IEEE80211_M_NOWAIT
| IEEE80211_M_ZERO
);
214 IEEE80211_ADDR_COPY(rt
->rt_dest
, dest
);
215 rt
->rt_priv
= (void *)ALIGN(&rt
[1]);
216 MESH_RT_ENTRY_LOCK_INIT(rt
, "MBSS_RT");
217 callout_init(&rt
->rt_discovery
, 1);
218 rt
->rt_updtime
= ticks
; /* create time */
219 TAILQ_INSERT_TAIL(&ms
->ms_routes
, rt
, rt_next
);
224 struct ieee80211_mesh_route
*
225 ieee80211_mesh_rt_find(struct ieee80211vap
*vap
,
226 const uint8_t dest
[IEEE80211_ADDR_LEN
])
228 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
229 struct ieee80211_mesh_route
*rt
;
232 rt
= mesh_rt_find_locked(ms
, dest
);
237 struct ieee80211_mesh_route
*
238 ieee80211_mesh_rt_add(struct ieee80211vap
*vap
,
239 const uint8_t dest
[IEEE80211_ADDR_LEN
])
241 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
242 struct ieee80211_mesh_route
*rt
;
244 KASSERT(ieee80211_mesh_rt_find(vap
, dest
) == NULL
,
245 ("%s: duplicate entry in the routing table", __func__
));
246 KASSERT(!IEEE80211_ADDR_EQ(vap
->iv_myaddr
, dest
),
247 ("%s: adding self to the routing table", __func__
));
250 rt
= mesh_rt_add_locked(vap
, dest
);
256 * Update the route lifetime and returns the updated lifetime.
257 * If new_lifetime is zero and route is timedout it will be invalidated.
258 * new_lifetime is in msec
261 ieee80211_mesh_rt_update(struct ieee80211_mesh_route
*rt
, int new_lifetime
)
264 uint32_t lifetime
= 0;
266 KASSERT(rt
!= NULL
, ("route is NULL"));
269 MESH_RT_ENTRY_LOCK(rt
);
271 /* dont clobber a proxy entry gated by us */
272 if (rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_PROXY
&& rt
->rt_nhops
== 0) {
273 MESH_RT_ENTRY_UNLOCK(rt
);
274 return rt
->rt_lifetime
;
277 timesince
= ticks_to_msecs(now
- rt
->rt_updtime
);
278 rt
->rt_updtime
= now
;
279 if (timesince
>= rt
->rt_lifetime
) {
280 if (new_lifetime
!= 0) {
281 rt
->rt_lifetime
= new_lifetime
;
284 rt
->rt_flags
&= ~IEEE80211_MESHRT_FLAGS_VALID
;
288 /* update what is left of lifetime */
289 rt
->rt_lifetime
= rt
->rt_lifetime
- timesince
;
290 rt
->rt_lifetime
= MESH_ROUTE_LIFETIME_MAX(
291 new_lifetime
, rt
->rt_lifetime
);
293 lifetime
= rt
->rt_lifetime
;
294 MESH_RT_ENTRY_UNLOCK(rt
);
300 * Add a proxy route (as needed) for the specified destination.
303 ieee80211_mesh_proxy_check(struct ieee80211vap
*vap
,
304 const uint8_t dest
[IEEE80211_ADDR_LEN
])
306 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
307 struct ieee80211_mesh_route
*rt
;
310 rt
= mesh_rt_find_locked(ms
, dest
);
312 rt
= mesh_rt_add_locked(vap
, dest
);
314 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, dest
,
315 "%s", "unable to add proxy entry");
316 vap
->iv_stats
.is_mesh_rtaddfailed
++;
318 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, dest
,
319 "%s", "add proxy entry");
320 IEEE80211_ADDR_COPY(rt
->rt_mesh_gate
, vap
->iv_myaddr
);
321 IEEE80211_ADDR_COPY(rt
->rt_nexthop
, vap
->iv_myaddr
);
322 rt
->rt_flags
|= IEEE80211_MESHRT_FLAGS_VALID
323 | IEEE80211_MESHRT_FLAGS_PROXY
;
325 } else if ((rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_VALID
) == 0) {
326 KASSERT(rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_PROXY
,
327 ("no proxy flag for poxy entry"));
328 struct ieee80211com
*ic
= vap
->iv_ic
;
330 * Fix existing entry created by received frames from
331 * stations that have some memory of dest. We also
332 * flush any frames held on the staging queue; delivering
333 * them is too much trouble right now.
335 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, dest
,
336 "%s", "fix proxy entry");
337 IEEE80211_ADDR_COPY(rt
->rt_nexthop
, vap
->iv_myaddr
);
338 rt
->rt_flags
|= IEEE80211_MESHRT_FLAGS_VALID
339 | IEEE80211_MESHRT_FLAGS_PROXY
;
340 /* XXX belongs in hwmp */
341 ieee80211_ageq_drain_node(&ic
->ic_stageq
,
342 (void *)(uintptr_t) ieee80211_mac_hash(ic
, dest
));
349 mesh_rt_del(struct ieee80211_mesh_state
*ms
, struct ieee80211_mesh_route
*rt
)
351 TAILQ_REMOVE(&ms
->ms_routes
, rt
, rt_next
);
353 * Grab the lock before destroying it, to be sure no one else
354 * is holding the route.
356 MESH_RT_ENTRY_LOCK(rt
);
357 callout_drain(&rt
->rt_discovery
);
358 MESH_RT_ENTRY_LOCK_DESTROY(rt
);
359 IEEE80211_FREE(rt
, M_80211_MESH_RT
);
363 ieee80211_mesh_rt_del(struct ieee80211vap
*vap
,
364 const uint8_t dest
[IEEE80211_ADDR_LEN
])
366 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
367 struct ieee80211_mesh_route
*rt
, *next
;
370 TAILQ_FOREACH_SAFE(rt
, &ms
->ms_routes
, rt_next
, next
) {
371 if (IEEE80211_ADDR_EQ(rt
->rt_dest
, dest
)) {
372 if (rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_PROXY
) {
373 ms
->ms_ppath
->mpp_senderror(vap
, dest
, rt
,
374 IEEE80211_REASON_MESH_PERR_NO_PROXY
);
376 ms
->ms_ppath
->mpp_senderror(vap
, dest
, rt
,
377 IEEE80211_REASON_MESH_PERR_DEST_UNREACH
);
388 ieee80211_mesh_rt_flush(struct ieee80211vap
*vap
)
390 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
391 struct ieee80211_mesh_route
*rt
, *next
;
396 TAILQ_FOREACH_SAFE(rt
, &ms
->ms_routes
, rt_next
, next
)
402 ieee80211_mesh_rt_flush_peer(struct ieee80211vap
*vap
,
403 const uint8_t peer
[IEEE80211_ADDR_LEN
])
405 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
406 struct ieee80211_mesh_route
*rt
, *next
;
409 TAILQ_FOREACH_SAFE(rt
, &ms
->ms_routes
, rt_next
, next
) {
410 if (IEEE80211_ADDR_EQ(rt
->rt_nexthop
, peer
))
417 * Flush expired routing entries, i.e. those in invalid state for
421 mesh_rt_flush_invalid(struct ieee80211vap
*vap
)
423 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
424 struct ieee80211_mesh_route
*rt
, *next
;
429 TAILQ_FOREACH_SAFE(rt
, &ms
->ms_routes
, rt_next
, next
) {
430 /* Discover paths will be deleted by their own callout */
431 if (rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_DISCOVER
)
433 ieee80211_mesh_rt_update(rt
, 0);
434 if ((rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_VALID
) == 0)
441 ieee80211_mesh_register_proto_path(const struct ieee80211_mesh_proto_path
*mpp
)
443 int i
, firstempty
= -1;
445 for (i
= 0; i
< nitems(mesh_proto_paths
); i
++) {
446 if (strncmp(mpp
->mpp_descr
, mesh_proto_paths
[i
].mpp_descr
,
447 IEEE80211_MESH_PROTO_DSZ
) == 0)
449 if (!mesh_proto_paths
[i
].mpp_active
&& firstempty
== -1)
454 memcpy(&mesh_proto_paths
[firstempty
], mpp
, sizeof(*mpp
));
455 mesh_proto_paths
[firstempty
].mpp_active
= 1;
460 ieee80211_mesh_register_proto_metric(const struct
461 ieee80211_mesh_proto_metric
*mpm
)
463 int i
, firstempty
= -1;
465 for (i
= 0; i
< nitems(mesh_proto_metrics
); i
++) {
466 if (strncmp(mpm
->mpm_descr
, mesh_proto_metrics
[i
].mpm_descr
,
467 IEEE80211_MESH_PROTO_DSZ
) == 0)
469 if (!mesh_proto_metrics
[i
].mpm_active
&& firstempty
== -1)
474 memcpy(&mesh_proto_metrics
[firstempty
], mpm
, sizeof(*mpm
));
475 mesh_proto_metrics
[firstempty
].mpm_active
= 1;
480 mesh_select_proto_path(struct ieee80211vap
*vap
, const char *name
)
482 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
485 for (i
= 0; i
< nitems(mesh_proto_paths
); i
++) {
486 if (strcasecmp(mesh_proto_paths
[i
].mpp_descr
, name
) == 0) {
487 ms
->ms_ppath
= &mesh_proto_paths
[i
];
495 mesh_select_proto_metric(struct ieee80211vap
*vap
, const char *name
)
497 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
500 for (i
= 0; i
< nitems(mesh_proto_metrics
); i
++) {
501 if (strcasecmp(mesh_proto_metrics
[i
].mpm_descr
, name
) == 0) {
502 ms
->ms_pmetric
= &mesh_proto_metrics
[i
];
510 mesh_gatemode_setup(struct ieee80211vap
*vap
)
512 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
515 * NB: When a mesh gate is running as a ROOT it shall
516 * not send out periodic GANNs but instead mark the
517 * mesh gate flag for the corresponding proactive PREQ
520 if (ms
->ms_flags
& IEEE80211_MESHFLAGS_ROOT
||
521 (ms
->ms_flags
& IEEE80211_MESHFLAGS_GATE
) == 0) {
522 callout_drain(&ms
->ms_gatetimer
);
525 callout_reset(&ms
->ms_gatetimer
, ieee80211_mesh_gateint
,
526 mesh_gatemode_cb
, vap
);
530 mesh_gatemode_cb(void *arg
)
532 struct ieee80211vap
*vap
= (struct ieee80211vap
*)arg
;
533 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
534 struct ieee80211_meshgann_ie gann
;
536 gann
.gann_flags
= 0; /* Reserved */
537 gann
.gann_hopcount
= 0;
538 gann
.gann_ttl
= ms
->ms_ttl
;
539 IEEE80211_ADDR_COPY(gann
.gann_addr
, vap
->iv_myaddr
);
540 gann
.gann_seq
= ms
->ms_gateseq
++;
541 gann
.gann_interval
= ieee80211_mesh_gateint
;
543 IEEE80211_NOTE(vap
, IEEE80211_MSG_MESH
, vap
->iv_bss
,
544 "send broadcast GANN (seq %u)", gann
.gann_seq
);
546 ieee80211_send_action(vap
->iv_bss
, IEEE80211_ACTION_CAT_MESH
,
547 IEEE80211_ACTION_MESH_GANN
, &gann
);
548 mesh_gatemode_setup(vap
);
552 ieee80211_mesh_init(void)
555 memset(mesh_proto_paths
, 0, sizeof(mesh_proto_paths
));
556 memset(mesh_proto_metrics
, 0, sizeof(mesh_proto_metrics
));
559 * Setup mesh parameters that depends on the clock frequency.
561 ieee80211_mesh_gateint
= msecs_to_ticks(10000);
562 ieee80211_mesh_retrytimeout
= msecs_to_ticks(40);
563 ieee80211_mesh_holdingtimeout
= msecs_to_ticks(40);
564 ieee80211_mesh_confirmtimeout
= msecs_to_ticks(40);
565 ieee80211_mesh_backofftimeout
= msecs_to_ticks(5000);
568 * Register action frame handlers.
570 ieee80211_recv_action_register(IEEE80211_ACTION_CAT_SELF_PROT
,
571 IEEE80211_ACTION_MESHPEERING_OPEN
,
572 mesh_recv_action_meshpeering_open
);
573 ieee80211_recv_action_register(IEEE80211_ACTION_CAT_SELF_PROT
,
574 IEEE80211_ACTION_MESHPEERING_CONFIRM
,
575 mesh_recv_action_meshpeering_confirm
);
576 ieee80211_recv_action_register(IEEE80211_ACTION_CAT_SELF_PROT
,
577 IEEE80211_ACTION_MESHPEERING_CLOSE
,
578 mesh_recv_action_meshpeering_close
);
579 ieee80211_recv_action_register(IEEE80211_ACTION_CAT_MESH
,
580 IEEE80211_ACTION_MESH_LMETRIC
, mesh_recv_action_meshlmetric
);
581 ieee80211_recv_action_register(IEEE80211_ACTION_CAT_MESH
,
582 IEEE80211_ACTION_MESH_GANN
, mesh_recv_action_meshgate
);
584 ieee80211_send_action_register(IEEE80211_ACTION_CAT_SELF_PROT
,
585 IEEE80211_ACTION_MESHPEERING_OPEN
,
586 mesh_send_action_meshpeering_open
);
587 ieee80211_send_action_register(IEEE80211_ACTION_CAT_SELF_PROT
,
588 IEEE80211_ACTION_MESHPEERING_CONFIRM
,
589 mesh_send_action_meshpeering_confirm
);
590 ieee80211_send_action_register(IEEE80211_ACTION_CAT_SELF_PROT
,
591 IEEE80211_ACTION_MESHPEERING_CLOSE
,
592 mesh_send_action_meshpeering_close
);
593 ieee80211_send_action_register(IEEE80211_ACTION_CAT_MESH
,
594 IEEE80211_ACTION_MESH_LMETRIC
,
595 mesh_send_action_meshlmetric
);
596 ieee80211_send_action_register(IEEE80211_ACTION_CAT_MESH
,
597 IEEE80211_ACTION_MESH_GANN
,
598 mesh_send_action_meshgate
);
601 * Register Airtime Link Metric.
603 ieee80211_mesh_register_proto_metric(&mesh_metric_airtime
);
606 SYSINIT(wlan_mesh
, SI_SUB_DRIVERS
, SI_ORDER_FIRST
, ieee80211_mesh_init
, NULL
);
609 ieee80211_mesh_attach(struct ieee80211com
*ic
)
611 ic
->ic_vattach
[IEEE80211_M_MBSS
] = mesh_vattach
;
615 ieee80211_mesh_detach(struct ieee80211com
*ic
)
620 mesh_vdetach_peers(void *arg
, struct ieee80211_node
*ni
)
622 struct ieee80211com
*ic
= ni
->ni_ic
;
625 if (ni
->ni_mlstate
== IEEE80211_NODE_MESH_ESTABLISHED
) {
626 args
[0] = ni
->ni_mlpid
;
627 args
[1] = ni
->ni_mllid
;
628 args
[2] = IEEE80211_REASON_PEER_LINK_CANCELED
;
629 ieee80211_send_action(ni
,
630 IEEE80211_ACTION_CAT_SELF_PROT
,
631 IEEE80211_ACTION_MESHPEERING_CLOSE
,
634 callout_drain(&ni
->ni_mltimer
);
635 /* XXX belongs in hwmp */
636 ieee80211_ageq_drain_node(&ic
->ic_stageq
,
637 (void *)(uintptr_t) ieee80211_mac_hash(ic
, ni
->ni_macaddr
));
641 mesh_vdetach(struct ieee80211vap
*vap
)
643 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
645 callout_drain(&ms
->ms_cleantimer
);
646 ieee80211_iterate_nodes(&vap
->iv_ic
->ic_sta
, mesh_vdetach_peers
,
648 ieee80211_mesh_rt_flush(vap
);
649 MESH_RT_LOCK_DESTROY(ms
);
650 ms
->ms_ppath
->mpp_vdetach(vap
);
651 IEEE80211_FREE(vap
->iv_mesh
, M_80211_VAP
);
656 mesh_vattach(struct ieee80211vap
*vap
)
658 struct ieee80211_mesh_state
*ms
;
659 vap
->iv_newstate
= mesh_newstate
;
660 vap
->iv_input
= mesh_input
;
661 vap
->iv_opdetach
= mesh_vdetach
;
662 vap
->iv_recv_mgmt
= mesh_recv_mgmt
;
663 vap
->iv_recv_ctl
= mesh_recv_ctl
;
664 ms
= IEEE80211_MALLOC(sizeof(struct ieee80211_mesh_state
), M_80211_VAP
,
665 IEEE80211_M_NOWAIT
| IEEE80211_M_ZERO
);
667 printf("%s: couldn't alloc MBSS state\n", __func__
);
672 ms
->ms_flags
= (IEEE80211_MESHFLAGS_AP
| IEEE80211_MESHFLAGS_FWD
);
673 ms
->ms_ttl
= IEEE80211_MESH_DEFAULT_TTL
;
674 TAILQ_INIT(&ms
->ms_known_gates
);
675 TAILQ_INIT(&ms
->ms_routes
);
676 MESH_RT_LOCK_INIT(ms
, "MBSS");
677 callout_init(&ms
->ms_cleantimer
, 1);
678 callout_init(&ms
->ms_gatetimer
, 1);
680 mesh_select_proto_metric(vap
, "AIRTIME");
681 KASSERT(ms
->ms_pmetric
, ("ms_pmetric == NULL"));
682 mesh_select_proto_path(vap
, "HWMP");
683 KASSERT(ms
->ms_ppath
, ("ms_ppath == NULL"));
684 ms
->ms_ppath
->mpp_vattach(vap
);
688 * IEEE80211_M_MBSS vap state machine handler.
691 mesh_newstate(struct ieee80211vap
*vap
, enum ieee80211_state nstate
, int arg
)
693 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
694 struct ieee80211com
*ic
= vap
->iv_ic
;
695 struct ieee80211_node
*ni
;
696 enum ieee80211_state ostate
;
698 IEEE80211_LOCK_ASSERT(ic
);
700 ostate
= vap
->iv_state
;
701 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_STATE
, "%s: %s -> %s (%d)\n",
702 __func__
, ieee80211_state_name
[ostate
],
703 ieee80211_state_name
[nstate
], arg
);
704 vap
->iv_state
= nstate
; /* state transition */
705 if (ostate
!= IEEE80211_S_SCAN
)
706 ieee80211_cancel_scan(vap
); /* background scan */
707 ni
= vap
->iv_bss
; /* NB: no reference held */
708 if (nstate
!= IEEE80211_S_RUN
&& ostate
== IEEE80211_S_RUN
) {
709 callout_drain(&ms
->ms_cleantimer
);
710 callout_drain(&ms
->ms_gatetimer
);
713 case IEEE80211_S_INIT
:
715 case IEEE80211_S_SCAN
:
716 ieee80211_cancel_scan(vap
);
718 case IEEE80211_S_CAC
:
719 ieee80211_dfs_cac_stop(vap
);
721 case IEEE80211_S_RUN
:
722 ieee80211_iterate_nodes(&ic
->ic_sta
,
723 mesh_vdetach_peers
, NULL
);
728 if (ostate
!= IEEE80211_S_INIT
) {
729 /* NB: optimize INIT -> INIT case */
730 ieee80211_reset_bss(vap
);
731 ieee80211_mesh_rt_flush(vap
);
734 case IEEE80211_S_SCAN
:
736 case IEEE80211_S_INIT
:
737 if (vap
->iv_des_chan
!= IEEE80211_CHAN_ANYC
&&
738 !IEEE80211_IS_CHAN_RADAR(vap
->iv_des_chan
) &&
741 * Already have a channel and a mesh ID; bypass
742 * the scan and startup immediately.
744 ieee80211_create_ibss(vap
, vap
->iv_des_chan
);
748 * Initiate a scan. We can come here as a result
749 * of an IEEE80211_IOC_SCAN_REQ too in which case
750 * the vap will be marked with IEEE80211_FEXT_SCANREQ
751 * and the scan request parameters will be present
752 * in iv_scanreq. Otherwise we do the default.
754 if (vap
->iv_flags_ext
& IEEE80211_FEXT_SCANREQ
) {
755 ieee80211_check_scan(vap
,
756 vap
->iv_scanreq_flags
,
757 vap
->iv_scanreq_duration
,
758 vap
->iv_scanreq_mindwell
,
759 vap
->iv_scanreq_maxdwell
,
760 vap
->iv_scanreq_nssid
, vap
->iv_scanreq_ssid
);
761 vap
->iv_flags_ext
&= ~IEEE80211_FEXT_SCANREQ
;
763 ieee80211_check_scan_current(vap
);
769 case IEEE80211_S_CAC
:
771 * Start CAC on a DFS channel. We come here when starting
772 * a bss on a DFS channel (see ieee80211_create_ibss).
774 ieee80211_dfs_cac_start(vap
);
776 case IEEE80211_S_RUN
:
778 case IEEE80211_S_INIT
:
780 * Already have a channel; bypass the
781 * scan and startup immediately.
782 * Note that ieee80211_create_ibss will call
783 * back to do a RUN->RUN state change.
785 ieee80211_create_ibss(vap
,
786 ieee80211_ht_adjust_channel(ic
,
787 ic
->ic_curchan
, vap
->iv_flags_ht
));
788 /* NB: iv_bss is changed on return */
790 case IEEE80211_S_CAC
:
792 * NB: This is the normal state change when CAC
793 * expires and no radar was detected; no need to
794 * clear the CAC timer as it's already expired.
797 case IEEE80211_S_CSA
:
800 * Shorten inactivity timer of associated stations
801 * to weed out sta's that don't follow a CSA.
803 ieee80211_iterate_nodes(&ic
->ic_sta
, sta_csa
, vap
);
806 * Update bss node channel to reflect where
807 * we landed after CSA.
809 ieee80211_node_set_chan(ni
,
810 ieee80211_ht_adjust_channel(ic
, ic
->ic_curchan
,
811 ieee80211_htchanflags(ni
->ni_chan
)));
812 /* XXX bypass debug msgs */
814 case IEEE80211_S_SCAN
:
815 case IEEE80211_S_RUN
:
816 #ifdef IEEE80211_DEBUG
817 if (ieee80211_msg_debug(vap
)) {
819 "synchronized with %s meshid ",
820 ether_sprintf(ni
->ni_meshid
));
821 ieee80211_print_essid(ni
->ni_meshid
,
824 printf(" channel %d\n",
825 ieee80211_chan2ieee(ic
, ic
->ic_curchan
));
832 ieee80211_node_authorize(ni
);
833 callout_reset(&ms
->ms_cleantimer
, ms
->ms_ppath
->mpp_inact
,
834 mesh_rt_cleanup_cb
, vap
);
835 mesh_gatemode_setup(vap
);
840 /* NB: ostate not nstate */
841 ms
->ms_ppath
->mpp_newstate(vap
, ostate
, arg
);
846 mesh_rt_cleanup_cb(void *arg
)
848 struct ieee80211vap
*vap
= arg
;
849 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
851 mesh_rt_flush_invalid(vap
);
852 callout_reset(&ms
->ms_cleantimer
, ms
->ms_ppath
->mpp_inact
,
853 mesh_rt_cleanup_cb
, vap
);
857 * Mark a mesh STA as gate and return a pointer to it.
858 * If this is first time, we create a new gate route.
859 * Always update the path route to this mesh gate.
861 struct ieee80211_mesh_gate_route
*
862 ieee80211_mesh_mark_gate(struct ieee80211vap
*vap
, const uint8_t *addr
,
863 struct ieee80211_mesh_route
*rt
)
865 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
866 struct ieee80211_mesh_gate_route
*gr
= NULL
, *next
;
870 TAILQ_FOREACH_SAFE(gr
, &ms
->ms_known_gates
, gr_next
, next
) {
871 if (IEEE80211_ADDR_EQ(gr
->gr_addr
, addr
)) {
878 /* New mesh gate add it to known table. */
879 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, addr
,
880 "%s", "stored new gate information from pro-PREQ.");
881 gr
= IEEE80211_MALLOC(ALIGN(sizeof(struct ieee80211_mesh_gate_route
)),
883 IEEE80211_M_NOWAIT
| IEEE80211_M_ZERO
);
884 IEEE80211_ADDR_COPY(gr
->gr_addr
, addr
);
885 TAILQ_INSERT_TAIL(&ms
->ms_known_gates
, gr
, gr_next
);
888 /* TODO: link from path route to gate route */
895 * Helper function to note the Mesh Peer Link FSM change.
898 mesh_linkchange(struct ieee80211_node
*ni
, enum ieee80211_mesh_mlstate state
)
900 struct ieee80211vap
*vap
= ni
->ni_vap
;
901 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
902 #ifdef IEEE80211_DEBUG
903 static const char *meshlinkstates
[] = {
904 [IEEE80211_NODE_MESH_IDLE
] = "IDLE",
905 [IEEE80211_NODE_MESH_OPENSNT
] = "OPEN SENT",
906 [IEEE80211_NODE_MESH_OPENRCV
] = "OPEN RECEIVED",
907 [IEEE80211_NODE_MESH_CONFIRMRCV
] = "CONFIRM RECEIVED",
908 [IEEE80211_NODE_MESH_ESTABLISHED
] = "ESTABLISHED",
909 [IEEE80211_NODE_MESH_HOLDING
] = "HOLDING"
912 IEEE80211_NOTE(vap
, IEEE80211_MSG_MESH
,
913 ni
, "peer link: %s -> %s",
914 meshlinkstates
[ni
->ni_mlstate
], meshlinkstates
[state
]);
916 /* track neighbor count */
917 if (state
== IEEE80211_NODE_MESH_ESTABLISHED
&&
918 ni
->ni_mlstate
!= IEEE80211_NODE_MESH_ESTABLISHED
) {
919 KASSERT(ms
->ms_neighbors
< 65535, ("neighbor count overflow"));
921 ieee80211_beacon_notify(vap
, IEEE80211_BEACON_MESHCONF
);
922 } else if (ni
->ni_mlstate
== IEEE80211_NODE_MESH_ESTABLISHED
&&
923 state
!= IEEE80211_NODE_MESH_ESTABLISHED
) {
924 KASSERT(ms
->ms_neighbors
> 0, ("neighbor count 0"));
926 ieee80211_beacon_notify(vap
, IEEE80211_BEACON_MESHCONF
);
928 ni
->ni_mlstate
= state
;
930 case IEEE80211_NODE_MESH_HOLDING
:
931 ms
->ms_ppath
->mpp_peerdown(ni
);
933 case IEEE80211_NODE_MESH_ESTABLISHED
:
934 ieee80211_mesh_discover(vap
, ni
->ni_macaddr
, NULL
);
942 * Helper function to generate a unique local ID required for mesh
943 * peer establishment.
946 mesh_checkid(void *arg
, struct ieee80211_node
*ni
)
950 if (*r
== ni
->ni_mllid
)
951 *(uint16_t *)arg
= 0;
955 mesh_generateid(struct ieee80211vap
*vap
)
961 net80211_get_random_bytes(&r
, 2);
962 ieee80211_iterate_nodes(&vap
->iv_ic
->ic_sta
, mesh_checkid
, &r
);
964 } while (r
== 0 && maxiter
> 0);
969 * Verifies if we already received this packet by checking its
971 * Returns 0 if the frame is to be accepted, 1 otherwise.
974 mesh_checkpseq(struct ieee80211vap
*vap
,
975 const uint8_t source
[IEEE80211_ADDR_LEN
], uint32_t seq
)
977 struct ieee80211_mesh_route
*rt
;
979 rt
= ieee80211_mesh_rt_find(vap
, source
);
981 rt
= ieee80211_mesh_rt_add(vap
, source
);
983 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, source
,
984 "%s", "add mcast route failed");
985 vap
->iv_stats
.is_mesh_rtaddfailed
++;
988 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, source
,
989 "add mcast route, mesh seqno %d", seq
);
990 rt
->rt_lastmseq
= seq
;
993 if (IEEE80211_MESH_SEQ_GEQ(rt
->rt_lastmseq
, seq
)) {
996 rt
->rt_lastmseq
= seq
;
1002 * Iterate the routing table and locate the next hop.
1004 struct ieee80211_node
*
1005 ieee80211_mesh_find_txnode(struct ieee80211vap
*vap
,
1006 const uint8_t dest
[IEEE80211_ADDR_LEN
])
1008 struct ieee80211_mesh_route
*rt
;
1010 rt
= ieee80211_mesh_rt_find(vap
, dest
);
1013 if ((rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_VALID
) == 0) {
1014 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, dest
,
1015 "%s: !valid, flags 0x%x", __func__
, rt
->rt_flags
);
1019 if (rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_PROXY
) {
1020 rt
= ieee80211_mesh_rt_find(vap
, rt
->rt_mesh_gate
);
1021 if (rt
== NULL
) return NULL
;
1022 if ((rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_VALID
) == 0) {
1023 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, dest
,
1024 "%s: meshgate !valid, flags 0x%x", __func__
,
1030 return ieee80211_find_txnode(vap
, rt
->rt_nexthop
);
1034 mesh_transmit_to_gate(struct ieee80211vap
*vap
, struct mbuf
*m
,
1035 struct ieee80211_mesh_route
*rt_gate
)
1037 struct ifnet
*ifp
= vap
->iv_ifp
;
1038 struct ieee80211_node
*ni
;
1040 IEEE80211_TX_UNLOCK_ASSERT(vap
->iv_ic
);
1042 ni
= ieee80211_mesh_find_txnode(vap
, rt_gate
->rt_dest
);
1044 if_inc_counter(ifp
, IFCOUNTER_OERRORS
, 1);
1050 * Send through the VAP packet transmit path.
1051 * This consumes the node ref grabbed above and
1052 * the mbuf, regardless of whether there's a problem
1055 (void) ieee80211_vap_pkt_send_dest(vap
, m
, ni
);
1059 * Forward the queued frames to known valid mesh gates.
1060 * Assume destination to be outside the MBSS (i.e. proxy entry),
1061 * If no valid mesh gates are known silently discard queued frames.
1062 * After transmitting frames to all known valid mesh gates, this route
1063 * will be marked invalid, and a new path discovery will happen in the hopes
1064 * that (at least) one of the mesh gates have a new proxy entry for us to use.
1067 ieee80211_mesh_forward_to_gates(struct ieee80211vap
*vap
,
1068 struct ieee80211_mesh_route
*rt_dest
)
1070 struct ieee80211com
*ic
= vap
->iv_ic
;
1071 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
1072 struct ieee80211_mesh_route
*rt_gate
;
1073 struct ieee80211_mesh_gate_route
*gr
= NULL
, *gr_next
;
1074 struct mbuf
*m
, *mcopy
, *next
;
1076 IEEE80211_TX_UNLOCK_ASSERT(ic
);
1078 KASSERT( rt_dest
->rt_flags
== IEEE80211_MESHRT_FLAGS_DISCOVER
,
1079 ("Route is not marked with IEEE80211_MESHRT_FLAGS_DISCOVER"));
1081 /* XXX: send to more than one valid mash gate */
1084 m
= ieee80211_ageq_remove(&ic
->ic_stageq
,
1085 (struct ieee80211_node
*)(uintptr_t)
1086 ieee80211_mac_hash(ic
, rt_dest
->rt_dest
));
1088 TAILQ_FOREACH_SAFE(gr
, &ms
->ms_known_gates
, gr_next
, gr_next
) {
1089 rt_gate
= gr
->gr_route
;
1090 if (rt_gate
== NULL
) {
1091 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_HWMP
,
1093 "mesh gate with no path %6D",
1097 if ((rt_gate
->rt_flags
& IEEE80211_MESHRT_FLAGS_VALID
) == 0)
1099 KASSERT(rt_gate
->rt_flags
& IEEE80211_MESHRT_FLAGS_GATE
,
1100 ("route not marked as a mesh gate"));
1101 KASSERT((rt_gate
->rt_flags
&
1102 IEEE80211_MESHRT_FLAGS_PROXY
) == 0,
1103 ("found mesh gate that is also marked porxy"));
1105 * convert route to a proxy route gated by the current
1106 * mesh gate, this is needed so encap can built data
1107 * frame with correct address.
1109 rt_dest
->rt_flags
= IEEE80211_MESHRT_FLAGS_PROXY
|
1110 IEEE80211_MESHRT_FLAGS_VALID
;
1111 rt_dest
->rt_ext_seq
= 1; /* random value */
1112 IEEE80211_ADDR_COPY(rt_dest
->rt_mesh_gate
, rt_gate
->rt_dest
);
1113 IEEE80211_ADDR_COPY(rt_dest
->rt_nexthop
, rt_gate
->rt_nexthop
);
1114 rt_dest
->rt_metric
= rt_gate
->rt_metric
;
1115 rt_dest
->rt_nhops
= rt_gate
->rt_nhops
;
1116 ieee80211_mesh_rt_update(rt_dest
, ms
->ms_ppath
->mpp_inact
);
1119 mcopy
= m_dup(m
, IEEE80211_M_NOWAIT
);
1120 for (; mcopy
!= NULL
; mcopy
= next
) {
1121 next
= mcopy
->m_nextpkt
;
1122 mcopy
->m_nextpkt
= NULL
;
1123 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_HWMP
,
1125 "flush queued frame %p len %d", mcopy
,
1126 mcopy
->m_pkthdr
.len
);
1127 mesh_transmit_to_gate(vap
, mcopy
, rt_gate
);
1131 rt_dest
->rt_flags
= 0; /* Mark invalid */
1137 * Forward the specified frame.
1138 * Decrement the TTL and set TA to our MAC address.
1141 mesh_forward(struct ieee80211vap
*vap
, struct mbuf
*m
,
1142 const struct ieee80211_meshcntl
*mc
)
1144 struct ieee80211com
*ic
= vap
->iv_ic
;
1145 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
1146 struct ifnet
*ifp
= vap
->iv_ifp
;
1147 const struct ieee80211_frame
*wh
=
1148 mtod(m
, const struct ieee80211_frame
*);
1150 struct ieee80211_meshcntl
*mccopy
;
1151 struct ieee80211_frame
*whcopy
;
1152 struct ieee80211_node
*ni
;
1155 /* This is called from the RX path - don't hold this lock */
1156 IEEE80211_TX_UNLOCK_ASSERT(ic
);
1159 * mesh ttl of 1 means we are the last one receiving it,
1160 * according to amendment we decrement and then check if
1161 * 0, if so we dont forward.
1163 if (mc
->mc_ttl
< 1) {
1164 IEEE80211_NOTE_FRAME(vap
, IEEE80211_MSG_MESH
, wh
,
1165 "%s", "frame not fwd'd, ttl 1");
1166 vap
->iv_stats
.is_mesh_fwd_ttl
++;
1169 if (!(ms
->ms_flags
& IEEE80211_MESHFLAGS_FWD
)) {
1170 IEEE80211_NOTE_FRAME(vap
, IEEE80211_MSG_MESH
, wh
,
1171 "%s", "frame not fwd'd, fwding disabled");
1172 vap
->iv_stats
.is_mesh_fwd_disabled
++;
1175 mcopy
= m_dup(m
, IEEE80211_M_NOWAIT
);
1176 if (mcopy
== NULL
) {
1177 IEEE80211_NOTE_FRAME(vap
, IEEE80211_MSG_MESH
, wh
,
1178 "%s", "frame not fwd'd, cannot dup");
1179 vap
->iv_stats
.is_mesh_fwd_nobuf
++;
1180 if_inc_counter(ifp
, IFCOUNTER_OERRORS
, 1);
1183 mcopy
= m_pullup(mcopy
, ieee80211_hdrspace(ic
, wh
) +
1184 sizeof(struct ieee80211_meshcntl
));
1185 if (mcopy
== NULL
) {
1186 IEEE80211_NOTE_FRAME(vap
, IEEE80211_MSG_MESH
, wh
,
1187 "%s", "frame not fwd'd, too short");
1188 vap
->iv_stats
.is_mesh_fwd_tooshort
++;
1189 if_inc_counter(ifp
, IFCOUNTER_OERRORS
, 1);
1193 whcopy
= mtod(mcopy
, struct ieee80211_frame
*);
1194 mccopy
= (struct ieee80211_meshcntl
*)
1195 (mtod(mcopy
, uint8_t *) + ieee80211_hdrspace(ic
, wh
));
1196 /* XXX clear other bits? */
1197 whcopy
->i_fc
[1] &= ~IEEE80211_FC1_RETRY
;
1198 IEEE80211_ADDR_COPY(whcopy
->i_addr2
, vap
->iv_myaddr
);
1199 if (IEEE80211_IS_MULTICAST(wh
->i_addr1
)) {
1200 ni
= ieee80211_ref_node(vap
->iv_bss
);
1201 mcopy
->m_flags
|= M_MCAST
;
1203 ni
= ieee80211_mesh_find_txnode(vap
, whcopy
->i_addr3
);
1206 * [Optional] any of the following three actions:
1207 * o silently discard
1208 * o trigger a path discovery
1209 * o inform TA that meshDA is unknown.
1211 IEEE80211_NOTE_FRAME(vap
, IEEE80211_MSG_MESH
, wh
,
1212 "%s", "frame not fwd'd, no path");
1213 ms
->ms_ppath
->mpp_senderror(vap
, whcopy
->i_addr3
, NULL
,
1214 IEEE80211_REASON_MESH_PERR_NO_FI
);
1215 vap
->iv_stats
.is_mesh_fwd_nopath
++;
1219 IEEE80211_ADDR_COPY(whcopy
->i_addr1
, ni
->ni_macaddr
);
1221 KASSERT(mccopy
->mc_ttl
> 0, ("%s called with wrong ttl", __func__
));
1224 /* XXX calculate priority so drivers can find the tx queue */
1225 M_WME_SETAC(mcopy
, WME_AC_BE
);
1227 /* XXX do we know m_nextpkt is NULL? */
1228 MPASS((mcopy
->m_pkthdr
.csum_flags
& CSUM_SND_TAG
) == 0);
1229 mcopy
->m_pkthdr
.rcvif
= (void *) ni
;
1232 * XXX this bypasses all of the VAP TX handling; it passes frames
1233 * directly to the parent interface.
1235 * Because of this, there's no TX lock being held as there's no
1236 * encaps state being used.
1238 * Doing a direct parent transmit may not be the correct thing
1239 * to do here; we'll have to re-think this soon.
1241 IEEE80211_TX_LOCK(ic
);
1242 err
= ieee80211_parent_xmitpkt(ic
, mcopy
);
1243 IEEE80211_TX_UNLOCK(ic
);
1245 if_inc_counter(ifp
, IFCOUNTER_OPACKETS
, 1);
1248 static struct mbuf
*
1249 mesh_decap(struct ieee80211vap
*vap
, struct mbuf
*m
, int hdrlen
, int meshdrlen
)
1251 #define WHDIR(wh) ((wh)->i_fc[1] & IEEE80211_FC1_DIR_MASK)
1252 #define MC01(mc) ((const struct ieee80211_meshcntl_ae01 *)mc)
1253 uint8_t b
[sizeof(struct ieee80211_qosframe_addr4
) +
1254 sizeof(struct ieee80211_meshcntl_ae10
)];
1255 const struct ieee80211_qosframe_addr4
*wh
;
1256 const struct ieee80211_meshcntl_ae10
*mc
;
1257 struct ether_header
*eh
;
1261 if (m
->m_len
< hdrlen
+ sizeof(*llc
) &&
1262 (m
= m_pullup(m
, hdrlen
+ sizeof(*llc
))) == NULL
) {
1263 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_ANY
,
1264 "discard data frame: %s", "m_pullup failed");
1265 vap
->iv_stats
.is_rx_tooshort
++;
1268 memcpy(b
, mtod(m
, caddr_t
), hdrlen
);
1269 wh
= (const struct ieee80211_qosframe_addr4
*)&b
[0];
1270 mc
= (const struct ieee80211_meshcntl_ae10
*)&b
[hdrlen
- meshdrlen
];
1271 KASSERT(WHDIR(wh
) == IEEE80211_FC1_DIR_FROMDS
||
1272 WHDIR(wh
) == IEEE80211_FC1_DIR_DSTODS
,
1273 ("bogus dir, fc 0x%x:0x%x", wh
->i_fc
[0], wh
->i_fc
[1]));
1275 llc
= (struct llc
*)(mtod(m
, caddr_t
) + hdrlen
);
1276 if (llc
->llc_dsap
== LLC_SNAP_LSAP
&& llc
->llc_ssap
== LLC_SNAP_LSAP
&&
1277 llc
->llc_control
== LLC_UI
&& llc
->llc_snap
.org_code
[0] == 0 &&
1278 llc
->llc_snap
.org_code
[1] == 0 && llc
->llc_snap
.org_code
[2] == 0 &&
1279 /* NB: preserve AppleTalk frames that have a native SNAP hdr */
1280 !(llc
->llc_snap
.ether_type
== htons(ETHERTYPE_AARP
) ||
1281 llc
->llc_snap
.ether_type
== htons(ETHERTYPE_IPX
))) {
1282 m_adj(m
, hdrlen
+ sizeof(struct llc
) - sizeof(*eh
));
1285 m_adj(m
, hdrlen
- sizeof(*eh
));
1287 eh
= mtod(m
, struct ether_header
*);
1288 ae
= mc
->mc_flags
& IEEE80211_MESH_AE_MASK
;
1289 if (WHDIR(wh
) == IEEE80211_FC1_DIR_FROMDS
) {
1290 IEEE80211_ADDR_COPY(eh
->ether_dhost
, wh
->i_addr1
);
1291 if (ae
== IEEE80211_MESH_AE_00
) {
1292 IEEE80211_ADDR_COPY(eh
->ether_shost
, wh
->i_addr3
);
1293 } else if (ae
== IEEE80211_MESH_AE_01
) {
1294 IEEE80211_ADDR_COPY(eh
->ether_shost
,
1295 MC01(mc
)->mc_addr4
);
1297 IEEE80211_DISCARD(vap
, IEEE80211_MSG_ANY
,
1298 (const struct ieee80211_frame
*)wh
, NULL
,
1300 vap
->iv_stats
.is_mesh_badae
++;
1305 if (ae
== IEEE80211_MESH_AE_00
) {
1306 IEEE80211_ADDR_COPY(eh
->ether_dhost
, wh
->i_addr3
);
1307 IEEE80211_ADDR_COPY(eh
->ether_shost
, wh
->i_addr4
);
1308 } else if (ae
== IEEE80211_MESH_AE_10
) {
1309 IEEE80211_ADDR_COPY(eh
->ether_dhost
, mc
->mc_addr5
);
1310 IEEE80211_ADDR_COPY(eh
->ether_shost
, mc
->mc_addr6
);
1312 IEEE80211_DISCARD(vap
, IEEE80211_MSG_ANY
,
1313 (const struct ieee80211_frame
*)wh
, NULL
,
1315 vap
->iv_stats
.is_mesh_badae
++;
1320 #ifndef __NO_STRICT_ALIGNMENT
1321 if (!ALIGNED_POINTER(mtod(m
, caddr_t
) + sizeof(*eh
), uint32_t)) {
1322 m
= ieee80211_realign(vap
, m
, sizeof(*eh
));
1326 #endif /* !__NO_STRICT_ALIGNMENT */
1328 eh
= mtod(m
, struct ether_header
*);
1329 eh
->ether_type
= htons(m
->m_pkthdr
.len
- sizeof(*eh
));
1337 * Return non-zero if the unicast mesh data frame should be processed
1338 * locally. Frames that are not proxy'd have our address, otherwise
1339 * we need to consult the routing table to look for a proxy entry.
1342 mesh_isucastforme(struct ieee80211vap
*vap
, const struct ieee80211_frame
*wh
,
1343 const struct ieee80211_meshcntl
*mc
)
1345 int ae
= mc
->mc_flags
& 3;
1347 KASSERT((wh
->i_fc
[1] & IEEE80211_FC1_DIR_MASK
) == IEEE80211_FC1_DIR_DSTODS
,
1348 ("bad dir 0x%x:0x%x", wh
->i_fc
[0], wh
->i_fc
[1]));
1349 KASSERT(ae
== IEEE80211_MESH_AE_00
|| ae
== IEEE80211_MESH_AE_10
,
1351 if (ae
== IEEE80211_MESH_AE_10
) { /* ucast w/ proxy */
1352 const struct ieee80211_meshcntl_ae10
*mc10
=
1353 (const struct ieee80211_meshcntl_ae10
*) mc
;
1354 struct ieee80211_mesh_route
*rt
=
1355 ieee80211_mesh_rt_find(vap
, mc10
->mc_addr5
);
1356 /* check for proxy route to ourself */
1357 return (rt
!= NULL
&&
1358 (rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_PROXY
));
1359 } else /* ucast w/o proxy */
1360 return IEEE80211_ADDR_EQ(wh
->i_addr3
, vap
->iv_myaddr
);
1364 * Verifies transmitter, updates lifetime, precursor list and forwards data.
1365 * > 0 means we have forwarded data and no need to process locally
1366 * == 0 means we want to process locally (and we may have forwarded data
1367 * < 0 means there was an error and data should be discarded
1370 mesh_recv_indiv_data_to_fwrd(struct ieee80211vap
*vap
, struct mbuf
*m
,
1371 struct ieee80211_frame
*wh
, const struct ieee80211_meshcntl
*mc
)
1373 struct ieee80211_qosframe_addr4
*qwh
;
1374 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
1375 struct ieee80211_mesh_route
*rt_meshda
, *rt_meshsa
;
1377 /* This is called from the RX path - don't hold this lock */
1378 IEEE80211_TX_UNLOCK_ASSERT(vap
->iv_ic
);
1380 qwh
= (struct ieee80211_qosframe_addr4
*)wh
;
1384 * o verify addr2 is a legitimate transmitter
1385 * o lifetime of precursor of addr3 (addr2) is max(init, curr)
1386 * o lifetime of precursor of addr4 (nexthop) is max(init, curr)
1389 /* set lifetime of addr3 (meshDA) to initial value */
1390 rt_meshda
= ieee80211_mesh_rt_find(vap
, qwh
->i_addr3
);
1391 if (rt_meshda
== NULL
) {
1392 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, qwh
->i_addr2
,
1393 "no route to meshDA(%6D)", qwh
->i_addr3
, ":");
1395 * [Optional] any of the following three actions:
1396 * o silently discard [X]
1397 * o trigger a path discovery [ ]
1398 * o inform TA that meshDA is unknown. [ ]
1404 ieee80211_mesh_rt_update(rt_meshda
, ticks_to_msecs(
1405 ms
->ms_ppath
->mpp_inact
));
1407 /* set lifetime of addr4 (meshSA) to initial value */
1408 rt_meshsa
= ieee80211_mesh_rt_find(vap
, qwh
->i_addr4
);
1409 KASSERT(rt_meshsa
!= NULL
, ("no route"));
1410 ieee80211_mesh_rt_update(rt_meshsa
, ticks_to_msecs(
1411 ms
->ms_ppath
->mpp_inact
));
1413 mesh_forward(vap
, m
, mc
);
1414 return (1); /* dont process locally */
1418 * Verifies transmitter, updates lifetime, precursor list and process data
1419 * locally, if data is proxy with AE = 10 it could mean data should go
1420 * on another mesh path or data should be forwarded to the DS.
1422 * > 0 means we have forwarded data and no need to process locally
1423 * == 0 means we want to process locally (and we may have forwarded data
1424 * < 0 means there was an error and data should be discarded
1427 mesh_recv_indiv_data_to_me(struct ieee80211vap
*vap
, struct mbuf
*m
,
1428 struct ieee80211_frame
*wh
, const struct ieee80211_meshcntl
*mc
)
1430 struct ieee80211_qosframe_addr4
*qwh
;
1431 const struct ieee80211_meshcntl_ae10
*mc10
;
1432 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
1433 struct ieee80211_mesh_route
*rt
;
1436 /* This is called from the RX path - don't hold this lock */
1437 IEEE80211_TX_UNLOCK_ASSERT(vap
->iv_ic
);
1439 qwh
= (struct ieee80211_qosframe_addr4
*)wh
;
1440 mc10
= (const struct ieee80211_meshcntl_ae10
*)mc
;
1444 * o verify addr2 is a legitimate transmitter
1445 * o lifetime of precursor entry is max(init, curr)
1448 /* set lifetime of addr4 (meshSA) to initial value */
1449 rt
= ieee80211_mesh_rt_find(vap
, qwh
->i_addr4
);
1450 KASSERT(rt
!= NULL
, ("no route"));
1451 ieee80211_mesh_rt_update(rt
, ticks_to_msecs(ms
->ms_ppath
->mpp_inact
));
1454 ae
= mc10
->mc_flags
& IEEE80211_MESH_AE_MASK
;
1455 KASSERT(ae
== IEEE80211_MESH_AE_00
||
1456 ae
== IEEE80211_MESH_AE_10
, ("bad AE %d", ae
));
1457 if (ae
== IEEE80211_MESH_AE_10
) {
1458 if (IEEE80211_ADDR_EQ(mc10
->mc_addr5
, qwh
->i_addr3
)) {
1459 return (0); /* process locally */
1462 rt
= ieee80211_mesh_rt_find(vap
, mc10
->mc_addr5
);
1464 (rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_VALID
) &&
1465 (rt
->rt_flags
& IEEE80211_MESHRT_FLAGS_PROXY
) == 0) {
1467 * Forward on another mesh-path, according to
1468 * amendment as specified in 9.32.4.1
1470 IEEE80211_ADDR_COPY(qwh
->i_addr3
, mc10
->mc_addr5
);
1471 mesh_forward(vap
, m
,
1472 (const struct ieee80211_meshcntl
*)mc10
);
1473 return (1); /* dont process locally */
1476 * All other cases: forward of MSDUs from the MBSS to DS indiv.
1477 * addressed according to 13.11.3.2.
1479 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_OUTPUT
, qwh
->i_addr2
,
1480 "forward frame to DS, SA(%6D) DA(%6D)",
1481 mc10
->mc_addr6
, ":", mc10
->mc_addr5
, ":");
1483 return (0); /* process locally */
1487 * Try to forward the group addressed data on to other mesh STAs, and
1490 * > 0 means we have forwarded data and no need to process locally
1491 * == 0 means we want to process locally (and we may have forwarded data
1492 * < 0 means there was an error and data should be discarded
1495 mesh_recv_group_data(struct ieee80211vap
*vap
, struct mbuf
*m
,
1496 struct ieee80211_frame
*wh
, const struct ieee80211_meshcntl
*mc
)
1498 #define MC01(mc) ((const struct ieee80211_meshcntl_ae01 *)mc)
1499 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
1501 /* This is called from the RX path - don't hold this lock */
1502 IEEE80211_TX_UNLOCK_ASSERT(vap
->iv_ic
);
1504 mesh_forward(vap
, m
, mc
);
1506 if(mc
->mc_ttl
> 0) {
1507 if (mc
->mc_flags
& IEEE80211_MESH_AE_01
) {
1509 * Forward of MSDUs from the MBSS to DS group addressed
1510 * (according to 13.11.3.2)
1511 * This happens by delivering the packet, and a bridge
1512 * will sent it on another port member.
1514 if (ms
->ms_flags
& IEEE80211_MESHFLAGS_GATE
&&
1515 ms
->ms_flags
& IEEE80211_MESHFLAGS_FWD
) {
1516 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
,
1517 MC01(mc
)->mc_addr4
, "%s",
1518 "forward from MBSS to the DS");
1522 return (0); /* process locally */
1527 mesh_input(struct ieee80211_node
*ni
, struct mbuf
*m
,
1528 const struct ieee80211_rx_stats
*rxs
, int rssi
, int nf
)
1530 #define HAS_SEQ(type) ((type & 0x4) == 0)
1531 #define MC01(mc) ((const struct ieee80211_meshcntl_ae01 *)mc)
1532 struct ieee80211vap
*vap
= ni
->ni_vap
;
1533 struct ieee80211com
*ic
= ni
->ni_ic
;
1534 struct ifnet
*ifp
= vap
->iv_ifp
;
1535 struct ieee80211_frame
*wh
;
1536 const struct ieee80211_meshcntl
*mc
;
1537 int hdrspace
, meshdrlen
, need_tap
, error
;
1538 uint8_t dir
, type
, subtype
, ae
;
1540 const uint8_t *addr
;
1543 KASSERT(ni
!= NULL
, ("null node"));
1544 ni
->ni_inact
= ni
->ni_inact_reload
;
1546 need_tap
= 1; /* mbuf need to be tapped. */
1547 type
= -1; /* undefined */
1549 /* This is called from the RX path - don't hold this lock */
1550 IEEE80211_TX_UNLOCK_ASSERT(ic
);
1552 if (m
->m_pkthdr
.len
< sizeof(struct ieee80211_frame_min
)) {
1553 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_ANY
,
1554 ni
->ni_macaddr
, NULL
,
1555 "too short (1): len %u", m
->m_pkthdr
.len
);
1556 vap
->iv_stats
.is_rx_tooshort
++;
1560 * Bit of a cheat here, we use a pointer for a 3-address
1561 * frame format but don't reference fields past outside
1562 * ieee80211_frame_min w/o first validating the data is
1565 wh
= mtod(m
, struct ieee80211_frame
*);
1567 if (!IEEE80211_IS_FC0_CHECK_VER(wh
, IEEE80211_FC0_VERSION_0
)) {
1568 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_ANY
,
1569 ni
->ni_macaddr
, NULL
, "wrong version %x", wh
->i_fc
[0]);
1570 vap
->iv_stats
.is_rx_badversion
++;
1573 dir
= wh
->i_fc
[1] & IEEE80211_FC1_DIR_MASK
;
1574 type
= wh
->i_fc
[0] & IEEE80211_FC0_TYPE_MASK
;
1575 subtype
= wh
->i_fc
[0] & IEEE80211_FC0_SUBTYPE_MASK
;
1576 if ((ic
->ic_flags
& IEEE80211_F_SCAN
) == 0) {
1577 IEEE80211_RSSI_LPF(ni
->ni_avgrssi
, rssi
);
1579 if (HAS_SEQ(type
)) {
1580 uint8_t tid
= ieee80211_gettid(wh
);
1582 if (IEEE80211_QOS_HAS_SEQ(wh
) &&
1583 TID_TO_WME_AC(tid
) >= WME_AC_VI
)
1584 ic
->ic_wme
.wme_hipri_traffic
++;
1585 if (! ieee80211_check_rxseq(ni
, wh
, wh
->i_addr1
, rxs
))
1589 #ifdef IEEE80211_DEBUG
1591 * It's easier, but too expensive, to simulate different mesh
1592 * topologies by consulting the ACL policy very early, so do this
1595 * NB: this check is also done upon peering link initiation.
1597 if (vap
->iv_acl
!= NULL
&& !vap
->iv_acl
->iac_check(vap
, wh
)) {
1598 IEEE80211_DISCARD(vap
, IEEE80211_MSG_ACL
,
1599 wh
, NULL
, "%s", "disallowed by ACL");
1600 vap
->iv_stats
.is_rx_acl
++;
1605 case IEEE80211_FC0_TYPE_DATA
:
1606 if (ni
== vap
->iv_bss
)
1608 if (ni
->ni_mlstate
!= IEEE80211_NODE_MESH_ESTABLISHED
) {
1609 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_MESH
,
1610 ni
->ni_macaddr
, NULL
,
1611 "peer link not yet established (%d)",
1613 vap
->iv_stats
.is_mesh_nolink
++;
1616 if (dir
!= IEEE80211_FC1_DIR_FROMDS
&&
1617 dir
!= IEEE80211_FC1_DIR_DSTODS
) {
1618 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
1619 wh
, "data", "incorrect dir 0x%x", dir
);
1620 vap
->iv_stats
.is_rx_wrongdir
++;
1624 /* All Mesh data frames are QoS subtype */
1625 if (!HAS_SEQ(type
)) {
1626 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
1627 wh
, "data", "incorrect subtype 0x%x", subtype
);
1628 vap
->iv_stats
.is_rx_badsubtype
++;
1633 * Next up, any fragmentation.
1634 * XXX: we defrag before we even try to forward,
1635 * Mesh Control field is not present in sub-sequent
1636 * fragmented frames. This is in contrast to Draft 4.0.
1638 hdrspace
= ieee80211_hdrspace(ic
, wh
);
1639 if (!IEEE80211_IS_MULTICAST(wh
->i_addr1
)) {
1640 m
= ieee80211_defrag(ni
, m
, hdrspace
, 0);
1642 /* Fragment dropped or frame not complete yet */
1646 wh
= mtod(m
, struct ieee80211_frame
*); /* NB: after defrag */
1649 * Now we have a complete Mesh Data frame.
1653 * Only fromDStoDS data frames use 4 address qos frames
1654 * as specified in amendment. Otherwise addr4 is located
1655 * in the Mesh Control field and a 3 address qos frame
1658 *(uint16_t *)qos
= *(uint16_t *)ieee80211_getqos(wh
);
1661 * NB: The mesh STA sets the Mesh Control Present
1662 * subfield to 1 in the Mesh Data frame containing
1663 * an unfragmented MSDU, an A-MSDU, or the first
1664 * fragment of an MSDU.
1665 * After defrag it should always be present.
1667 if (!(qos
[1] & IEEE80211_QOS_MC
)) {
1668 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_MESH
,
1669 ni
->ni_macaddr
, NULL
,
1670 "%s", "Mesh control field not present");
1671 vap
->iv_stats
.is_rx_elem_missing
++; /* XXX: kinda */
1675 /* pull up enough to get to the mesh control */
1676 if (m
->m_len
< hdrspace
+ sizeof(struct ieee80211_meshcntl
) &&
1677 (m
= m_pullup(m
, hdrspace
+
1678 sizeof(struct ieee80211_meshcntl
))) == NULL
) {
1679 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_ANY
,
1680 ni
->ni_macaddr
, NULL
,
1681 "data too short: expecting %u", hdrspace
);
1682 vap
->iv_stats
.is_rx_tooshort
++;
1686 * Now calculate the full extent of the headers. Note
1687 * mesh_decap will pull up anything we didn't get
1688 * above when it strips the 802.11 headers.
1690 mc
= (const struct ieee80211_meshcntl
*)
1691 (mtod(m
, const uint8_t *) + hdrspace
);
1692 ae
= mc
->mc_flags
& IEEE80211_MESH_AE_MASK
;
1693 meshdrlen
= sizeof(struct ieee80211_meshcntl
) +
1694 ae
* IEEE80211_ADDR_LEN
;
1695 hdrspace
+= meshdrlen
;
1697 /* pull complete hdrspace = ieee80211_hdrspace + meshcontrol */
1698 if ((meshdrlen
> sizeof(struct ieee80211_meshcntl
)) &&
1699 (m
->m_len
< hdrspace
) &&
1700 ((m
= m_pullup(m
, hdrspace
)) == NULL
)) {
1701 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_ANY
,
1702 ni
->ni_macaddr
, NULL
,
1703 "data too short: expecting %u", hdrspace
);
1704 vap
->iv_stats
.is_rx_tooshort
++;
1707 /* XXX: are we sure there is no reallocating after m_pullup? */
1709 seq
= le32dec(mc
->mc_seq
);
1710 if (IEEE80211_IS_MULTICAST(wh
->i_addr1
))
1712 else if (ae
== IEEE80211_MESH_AE_01
)
1713 addr
= MC01(mc
)->mc_addr4
;
1715 addr
= ((struct ieee80211_qosframe_addr4
*)wh
)->i_addr4
;
1716 if (IEEE80211_ADDR_EQ(vap
->iv_myaddr
, addr
)) {
1717 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_INPUT
,
1718 addr
, "data", "%s", "not to me");
1719 vap
->iv_stats
.is_rx_wrongbss
++; /* XXX kinda */
1722 if (mesh_checkpseq(vap
, addr
, seq
) != 0) {
1723 vap
->iv_stats
.is_rx_dup
++;
1727 /* This code "routes" the frame to the right control path */
1728 if (!IEEE80211_IS_MULTICAST(wh
->i_addr1
)) {
1729 if (IEEE80211_ADDR_EQ(vap
->iv_myaddr
, wh
->i_addr3
))
1731 mesh_recv_indiv_data_to_me(vap
, m
, wh
, mc
);
1732 else if (IEEE80211_IS_MULTICAST(wh
->i_addr3
))
1733 error
= mesh_recv_group_data(vap
, m
, wh
, mc
);
1735 error
= mesh_recv_indiv_data_to_fwrd(vap
, m
,
1738 error
= mesh_recv_group_data(vap
, m
, wh
, mc
);
1744 if (ieee80211_radiotap_active_vap(vap
))
1745 ieee80211_radiotap_rx(vap
, m
);
1749 * Finally, strip the 802.11 header.
1751 m
= mesh_decap(vap
, m
, hdrspace
, meshdrlen
);
1753 /* XXX mask bit to check for both */
1754 /* don't count Null data frames as errors */
1755 if (subtype
== IEEE80211_FC0_SUBTYPE_NODATA
||
1756 subtype
== IEEE80211_FC0_SUBTYPE_QOS_NULL
)
1758 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_INPUT
,
1759 ni
->ni_macaddr
, "data", "%s", "decap error");
1760 vap
->iv_stats
.is_rx_decap
++;
1761 IEEE80211_NODE_STAT(ni
, rx_decap
);
1764 if (qos
[0] & IEEE80211_QOS_AMSDU
) {
1765 m
= ieee80211_decap_amsdu(ni
, m
);
1767 return IEEE80211_FC0_TYPE_DATA
;
1769 ieee80211_deliver_data(vap
, ni
, m
);
1771 case IEEE80211_FC0_TYPE_MGT
:
1772 vap
->iv_stats
.is_rx_mgmt
++;
1773 IEEE80211_NODE_STAT(ni
, rx_mgmt
);
1774 if (dir
!= IEEE80211_FC1_DIR_NODS
) {
1775 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
1776 wh
, "mgt", "incorrect dir 0x%x", dir
);
1777 vap
->iv_stats
.is_rx_wrongdir
++;
1780 if (m
->m_pkthdr
.len
< sizeof(struct ieee80211_frame
)) {
1781 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_ANY
,
1782 ni
->ni_macaddr
, "mgt", "too short: len %u",
1784 vap
->iv_stats
.is_rx_tooshort
++;
1787 #ifdef IEEE80211_DEBUG
1788 if ((ieee80211_msg_debug(vap
) &&
1789 (vap
->iv_ic
->ic_flags
& IEEE80211_F_SCAN
)) ||
1790 ieee80211_msg_dumppkts(vap
)) {
1791 if_printf(ifp
, "received %s from %s rssi %d\n",
1792 ieee80211_mgt_subtype_name(subtype
),
1793 ether_sprintf(wh
->i_addr2
), rssi
);
1796 if (IEEE80211_IS_PROTECTED(wh
)) {
1797 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
1798 wh
, NULL
, "%s", "WEP set but not permitted");
1799 vap
->iv_stats
.is_rx_mgtdiscard
++; /* XXX */
1802 vap
->iv_recv_mgmt(ni
, m
, subtype
, rxs
, rssi
, nf
);
1804 case IEEE80211_FC0_TYPE_CTL
:
1805 vap
->iv_stats
.is_rx_ctl
++;
1806 IEEE80211_NODE_STAT(ni
, rx_ctrl
);
1809 IEEE80211_DISCARD(vap
, IEEE80211_MSG_ANY
,
1810 wh
, "bad", "frame type 0x%x", type
);
1811 /* should not come here */
1815 if_inc_counter(ifp
, IFCOUNTER_IERRORS
, 1);
1818 if (need_tap
&& ieee80211_radiotap_active_vap(vap
))
1819 ieee80211_radiotap_rx(vap
, m
);
1828 mesh_recv_mgmt(struct ieee80211_node
*ni
, struct mbuf
*m0
, int subtype
,
1829 const struct ieee80211_rx_stats
*rxs
, int rssi
, int nf
)
1831 struct ieee80211vap
*vap
= ni
->ni_vap
;
1832 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
1833 struct ieee80211com
*ic
= ni
->ni_ic
;
1834 struct ieee80211_channel
*rxchan
= ic
->ic_curchan
;
1835 struct ieee80211_frame
*wh
;
1836 struct ieee80211_mesh_route
*rt
;
1837 uint8_t *frm
, *efrm
;
1839 wh
= mtod(m0
, struct ieee80211_frame
*);
1840 frm
= (uint8_t *)&wh
[1];
1841 efrm
= mtod(m0
, uint8_t *) + m0
->m_len
;
1843 case IEEE80211_FC0_SUBTYPE_PROBE_RESP
:
1844 case IEEE80211_FC0_SUBTYPE_BEACON
:
1846 struct ieee80211_scanparams scan
;
1847 struct ieee80211_channel
*c
;
1849 * We process beacon/probe response
1850 * frames to discover neighbors.
1853 c
= ieee80211_lookup_channel_rxstatus(vap
, rxs
);
1857 if (ieee80211_parse_beacon(ni
, m0
, rxchan
, &scan
) != 0)
1860 * Count frame now that we know it's to be processed.
1862 if (subtype
== IEEE80211_FC0_SUBTYPE_BEACON
) {
1863 vap
->iv_stats
.is_rx_beacon
++; /* XXX remove */
1864 IEEE80211_NODE_STAT(ni
, rx_beacons
);
1866 IEEE80211_NODE_STAT(ni
, rx_proberesp
);
1868 * If scanning, just pass information to the scan module.
1870 if (ic
->ic_flags
& IEEE80211_F_SCAN
) {
1871 if (ic
->ic_flags_ext
& IEEE80211_FEXT_PROBECHAN
) {
1873 * Actively scanning a channel marked passive;
1874 * send a probe request now that we know there
1875 * is 802.11 traffic present.
1877 * XXX check if the beacon we recv'd gives
1878 * us what we need and suppress the probe req
1880 ieee80211_probe_curchan(vap
, true);
1881 ic
->ic_flags_ext
&= ~IEEE80211_FEXT_PROBECHAN
;
1883 ieee80211_add_scan(vap
, rxchan
, &scan
, wh
,
1888 /* The rest of this code assumes we are running */
1889 if (vap
->iv_state
!= IEEE80211_S_RUN
)
1892 * Ignore non-mesh STAs.
1895 (IEEE80211_CAPINFO_ESS
|IEEE80211_CAPINFO_IBSS
)) ||
1896 scan
.meshid
== NULL
|| scan
.meshconf
== NULL
) {
1897 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
1898 wh
, "beacon", "%s", "not a mesh sta");
1899 vap
->iv_stats
.is_mesh_wrongmesh
++;
1903 * Ignore STAs for other mesh networks.
1905 if (memcmp(scan
.meshid
+2, ms
->ms_id
, ms
->ms_idlen
) != 0 ||
1906 mesh_verify_meshconf(vap
, scan
.meshconf
)) {
1907 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
1908 wh
, "beacon", "%s", "not for our mesh");
1909 vap
->iv_stats
.is_mesh_wrongmesh
++;
1913 * Peer only based on the current ACL policy.
1915 if (vap
->iv_acl
!= NULL
&& !vap
->iv_acl
->iac_check(vap
, wh
)) {
1916 IEEE80211_DISCARD(vap
, IEEE80211_MSG_ACL
,
1917 wh
, NULL
, "%s", "disallowed by ACL");
1918 vap
->iv_stats
.is_rx_acl
++;
1922 * Do neighbor discovery.
1924 if (!IEEE80211_ADDR_EQ(wh
->i_addr2
, ni
->ni_macaddr
)) {
1926 * Create a new entry in the neighbor table.
1928 ni
= ieee80211_add_neighbor(vap
, wh
, &scan
);
1931 * Automatically peer with discovered nodes if possible.
1933 if (ni
!= vap
->iv_bss
&&
1934 (ms
->ms_flags
& IEEE80211_MESHFLAGS_AP
)) {
1935 switch (ni
->ni_mlstate
) {
1936 case IEEE80211_NODE_MESH_IDLE
:
1940 /* Wait for backoff callout to reset counter */
1941 if (ni
->ni_mlhcnt
>= ieee80211_mesh_maxholding
)
1944 ni
->ni_mlpid
= mesh_generateid(vap
);
1945 if (ni
->ni_mlpid
== 0)
1947 mesh_linkchange(ni
, IEEE80211_NODE_MESH_OPENSNT
);
1948 args
[0] = ni
->ni_mlpid
;
1949 ieee80211_send_action(ni
,
1950 IEEE80211_ACTION_CAT_SELF_PROT
,
1951 IEEE80211_ACTION_MESHPEERING_OPEN
, args
);
1953 mesh_peer_timeout_setup(ni
);
1956 case IEEE80211_NODE_MESH_ESTABLISHED
:
1959 * Valid beacon from a peer mesh STA
1962 rt
= ieee80211_mesh_rt_find(vap
, wh
->i_addr2
);
1964 ieee80211_mesh_rt_update(rt
,
1966 ms
->ms_ppath
->mpp_inact
));
1976 case IEEE80211_FC0_SUBTYPE_PROBE_REQ
:
1978 uint8_t *ssid
, *meshid
, *rates
, *xrates
;
1980 if (vap
->iv_state
!= IEEE80211_S_RUN
) {
1981 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
1982 wh
, NULL
, "wrong state %s",
1983 ieee80211_state_name
[vap
->iv_state
]);
1984 vap
->iv_stats
.is_rx_mgtdiscard
++;
1987 if (IEEE80211_IS_MULTICAST(wh
->i_addr2
)) {
1988 /* frame must be directed */
1989 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
1990 wh
, NULL
, "%s", "not unicast");
1991 vap
->iv_stats
.is_rx_mgtdiscard
++; /* XXX stat */
1995 * prreq frame format
1997 * [tlv] supported rates
1998 * [tlv] extended supported rates
2001 ssid
= meshid
= rates
= xrates
= NULL
;
2002 while (efrm
- frm
> 1) {
2003 IEEE80211_VERIFY_LENGTH(efrm
- frm
, frm
[1] + 2, return);
2005 case IEEE80211_ELEMID_SSID
:
2008 case IEEE80211_ELEMID_RATES
:
2011 case IEEE80211_ELEMID_XRATES
:
2014 case IEEE80211_ELEMID_MESHID
:
2020 IEEE80211_VERIFY_ELEMENT(ssid
, IEEE80211_NWID_LEN
, return);
2021 IEEE80211_VERIFY_ELEMENT(rates
, IEEE80211_RATE_MAXSIZE
, return);
2023 IEEE80211_VERIFY_ELEMENT(xrates
,
2024 IEEE80211_RATE_MAXSIZE
- rates
[1], return);
2025 if (meshid
!= NULL
) {
2026 IEEE80211_VERIFY_ELEMENT(meshid
,
2027 IEEE80211_MESHID_LEN
, return);
2028 /* NB: meshid, not ssid */
2029 IEEE80211_VERIFY_SSID(vap
->iv_bss
, meshid
, return);
2032 /* XXX find a better class or define it's own */
2033 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_INPUT
, wh
->i_addr2
,
2034 "%s", "recv probe req");
2036 * Some legacy 11b clients cannot hack a complete
2037 * probe response frame. When the request includes
2038 * only a bare-bones rate set, communicate this to
2039 * the transmit side.
2041 ieee80211_send_proberesp(vap
, wh
->i_addr2
, 0);
2045 case IEEE80211_FC0_SUBTYPE_ACTION
:
2046 case IEEE80211_FC0_SUBTYPE_ACTION_NOACK
:
2047 if (ni
== vap
->iv_bss
) {
2048 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
2049 wh
, NULL
, "%s", "unknown node");
2050 vap
->iv_stats
.is_rx_mgtdiscard
++;
2051 } else if (!IEEE80211_ADDR_EQ(vap
->iv_myaddr
, wh
->i_addr1
) &&
2052 !IEEE80211_IS_MULTICAST(wh
->i_addr1
)) {
2053 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
2054 wh
, NULL
, "%s", "not for us");
2055 vap
->iv_stats
.is_rx_mgtdiscard
++;
2056 } else if (vap
->iv_state
!= IEEE80211_S_RUN
) {
2057 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
2058 wh
, NULL
, "wrong state %s",
2059 ieee80211_state_name
[vap
->iv_state
]);
2060 vap
->iv_stats
.is_rx_mgtdiscard
++;
2062 if (ieee80211_parse_action(ni
, m0
) == 0)
2063 (void)ic
->ic_recv_action(ni
, wh
, frm
, efrm
);
2067 case IEEE80211_FC0_SUBTYPE_ASSOC_REQ
:
2068 case IEEE80211_FC0_SUBTYPE_ASSOC_RESP
:
2069 case IEEE80211_FC0_SUBTYPE_REASSOC_REQ
:
2070 case IEEE80211_FC0_SUBTYPE_REASSOC_RESP
:
2071 case IEEE80211_FC0_SUBTYPE_TIMING_ADV
:
2072 case IEEE80211_FC0_SUBTYPE_ATIM
:
2073 case IEEE80211_FC0_SUBTYPE_DISASSOC
:
2074 case IEEE80211_FC0_SUBTYPE_AUTH
:
2075 case IEEE80211_FC0_SUBTYPE_DEAUTH
:
2076 IEEE80211_DISCARD(vap
, IEEE80211_MSG_INPUT
,
2077 wh
, NULL
, "%s", "not handled");
2078 vap
->iv_stats
.is_rx_mgtdiscard
++;
2082 IEEE80211_DISCARD(vap
, IEEE80211_MSG_ANY
,
2083 wh
, "mgt", "subtype 0x%x not handled", subtype
);
2084 vap
->iv_stats
.is_rx_badsubtype
++;
2090 mesh_recv_ctl(struct ieee80211_node
*ni
, struct mbuf
*m
, int subtype
)
2094 case IEEE80211_FC0_SUBTYPE_BAR
:
2095 ieee80211_recv_bar(ni
, m
);
2101 * Parse meshpeering action ie's for MPM frames
2103 static const struct ieee80211_meshpeer_ie
*
2104 mesh_parse_meshpeering_action(struct ieee80211_node
*ni
,
2105 const struct ieee80211_frame
*wh
, /* XXX for VERIFY_LENGTH */
2106 const uint8_t *frm
, const uint8_t *efrm
,
2107 struct ieee80211_meshpeer_ie
*mp
, uint8_t subtype
)
2109 struct ieee80211vap
*vap
= ni
->ni_vap
;
2110 const struct ieee80211_meshpeer_ie
*mpie
;
2112 const uint8_t *meshid
, *meshconf
;
2113 uint8_t sendclose
= 0; /* 1 = MPM frame rejected, close will be sent */
2115 meshid
= meshconf
= NULL
;
2116 while (efrm
- frm
> 1) {
2117 IEEE80211_VERIFY_LENGTH(efrm
- frm
, frm
[1] + 2, return NULL
);
2119 case IEEE80211_ELEMID_MESHID
:
2122 case IEEE80211_ELEMID_MESHCONF
:
2125 case IEEE80211_ELEMID_MESHPEER
:
2126 mpie
= (const struct ieee80211_meshpeer_ie
*) frm
;
2127 memset(mp
, 0, sizeof(*mp
));
2128 mp
->peer_len
= mpie
->peer_len
;
2129 mp
->peer_proto
= le16dec(&mpie
->peer_proto
);
2130 mp
->peer_llinkid
= le16dec(&mpie
->peer_llinkid
);
2132 case IEEE80211_ACTION_MESHPEERING_CONFIRM
:
2134 le16dec(&mpie
->peer_linkid
);
2136 case IEEE80211_ACTION_MESHPEERING_CLOSE
:
2137 /* NB: peer link ID is optional */
2138 if (mpie
->peer_len
==
2139 (IEEE80211_MPM_BASE_SZ
+ 2)) {
2140 mp
->peer_linkid
= 0;
2142 le16dec(&mpie
->peer_linkid
);
2145 le16dec(&mpie
->peer_linkid
);
2147 le16dec(&mpie
->peer_rcode
);
2157 * Verify the contents of the frame.
2158 * If it fails validation, close the peer link.
2160 if (mesh_verify_meshpeer(vap
, subtype
, (const uint8_t *)mp
)) {
2162 IEEE80211_DISCARD(vap
,
2163 IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
,
2164 wh
, NULL
, "%s", "MPM validation failed");
2167 /* If meshid is not the same reject any frames type. */
2168 if (sendclose
== 0 && mesh_verify_meshid(vap
, meshid
)) {
2170 IEEE80211_DISCARD(vap
,
2171 IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
,
2172 wh
, NULL
, "%s", "not for our mesh");
2173 if (subtype
== IEEE80211_ACTION_MESHPEERING_CLOSE
) {
2175 * Standard not clear about this, if we dont ignore
2176 * there will be an endless loop between nodes sending
2177 * CLOSE frames between each other with wrong meshid.
2178 * Discard and timers will bring FSM to IDLE state.
2185 * Close frames are accepted if meshid is the same.
2186 * Verify the other two types.
2188 if (sendclose
== 0 && subtype
!= IEEE80211_ACTION_MESHPEERING_CLOSE
&&
2189 mesh_verify_meshconf(vap
, meshconf
)) {
2191 IEEE80211_DISCARD(vap
,
2192 IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
,
2193 wh
, NULL
, "%s", "configuration mismatch");
2197 vap
->iv_stats
.is_rx_mgtdiscard
++;
2198 switch (ni
->ni_mlstate
) {
2199 case IEEE80211_NODE_MESH_IDLE
:
2200 case IEEE80211_NODE_MESH_ESTABLISHED
:
2201 case IEEE80211_NODE_MESH_HOLDING
:
2204 case IEEE80211_NODE_MESH_OPENSNT
:
2205 case IEEE80211_NODE_MESH_OPENRCV
:
2206 case IEEE80211_NODE_MESH_CONFIRMRCV
:
2207 args
[0] = ni
->ni_mlpid
;
2208 args
[1] = ni
->ni_mllid
;
2209 /* Reason codes for rejection */
2211 case IEEE80211_ACTION_MESHPEERING_OPEN
:
2212 args
[2] = IEEE80211_REASON_MESH_CPVIOLATION
;
2214 case IEEE80211_ACTION_MESHPEERING_CONFIRM
:
2215 args
[2] = IEEE80211_REASON_MESH_INCONS_PARAMS
;
2218 ieee80211_send_action(ni
,
2219 IEEE80211_ACTION_CAT_SELF_PROT
,
2220 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2222 mesh_linkchange(ni
, IEEE80211_NODE_MESH_HOLDING
);
2223 mesh_peer_timeout_setup(ni
);
2229 return (const struct ieee80211_meshpeer_ie
*) mp
;
2233 mesh_recv_action_meshpeering_open(struct ieee80211_node
*ni
,
2234 const struct ieee80211_frame
*wh
,
2235 const uint8_t *frm
, const uint8_t *efrm
)
2237 struct ieee80211vap
*vap
= ni
->ni_vap
;
2238 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
2239 struct ieee80211_meshpeer_ie ie
;
2240 const struct ieee80211_meshpeer_ie
*meshpeer
;
2243 /* +2+2 for action + code + capabilites */
2244 meshpeer
= mesh_parse_meshpeering_action(ni
, wh
, frm
+2+2, efrm
, &ie
,
2245 IEEE80211_ACTION_MESHPEERING_OPEN
);
2246 if (meshpeer
== NULL
) {
2251 IEEE80211_NOTE(vap
, IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
, ni
,
2252 "recv PEER OPEN, lid 0x%x", meshpeer
->peer_llinkid
);
2254 switch (ni
->ni_mlstate
) {
2255 case IEEE80211_NODE_MESH_IDLE
:
2256 /* Reject open request if reached our maximum neighbor count */
2257 if (ms
->ms_neighbors
>= IEEE80211_MESH_MAX_NEIGHBORS
) {
2258 args
[0] = meshpeer
->peer_llinkid
;
2260 args
[2] = IEEE80211_REASON_MESH_MAX_PEERS
;
2261 ieee80211_send_action(ni
,
2262 IEEE80211_ACTION_CAT_SELF_PROT
,
2263 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2265 /* stay in IDLE state */
2268 /* Open frame accepted */
2269 mesh_linkchange(ni
, IEEE80211_NODE_MESH_OPENRCV
);
2270 ni
->ni_mllid
= meshpeer
->peer_llinkid
;
2271 ni
->ni_mlpid
= mesh_generateid(vap
);
2272 if (ni
->ni_mlpid
== 0)
2274 args
[0] = ni
->ni_mlpid
;
2275 /* Announce we're open too... */
2276 ieee80211_send_action(ni
,
2277 IEEE80211_ACTION_CAT_SELF_PROT
,
2278 IEEE80211_ACTION_MESHPEERING_OPEN
, args
);
2279 /* ...and confirm the link. */
2280 args
[0] = ni
->ni_mlpid
;
2281 args
[1] = ni
->ni_mllid
;
2282 ieee80211_send_action(ni
,
2283 IEEE80211_ACTION_CAT_SELF_PROT
,
2284 IEEE80211_ACTION_MESHPEERING_CONFIRM
,
2286 mesh_peer_timeout_setup(ni
);
2288 case IEEE80211_NODE_MESH_OPENRCV
:
2290 if (ni
->ni_mllid
!= meshpeer
->peer_llinkid
) {
2291 args
[0] = ni
->ni_mllid
;
2292 args
[1] = ni
->ni_mlpid
;
2293 args
[2] = IEEE80211_REASON_PEER_LINK_CANCELED
;
2294 ieee80211_send_action(ni
,
2295 IEEE80211_ACTION_CAT_SELF_PROT
,
2296 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2298 mesh_linkchange(ni
, IEEE80211_NODE_MESH_HOLDING
);
2299 mesh_peer_timeout_setup(ni
);
2302 /* Duplicate open, confirm again. */
2303 args
[0] = ni
->ni_mlpid
;
2304 args
[1] = ni
->ni_mllid
;
2305 ieee80211_send_action(ni
,
2306 IEEE80211_ACTION_CAT_SELF_PROT
,
2307 IEEE80211_ACTION_MESHPEERING_CONFIRM
,
2310 case IEEE80211_NODE_MESH_OPENSNT
:
2311 ni
->ni_mllid
= meshpeer
->peer_llinkid
;
2312 mesh_linkchange(ni
, IEEE80211_NODE_MESH_OPENRCV
);
2313 args
[0] = ni
->ni_mlpid
;
2314 args
[1] = ni
->ni_mllid
;
2315 ieee80211_send_action(ni
,
2316 IEEE80211_ACTION_CAT_SELF_PROT
,
2317 IEEE80211_ACTION_MESHPEERING_CONFIRM
,
2319 /* NB: don't setup/clear any timeout */
2321 case IEEE80211_NODE_MESH_CONFIRMRCV
:
2322 if (ni
->ni_mlpid
!= meshpeer
->peer_linkid
||
2323 ni
->ni_mllid
!= meshpeer
->peer_llinkid
) {
2324 args
[0] = ni
->ni_mlpid
;
2325 args
[1] = ni
->ni_mllid
;
2326 args
[2] = IEEE80211_REASON_PEER_LINK_CANCELED
;
2327 ieee80211_send_action(ni
,
2328 IEEE80211_ACTION_CAT_SELF_PROT
,
2329 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2332 IEEE80211_NODE_MESH_HOLDING
);
2333 mesh_peer_timeout_setup(ni
);
2336 mesh_linkchange(ni
, IEEE80211_NODE_MESH_ESTABLISHED
);
2337 ni
->ni_mllid
= meshpeer
->peer_llinkid
;
2338 args
[0] = ni
->ni_mlpid
;
2339 args
[1] = ni
->ni_mllid
;
2340 ieee80211_send_action(ni
,
2341 IEEE80211_ACTION_CAT_SELF_PROT
,
2342 IEEE80211_ACTION_MESHPEERING_CONFIRM
,
2344 mesh_peer_timeout_stop(ni
);
2346 case IEEE80211_NODE_MESH_ESTABLISHED
:
2347 if (ni
->ni_mllid
!= meshpeer
->peer_llinkid
) {
2348 args
[0] = ni
->ni_mllid
;
2349 args
[1] = ni
->ni_mlpid
;
2350 args
[2] = IEEE80211_REASON_PEER_LINK_CANCELED
;
2351 ieee80211_send_action(ni
,
2352 IEEE80211_ACTION_CAT_SELF_PROT
,
2353 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2355 mesh_linkchange(ni
, IEEE80211_NODE_MESH_HOLDING
);
2356 mesh_peer_timeout_setup(ni
);
2359 args
[0] = ni
->ni_mlpid
;
2360 args
[1] = ni
->ni_mllid
;
2361 ieee80211_send_action(ni
,
2362 IEEE80211_ACTION_CAT_SELF_PROT
,
2363 IEEE80211_ACTION_MESHPEERING_CONFIRM
,
2366 case IEEE80211_NODE_MESH_HOLDING
:
2367 args
[0] = ni
->ni_mlpid
;
2368 args
[1] = meshpeer
->peer_llinkid
;
2369 /* Standard not clear about what the reaason code should be */
2370 args
[2] = IEEE80211_REASON_PEER_LINK_CANCELED
;
2371 ieee80211_send_action(ni
,
2372 IEEE80211_ACTION_CAT_SELF_PROT
,
2373 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2381 mesh_recv_action_meshpeering_confirm(struct ieee80211_node
*ni
,
2382 const struct ieee80211_frame
*wh
,
2383 const uint8_t *frm
, const uint8_t *efrm
)
2385 struct ieee80211vap
*vap
= ni
->ni_vap
;
2386 struct ieee80211_meshpeer_ie ie
;
2387 const struct ieee80211_meshpeer_ie
*meshpeer
;
2390 /* +2+2+2+2 for action + code + capabilites + status code + AID */
2391 meshpeer
= mesh_parse_meshpeering_action(ni
, wh
, frm
+2+2+2+2, efrm
, &ie
,
2392 IEEE80211_ACTION_MESHPEERING_CONFIRM
);
2393 if (meshpeer
== NULL
) {
2397 IEEE80211_NOTE(vap
, IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
, ni
,
2398 "recv PEER CONFIRM, local id 0x%x, peer id 0x%x",
2399 meshpeer
->peer_llinkid
, meshpeer
->peer_linkid
);
2401 switch (ni
->ni_mlstate
) {
2402 case IEEE80211_NODE_MESH_OPENRCV
:
2403 mesh_linkchange(ni
, IEEE80211_NODE_MESH_ESTABLISHED
);
2404 mesh_peer_timeout_stop(ni
);
2406 case IEEE80211_NODE_MESH_OPENSNT
:
2407 mesh_linkchange(ni
, IEEE80211_NODE_MESH_CONFIRMRCV
);
2408 mesh_peer_timeout_setup(ni
);
2410 case IEEE80211_NODE_MESH_HOLDING
:
2411 args
[0] = ni
->ni_mlpid
;
2412 args
[1] = meshpeer
->peer_llinkid
;
2413 /* Standard not clear about what the reaason code should be */
2414 args
[2] = IEEE80211_REASON_PEER_LINK_CANCELED
;
2415 ieee80211_send_action(ni
,
2416 IEEE80211_ACTION_CAT_SELF_PROT
,
2417 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2420 case IEEE80211_NODE_MESH_CONFIRMRCV
:
2421 if (ni
->ni_mllid
!= meshpeer
->peer_llinkid
) {
2422 args
[0] = ni
->ni_mlpid
;
2423 args
[1] = ni
->ni_mllid
;
2424 args
[2] = IEEE80211_REASON_PEER_LINK_CANCELED
;
2425 ieee80211_send_action(ni
,
2426 IEEE80211_ACTION_CAT_SELF_PROT
,
2427 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2429 mesh_linkchange(ni
, IEEE80211_NODE_MESH_HOLDING
);
2430 mesh_peer_timeout_setup(ni
);
2434 IEEE80211_DISCARD(vap
,
2435 IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
,
2436 wh
, NULL
, "received confirm in invalid state %d",
2438 vap
->iv_stats
.is_rx_mgtdiscard
++;
2445 mesh_recv_action_meshpeering_close(struct ieee80211_node
*ni
,
2446 const struct ieee80211_frame
*wh
,
2447 const uint8_t *frm
, const uint8_t *efrm
)
2449 struct ieee80211_meshpeer_ie ie
;
2450 const struct ieee80211_meshpeer_ie
*meshpeer
;
2453 /* +2 for action + code */
2454 meshpeer
= mesh_parse_meshpeering_action(ni
, wh
, frm
+2, efrm
, &ie
,
2455 IEEE80211_ACTION_MESHPEERING_CLOSE
);
2456 if (meshpeer
== NULL
) {
2461 * XXX: check reason code, for example we could receive
2462 * IEEE80211_REASON_MESH_MAX_PEERS then we should not attempt
2466 IEEE80211_NOTE(ni
->ni_vap
, IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
,
2467 ni
, "%s", "recv PEER CLOSE");
2469 switch (ni
->ni_mlstate
) {
2470 case IEEE80211_NODE_MESH_IDLE
:
2473 case IEEE80211_NODE_MESH_OPENRCV
:
2474 case IEEE80211_NODE_MESH_OPENSNT
:
2475 case IEEE80211_NODE_MESH_CONFIRMRCV
:
2476 case IEEE80211_NODE_MESH_ESTABLISHED
:
2477 args
[0] = ni
->ni_mlpid
;
2478 args
[1] = ni
->ni_mllid
;
2479 args
[2] = IEEE80211_REASON_MESH_CLOSE_RCVD
;
2480 ieee80211_send_action(ni
,
2481 IEEE80211_ACTION_CAT_SELF_PROT
,
2482 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2484 mesh_linkchange(ni
, IEEE80211_NODE_MESH_HOLDING
);
2485 mesh_peer_timeout_setup(ni
);
2487 case IEEE80211_NODE_MESH_HOLDING
:
2488 mesh_linkchange(ni
, IEEE80211_NODE_MESH_IDLE
);
2489 mesh_peer_timeout_stop(ni
);
2496 * Link Metric handling.
2499 mesh_recv_action_meshlmetric(struct ieee80211_node
*ni
,
2500 const struct ieee80211_frame
*wh
,
2501 const uint8_t *frm
, const uint8_t *efrm
)
2503 const struct ieee80211_meshlmetric_ie
*ie
=
2504 (const struct ieee80211_meshlmetric_ie
*)
2505 (frm
+2); /* action + code */
2506 struct ieee80211_meshlmetric_ie lm_rep
;
2508 if (ie
->lm_flags
& IEEE80211_MESH_LMETRIC_FLAGS_REQ
) {
2509 lm_rep
.lm_flags
= 0;
2510 lm_rep
.lm_metric
= mesh_airtime_calc(ni
);
2511 ieee80211_send_action(ni
,
2512 IEEE80211_ACTION_CAT_MESH
,
2513 IEEE80211_ACTION_MESH_LMETRIC
,
2516 /* XXX: else do nothing for now */
2521 * Parse meshgate action ie's for GANN frames.
2522 * Returns -1 if parsing fails, otherwise 0.
2525 mesh_parse_meshgate_action(struct ieee80211_node
*ni
,
2526 const struct ieee80211_frame
*wh
, /* XXX for VERIFY_LENGTH */
2527 struct ieee80211_meshgann_ie
*ie
, const uint8_t *frm
, const uint8_t *efrm
)
2529 struct ieee80211vap
*vap
= ni
->ni_vap
;
2530 const struct ieee80211_meshgann_ie
*gannie
;
2532 while (efrm
- frm
> 1) {
2533 IEEE80211_VERIFY_LENGTH(efrm
- frm
, frm
[1] + 2, return -1);
2535 case IEEE80211_ELEMID_MESHGANN
:
2536 gannie
= (const struct ieee80211_meshgann_ie
*) frm
;
2537 memset(ie
, 0, sizeof(*ie
));
2538 ie
->gann_ie
= gannie
->gann_ie
;
2539 ie
->gann_len
= gannie
->gann_len
;
2540 ie
->gann_flags
= gannie
->gann_flags
;
2541 ie
->gann_hopcount
= gannie
->gann_hopcount
;
2542 ie
->gann_ttl
= gannie
->gann_ttl
;
2543 IEEE80211_ADDR_COPY(ie
->gann_addr
, gannie
->gann_addr
);
2544 ie
->gann_seq
= le32dec(&gannie
->gann_seq
);
2545 ie
->gann_interval
= le16dec(&gannie
->gann_interval
);
2555 * Mesh Gate Announcement handling.
2558 mesh_recv_action_meshgate(struct ieee80211_node
*ni
,
2559 const struct ieee80211_frame
*wh
,
2560 const uint8_t *frm
, const uint8_t *efrm
)
2562 struct ieee80211vap
*vap
= ni
->ni_vap
;
2563 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
2564 struct ieee80211_mesh_gate_route
*gr
, *next
;
2565 struct ieee80211_mesh_route
*rt_gate
;
2566 struct ieee80211_meshgann_ie pgann
;
2567 struct ieee80211_meshgann_ie ie
;
2570 /* +2 for action + code */
2571 if (mesh_parse_meshgate_action(ni
, wh
, &ie
, frm
+2, efrm
) != 0) {
2572 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_MESH
,
2573 ni
->ni_macaddr
, NULL
, "%s",
2574 "GANN parsing failed");
2575 vap
->iv_stats
.is_rx_mgtdiscard
++;
2579 if (IEEE80211_ADDR_EQ(vap
->iv_myaddr
, ie
.gann_addr
))
2582 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, ni
->ni_macaddr
,
2583 "received GANN, meshgate: %6D (seq %u)", ie
.gann_addr
, ":",
2589 TAILQ_FOREACH_SAFE(gr
, &ms
->ms_known_gates
, gr_next
, next
) {
2590 if (!IEEE80211_ADDR_EQ(gr
->gr_addr
, ie
.gann_addr
))
2592 if (ie
.gann_seq
<= gr
->gr_lastseq
) {
2593 IEEE80211_DISCARD_MAC(vap
, IEEE80211_MSG_MESH
,
2594 ni
->ni_macaddr
, NULL
,
2595 "GANN old seqno %u <= %u",
2596 ie
.gann_seq
, gr
->gr_lastseq
);
2600 /* corresponding mesh gate found & GANN accepted */
2605 /* this GANN is from a new mesh Gate add it to known table. */
2606 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, ie
.gann_addr
,
2607 "stored new GANN information, seq %u.", ie
.gann_seq
);
2608 gr
= IEEE80211_MALLOC(ALIGN(sizeof(struct ieee80211_mesh_gate_route
)),
2610 IEEE80211_M_NOWAIT
| IEEE80211_M_ZERO
);
2611 IEEE80211_ADDR_COPY(gr
->gr_addr
, ie
.gann_addr
);
2612 TAILQ_INSERT_TAIL(&ms
->ms_known_gates
, gr
, gr_next
);
2614 gr
->gr_lastseq
= ie
.gann_seq
;
2616 /* check if we have a path to this gate */
2617 rt_gate
= mesh_rt_find_locked(ms
, gr
->gr_addr
);
2618 if (rt_gate
!= NULL
&&
2619 rt_gate
->rt_flags
& IEEE80211_MESHRT_FLAGS_VALID
) {
2620 gr
->gr_route
= rt_gate
;
2621 rt_gate
->rt_flags
|= IEEE80211_MESHRT_FLAGS_GATE
;
2626 /* popagate only if decremented ttl >= 1 && forwarding is enabled */
2627 if ((ie
.gann_ttl
- 1) < 1 && !(ms
->ms_flags
& IEEE80211_MESHFLAGS_FWD
))
2629 pgann
.gann_flags
= ie
.gann_flags
; /* Reserved */
2630 pgann
.gann_hopcount
= ie
.gann_hopcount
+ 1;
2631 pgann
.gann_ttl
= ie
.gann_ttl
- 1;
2632 IEEE80211_ADDR_COPY(pgann
.gann_addr
, ie
.gann_addr
);
2633 pgann
.gann_seq
= ie
.gann_seq
;
2634 pgann
.gann_interval
= ie
.gann_interval
;
2636 IEEE80211_NOTE_MAC(vap
, IEEE80211_MSG_MESH
, ie
.gann_addr
,
2637 "%s", "propagate GANN");
2639 ieee80211_send_action(vap
->iv_bss
, IEEE80211_ACTION_CAT_MESH
,
2640 IEEE80211_ACTION_MESH_GANN
, &pgann
);
2646 mesh_send_action(struct ieee80211_node
*ni
,
2647 const uint8_t sa
[IEEE80211_ADDR_LEN
],
2648 const uint8_t da
[IEEE80211_ADDR_LEN
],
2651 struct ieee80211vap
*vap
= ni
->ni_vap
;
2652 struct ieee80211com
*ic
= ni
->ni_ic
;
2653 struct ieee80211_bpf_params params
;
2656 KASSERT(ni
!= NULL
, ("null node"));
2658 if (vap
->iv_state
== IEEE80211_S_CAC
) {
2659 IEEE80211_NOTE(vap
, IEEE80211_MSG_OUTPUT
, ni
,
2660 "block %s frame in CAC state", "Mesh action");
2661 vap
->iv_stats
.is_tx_badstate
++;
2662 ieee80211_free_node(ni
);
2664 return EIO
; /* XXX */
2667 M_PREPEND(m
, sizeof(struct ieee80211_frame
), IEEE80211_M_NOWAIT
);
2669 ieee80211_free_node(ni
);
2673 IEEE80211_TX_LOCK(ic
);
2674 ieee80211_send_setup(ni
, m
,
2675 IEEE80211_FC0_TYPE_MGT
| IEEE80211_FC0_SUBTYPE_ACTION
,
2676 IEEE80211_NONQOS_TID
, sa
, da
, sa
);
2677 m
->m_flags
|= M_ENCAP
; /* mark encapsulated */
2679 memset(¶ms
, 0, sizeof(params
));
2680 params
.ibp_pri
= WME_AC_VO
;
2681 params
.ibp_rate0
= ni
->ni_txparms
->mgmtrate
;
2682 if (IEEE80211_IS_MULTICAST(da
))
2683 params
.ibp_try0
= 1;
2685 params
.ibp_try0
= ni
->ni_txparms
->maxretry
;
2686 params
.ibp_power
= ni
->ni_txpower
;
2688 IEEE80211_NODE_STAT(ni
, tx_mgmt
);
2690 ret
= ieee80211_raw_output(vap
, ni
, m
, ¶ms
);
2691 IEEE80211_TX_UNLOCK(ic
);
2695 #define ADDSHORT(frm, v) do { \
2696 frm[0] = (v) & 0xff; \
2697 frm[1] = (v) >> 8; \
2700 #define ADDWORD(frm, v) do { \
2701 frm[0] = (v) & 0xff; \
2702 frm[1] = ((v) >> 8) & 0xff; \
2703 frm[2] = ((v) >> 16) & 0xff; \
2704 frm[3] = ((v) >> 24) & 0xff; \
2709 mesh_send_action_meshpeering_open(struct ieee80211_node
*ni
,
2710 int category
, int action
, void *args0
)
2712 struct ieee80211vap
*vap
= ni
->ni_vap
;
2713 struct ieee80211com
*ic
= ni
->ni_ic
;
2714 uint16_t *args
= args0
;
2715 const struct ieee80211_rateset
*rs
;
2719 IEEE80211_NOTE(vap
, IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
, ni
,
2720 "send PEER OPEN action: localid 0x%x", args
[0]);
2722 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_NODE
,
2723 "ieee80211_ref_node (%s:%u) %p<%s> refcnt %d\n", __func__
, __LINE__
,
2724 ni
, ether_sprintf(ni
->ni_macaddr
), ieee80211_node_refcnt(ni
)+1);
2725 ieee80211_ref_node(ni
);
2727 m
= ieee80211_getmgtframe(&frm
,
2728 ic
->ic_headroom
+ sizeof(struct ieee80211_frame
),
2729 sizeof(uint16_t) /* action+category */
2730 + sizeof(uint16_t) /* capabilites */
2731 + 2 + IEEE80211_RATE_SIZE
2732 + 2 + (IEEE80211_RATE_MAXSIZE
- IEEE80211_RATE_SIZE
)
2733 + 2 + IEEE80211_MESHID_LEN
2734 + sizeof(struct ieee80211_meshconf_ie
)
2735 + sizeof(struct ieee80211_meshpeer_ie
)
2739 * mesh peer open action frame format:
2747 * [tlv] mesh peer link mgmt
2751 ADDSHORT(frm
, ieee80211_getcapinfo(vap
, ni
->ni_chan
));
2752 rs
= ieee80211_get_suprates(ic
, ic
->ic_curchan
);
2753 frm
= ieee80211_add_rates(frm
, rs
);
2754 frm
= ieee80211_add_xrates(frm
, rs
);
2755 frm
= ieee80211_add_meshid(frm
, vap
);
2756 frm
= ieee80211_add_meshconf(frm
, vap
);
2757 frm
= ieee80211_add_meshpeer(frm
, IEEE80211_ACTION_MESHPEERING_OPEN
,
2759 m
->m_pkthdr
.len
= m
->m_len
= frm
- mtod(m
, uint8_t *);
2760 return mesh_send_action(ni
, vap
->iv_myaddr
, ni
->ni_macaddr
, m
);
2762 vap
->iv_stats
.is_tx_nobuf
++;
2763 ieee80211_free_node(ni
);
2769 mesh_send_action_meshpeering_confirm(struct ieee80211_node
*ni
,
2770 int category
, int action
, void *args0
)
2772 struct ieee80211vap
*vap
= ni
->ni_vap
;
2773 struct ieee80211com
*ic
= ni
->ni_ic
;
2774 uint16_t *args
= args0
;
2775 const struct ieee80211_rateset
*rs
;
2779 IEEE80211_NOTE(vap
, IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
, ni
,
2780 "send PEER CONFIRM action: localid 0x%x, peerid 0x%x",
2783 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_NODE
,
2784 "ieee80211_ref_node (%s:%u) %p<%s> refcnt %d\n", __func__
, __LINE__
,
2785 ni
, ether_sprintf(ni
->ni_macaddr
), ieee80211_node_refcnt(ni
)+1);
2786 ieee80211_ref_node(ni
);
2788 m
= ieee80211_getmgtframe(&frm
,
2789 ic
->ic_headroom
+ sizeof(struct ieee80211_frame
),
2790 sizeof(uint16_t) /* action+category */
2791 + sizeof(uint16_t) /* capabilites */
2792 + sizeof(uint16_t) /* status code */
2793 + sizeof(uint16_t) /* AID */
2794 + 2 + IEEE80211_RATE_SIZE
2795 + 2 + (IEEE80211_RATE_MAXSIZE
- IEEE80211_RATE_SIZE
)
2796 + 2 + IEEE80211_MESHID_LEN
2797 + sizeof(struct ieee80211_meshconf_ie
)
2798 + sizeof(struct ieee80211_meshpeer_ie
)
2802 * mesh peer confirm action frame format:
2807 * [2] association id (peer ID)
2812 * [tlv] mesh peer link mgmt
2816 ADDSHORT(frm
, ieee80211_getcapinfo(vap
, ni
->ni_chan
));
2817 ADDSHORT(frm
, 0); /* status code */
2818 ADDSHORT(frm
, args
[1]); /* AID */
2819 rs
= ieee80211_get_suprates(ic
, ic
->ic_curchan
);
2820 frm
= ieee80211_add_rates(frm
, rs
);
2821 frm
= ieee80211_add_xrates(frm
, rs
);
2822 frm
= ieee80211_add_meshid(frm
, vap
);
2823 frm
= ieee80211_add_meshconf(frm
, vap
);
2824 frm
= ieee80211_add_meshpeer(frm
,
2825 IEEE80211_ACTION_MESHPEERING_CONFIRM
,
2826 args
[0], args
[1], 0);
2827 m
->m_pkthdr
.len
= m
->m_len
= frm
- mtod(m
, uint8_t *);
2828 return mesh_send_action(ni
, vap
->iv_myaddr
, ni
->ni_macaddr
, m
);
2830 vap
->iv_stats
.is_tx_nobuf
++;
2831 ieee80211_free_node(ni
);
2837 mesh_send_action_meshpeering_close(struct ieee80211_node
*ni
,
2838 int category
, int action
, void *args0
)
2840 struct ieee80211vap
*vap
= ni
->ni_vap
;
2841 struct ieee80211com
*ic
= ni
->ni_ic
;
2842 uint16_t *args
= args0
;
2846 IEEE80211_NOTE(vap
, IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
, ni
,
2847 "send PEER CLOSE action: localid 0x%x, peerid 0x%x reason %d (%s)",
2848 args
[0], args
[1], args
[2], ieee80211_reason_to_string(args
[2]));
2850 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_NODE
,
2851 "ieee80211_ref_node (%s:%u) %p<%s> refcnt %d\n", __func__
, __LINE__
,
2852 ni
, ether_sprintf(ni
->ni_macaddr
), ieee80211_node_refcnt(ni
)+1);
2853 ieee80211_ref_node(ni
);
2855 m
= ieee80211_getmgtframe(&frm
,
2856 ic
->ic_headroom
+ sizeof(struct ieee80211_frame
),
2857 sizeof(uint16_t) /* action+category */
2858 + sizeof(uint16_t) /* reason code */
2859 + 2 + IEEE80211_MESHID_LEN
2860 + sizeof(struct ieee80211_meshpeer_ie
)
2864 * mesh peer close action frame format:
2868 * [tlv] mesh peer link mgmt
2872 frm
= ieee80211_add_meshid(frm
, vap
);
2873 frm
= ieee80211_add_meshpeer(frm
,
2874 IEEE80211_ACTION_MESHPEERING_CLOSE
,
2875 args
[0], args
[1], args
[2]);
2876 m
->m_pkthdr
.len
= m
->m_len
= frm
- mtod(m
, uint8_t *);
2877 return mesh_send_action(ni
, vap
->iv_myaddr
, ni
->ni_macaddr
, m
);
2879 vap
->iv_stats
.is_tx_nobuf
++;
2880 ieee80211_free_node(ni
);
2886 mesh_send_action_meshlmetric(struct ieee80211_node
*ni
,
2887 int category
, int action
, void *arg0
)
2889 struct ieee80211vap
*vap
= ni
->ni_vap
;
2890 struct ieee80211com
*ic
= ni
->ni_ic
;
2891 struct ieee80211_meshlmetric_ie
*ie
= arg0
;
2895 if (ie
->lm_flags
& IEEE80211_MESH_LMETRIC_FLAGS_REQ
) {
2896 IEEE80211_NOTE(vap
, IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
,
2897 ni
, "%s", "send LINK METRIC REQUEST action");
2899 IEEE80211_NOTE(vap
, IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
,
2900 ni
, "send LINK METRIC REPLY action: metric 0x%x",
2903 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_NODE
,
2904 "ieee80211_ref_node (%s:%u) %p<%s> refcnt %d\n", __func__
, __LINE__
,
2905 ni
, ether_sprintf(ni
->ni_macaddr
), ieee80211_node_refcnt(ni
)+1);
2906 ieee80211_ref_node(ni
);
2908 m
= ieee80211_getmgtframe(&frm
,
2909 ic
->ic_headroom
+ sizeof(struct ieee80211_frame
),
2910 sizeof(uint16_t) + /* action+category */
2911 sizeof(struct ieee80211_meshlmetric_ie
)
2918 * [tlv] mesh link metric
2922 frm
= ieee80211_add_meshlmetric(frm
,
2923 ie
->lm_flags
, ie
->lm_metric
);
2924 m
->m_pkthdr
.len
= m
->m_len
= frm
- mtod(m
, uint8_t *);
2925 return mesh_send_action(ni
, vap
->iv_myaddr
, ni
->ni_macaddr
, m
);
2927 vap
->iv_stats
.is_tx_nobuf
++;
2928 ieee80211_free_node(ni
);
2934 mesh_send_action_meshgate(struct ieee80211_node
*ni
,
2935 int category
, int action
, void *arg0
)
2937 struct ieee80211vap
*vap
= ni
->ni_vap
;
2938 struct ieee80211com
*ic
= ni
->ni_ic
;
2939 struct ieee80211_meshgann_ie
*ie
= arg0
;
2943 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_NODE
,
2944 "ieee80211_ref_node (%s:%u) %p<%s> refcnt %d\n", __func__
, __LINE__
,
2945 ni
, ether_sprintf(ni
->ni_macaddr
), ieee80211_node_refcnt(ni
)+1);
2946 ieee80211_ref_node(ni
);
2948 m
= ieee80211_getmgtframe(&frm
,
2949 ic
->ic_headroom
+ sizeof(struct ieee80211_frame
),
2950 sizeof(uint16_t) + /* action+category */
2951 IEEE80211_MESHGANN_BASE_SZ
2958 * [tlv] mesh gate announcement
2962 frm
= ieee80211_add_meshgate(frm
, ie
);
2963 m
->m_pkthdr
.len
= m
->m_len
= frm
- mtod(m
, uint8_t *);
2964 return mesh_send_action(ni
, vap
->iv_myaddr
, broadcastaddr
, m
);
2966 vap
->iv_stats
.is_tx_nobuf
++;
2967 ieee80211_free_node(ni
);
2973 mesh_peer_timeout_setup(struct ieee80211_node
*ni
)
2975 switch (ni
->ni_mlstate
) {
2976 case IEEE80211_NODE_MESH_HOLDING
:
2977 ni
->ni_mltval
= ieee80211_mesh_holdingtimeout
;
2979 case IEEE80211_NODE_MESH_CONFIRMRCV
:
2980 ni
->ni_mltval
= ieee80211_mesh_confirmtimeout
;
2982 case IEEE80211_NODE_MESH_IDLE
:
2986 ni
->ni_mltval
= ieee80211_mesh_retrytimeout
;
2990 callout_reset(&ni
->ni_mltimer
, ni
->ni_mltval
,
2991 mesh_peer_timeout_cb
, ni
);
2995 * Same as above but backoffs timer statisically 50%.
2998 mesh_peer_timeout_backoff(struct ieee80211_node
*ni
)
3003 ni
->ni_mltval
+= r
% ni
->ni_mltval
;
3004 callout_reset(&ni
->ni_mltimer
, ni
->ni_mltval
, mesh_peer_timeout_cb
,
3008 static __inline
void
3009 mesh_peer_timeout_stop(struct ieee80211_node
*ni
)
3011 callout_drain(&ni
->ni_mltimer
);
3015 mesh_peer_backoff_cb(void *arg
)
3017 struct ieee80211_node
*ni
= (struct ieee80211_node
*)arg
;
3019 /* After backoff timeout, try to peer automatically again. */
3024 * Mesh Peer Link Management FSM timeout handling.
3027 mesh_peer_timeout_cb(void *arg
)
3029 struct ieee80211_node
*ni
= (struct ieee80211_node
*)arg
;
3032 IEEE80211_NOTE(ni
->ni_vap
, IEEE80211_MSG_MESH
,
3033 ni
, "mesh link timeout, state %d, retry counter %d",
3034 ni
->ni_mlstate
, ni
->ni_mlrcnt
);
3036 switch (ni
->ni_mlstate
) {
3037 case IEEE80211_NODE_MESH_IDLE
:
3038 case IEEE80211_NODE_MESH_ESTABLISHED
:
3040 case IEEE80211_NODE_MESH_OPENSNT
:
3041 case IEEE80211_NODE_MESH_OPENRCV
:
3042 if (ni
->ni_mlrcnt
== ieee80211_mesh_maxretries
) {
3043 args
[0] = ni
->ni_mlpid
;
3044 args
[2] = IEEE80211_REASON_MESH_MAX_RETRIES
;
3045 ieee80211_send_action(ni
,
3046 IEEE80211_ACTION_CAT_SELF_PROT
,
3047 IEEE80211_ACTION_MESHPEERING_CLOSE
, args
);
3049 mesh_linkchange(ni
, IEEE80211_NODE_MESH_HOLDING
);
3050 mesh_peer_timeout_setup(ni
);
3052 args
[0] = ni
->ni_mlpid
;
3053 ieee80211_send_action(ni
,
3054 IEEE80211_ACTION_CAT_SELF_PROT
,
3055 IEEE80211_ACTION_MESHPEERING_OPEN
, args
);
3057 mesh_peer_timeout_backoff(ni
);
3060 case IEEE80211_NODE_MESH_CONFIRMRCV
:
3061 args
[0] = ni
->ni_mlpid
;
3062 args
[2] = IEEE80211_REASON_MESH_CONFIRM_TIMEOUT
;
3063 ieee80211_send_action(ni
,
3064 IEEE80211_ACTION_CAT_SELF_PROT
,
3065 IEEE80211_ACTION_MESHPEERING_CLOSE
, args
);
3066 mesh_linkchange(ni
, IEEE80211_NODE_MESH_HOLDING
);
3067 mesh_peer_timeout_setup(ni
);
3069 case IEEE80211_NODE_MESH_HOLDING
:
3071 if (ni
->ni_mlhcnt
>= ieee80211_mesh_maxholding
)
3072 callout_reset(&ni
->ni_mlhtimer
,
3073 ieee80211_mesh_backofftimeout
,
3074 mesh_peer_backoff_cb
, ni
);
3075 mesh_linkchange(ni
, IEEE80211_NODE_MESH_IDLE
);
3081 mesh_verify_meshid(struct ieee80211vap
*vap
, const uint8_t *ie
)
3083 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
3085 if (ie
== NULL
|| ie
[1] != ms
->ms_idlen
)
3087 return memcmp(ms
->ms_id
, ie
+ 2, ms
->ms_idlen
);
3091 * Check if we are using the same algorithms for this mesh.
3094 mesh_verify_meshconf(struct ieee80211vap
*vap
, const uint8_t *ie
)
3096 const struct ieee80211_meshconf_ie
*meshconf
=
3097 (const struct ieee80211_meshconf_ie
*) ie
;
3098 const struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
3100 if (meshconf
== NULL
)
3102 if (meshconf
->conf_pselid
!= ms
->ms_ppath
->mpp_ie
) {
3103 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_MESH
,
3104 "unknown path selection algorithm: 0x%x\n",
3105 meshconf
->conf_pselid
);
3108 if (meshconf
->conf_pmetid
!= ms
->ms_pmetric
->mpm_ie
) {
3109 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_MESH
,
3110 "unknown path metric algorithm: 0x%x\n",
3111 meshconf
->conf_pmetid
);
3114 if (meshconf
->conf_ccid
!= 0) {
3115 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_MESH
,
3116 "unknown congestion control algorithm: 0x%x\n",
3117 meshconf
->conf_ccid
);
3120 if (meshconf
->conf_syncid
!= IEEE80211_MESHCONF_SYNC_NEIGHOFF
) {
3121 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_MESH
,
3122 "unknown sync algorithm: 0x%x\n",
3123 meshconf
->conf_syncid
);
3126 if (meshconf
->conf_authid
!= 0) {
3127 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_MESH
,
3128 "unknown auth auth algorithm: 0x%x\n",
3129 meshconf
->conf_pselid
);
3132 /* Not accepting peers */
3133 if (!(meshconf
->conf_cap
& IEEE80211_MESHCONF_CAP_AP
)) {
3134 IEEE80211_DPRINTF(vap
, IEEE80211_MSG_MESH
,
3135 "not accepting peers: 0x%x\n", meshconf
->conf_cap
);
3142 mesh_verify_meshpeer(struct ieee80211vap
*vap
, uint8_t subtype
,
3145 const struct ieee80211_meshpeer_ie
*meshpeer
=
3146 (const struct ieee80211_meshpeer_ie
*) ie
;
3148 if (meshpeer
== NULL
||
3149 meshpeer
->peer_len
< IEEE80211_MPM_BASE_SZ
||
3150 meshpeer
->peer_len
> IEEE80211_MPM_MAX_SZ
)
3152 if (meshpeer
->peer_proto
!= IEEE80211_MPPID_MPM
) {
3153 IEEE80211_DPRINTF(vap
,
3154 IEEE80211_MSG_ACTION
| IEEE80211_MSG_MESH
,
3155 "Only MPM protocol is supported (proto: 0x%02X)",
3156 meshpeer
->peer_proto
);
3160 case IEEE80211_ACTION_MESHPEERING_OPEN
:
3161 if (meshpeer
->peer_len
!= IEEE80211_MPM_BASE_SZ
)
3164 case IEEE80211_ACTION_MESHPEERING_CONFIRM
:
3165 if (meshpeer
->peer_len
!= IEEE80211_MPM_BASE_SZ
+ 2)
3168 case IEEE80211_ACTION_MESHPEERING_CLOSE
:
3169 if (meshpeer
->peer_len
< IEEE80211_MPM_BASE_SZ
+ 2)
3171 if (meshpeer
->peer_len
== (IEEE80211_MPM_BASE_SZ
+ 2) &&
3172 meshpeer
->peer_linkid
!= 0)
3174 if (meshpeer
->peer_rcode
== 0)
3182 * Add a Mesh ID IE to a frame.
3185 ieee80211_add_meshid(uint8_t *frm
, struct ieee80211vap
*vap
)
3187 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
3189 KASSERT(vap
->iv_opmode
== IEEE80211_M_MBSS
, ("not a mbss vap"));
3191 *frm
++ = IEEE80211_ELEMID_MESHID
;
3192 *frm
++ = ms
->ms_idlen
;
3193 memcpy(frm
, ms
->ms_id
, ms
->ms_idlen
);
3194 return frm
+ ms
->ms_idlen
;
3198 * Add a Mesh Configuration IE to a frame.
3199 * For now just use HWMP routing, Airtime link metric, Null Congestion
3200 * Signaling, Null Sync Protocol and Null Authentication.
3203 ieee80211_add_meshconf(uint8_t *frm
, struct ieee80211vap
*vap
)
3205 const struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
3208 KASSERT(vap
->iv_opmode
== IEEE80211_M_MBSS
, ("not a MBSS vap"));
3210 *frm
++ = IEEE80211_ELEMID_MESHCONF
;
3211 *frm
++ = IEEE80211_MESH_CONF_SZ
;
3212 *frm
++ = ms
->ms_ppath
->mpp_ie
; /* path selection */
3213 *frm
++ = ms
->ms_pmetric
->mpm_ie
; /* link metric */
3214 *frm
++ = IEEE80211_MESHCONF_CC_DISABLED
;
3215 *frm
++ = IEEE80211_MESHCONF_SYNC_NEIGHOFF
;
3216 *frm
++ = IEEE80211_MESHCONF_AUTH_DISABLED
;
3217 /* NB: set the number of neighbors before the rest */
3218 *frm
= (ms
->ms_neighbors
> IEEE80211_MESH_MAX_NEIGHBORS
?
3219 IEEE80211_MESH_MAX_NEIGHBORS
: ms
->ms_neighbors
) << 1;
3220 if (ms
->ms_flags
& IEEE80211_MESHFLAGS_GATE
)
3221 *frm
|= IEEE80211_MESHCONF_FORM_GATE
;
3224 if (ms
->ms_flags
& IEEE80211_MESHFLAGS_AP
)
3225 caps
|= IEEE80211_MESHCONF_CAP_AP
;
3226 if (ms
->ms_flags
& IEEE80211_MESHFLAGS_FWD
)
3227 caps
|= IEEE80211_MESHCONF_CAP_FWRD
;
3233 * Add a Mesh Peer Management IE to a frame.
3236 ieee80211_add_meshpeer(uint8_t *frm
, uint8_t subtype
, uint16_t localid
,
3237 uint16_t peerid
, uint16_t reason
)
3240 KASSERT(localid
!= 0, ("localid == 0"));
3242 *frm
++ = IEEE80211_ELEMID_MESHPEER
;
3244 case IEEE80211_ACTION_MESHPEERING_OPEN
:
3245 *frm
++ = IEEE80211_MPM_BASE_SZ
; /* length */
3246 ADDSHORT(frm
, IEEE80211_MPPID_MPM
); /* proto */
3247 ADDSHORT(frm
, localid
); /* local ID */
3249 case IEEE80211_ACTION_MESHPEERING_CONFIRM
:
3250 KASSERT(peerid
!= 0, ("sending peer confirm without peer id"));
3251 *frm
++ = IEEE80211_MPM_BASE_SZ
+ 2; /* length */
3252 ADDSHORT(frm
, IEEE80211_MPPID_MPM
); /* proto */
3253 ADDSHORT(frm
, localid
); /* local ID */
3254 ADDSHORT(frm
, peerid
); /* peer ID */
3256 case IEEE80211_ACTION_MESHPEERING_CLOSE
:
3258 *frm
++ = IEEE80211_MPM_MAX_SZ
; /* length */
3260 *frm
++ = IEEE80211_MPM_BASE_SZ
+ 2; /* length */
3261 ADDSHORT(frm
, IEEE80211_MPPID_MPM
); /* proto */
3262 ADDSHORT(frm
, localid
); /* local ID */
3264 ADDSHORT(frm
, peerid
); /* peer ID */
3265 ADDSHORT(frm
, reason
);
3272 * Compute an Airtime Link Metric for the link with this node.
3274 * Based on Draft 3.0 spec (11B.10, p.149).
3277 * Max 802.11s overhead.
3279 #define IEEE80211_MESH_MAXOVERHEAD \
3280 (sizeof(struct ieee80211_qosframe_addr4) \
3281 + sizeof(struct ieee80211_meshcntl_ae10) \
3282 + sizeof(struct llc) \
3283 + IEEE80211_ADDR_LEN \
3284 + IEEE80211_WEP_IVLEN \
3285 + IEEE80211_WEP_KIDLEN \
3286 + IEEE80211_WEP_CRCLEN \
3287 + IEEE80211_WEP_MICLEN \
3288 + IEEE80211_CRC_LEN)
3290 mesh_airtime_calc(struct ieee80211_node
*ni
)
3293 #define S_FACTOR (2 * M_BITS)
3294 struct ieee80211com
*ic
= ni
->ni_ic
;
3295 struct ifnet
*ifp
= ni
->ni_vap
->iv_ifp
;
3296 const static int nbits
= 8192 << M_BITS
;
3297 uint32_t overhead
, rate
, errrate
;
3300 /* Time to transmit a frame */
3301 rate
= ni
->ni_txrate
;
3302 overhead
= ieee80211_compute_duration(ic
->ic_rt
,
3303 ifp
->if_mtu
+ IEEE80211_MESH_MAXOVERHEAD
, rate
, 0) << M_BITS
;
3304 /* Error rate in percentage */
3305 /* XXX assuming small failures are ok */
3306 errrate
= (((ifp
->if_get_counter(ifp
, IFCOUNTER_OERRORS
) +
3307 ifp
->if_get_counter(ifp
, IFCOUNTER_IERRORS
)) / 100) << M_BITS
)
3309 res
= (overhead
+ (nbits
/ rate
)) *
3310 ((1 << S_FACTOR
) / ((1 << M_BITS
) - errrate
));
3312 return (uint32_t)(res
>> S_FACTOR
);
3318 * Add a Mesh Link Metric report IE to a frame.
3321 ieee80211_add_meshlmetric(uint8_t *frm
, uint8_t flags
, uint32_t metric
)
3323 *frm
++ = IEEE80211_ELEMID_MESHLINK
;
3326 ADDWORD(frm
, metric
);
3331 * Add a Mesh Gate Announcement IE to a frame.
3334 ieee80211_add_meshgate(uint8_t *frm
, struct ieee80211_meshgann_ie
*ie
)
3336 *frm
++ = IEEE80211_ELEMID_MESHGANN
; /* ie */
3337 *frm
++ = IEEE80211_MESHGANN_BASE_SZ
; /* len */
3338 *frm
++ = ie
->gann_flags
;
3339 *frm
++ = ie
->gann_hopcount
;
3340 *frm
++ = ie
->gann_ttl
;
3341 IEEE80211_ADDR_COPY(frm
, ie
->gann_addr
);
3343 ADDWORD(frm
, ie
->gann_seq
);
3344 ADDSHORT(frm
, ie
->gann_interval
);
3351 * Initialize any mesh-specific node state.
3354 ieee80211_mesh_node_init(struct ieee80211vap
*vap
, struct ieee80211_node
*ni
)
3356 ni
->ni_flags
|= IEEE80211_NODE_QOS
;
3357 callout_init(&ni
->ni_mltimer
, 1);
3358 callout_init(&ni
->ni_mlhtimer
, 1);
3362 * Cleanup any mesh-specific node state.
3365 ieee80211_mesh_node_cleanup(struct ieee80211_node
*ni
)
3367 struct ieee80211vap
*vap
= ni
->ni_vap
;
3368 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
3370 callout_drain(&ni
->ni_mltimer
);
3371 callout_drain(&ni
->ni_mlhtimer
);
3372 /* NB: short-circuit callbacks after mesh_vdetach */
3373 if (vap
->iv_mesh
!= NULL
)
3374 ms
->ms_ppath
->mpp_peerdown(ni
);
3378 ieee80211_parse_meshid(struct ieee80211_node
*ni
, const uint8_t *ie
)
3380 ni
->ni_meshidlen
= ie
[1];
3381 memcpy(ni
->ni_meshid
, ie
+ 2, ie
[1]);
3385 * Setup mesh-specific node state on neighbor discovery.
3388 ieee80211_mesh_init_neighbor(struct ieee80211_node
*ni
,
3389 const struct ieee80211_frame
*wh
,
3390 const struct ieee80211_scanparams
*sp
)
3392 ieee80211_parse_meshid(ni
, sp
->meshid
);
3396 ieee80211_mesh_update_beacon(struct ieee80211vap
*vap
,
3397 struct ieee80211_beacon_offsets
*bo
)
3399 KASSERT(vap
->iv_opmode
== IEEE80211_M_MBSS
, ("not a MBSS vap"));
3401 if (isset(bo
->bo_flags
, IEEE80211_BEACON_MESHCONF
)) {
3402 (void)ieee80211_add_meshconf(bo
->bo_meshconf
, vap
);
3403 clrbit(bo
->bo_flags
, IEEE80211_BEACON_MESHCONF
);
3408 mesh_ioctl_get80211(struct ieee80211vap
*vap
, struct ieee80211req
*ireq
)
3410 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
3411 uint8_t tmpmeshid
[IEEE80211_NWID_LEN
];
3412 struct ieee80211_mesh_route
*rt
;
3413 struct ieee80211req_mesh_route
*imr
;
3418 if (vap
->iv_opmode
!= IEEE80211_M_MBSS
)
3422 switch (ireq
->i_type
) {
3423 case IEEE80211_IOC_MESH_ID
:
3424 ireq
->i_len
= ms
->ms_idlen
;
3425 memcpy(tmpmeshid
, ms
->ms_id
, ireq
->i_len
);
3426 error
= copyout(tmpmeshid
, ireq
->i_data
, ireq
->i_len
);
3428 case IEEE80211_IOC_MESH_AP
:
3429 ireq
->i_val
= (ms
->ms_flags
& IEEE80211_MESHFLAGS_AP
) != 0;
3431 case IEEE80211_IOC_MESH_FWRD
:
3432 ireq
->i_val
= (ms
->ms_flags
& IEEE80211_MESHFLAGS_FWD
) != 0;
3434 case IEEE80211_IOC_MESH_GATE
:
3435 ireq
->i_val
= (ms
->ms_flags
& IEEE80211_MESHFLAGS_GATE
) != 0;
3437 case IEEE80211_IOC_MESH_TTL
:
3438 ireq
->i_val
= ms
->ms_ttl
;
3440 case IEEE80211_IOC_MESH_RTCMD
:
3441 switch (ireq
->i_val
) {
3442 case IEEE80211_MESH_RTCMD_LIST
:
3445 TAILQ_FOREACH(rt
, &ms
->ms_routes
, rt_next
) {
3446 len
+= sizeof(*imr
);
3449 if (len
> ireq
->i_len
|| ireq
->i_len
< sizeof(*imr
)) {
3455 p
= IEEE80211_MALLOC(len
, M_TEMP
,
3456 IEEE80211_M_NOWAIT
| IEEE80211_M_ZERO
);
3461 TAILQ_FOREACH(rt
, &ms
->ms_routes
, rt_next
) {
3464 imr
= (struct ieee80211req_mesh_route
*)
3466 IEEE80211_ADDR_COPY(imr
->imr_dest
,
3468 IEEE80211_ADDR_COPY(imr
->imr_nexthop
,
3470 imr
->imr_metric
= rt
->rt_metric
;
3471 imr
->imr_nhops
= rt
->rt_nhops
;
3473 ieee80211_mesh_rt_update(rt
, 0);
3474 imr
->imr_lastmseq
= rt
->rt_lastmseq
;
3475 imr
->imr_flags
= rt
->rt_flags
; /* last */
3476 off
+= sizeof(*imr
);
3479 error
= copyout(p
, (uint8_t *)ireq
->i_data
,
3481 IEEE80211_FREE(p
, M_TEMP
);
3483 case IEEE80211_MESH_RTCMD_FLUSH
:
3484 case IEEE80211_MESH_RTCMD_ADD
:
3485 case IEEE80211_MESH_RTCMD_DELETE
:
3491 case IEEE80211_IOC_MESH_PR_METRIC
:
3492 len
= strlen(ms
->ms_pmetric
->mpm_descr
);
3493 if (ireq
->i_len
< len
)
3496 error
= copyout(ms
->ms_pmetric
->mpm_descr
,
3497 (uint8_t *)ireq
->i_data
, len
);
3499 case IEEE80211_IOC_MESH_PR_PATH
:
3500 len
= strlen(ms
->ms_ppath
->mpp_descr
);
3501 if (ireq
->i_len
< len
)
3504 error
= copyout(ms
->ms_ppath
->mpp_descr
,
3505 (uint8_t *)ireq
->i_data
, len
);
3513 IEEE80211_IOCTL_GET(mesh
, mesh_ioctl_get80211
);
3516 mesh_ioctl_set80211(struct ieee80211vap
*vap
, struct ieee80211req
*ireq
)
3518 struct ieee80211_mesh_state
*ms
= vap
->iv_mesh
;
3519 uint8_t tmpmeshid
[IEEE80211_NWID_LEN
];
3520 uint8_t tmpaddr
[IEEE80211_ADDR_LEN
];
3521 char tmpproto
[IEEE80211_MESH_PROTO_DSZ
];
3524 if (vap
->iv_opmode
!= IEEE80211_M_MBSS
)
3528 switch (ireq
->i_type
) {
3529 case IEEE80211_IOC_MESH_ID
:
3530 if (ireq
->i_val
!= 0 || ireq
->i_len
> IEEE80211_MESHID_LEN
)
3532 error
= copyin(ireq
->i_data
, tmpmeshid
, ireq
->i_len
);
3535 memset(ms
->ms_id
, 0, IEEE80211_NWID_LEN
);
3536 ms
->ms_idlen
= ireq
->i_len
;
3537 memcpy(ms
->ms_id
, tmpmeshid
, ireq
->i_len
);
3540 case IEEE80211_IOC_MESH_AP
:
3542 ms
->ms_flags
|= IEEE80211_MESHFLAGS_AP
;
3544 ms
->ms_flags
&= ~IEEE80211_MESHFLAGS_AP
;
3547 case IEEE80211_IOC_MESH_FWRD
:
3549 ms
->ms_flags
|= IEEE80211_MESHFLAGS_FWD
;
3551 ms
->ms_flags
&= ~IEEE80211_MESHFLAGS_FWD
;
3552 mesh_gatemode_setup(vap
);
3554 case IEEE80211_IOC_MESH_GATE
:
3556 ms
->ms_flags
|= IEEE80211_MESHFLAGS_GATE
;
3558 ms
->ms_flags
&= ~IEEE80211_MESHFLAGS_GATE
;
3560 case IEEE80211_IOC_MESH_TTL
:
3561 ms
->ms_ttl
= (uint8_t) ireq
->i_val
;
3563 case IEEE80211_IOC_MESH_RTCMD
:
3564 switch (ireq
->i_val
) {
3565 case IEEE80211_MESH_RTCMD_LIST
:
3567 case IEEE80211_MESH_RTCMD_FLUSH
:
3568 ieee80211_mesh_rt_flush(vap
);
3570 case IEEE80211_MESH_RTCMD_ADD
:
3571 error
= copyin(ireq
->i_data
, tmpaddr
,
3572 IEEE80211_ADDR_LEN
);
3575 if (IEEE80211_ADDR_EQ(vap
->iv_myaddr
, tmpaddr
) ||
3576 IEEE80211_ADDR_EQ(broadcastaddr
, tmpaddr
))
3578 ieee80211_mesh_discover(vap
, tmpaddr
, NULL
);
3580 case IEEE80211_MESH_RTCMD_DELETE
:
3581 error
= copyin(ireq
->i_data
, tmpaddr
,
3582 IEEE80211_ADDR_LEN
);
3585 ieee80211_mesh_rt_del(vap
, tmpaddr
);
3591 case IEEE80211_IOC_MESH_PR_METRIC
:
3592 error
= copyin(ireq
->i_data
, tmpproto
, sizeof(tmpproto
));
3594 error
= mesh_select_proto_metric(vap
, tmpproto
);
3599 case IEEE80211_IOC_MESH_PR_PATH
:
3600 error
= copyin(ireq
->i_data
, tmpproto
, sizeof(tmpproto
));
3602 error
= mesh_select_proto_path(vap
, tmpproto
);
3612 IEEE80211_IOCTL_SET(mesh
, mesh_ioctl_set80211
);