ifieee80211.c revision 291352
177218Sphk/*
277218Sphk * Copyright 2001 The Aerospace Corporation.  All rights reserved.
377218Sphk *
477218Sphk * Redistribution and use in source and binary forms, with or without
577218Sphk * modification, are permitted provided that the following conditions
677218Sphk * are met:
777218Sphk * 1. Redistributions of source code must retain the above copyright
877218Sphk *    notice, this list of conditions and the following disclaimer.
977218Sphk * 2. Redistributions in binary form must reproduce the above copyright
1077218Sphk *    notice, this list of conditions and the following disclaimer in the
1177218Sphk *    documentation and/or other materials provided with the distribution.
1291454Sbrooks * 3. The name of The Aerospace Corporation may not be used to endorse or
1391454Sbrooks *    promote products derived from this software.
1477218Sphk *
1577218Sphk * THIS SOFTWARE IS PROVIDED BY THE AEROSPACE CORPORATION ``AS IS'' AND
1677218Sphk * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1777218Sphk * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1877218Sphk * ARE DISCLAIMED.  IN NO EVENT SHALL THE AEROSPACE CORPORATION BE LIABLE
1977218Sphk * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2077218Sphk * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2177218Sphk * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2277218Sphk * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2377218Sphk * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2477218Sphk * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2577218Sphk * SUCH DAMAGE.
2677218Sphk *
2777218Sphk * $FreeBSD: head/sbin/ifconfig/ifieee80211.c 291352 2015-11-26 01:58:50Z adrian $
2877218Sphk */
2977218Sphk
3077218Sphk/*-
3177218Sphk * Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
3277218Sphk * All rights reserved.
3377218Sphk *
3477218Sphk * This code is derived from software contributed to The NetBSD Foundation
3577218Sphk * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
3677218Sphk * NASA Ames Research Center.
3777218Sphk *
3877218Sphk * Redistribution and use in source and binary forms, with or without
3977218Sphk * modification, are permitted provided that the following conditions
4077218Sphk * are met:
4177218Sphk * 1. Redistributions of source code must retain the above copyright
4277218Sphk *    notice, this list of conditions and the following disclaimer.
4377218Sphk * 2. Redistributions in binary form must reproduce the above copyright
4477218Sphk *    notice, this list of conditions and the following disclaimer in the
4577218Sphk *    documentation and/or other materials provided with the distribution.
4677218Sphk *
4777218Sphk * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
4877218Sphk * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
4977218Sphk * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
5077218Sphk * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
5177218Sphk * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
5277218Sphk * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
5377218Sphk * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
5477218Sphk * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
5577218Sphk * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
5677218Sphk * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
5777218Sphk * POSSIBILITY OF SUCH DAMAGE.
5877218Sphk */
5977218Sphk
6077218Sphk#include <sys/param.h>
6177218Sphk#include <sys/ioctl.h>
6277218Sphk#include <sys/socket.h>
6377218Sphk#include <sys/sysctl.h>
6477218Sphk#include <sys/time.h>
6577218Sphk
6677218Sphk#include <net/ethernet.h>
6777218Sphk#include <net/if.h>
6877218Sphk#include <net/if_dl.h>
6977218Sphk#include <net/if_types.h>
70138593Ssam#include <net/if_media.h>
7177218Sphk#include <net/route.h>
72138593Ssam
73116957Ssam#include <net80211/ieee80211_ioctl.h>
74190456Ssam#include <net80211/ieee80211_freebsd.h>
75190456Ssam#include <net80211/ieee80211_superg.h>
76190456Ssam#include <net80211/ieee80211_tdma.h>
77195618Srpaulo#include <net80211/ieee80211_mesh.h>
7877218Sphk
79187801Ssam#include <assert.h>
8077218Sphk#include <ctype.h>
8177218Sphk#include <err.h>
8277218Sphk#include <errno.h>
8377218Sphk#include <fcntl.h>
84146873Sjhb#include <inttypes.h>
8577218Sphk#include <stdio.h>
8677218Sphk#include <stdlib.h>
8777218Sphk#include <string.h>
8877218Sphk#include <unistd.h>
89155931Ssam#include <stdarg.h>
90173275Ssam#include <stddef.h>		/* NB: for offsetof */
9177218Sphk
9277218Sphk#include "ifconfig.h"
93178354Ssam#include "regdomain.h"
9477218Sphk
95178354Ssam#ifndef IEEE80211_FIXED_RATE_NONE
96178354Ssam#define	IEEE80211_FIXED_RATE_NONE	0xff
97178354Ssam#endif
98178354Ssam
99178354Ssam/* XXX need these publicly defined or similar */
100178354Ssam#ifndef IEEE80211_NODE_AUTH
101194136Ssam#define	IEEE80211_NODE_AUTH	0x000001	/* authorized for data */
102194136Ssam#define	IEEE80211_NODE_QOS	0x000002	/* QoS enabled */
103194136Ssam#define	IEEE80211_NODE_ERP	0x000004	/* ERP enabled */
104194136Ssam#define	IEEE80211_NODE_PWR_MGT	0x000010	/* power save mode enabled */
105194136Ssam#define	IEEE80211_NODE_AREF	0x000020	/* authentication ref held */
106194136Ssam#define	IEEE80211_NODE_HT	0x000040	/* HT enabled */
107194136Ssam#define	IEEE80211_NODE_HTCOMPAT	0x000080	/* HT setup w/ vendor OUI's */
108194136Ssam#define	IEEE80211_NODE_WPS	0x000100	/* WPS association */
109194136Ssam#define	IEEE80211_NODE_TSN	0x000200	/* TSN association */
110194136Ssam#define	IEEE80211_NODE_AMPDU_RX	0x000400	/* AMPDU rx enabled */
111194136Ssam#define	IEEE80211_NODE_AMPDU_TX	0x000800	/* AMPDU tx enabled */
112194136Ssam#define	IEEE80211_NODE_MIMO_PS	0x001000	/* MIMO power save enabled */
113194136Ssam#define	IEEE80211_NODE_MIMO_RTS	0x002000	/* send RTS in MIMO PS */
114194136Ssam#define	IEEE80211_NODE_RIFS	0x004000	/* RIFS enabled */
115194136Ssam#define	IEEE80211_NODE_SGI20	0x008000	/* Short GI in HT20 enabled */
116194136Ssam#define	IEEE80211_NODE_SGI40	0x010000	/* Short GI in HT40 enabled */
117194136Ssam#define	IEEE80211_NODE_ASSOCID	0x020000	/* xmit requires associd */
118194136Ssam#define	IEEE80211_NODE_AMSDU_RX	0x040000	/* AMSDU rx enabled */
119194136Ssam#define	IEEE80211_NODE_AMSDU_TX	0x080000	/* AMSDU tx enabled */
120178354Ssam#endif
121178354Ssam
122187801Ssam#define	MAXCHAN	1536		/* max 1.5K channels */
123187801Ssam
124173275Ssam#define	MAXCOL	78
125173275Ssamstatic	int col;
126173275Ssamstatic	char spacer;
127173275Ssam
128173275Ssamstatic void LINE_INIT(char c);
129173275Ssamstatic void LINE_BREAK(void);
130173275Ssamstatic void LINE_CHECK(const char *fmt, ...);
131173275Ssam
132188784Ssamstatic const char *modename[IEEE80211_MODE_MAX] = {
133188784Ssam	[IEEE80211_MODE_AUTO]	  = "auto",
134188784Ssam	[IEEE80211_MODE_11A]	  = "11a",
135188784Ssam	[IEEE80211_MODE_11B]	  = "11b",
136188784Ssam	[IEEE80211_MODE_11G]	  = "11g",
137188784Ssam	[IEEE80211_MODE_FH]	  = "fh",
138188784Ssam	[IEEE80211_MODE_TURBO_A]  = "turboA",
139188784Ssam	[IEEE80211_MODE_TURBO_G]  = "turboG",
140188784Ssam	[IEEE80211_MODE_STURBO_A] = "sturbo",
141188784Ssam	[IEEE80211_MODE_11NA]	  = "11na",
142188784Ssam	[IEEE80211_MODE_11NG]	  = "11ng",
143188784Ssam	[IEEE80211_MODE_HALF]	  = "half",
144188784Ssam	[IEEE80211_MODE_QUARTER]  = "quarter"
145173275Ssam};
146173275Ssam
147178354Ssamstatic void set80211(int s, int type, int val, int len, void *data);
148173275Ssamstatic int get80211(int s, int type, void *data, int len);
149173275Ssamstatic int get80211len(int s, int type, void *data, int len, int *plen);
150173275Ssamstatic int get80211val(int s, int type, int *val);
15177218Sphkstatic const char *get_string(const char *val, const char *sep,
15277218Sphk    u_int8_t *buf, int *lenp);
15377218Sphkstatic void print_string(const u_int8_t *buf, int len);
154178354Ssamstatic void print_regdomain(const struct ieee80211_regdomain *, int);
155178354Ssamstatic void print_channels(int, const struct ieee80211req_chaninfo *,
156178354Ssam    int allchans, int verbose);
157178354Ssamstatic void regdomain_makechannels(struct ieee80211_regdomain_req *,
158178354Ssam    const struct ieee80211_devcaps_req *);
159195618Srpaulostatic const char *mesh_linkstate_string(uint8_t state);
16077218Sphk
161187801Ssamstatic struct ieee80211req_chaninfo *chaninfo;
162178354Ssamstatic struct ieee80211_regdomain regdomain;
163178354Ssamstatic int gotregdomain = 0;
164178354Ssamstatic struct ieee80211_roamparams_req roamparams;
165178354Ssamstatic int gotroam = 0;
166178354Ssamstatic struct ieee80211_txparams_req txparams;
167178354Ssamstatic int gottxparams = 0;
168173275Ssamstatic struct ieee80211_channel curchan;
169173275Ssamstatic int gotcurchan = 0;
170178354Ssamstatic struct ifmediareq *ifmr;
171173275Ssamstatic int htconf = 0;
172173275Ssamstatic	int gothtconf = 0;
173170531Ssam
174173275Ssamstatic void
175173275Ssamgethtconf(int s)
176173275Ssam{
177173275Ssam	if (gothtconf)
178173275Ssam		return;
179173275Ssam	if (get80211val(s, IEEE80211_IOC_HTCONF, &htconf) < 0)
180173275Ssam		warn("unable to get HT configuration information");
181173275Ssam	gothtconf = 1;
182173275Ssam}
183173275Ssam
184170531Ssam/*
185170531Ssam * Collect channel info from the kernel.  We use this (mostly)
186170531Ssam * to handle mapping between frequency and IEEE channel number.
187170531Ssam */
188170531Ssamstatic void
189170531Ssamgetchaninfo(int s)
190170531Ssam{
191187801Ssam	if (chaninfo != NULL)
192170531Ssam		return;
193187801Ssam	chaninfo = malloc(IEEE80211_CHANINFO_SIZE(MAXCHAN));
194187801Ssam	if (chaninfo == NULL)
195187801Ssam		errx(1, "no space for channel list");
196187801Ssam	if (get80211(s, IEEE80211_IOC_CHANINFO, chaninfo,
197187801Ssam	    IEEE80211_CHANINFO_SIZE(MAXCHAN)) < 0)
198187801Ssam		err(1, "unable to get channel information");
199170531Ssam	ifmr = ifmedia_getstate(s);
200173275Ssam	gethtconf(s);
201170531Ssam}
202170531Ssam
203178354Ssamstatic struct regdata *
204178354Ssamgetregdata(void)
205178354Ssam{
206178354Ssam	static struct regdata *rdp = NULL;
207178354Ssam	if (rdp == NULL) {
208178354Ssam		rdp = lib80211_alloc_regdata();
209178354Ssam		if (rdp == NULL)
210181198Ssam			errx(-1, "missing or corrupted regdomain database");
211178354Ssam	}
212178354Ssam	return rdp;
213178354Ssam}
214178354Ssam
215170531Ssam/*
216170531Ssam * Given the channel at index i with attributes from,
217170531Ssam * check if there is a channel with attributes to in
218170531Ssam * the channel table.  With suitable attributes this
219170531Ssam * allows the caller to look for promotion; e.g. from
220170531Ssam * 11b > 11g.
221170531Ssam */
222138593Ssamstatic int
223170531Ssamcanpromote(int i, int from, int to)
224170531Ssam{
225187801Ssam	const struct ieee80211_channel *fc = &chaninfo->ic_chans[i];
226170531Ssam	int j;
227170531Ssam
228170531Ssam	if ((fc->ic_flags & from) != from)
229170531Ssam		return i;
230170531Ssam	/* NB: quick check exploiting ordering of chans w/ same frequency */
231187801Ssam	if (i+1 < chaninfo->ic_nchans &&
232187801Ssam	    chaninfo->ic_chans[i+1].ic_freq == fc->ic_freq &&
233187801Ssam	    (chaninfo->ic_chans[i+1].ic_flags & to) == to)
234170531Ssam		return i+1;
235170531Ssam	/* brute force search in case channel list is not ordered */
236187801Ssam	for (j = 0; j < chaninfo->ic_nchans; j++) {
237187801Ssam		const struct ieee80211_channel *tc = &chaninfo->ic_chans[j];
238170531Ssam		if (j != i &&
239170531Ssam		    tc->ic_freq == fc->ic_freq && (tc->ic_flags & to) == to)
240170531Ssam		return j;
241170531Ssam	}
242170531Ssam	return i;
243170531Ssam}
244170531Ssam
245170531Ssam/*
246170531Ssam * Handle channel promotion.  When a channel is specified with
247170531Ssam * only a frequency we want to promote it to the ``best'' channel
248170531Ssam * available.  The channel list has separate entries for 11b, 11g,
249170531Ssam * 11a, and 11n[ga] channels so specifying a frequency w/o any
250170531Ssam * attributes requires we upgrade, e.g. from 11b -> 11g.  This
251170531Ssam * gets complicated when the channel is specified on the same
252170531Ssam * command line with a media request that constrains the available
253170531Ssam * channe list (e.g. mode 11a); we want to honor that to avoid
254170531Ssam * confusing behaviour.
255170531Ssam */
256170531Ssamstatic int
257170531Ssampromote(int i)
258170531Ssam{
259170531Ssam	/*
260170531Ssam	 * Query the current mode of the interface in case it's
261170531Ssam	 * constrained (e.g. to 11a).  We must do this carefully
262170531Ssam	 * as there may be a pending ifmedia request in which case
263170531Ssam	 * asking the kernel will give us the wrong answer.  This
264170531Ssam	 * is an unfortunate side-effect of the way ifconfig is
265170531Ssam	 * structure for modularity (yech).
266170531Ssam	 *
267170531Ssam	 * NB: ifmr is actually setup in getchaninfo (above); we
268170531Ssam	 *     assume it's called coincident with to this call so
269170531Ssam	 *     we have a ``current setting''; otherwise we must pass
270170531Ssam	 *     the socket descriptor down to here so we can make
271170531Ssam	 *     the ifmedia_getstate call ourselves.
272170531Ssam	 */
273170531Ssam	int chanmode = ifmr != NULL ? IFM_MODE(ifmr->ifm_current) : IFM_AUTO;
274170531Ssam
275170531Ssam	/* when ambiguous promote to ``best'' */
276170531Ssam	/* NB: we abitrarily pick HT40+ over HT40- */
277170531Ssam	if (chanmode != IFM_IEEE80211_11B)
278170531Ssam		i = canpromote(i, IEEE80211_CHAN_B, IEEE80211_CHAN_G);
279173275Ssam	if (chanmode != IFM_IEEE80211_11G && (htconf & 1)) {
280170531Ssam		i = canpromote(i, IEEE80211_CHAN_G,
281170531Ssam			IEEE80211_CHAN_G | IEEE80211_CHAN_HT20);
282173275Ssam		if (htconf & 2) {
283173275Ssam			i = canpromote(i, IEEE80211_CHAN_G,
284173275Ssam				IEEE80211_CHAN_G | IEEE80211_CHAN_HT40D);
285173275Ssam			i = canpromote(i, IEEE80211_CHAN_G,
286173275Ssam				IEEE80211_CHAN_G | IEEE80211_CHAN_HT40U);
287173275Ssam		}
288170531Ssam	}
289173275Ssam	if (chanmode != IFM_IEEE80211_11A && (htconf & 1)) {
290170531Ssam		i = canpromote(i, IEEE80211_CHAN_A,
291170531Ssam			IEEE80211_CHAN_A | IEEE80211_CHAN_HT20);
292173275Ssam		if (htconf & 2) {
293173275Ssam			i = canpromote(i, IEEE80211_CHAN_A,
294173275Ssam				IEEE80211_CHAN_A | IEEE80211_CHAN_HT40D);
295173275Ssam			i = canpromote(i, IEEE80211_CHAN_A,
296173275Ssam				IEEE80211_CHAN_A | IEEE80211_CHAN_HT40U);
297173275Ssam		}
298170531Ssam	}
299170531Ssam	return i;
300170531Ssam}
301170531Ssam
302170531Ssamstatic void
303170531Ssammapfreq(struct ieee80211_channel *chan, int freq, int flags)
304170531Ssam{
305170531Ssam	int i;
306170531Ssam
307187801Ssam	for (i = 0; i < chaninfo->ic_nchans; i++) {
308187801Ssam		const struct ieee80211_channel *c = &chaninfo->ic_chans[i];
309170531Ssam
310170531Ssam		if (c->ic_freq == freq && (c->ic_flags & flags) == flags) {
311170531Ssam			if (flags == 0) {
312170531Ssam				/* when ambiguous promote to ``best'' */
313187801Ssam				c = &chaninfo->ic_chans[promote(i)];
314170531Ssam			}
315170531Ssam			*chan = *c;
316170531Ssam			return;
317170531Ssam		}
318170531Ssam	}
319170531Ssam	errx(1, "unknown/undefined frequency %u/0x%x", freq, flags);
320170531Ssam}
321170531Ssam
322170531Ssamstatic void
323170531Ssammapchan(struct ieee80211_channel *chan, int ieee, int flags)
324170531Ssam{
325170531Ssam	int i;
326170531Ssam
327187801Ssam	for (i = 0; i < chaninfo->ic_nchans; i++) {
328187801Ssam		const struct ieee80211_channel *c = &chaninfo->ic_chans[i];
329170531Ssam
330170531Ssam		if (c->ic_ieee == ieee && (c->ic_flags & flags) == flags) {
331170531Ssam			if (flags == 0) {
332170531Ssam				/* when ambiguous promote to ``best'' */
333187801Ssam				c = &chaninfo->ic_chans[promote(i)];
334170531Ssam			}
335170531Ssam			*chan = *c;
336170531Ssam			return;
337170531Ssam		}
338170531Ssam	}
339173275Ssam	errx(1, "unknown/undefined channel number %d flags 0x%x", ieee, flags);
340170531Ssam}
341170531Ssam
342173275Ssamstatic const struct ieee80211_channel *
343173275Ssamgetcurchan(int s)
344173275Ssam{
345173275Ssam	if (gotcurchan)
346173275Ssam		return &curchan;
347173275Ssam	if (get80211(s, IEEE80211_IOC_CURCHAN, &curchan, sizeof(curchan)) < 0) {
348173275Ssam		int val;
349173275Ssam		/* fall back to legacy ioctl */
350173275Ssam		if (get80211val(s, IEEE80211_IOC_CHANNEL, &val) < 0)
351187801Ssam			err(-1, "cannot figure out current channel");
352173275Ssam		getchaninfo(s);
353173275Ssam		mapchan(&curchan, val, 0);
354173275Ssam	}
355173275Ssam	gotcurchan = 1;
356173275Ssam	return &curchan;
357173275Ssam}
358173275Ssam
359178354Ssamstatic enum ieee80211_phymode
360178354Ssamchan2mode(const struct ieee80211_channel *c)
361178354Ssam{
362178354Ssam	if (IEEE80211_IS_CHAN_HTA(c))
363178354Ssam		return IEEE80211_MODE_11NA;
364178354Ssam	if (IEEE80211_IS_CHAN_HTG(c))
365178354Ssam		return IEEE80211_MODE_11NG;
366178354Ssam	if (IEEE80211_IS_CHAN_108A(c))
367178354Ssam		return IEEE80211_MODE_TURBO_A;
368178354Ssam	if (IEEE80211_IS_CHAN_108G(c))
369178354Ssam		return IEEE80211_MODE_TURBO_G;
370178354Ssam	if (IEEE80211_IS_CHAN_ST(c))
371178354Ssam		return IEEE80211_MODE_STURBO_A;
372178354Ssam	if (IEEE80211_IS_CHAN_FHSS(c))
373178354Ssam		return IEEE80211_MODE_FH;
374188784Ssam	if (IEEE80211_IS_CHAN_HALF(c))
375188784Ssam		return IEEE80211_MODE_HALF;
376188784Ssam	if (IEEE80211_IS_CHAN_QUARTER(c))
377188784Ssam		return IEEE80211_MODE_QUARTER;
378178354Ssam	if (IEEE80211_IS_CHAN_A(c))
379178354Ssam		return IEEE80211_MODE_11A;
380178354Ssam	if (IEEE80211_IS_CHAN_ANYG(c))
381178354Ssam		return IEEE80211_MODE_11G;
382178354Ssam	if (IEEE80211_IS_CHAN_B(c))
383178354Ssam		return IEEE80211_MODE_11B;
384178354Ssam	return IEEE80211_MODE_AUTO;
385178354Ssam}
386178354Ssam
387178354Ssamstatic void
388178354Ssamgetroam(int s)
389178354Ssam{
390178354Ssam	if (gotroam)
391178354Ssam		return;
392178354Ssam	if (get80211(s, IEEE80211_IOC_ROAM,
393178354Ssam	    &roamparams, sizeof(roamparams)) < 0)
394187801Ssam		err(1, "unable to get roaming parameters");
395178354Ssam	gotroam = 1;
396178354Ssam}
397178354Ssam
398178354Ssamstatic void
399178354Ssamsetroam_cb(int s, void *arg)
400178354Ssam{
401178354Ssam	struct ieee80211_roamparams_req *roam = arg;
402178354Ssam	set80211(s, IEEE80211_IOC_ROAM, 0, sizeof(*roam), roam);
403178354Ssam}
404178354Ssam
405178354Ssamstatic void
406178354Ssamgettxparams(int s)
407178354Ssam{
408178354Ssam	if (gottxparams)
409178354Ssam		return;
410178354Ssam	if (get80211(s, IEEE80211_IOC_TXPARAMS,
411178354Ssam	    &txparams, sizeof(txparams)) < 0)
412187801Ssam		err(1, "unable to get transmit parameters");
413178354Ssam	gottxparams = 1;
414178354Ssam}
415178354Ssam
416178354Ssamstatic void
417178354Ssamsettxparams_cb(int s, void *arg)
418178354Ssam{
419178354Ssam	struct ieee80211_txparams_req *txp = arg;
420178354Ssam	set80211(s, IEEE80211_IOC_TXPARAMS, 0, sizeof(*txp), txp);
421178354Ssam}
422178354Ssam
423178354Ssamstatic void
424178354Ssamgetregdomain(int s)
425178354Ssam{
426178354Ssam	if (gotregdomain)
427178354Ssam		return;
428178354Ssam	if (get80211(s, IEEE80211_IOC_REGDOMAIN,
429178354Ssam	    &regdomain, sizeof(regdomain)) < 0)
430187801Ssam		err(1, "unable to get regulatory domain info");
431178354Ssam	gotregdomain = 1;
432178354Ssam}
433178354Ssam
434178354Ssamstatic void
435178354Ssamgetdevcaps(int s, struct ieee80211_devcaps_req *dc)
436178354Ssam{
437187801Ssam	if (get80211(s, IEEE80211_IOC_DEVCAPS, dc,
438187801Ssam	    IEEE80211_DEVCAPS_SPACE(dc)) < 0)
439187801Ssam		err(1, "unable to get device capabilities");
440178354Ssam}
441178354Ssam
442178354Ssamstatic void
443178354Ssamsetregdomain_cb(int s, void *arg)
444178354Ssam{
445187801Ssam	struct ieee80211_regdomain_req *req;
446178354Ssam	struct ieee80211_regdomain *rd = arg;
447187801Ssam	struct ieee80211_devcaps_req *dc;
448178354Ssam	struct regdata *rdp = getregdata();
449178354Ssam
450186102Ssam	if (rd->country != NO_COUNTRY) {
451178354Ssam		const struct country *cc;
452178354Ssam		/*
453178354Ssam		 * Check current country seting to make sure it's
454178354Ssam		 * compatible with the new regdomain.  If not, then
455178354Ssam		 * override it with any default country for this
456178354Ssam		 * SKU.  If we cannot arrange a match, then abort.
457178354Ssam		 */
458178354Ssam		cc = lib80211_country_findbycc(rdp, rd->country);
459178354Ssam		if (cc == NULL)
460178354Ssam			errx(1, "unknown ISO country code %d", rd->country);
461178354Ssam		if (cc->rd->sku != rd->regdomain) {
462178354Ssam			const struct regdomain *rp;
463178354Ssam			/*
464178354Ssam			 * Check if country is incompatible with regdomain.
465178354Ssam			 * To enable multiple regdomains for a country code
466178354Ssam			 * we permit a mismatch between the regdomain and
467178354Ssam			 * the country's associated regdomain when the
468178354Ssam			 * regdomain is setup w/o a default country.  For
469178354Ssam			 * example, US is bound to the FCC regdomain but
470178354Ssam			 * we allow US to be combined with FCC3 because FCC3
471178354Ssam			 * has not default country.  This allows bogus
472178354Ssam			 * combinations like FCC3+DK which are resolved when
473178354Ssam			 * constructing the channel list by deferring to the
474178354Ssam			 * regdomain to construct the channel list.
475178354Ssam			 */
476178354Ssam			rp = lib80211_regdomain_findbysku(rdp, rd->regdomain);
477178354Ssam			if (rp == NULL)
478178354Ssam				errx(1, "country %s (%s) is not usable with "
479178354Ssam				    "regdomain %d", cc->isoname, cc->name,
480178354Ssam				    rd->regdomain);
481186102Ssam			else if (rp->cc != NULL && rp->cc != cc)
482178354Ssam				errx(1, "country %s (%s) is not usable with "
483178354Ssam				   "regdomain %s", cc->isoname, cc->name,
484178354Ssam				   rp->name);
485178354Ssam		}
486178354Ssam	}
487178354Ssam	/*
488178354Ssam	 * Fetch the device capabilities and calculate the
489178354Ssam	 * full set of netbands for which we request a new
490178354Ssam	 * channel list be constructed.  Once that's done we
491178354Ssam	 * push the regdomain info + channel list to the kernel.
492178354Ssam	 */
493187801Ssam	dc = malloc(IEEE80211_DEVCAPS_SIZE(MAXCHAN));
494187801Ssam	if (dc == NULL)
495187801Ssam		errx(1, "no space for device capabilities");
496187801Ssam	dc->dc_chaninfo.ic_nchans = MAXCHAN;
497187801Ssam	getdevcaps(s, dc);
498178354Ssam#if 0
499178354Ssam	if (verbose) {
500187801Ssam		printf("drivercaps: 0x%x\n", dc->dc_drivercaps);
501187801Ssam		printf("cryptocaps: 0x%x\n", dc->dc_cryptocaps);
502187801Ssam		printf("htcaps    : 0x%x\n", dc->dc_htcaps);
503187801Ssam		memcpy(chaninfo, &dc->dc_chaninfo,
504187801Ssam		    IEEE80211_CHANINFO_SPACE(&dc->dc_chaninfo));
505187801Ssam		print_channels(s, &dc->dc_chaninfo, 1/*allchans*/, 1/*verbose*/);
506178354Ssam	}
507178354Ssam#endif
508187801Ssam	req = malloc(IEEE80211_REGDOMAIN_SIZE(dc->dc_chaninfo.ic_nchans));
509187801Ssam	if (req == NULL)
510187801Ssam		errx(1, "no space for regdomain request");
511187801Ssam	req->rd = *rd;
512187801Ssam	regdomain_makechannels(req, dc);
513178354Ssam	if (verbose) {
514178354Ssam		LINE_INIT(':');
515178354Ssam		print_regdomain(rd, 1/*verbose*/);
516178354Ssam		LINE_BREAK();
517187801Ssam		/* blech, reallocate channel list for new data */
518187801Ssam		if (chaninfo != NULL)
519187801Ssam			free(chaninfo);
520187801Ssam		chaninfo = malloc(IEEE80211_CHANINFO_SPACE(&req->chaninfo));
521187801Ssam		if (chaninfo == NULL)
522187801Ssam			errx(1, "no space for channel list");
523187801Ssam		memcpy(chaninfo, &req->chaninfo,
524187801Ssam		    IEEE80211_CHANINFO_SPACE(&req->chaninfo));
525187801Ssam		print_channels(s, &req->chaninfo, 1/*allchans*/, 1/*verbose*/);
526178354Ssam	}
527187801Ssam	if (req->chaninfo.ic_nchans == 0)
528178354Ssam		errx(1, "no channels calculated");
529187801Ssam	set80211(s, IEEE80211_IOC_REGDOMAIN, 0,
530187801Ssam	    IEEE80211_REGDOMAIN_SPACE(req), req);
531187801Ssam	free(req);
532187801Ssam	free(dc);
533178354Ssam}
534178354Ssam
535170531Ssamstatic int
536170531Ssamieee80211_mhz2ieee(int freq, int flags)
537170531Ssam{
538170531Ssam	struct ieee80211_channel chan;
539170531Ssam	mapfreq(&chan, freq, flags);
540170531Ssam	return chan.ic_ieee;
541170531Ssam}
542170531Ssam
543170531Ssamstatic int
544138593Ssamisanyarg(const char *arg)
545138593Ssam{
546173275Ssam	return (strncmp(arg, "-", 1) == 0 ||
547173275Ssam	    strncasecmp(arg, "any", 3) == 0 || strncasecmp(arg, "off", 3) == 0);
548138593Ssam}
549138593Ssam
550138593Ssamstatic void
55177218Sphkset80211ssid(const char *val, int d, int s, const struct afswtch *rafp)
55277218Sphk{
55377218Sphk	int		ssid;
55477218Sphk	int		len;
555151883Sbrooks	u_int8_t	data[IEEE80211_NWID_LEN];
55677218Sphk
55777218Sphk	ssid = 0;
558121827Sbrooks	len = strlen(val);
559178354Ssam	if (len > 2 && isdigit((int)val[0]) && val[1] == ':') {
56088748Sambrisko		ssid = atoi(val)-1;
56188748Sambrisko		val += 2;
56288748Sambrisko	}
56377218Sphk
56477218Sphk	bzero(data, sizeof(data));
56577218Sphk	len = sizeof(data);
566151883Sbrooks	if (get_string(val, NULL, data, &len) == NULL)
567151883Sbrooks		exit(1);
56877218Sphk
56977218Sphk	set80211(s, IEEE80211_IOC_SSID, ssid, len, data);
57077218Sphk}
57177218Sphk
572138593Ssamstatic void
573195618Srpauloset80211meshid(const char *val, int d, int s, const struct afswtch *rafp)
574195618Srpaulo{
575195618Srpaulo	int		len;
576195618Srpaulo	u_int8_t	data[IEEE80211_NWID_LEN];
577195618Srpaulo
578195618Srpaulo	memset(data, 0, sizeof(data));
579195618Srpaulo	len = sizeof(data);
580195618Srpaulo	if (get_string(val, NULL, data, &len) == NULL)
581195618Srpaulo		exit(1);
582195618Srpaulo
583195618Srpaulo	set80211(s, IEEE80211_IOC_MESH_ID, 0, len, data);
584195618Srpaulo}
585195618Srpaulo
586195618Srpaulostatic void
58777218Sphkset80211stationname(const char *val, int d, int s, const struct afswtch *rafp)
58877218Sphk{
58977218Sphk	int			len;
59077218Sphk	u_int8_t		data[33];
59177218Sphk
59277218Sphk	bzero(data, sizeof(data));
59377218Sphk	len = sizeof(data);
59477218Sphk	get_string(val, NULL, data, &len);
59577218Sphk
59677218Sphk	set80211(s, IEEE80211_IOC_STATIONNAME, 0, len, data);
59777218Sphk}
59877218Sphk
599138593Ssam/*
600170531Ssam * Parse a channel specification for attributes/flags.
601170531Ssam * The syntax is:
602170531Ssam *	freq/xx		channel width (5,10,20,40,40+,40-)
603170531Ssam *	freq:mode	channel mode (a,b,g,h,n,t,s,d)
604170531Ssam *
605170531Ssam * These can be combined in either order; e.g. 2437:ng/40.
606170531Ssam * Modes are case insensitive.
607170531Ssam *
608170531Ssam * The result is not validated here; it's assumed to be
609170531Ssam * checked against the channel table fetched from the kernel.
610170531Ssam */
611170531Ssamstatic int
612173275Ssamgetchannelflags(const char *val, int freq)
613138593Ssam{
614170531Ssam#define	_CHAN_HT	0x80000000
615170531Ssam	const char *cp;
616170531Ssam	int flags;
617138593Ssam
618170531Ssam	flags = 0;
619166015Ssam
620170531Ssam	cp = strchr(val, ':');
621170531Ssam	if (cp != NULL) {
622170531Ssam		for (cp++; isalpha((int) *cp); cp++) {
623170531Ssam			/* accept mixed case */
624170531Ssam			int c = *cp;
625170531Ssam			if (isupper(c))
626170531Ssam				c = tolower(c);
627170531Ssam			switch (c) {
628170531Ssam			case 'a':		/* 802.11a */
629170531Ssam				flags |= IEEE80211_CHAN_A;
630170531Ssam				break;
631170531Ssam			case 'b':		/* 802.11b */
632170531Ssam				flags |= IEEE80211_CHAN_B;
633170531Ssam				break;
634170531Ssam			case 'g':		/* 802.11g */
635170531Ssam				flags |= IEEE80211_CHAN_G;
636170531Ssam				break;
637170531Ssam			case 'h':		/* ht = 802.11n */
638170531Ssam			case 'n':		/* 802.11n */
639170531Ssam				flags |= _CHAN_HT;	/* NB: private */
640170531Ssam				break;
641170531Ssam			case 'd':		/* dt = Atheros Dynamic Turbo */
642170531Ssam				flags |= IEEE80211_CHAN_TURBO;
643170531Ssam				break;
644170531Ssam			case 't':		/* ht, dt, st, t */
645170531Ssam				/* dt and unadorned t specify Dynamic Turbo */
646170531Ssam				if ((flags & (IEEE80211_CHAN_STURBO|_CHAN_HT)) == 0)
647170531Ssam					flags |= IEEE80211_CHAN_TURBO;
648170531Ssam				break;
649170531Ssam			case 's':		/* st = Atheros Static Turbo */
650170531Ssam				flags |= IEEE80211_CHAN_STURBO;
651170531Ssam				break;
652170531Ssam			default:
653173275Ssam				errx(-1, "%s: Invalid channel attribute %c\n",
654170531Ssam				    val, *cp);
655170531Ssam			}
656170531Ssam		}
657170531Ssam	}
658170531Ssam	cp = strchr(val, '/');
659170531Ssam	if (cp != NULL) {
660170531Ssam		char *ep;
661170531Ssam		u_long cw = strtoul(cp+1, &ep, 10);
662166015Ssam
663170531Ssam		switch (cw) {
664170531Ssam		case 5:
665170531Ssam			flags |= IEEE80211_CHAN_QUARTER;
666170531Ssam			break;
667170531Ssam		case 10:
668170531Ssam			flags |= IEEE80211_CHAN_HALF;
669170531Ssam			break;
670170531Ssam		case 20:
671170531Ssam			/* NB: this may be removed below */
672170531Ssam			flags |= IEEE80211_CHAN_HT20;
673170531Ssam			break;
674170531Ssam		case 40:
675170531Ssam			if (ep != NULL && *ep == '+')
676170531Ssam				flags |= IEEE80211_CHAN_HT40U;
677170531Ssam			else if (ep != NULL && *ep == '-')
678170531Ssam				flags |= IEEE80211_CHAN_HT40D;
679170531Ssam			break;
680170531Ssam		default:
681173275Ssam			errx(-1, "%s: Invalid channel width\n", val);
682170531Ssam		}
683165570Ssam	}
684170531Ssam	/*
685170531Ssam	 * Cleanup specifications.
686170531Ssam	 */
687170531Ssam	if ((flags & _CHAN_HT) == 0) {
688170531Ssam		/*
689170531Ssam		 * If user specified freq/20 or freq/40 quietly remove
690170531Ssam		 * HT cw attributes depending on channel use.  To give
691170531Ssam		 * an explicit 20/40 width for an HT channel you must
692170531Ssam		 * indicate it is an HT channel since all HT channels
693170531Ssam		 * are also usable for legacy operation; e.g. freq:n/40.
694170531Ssam		 */
695170531Ssam		flags &= ~IEEE80211_CHAN_HT;
696170531Ssam	} else {
697170531Ssam		/*
698170531Ssam		 * Remove private indicator that this is an HT channel
699170531Ssam		 * and if no explicit channel width has been given
700170531Ssam		 * provide the default settings.
701170531Ssam		 */
702170531Ssam		flags &= ~_CHAN_HT;
703173275Ssam		if ((flags & IEEE80211_CHAN_HT) == 0) {
704173275Ssam			struct ieee80211_channel chan;
705173275Ssam			/*
706173275Ssam			 * Consult the channel list to see if we can use
707173275Ssam			 * HT40+ or HT40- (if both the map routines choose).
708173275Ssam			 */
709173275Ssam			if (freq > 255)
710173275Ssam				mapfreq(&chan, freq, 0);
711173275Ssam			else
712173275Ssam				mapchan(&chan, freq, 0);
713173275Ssam			flags |= (chan.ic_flags & IEEE80211_CHAN_HT);
714173275Ssam		}
715170531Ssam	}
716170531Ssam	return flags;
717170531Ssam#undef _CHAN_HT
718138593Ssam}
719138593Ssam
720138593Ssamstatic void
721186105Ssamgetchannel(int s, struct ieee80211_channel *chan, const char *val)
722186105Ssam{
723186105Ssam	int v, flags;
724186105Ssam	char *eptr;
725186105Ssam
726186105Ssam	memset(chan, 0, sizeof(*chan));
727186105Ssam	if (isanyarg(val)) {
728186105Ssam		chan->ic_freq = IEEE80211_CHAN_ANY;
729186105Ssam		return;
730186105Ssam	}
731186105Ssam	getchaninfo(s);
732186105Ssam	errno = 0;
733186105Ssam	v = strtol(val, &eptr, 10);
734186105Ssam	if (val[0] == '\0' || val == eptr || errno == ERANGE ||
735186105Ssam	    /* channel may be suffixed with nothing, :flag, or /width */
736186105Ssam	    (eptr[0] != '\0' && eptr[0] != ':' && eptr[0] != '/'))
737186105Ssam		errx(1, "invalid channel specification%s",
738186105Ssam		    errno == ERANGE ? " (out of range)" : "");
739186105Ssam	flags = getchannelflags(val, v);
740186105Ssam	if (v > 255) {		/* treat as frequency */
741186105Ssam		mapfreq(chan, v, flags);
742186105Ssam	} else {
743186105Ssam		mapchan(chan, v, flags);
744186105Ssam	}
745186105Ssam}
746186105Ssam
747186105Ssamstatic void
74877218Sphkset80211channel(const char *val, int d, int s, const struct afswtch *rafp)
74977218Sphk{
750170531Ssam	struct ieee80211_channel chan;
751170531Ssam
752186105Ssam	getchannel(s, &chan, val);
753170531Ssam	set80211(s, IEEE80211_IOC_CURCHAN, 0, sizeof(chan), &chan);
75477218Sphk}
75577218Sphk
756138593Ssamstatic void
757178354Ssamset80211chanswitch(const char *val, int d, int s, const struct afswtch *rafp)
758178354Ssam{
759178354Ssam	struct ieee80211_chanswitch_req csr;
760178354Ssam
761186105Ssam	getchannel(s, &csr.csa_chan, val);
762178354Ssam	csr.csa_mode = 1;
763178354Ssam	csr.csa_count = 5;
764178354Ssam	set80211(s, IEEE80211_IOC_CHANSWITCH, 0, sizeof(csr), &csr);
765178354Ssam}
766178354Ssam
767178354Ssamstatic void
76877218Sphkset80211authmode(const char *val, int d, int s, const struct afswtch *rafp)
76977218Sphk{
77077218Sphk	int	mode;
77177218Sphk
77291454Sbrooks	if (strcasecmp(val, "none") == 0) {
77377218Sphk		mode = IEEE80211_AUTH_NONE;
77491454Sbrooks	} else if (strcasecmp(val, "open") == 0) {
77577218Sphk		mode = IEEE80211_AUTH_OPEN;
77691454Sbrooks	} else if (strcasecmp(val, "shared") == 0) {
77777218Sphk		mode = IEEE80211_AUTH_SHARED;
778138593Ssam	} else if (strcasecmp(val, "8021x") == 0) {
779138593Ssam		mode = IEEE80211_AUTH_8021X;
780138593Ssam	} else if (strcasecmp(val, "wpa") == 0) {
781138593Ssam		mode = IEEE80211_AUTH_WPA;
78277218Sphk	} else {
783150708Sru		errx(1, "unknown authmode");
78477218Sphk	}
78577218Sphk
78677218Sphk	set80211(s, IEEE80211_IOC_AUTHMODE, mode, 0, NULL);
78777218Sphk}
78877218Sphk
789138593Ssamstatic void
79077218Sphkset80211powersavemode(const char *val, int d, int s, const struct afswtch *rafp)
79177218Sphk{
79277218Sphk	int	mode;
79377218Sphk
79491454Sbrooks	if (strcasecmp(val, "off") == 0) {
79577218Sphk		mode = IEEE80211_POWERSAVE_OFF;
79691454Sbrooks	} else if (strcasecmp(val, "on") == 0) {
79777218Sphk		mode = IEEE80211_POWERSAVE_ON;
79891454Sbrooks	} else if (strcasecmp(val, "cam") == 0) {
79977218Sphk		mode = IEEE80211_POWERSAVE_CAM;
80091454Sbrooks	} else if (strcasecmp(val, "psp") == 0) {
80177218Sphk		mode = IEEE80211_POWERSAVE_PSP;
80291454Sbrooks	} else if (strcasecmp(val, "psp-cam") == 0) {
80377218Sphk		mode = IEEE80211_POWERSAVE_PSP_CAM;
80477218Sphk	} else {
805150708Sru		errx(1, "unknown powersavemode");
80677218Sphk	}
80777218Sphk
80877218Sphk	set80211(s, IEEE80211_IOC_POWERSAVE, mode, 0, NULL);
80977218Sphk}
81077218Sphk
811138593Ssamstatic void
81277218Sphkset80211powersave(const char *val, int d, int s, const struct afswtch *rafp)
81377218Sphk{
81477218Sphk	if (d == 0)
81577218Sphk		set80211(s, IEEE80211_IOC_POWERSAVE, IEEE80211_POWERSAVE_OFF,
81677218Sphk		    0, NULL);
81777218Sphk	else
81877218Sphk		set80211(s, IEEE80211_IOC_POWERSAVE, IEEE80211_POWERSAVE_ON,
81977218Sphk		    0, NULL);
82077218Sphk}
82177218Sphk
822138593Ssamstatic void
82377218Sphkset80211powersavesleep(const char *val, int d, int s, const struct afswtch *rafp)
82477218Sphk{
82577218Sphk	set80211(s, IEEE80211_IOC_POWERSAVESLEEP, atoi(val), 0, NULL);
82677218Sphk}
82777218Sphk
828138593Ssamstatic void
82977218Sphkset80211wepmode(const char *val, int d, int s, const struct afswtch *rafp)
83077218Sphk{
83177218Sphk	int	mode;
83277218Sphk
83391454Sbrooks	if (strcasecmp(val, "off") == 0) {
83477218Sphk		mode = IEEE80211_WEP_OFF;
83591454Sbrooks	} else if (strcasecmp(val, "on") == 0) {
83677218Sphk		mode = IEEE80211_WEP_ON;
83791454Sbrooks	} else if (strcasecmp(val, "mixed") == 0) {
83877218Sphk		mode = IEEE80211_WEP_MIXED;
83977218Sphk	} else {
840150708Sru		errx(1, "unknown wep mode");
84177218Sphk	}
84277218Sphk
84377218Sphk	set80211(s, IEEE80211_IOC_WEP, mode, 0, NULL);
84477218Sphk}
84577218Sphk
846138593Ssamstatic void
84777218Sphkset80211wep(const char *val, int d, int s, const struct afswtch *rafp)
84877218Sphk{
84977218Sphk	set80211(s, IEEE80211_IOC_WEP, d, 0, NULL);
85077218Sphk}
85177218Sphk
852139493Ssamstatic int
853139493Ssamisundefarg(const char *arg)
854139493Ssam{
855139493Ssam	return (strcmp(arg, "-") == 0 || strncasecmp(arg, "undef", 5) == 0);
856139493Ssam}
857139493Ssam
858138593Ssamstatic void
85977218Sphkset80211weptxkey(const char *val, int d, int s, const struct afswtch *rafp)
86077218Sphk{
861139493Ssam	if (isundefarg(val))
862139493Ssam		set80211(s, IEEE80211_IOC_WEPTXKEY, IEEE80211_KEYIX_NONE, 0, NULL);
863139493Ssam	else
864139493Ssam		set80211(s, IEEE80211_IOC_WEPTXKEY, atoi(val)-1, 0, NULL);
86577218Sphk}
86677218Sphk
867138593Ssamstatic void
86877218Sphkset80211wepkey(const char *val, int d, int s, const struct afswtch *rafp)
86977218Sphk{
87077218Sphk	int		key = 0;
87177218Sphk	int		len;
872120178Ssam	u_int8_t	data[IEEE80211_KEYBUF_SIZE];
87377218Sphk
874178354Ssam	if (isdigit((int)val[0]) && val[1] == ':') {
87577218Sphk		key = atoi(val)-1;
87677218Sphk		val += 2;
87777218Sphk	}
87877218Sphk
87977218Sphk	bzero(data, sizeof(data));
88077218Sphk	len = sizeof(data);
88177218Sphk	get_string(val, NULL, data, &len);
88277218Sphk
88377218Sphk	set80211(s, IEEE80211_IOC_WEPKEY, key, len, data);
88477218Sphk}
88577218Sphk
88677218Sphk/*
887229778Suqs * This function is purely a NetBSD compatibility interface.  The NetBSD
888148686Sstefanf * interface is too inflexible, but it's there so we'll support it since
88977218Sphk * it's not all that hard.
89077218Sphk */
891138593Ssamstatic void
89277218Sphkset80211nwkey(const char *val, int d, int s, const struct afswtch *rafp)
89377218Sphk{
89477218Sphk	int		txkey;
89577218Sphk	int		i, len;
896120178Ssam	u_int8_t	data[IEEE80211_KEYBUF_SIZE];
89777218Sphk
89877218Sphk	set80211(s, IEEE80211_IOC_WEP, IEEE80211_WEP_ON, 0, NULL);
89977218Sphk
900178354Ssam	if (isdigit((int)val[0]) && val[1] == ':') {
90177218Sphk		txkey = val[0]-'0'-1;
90277218Sphk		val += 2;
90377218Sphk
90491454Sbrooks		for (i = 0; i < 4; i++) {
90577218Sphk			bzero(data, sizeof(data));
90677218Sphk			len = sizeof(data);
90777218Sphk			val = get_string(val, ",", data, &len);
908151827Sbrooks			if (val == NULL)
909151827Sbrooks				exit(1);
91077218Sphk
91177218Sphk			set80211(s, IEEE80211_IOC_WEPKEY, i, len, data);
91277218Sphk		}
91377218Sphk	} else {
91477218Sphk		bzero(data, sizeof(data));
91577218Sphk		len = sizeof(data);
91677218Sphk		get_string(val, NULL, data, &len);
91777218Sphk		txkey = 0;
91877218Sphk
91977218Sphk		set80211(s, IEEE80211_IOC_WEPKEY, 0, len, data);
92077218Sphk
92177218Sphk		bzero(data, sizeof(data));
92291454Sbrooks		for (i = 1; i < 4; i++)
92377218Sphk			set80211(s, IEEE80211_IOC_WEPKEY, i, 0, data);
92477218Sphk	}
92577218Sphk
92677218Sphk	set80211(s, IEEE80211_IOC_WEPTXKEY, txkey, 0, NULL);
92777218Sphk}
92877218Sphk
929138593Ssamstatic void
930127649Ssamset80211rtsthreshold(const char *val, int d, int s, const struct afswtch *rafp)
931127649Ssam{
932148416Ssam	set80211(s, IEEE80211_IOC_RTSTHRESHOLD,
933148416Ssam		isundefarg(val) ? IEEE80211_RTS_MAX : atoi(val), 0, NULL);
934127649Ssam}
935127649Ssam
936138593Ssamstatic void
937127649Ssamset80211protmode(const char *val, int d, int s, const struct afswtch *rafp)
938127649Ssam{
939127649Ssam	int	mode;
940127649Ssam
941127649Ssam	if (strcasecmp(val, "off") == 0) {
942127649Ssam		mode = IEEE80211_PROTMODE_OFF;
943127649Ssam	} else if (strcasecmp(val, "cts") == 0) {
944127649Ssam		mode = IEEE80211_PROTMODE_CTS;
945173275Ssam	} else if (strncasecmp(val, "rtscts", 3) == 0) {
946127649Ssam		mode = IEEE80211_PROTMODE_RTSCTS;
947127649Ssam	} else {
948150708Sru		errx(1, "unknown protection mode");
949127649Ssam	}
950127649Ssam
951127649Ssam	set80211(s, IEEE80211_IOC_PROTMODE, mode, 0, NULL);
952127649Ssam}
953127649Ssam
954138593Ssamstatic void
955173275Ssamset80211htprotmode(const char *val, int d, int s, const struct afswtch *rafp)
956173275Ssam{
957173275Ssam	int	mode;
958173275Ssam
959173275Ssam	if (strcasecmp(val, "off") == 0) {
960173275Ssam		mode = IEEE80211_PROTMODE_OFF;
961173275Ssam	} else if (strncasecmp(val, "rts", 3) == 0) {
962173275Ssam		mode = IEEE80211_PROTMODE_RTSCTS;
963173275Ssam	} else {
964173275Ssam		errx(1, "unknown protection mode");
965173275Ssam	}
966173275Ssam
967173275Ssam	set80211(s, IEEE80211_IOC_HTPROTMODE, mode, 0, NULL);
968173275Ssam}
969173275Ssam
970173275Ssamstatic void
971127649Ssamset80211txpower(const char *val, int d, int s, const struct afswtch *rafp)
972127649Ssam{
973173275Ssam	double v = atof(val);
974173275Ssam	int txpow;
975173275Ssam
976173275Ssam	txpow = (int) (2*v);
977173275Ssam	if (txpow != 2*v)
978173275Ssam		errx(-1, "invalid tx power (must be .5 dBm units)");
979173275Ssam	set80211(s, IEEE80211_IOC_TXPOWER, txpow, 0, NULL);
980127649Ssam}
981127649Ssam
982138593Ssam#define	IEEE80211_ROAMING_DEVICE	0
983138593Ssam#define	IEEE80211_ROAMING_AUTO		1
984138593Ssam#define	IEEE80211_ROAMING_MANUAL	2
985138593Ssam
986138593Ssamstatic void
987138593Ssamset80211roaming(const char *val, int d, int s, const struct afswtch *rafp)
98877218Sphk{
989138593Ssam	int mode;
99077218Sphk
991138593Ssam	if (strcasecmp(val, "device") == 0) {
992138593Ssam		mode = IEEE80211_ROAMING_DEVICE;
993138593Ssam	} else if (strcasecmp(val, "auto") == 0) {
994138593Ssam		mode = IEEE80211_ROAMING_AUTO;
995138593Ssam	} else if (strcasecmp(val, "manual") == 0) {
996138593Ssam		mode = IEEE80211_ROAMING_MANUAL;
997138593Ssam	} else {
998150708Sru		errx(1, "unknown roaming mode");
999138593Ssam	}
1000138593Ssam	set80211(s, IEEE80211_IOC_ROAMING, mode, 0, NULL);
1001138593Ssam}
1002138593Ssam
1003138593Ssamstatic void
1004138593Ssamset80211wme(const char *val, int d, int s, const struct afswtch *rafp)
1005138593Ssam{
1006138593Ssam	set80211(s, IEEE80211_IOC_WME, d, 0, NULL);
1007138593Ssam}
1008138593Ssam
1009138593Ssamstatic void
1010138593Ssamset80211hidessid(const char *val, int d, int s, const struct afswtch *rafp)
1011138593Ssam{
1012138593Ssam	set80211(s, IEEE80211_IOC_HIDESSID, d, 0, NULL);
1013138593Ssam}
1014138593Ssam
1015138593Ssamstatic void
1016138593Ssamset80211apbridge(const char *val, int d, int s, const struct afswtch *rafp)
1017138593Ssam{
1018138593Ssam	set80211(s, IEEE80211_IOC_APBRIDGE, d, 0, NULL);
1019138593Ssam}
1020138593Ssam
1021138593Ssamstatic void
1022170531Ssamset80211fastframes(const char *val, int d, int s, const struct afswtch *rafp)
1023170531Ssam{
1024170531Ssam	set80211(s, IEEE80211_IOC_FF, d, 0, NULL);
1025170531Ssam}
1026170531Ssam
1027170531Ssamstatic void
1028170531Ssamset80211dturbo(const char *val, int d, int s, const struct afswtch *rafp)
1029170531Ssam{
1030170531Ssam	set80211(s, IEEE80211_IOC_TURBOP, d, 0, NULL);
1031170531Ssam}
1032170531Ssam
1033170531Ssamstatic void
1034138593Ssamset80211chanlist(const char *val, int d, int s, const struct afswtch *rafp)
1035138593Ssam{
1036138593Ssam	struct ieee80211req_chanlist chanlist;
1037138593Ssam	char *temp, *cp, *tp;
1038138593Ssam
1039138593Ssam	temp = malloc(strlen(val) + 1);
1040138593Ssam	if (temp == NULL)
1041138593Ssam		errx(1, "malloc failed");
1042138593Ssam	strcpy(temp, val);
1043138593Ssam	memset(&chanlist, 0, sizeof(chanlist));
1044138593Ssam	cp = temp;
1045138593Ssam	for (;;) {
1046173275Ssam		int first, last, f, c;
1047138593Ssam
1048138593Ssam		tp = strchr(cp, ',');
1049138593Ssam		if (tp != NULL)
1050138593Ssam			*tp++ = '\0';
1051138593Ssam		switch (sscanf(cp, "%u-%u", &first, &last)) {
1052138593Ssam		case 1:
1053187801Ssam			if (first > IEEE80211_CHAN_MAX)
1054188038Sdelphij				errx(-1, "channel %u out of range, max %u",
1055187801Ssam					first, IEEE80211_CHAN_MAX);
1056138593Ssam			setbit(chanlist.ic_channels, first);
1057138593Ssam			break;
1058138593Ssam		case 2:
1059187801Ssam			if (first > IEEE80211_CHAN_MAX)
1060188038Sdelphij				errx(-1, "channel %u out of range, max %u",
1061187801Ssam					first, IEEE80211_CHAN_MAX);
1062187801Ssam			if (last > IEEE80211_CHAN_MAX)
1063188038Sdelphij				errx(-1, "channel %u out of range, max %u",
1064187801Ssam					last, IEEE80211_CHAN_MAX);
1065138593Ssam			if (first > last)
1066138593Ssam				errx(-1, "void channel range, %u > %u",
1067138593Ssam					first, last);
1068138593Ssam			for (f = first; f <= last; f++)
1069138593Ssam				setbit(chanlist.ic_channels, f);
1070138593Ssam			break;
1071138593Ssam		}
1072138593Ssam		if (tp == NULL)
1073138593Ssam			break;
1074173275Ssam		c = *tp;
1075173275Ssam		while (isspace(c))
1076138593Ssam			tp++;
1077173275Ssam		if (!isdigit(c))
1078138593Ssam			break;
1079138593Ssam		cp = tp;
1080138593Ssam	}
1081170531Ssam	set80211(s, IEEE80211_IOC_CHANLIST, 0, sizeof(chanlist), &chanlist);
1082138593Ssam}
1083138593Ssam
1084138593Ssamstatic void
1085138593Ssamset80211bssid(const char *val, int d, int s, const struct afswtch *rafp)
1086138593Ssam{
1087138593Ssam
1088138593Ssam	if (!isanyarg(val)) {
1089138593Ssam		char *temp;
1090138593Ssam		struct sockaddr_dl sdl;
1091138593Ssam
1092155702Ssam		temp = malloc(strlen(val) + 2); /* ':' and '\0' */
1093138593Ssam		if (temp == NULL)
1094138593Ssam			errx(1, "malloc failed");
1095138593Ssam		temp[0] = ':';
1096138593Ssam		strcpy(temp + 1, val);
1097138593Ssam		sdl.sdl_len = sizeof(sdl);
1098138593Ssam		link_addr(temp, &sdl);
1099138593Ssam		free(temp);
1100138593Ssam		if (sdl.sdl_alen != IEEE80211_ADDR_LEN)
1101138593Ssam			errx(1, "malformed link-level address");
1102138593Ssam		set80211(s, IEEE80211_IOC_BSSID, 0,
1103138593Ssam			IEEE80211_ADDR_LEN, LLADDR(&sdl));
1104138593Ssam	} else {
1105138593Ssam		uint8_t zerobssid[IEEE80211_ADDR_LEN];
1106138593Ssam		memset(zerobssid, 0, sizeof(zerobssid));
1107138593Ssam		set80211(s, IEEE80211_IOC_BSSID, 0,
1108138593Ssam			IEEE80211_ADDR_LEN, zerobssid);
1109138593Ssam	}
1110138593Ssam}
1111138593Ssam
1112138593Ssamstatic int
1113138593Ssamgetac(const char *ac)
1114138593Ssam{
1115138593Ssam	if (strcasecmp(ac, "ac_be") == 0 || strcasecmp(ac, "be") == 0)
1116138593Ssam		return WME_AC_BE;
1117138593Ssam	if (strcasecmp(ac, "ac_bk") == 0 || strcasecmp(ac, "bk") == 0)
1118138593Ssam		return WME_AC_BK;
1119138593Ssam	if (strcasecmp(ac, "ac_vi") == 0 || strcasecmp(ac, "vi") == 0)
1120138593Ssam		return WME_AC_VI;
1121138593Ssam	if (strcasecmp(ac, "ac_vo") == 0 || strcasecmp(ac, "vo") == 0)
1122138593Ssam		return WME_AC_VO;
1123138593Ssam	errx(1, "unknown wme access class %s", ac);
1124138593Ssam}
1125138593Ssam
1126138593Ssamstatic
1127138593SsamDECL_CMD_FUNC2(set80211cwmin, ac, val)
1128138593Ssam{
1129138593Ssam	set80211(s, IEEE80211_IOC_WME_CWMIN, atoi(val), getac(ac), NULL);
1130138593Ssam}
1131138593Ssam
1132138593Ssamstatic
1133138593SsamDECL_CMD_FUNC2(set80211cwmax, ac, val)
1134138593Ssam{
1135138593Ssam	set80211(s, IEEE80211_IOC_WME_CWMAX, atoi(val), getac(ac), NULL);
1136138593Ssam}
1137138593Ssam
1138138593Ssamstatic
1139138593SsamDECL_CMD_FUNC2(set80211aifs, ac, val)
1140138593Ssam{
1141138593Ssam	set80211(s, IEEE80211_IOC_WME_AIFS, atoi(val), getac(ac), NULL);
1142138593Ssam}
1143138593Ssam
1144138593Ssamstatic
1145138593SsamDECL_CMD_FUNC2(set80211txoplimit, ac, val)
1146138593Ssam{
1147138593Ssam	set80211(s, IEEE80211_IOC_WME_TXOPLIMIT, atoi(val), getac(ac), NULL);
1148138593Ssam}
1149138593Ssam
1150138593Ssamstatic
1151148621SsamDECL_CMD_FUNC(set80211acm, ac, d)
1152138593Ssam{
1153148621Ssam	set80211(s, IEEE80211_IOC_WME_ACM, 1, getac(ac), NULL);
1154138593Ssam}
1155148621Ssamstatic
1156148621SsamDECL_CMD_FUNC(set80211noacm, ac, d)
1157148621Ssam{
1158148621Ssam	set80211(s, IEEE80211_IOC_WME_ACM, 0, getac(ac), NULL);
1159148621Ssam}
1160138593Ssam
1161138593Ssamstatic
1162148621SsamDECL_CMD_FUNC(set80211ackpolicy, ac, d)
1163138593Ssam{
1164148621Ssam	set80211(s, IEEE80211_IOC_WME_ACKPOLICY, 1, getac(ac), NULL);
1165138593Ssam}
1166148621Ssamstatic
1167148621SsamDECL_CMD_FUNC(set80211noackpolicy, ac, d)
1168148621Ssam{
1169148621Ssam	set80211(s, IEEE80211_IOC_WME_ACKPOLICY, 0, getac(ac), NULL);
1170148621Ssam}
1171138593Ssam
1172138593Ssamstatic
1173138593SsamDECL_CMD_FUNC2(set80211bsscwmin, ac, val)
1174138593Ssam{
1175138593Ssam	set80211(s, IEEE80211_IOC_WME_CWMIN, atoi(val),
1176138593Ssam		getac(ac)|IEEE80211_WMEPARAM_BSS, NULL);
1177138593Ssam}
1178138593Ssam
1179138593Ssamstatic
1180138593SsamDECL_CMD_FUNC2(set80211bsscwmax, ac, val)
1181138593Ssam{
1182138593Ssam	set80211(s, IEEE80211_IOC_WME_CWMAX, atoi(val),
1183138593Ssam		getac(ac)|IEEE80211_WMEPARAM_BSS, NULL);
1184138593Ssam}
1185138593Ssam
1186138593Ssamstatic
1187138593SsamDECL_CMD_FUNC2(set80211bssaifs, ac, val)
1188138593Ssam{
1189138593Ssam	set80211(s, IEEE80211_IOC_WME_AIFS, atoi(val),
1190138593Ssam		getac(ac)|IEEE80211_WMEPARAM_BSS, NULL);
1191138593Ssam}
1192138593Ssam
1193138593Ssamstatic
1194138593SsamDECL_CMD_FUNC2(set80211bsstxoplimit, ac, val)
1195138593Ssam{
1196138593Ssam	set80211(s, IEEE80211_IOC_WME_TXOPLIMIT, atoi(val),
1197138593Ssam		getac(ac)|IEEE80211_WMEPARAM_BSS, NULL);
1198138593Ssam}
1199138593Ssam
1200138593Ssamstatic
1201138593SsamDECL_CMD_FUNC(set80211dtimperiod, val, d)
1202138593Ssam{
1203138593Ssam	set80211(s, IEEE80211_IOC_DTIM_PERIOD, atoi(val), 0, NULL);
1204138593Ssam}
1205138593Ssam
1206138593Ssamstatic
1207138593SsamDECL_CMD_FUNC(set80211bintval, val, d)
1208138593Ssam{
1209138593Ssam	set80211(s, IEEE80211_IOC_BEACON_INTERVAL, atoi(val), 0, NULL);
1210138593Ssam}
1211138593Ssam
1212138593Ssamstatic void
1213138593Ssamset80211macmac(int s, int op, const char *val)
1214138593Ssam{
1215138593Ssam	char *temp;
1216138593Ssam	struct sockaddr_dl sdl;
1217138593Ssam
1218155702Ssam	temp = malloc(strlen(val) + 2); /* ':' and '\0' */
1219138593Ssam	if (temp == NULL)
1220138593Ssam		errx(1, "malloc failed");
1221138593Ssam	temp[0] = ':';
1222138593Ssam	strcpy(temp + 1, val);
1223138593Ssam	sdl.sdl_len = sizeof(sdl);
1224138593Ssam	link_addr(temp, &sdl);
1225138593Ssam	free(temp);
1226138593Ssam	if (sdl.sdl_alen != IEEE80211_ADDR_LEN)
1227138593Ssam		errx(1, "malformed link-level address");
1228138593Ssam	set80211(s, op, 0, IEEE80211_ADDR_LEN, LLADDR(&sdl));
1229138593Ssam}
1230138593Ssam
1231138593Ssamstatic
1232138593SsamDECL_CMD_FUNC(set80211addmac, val, d)
1233138593Ssam{
1234138593Ssam	set80211macmac(s, IEEE80211_IOC_ADDMAC, val);
1235138593Ssam}
1236138593Ssam
1237138593Ssamstatic
1238138593SsamDECL_CMD_FUNC(set80211delmac, val, d)
1239138593Ssam{
1240138593Ssam	set80211macmac(s, IEEE80211_IOC_DELMAC, val);
1241138593Ssam}
1242138593Ssam
1243138593Ssamstatic
1244149029SsamDECL_CMD_FUNC(set80211kickmac, val, d)
1245149029Ssam{
1246149029Ssam	char *temp;
1247149029Ssam	struct sockaddr_dl sdl;
1248149029Ssam	struct ieee80211req_mlme mlme;
1249149029Ssam
1250155702Ssam	temp = malloc(strlen(val) + 2); /* ':' and '\0' */
1251149029Ssam	if (temp == NULL)
1252149029Ssam		errx(1, "malloc failed");
1253149029Ssam	temp[0] = ':';
1254149029Ssam	strcpy(temp + 1, val);
1255149029Ssam	sdl.sdl_len = sizeof(sdl);
1256149029Ssam	link_addr(temp, &sdl);
1257149029Ssam	free(temp);
1258149029Ssam	if (sdl.sdl_alen != IEEE80211_ADDR_LEN)
1259149029Ssam		errx(1, "malformed link-level address");
1260149029Ssam	memset(&mlme, 0, sizeof(mlme));
1261149029Ssam	mlme.im_op = IEEE80211_MLME_DEAUTH;
1262149029Ssam	mlme.im_reason = IEEE80211_REASON_AUTH_EXPIRE;
1263149029Ssam	memcpy(mlme.im_macaddr, LLADDR(&sdl), IEEE80211_ADDR_LEN);
1264170531Ssam	set80211(s, IEEE80211_IOC_MLME, 0, sizeof(mlme), &mlme);
1265149029Ssam}
1266149029Ssam
1267149029Ssamstatic
1268138593SsamDECL_CMD_FUNC(set80211maccmd, val, d)
1269138593Ssam{
1270138593Ssam	set80211(s, IEEE80211_IOC_MACCMD, d, 0, NULL);
1271138593Ssam}
1272138593Ssam
1273147795Ssamstatic void
1274195618Srpauloset80211meshrtmac(int s, int req, const char *val)
1275195618Srpaulo{
1276195618Srpaulo	char *temp;
1277195618Srpaulo	struct sockaddr_dl sdl;
1278195618Srpaulo
1279195618Srpaulo	temp = malloc(strlen(val) + 2); /* ':' and '\0' */
1280195618Srpaulo	if (temp == NULL)
1281195618Srpaulo		errx(1, "malloc failed");
1282195618Srpaulo	temp[0] = ':';
1283195618Srpaulo	strcpy(temp + 1, val);
1284195618Srpaulo	sdl.sdl_len = sizeof(sdl);
1285195618Srpaulo	link_addr(temp, &sdl);
1286195618Srpaulo	free(temp);
1287195618Srpaulo	if (sdl.sdl_alen != IEEE80211_ADDR_LEN)
1288195618Srpaulo		errx(1, "malformed link-level address");
1289195618Srpaulo	set80211(s, IEEE80211_IOC_MESH_RTCMD, req,
1290195618Srpaulo	    IEEE80211_ADDR_LEN, LLADDR(&sdl));
1291195618Srpaulo}
1292195618Srpaulo
1293195618Srpaulostatic
1294195618SrpauloDECL_CMD_FUNC(set80211addmeshrt, val, d)
1295195618Srpaulo{
1296195618Srpaulo	set80211meshrtmac(s, IEEE80211_MESH_RTCMD_ADD, val);
1297195618Srpaulo}
1298195618Srpaulo
1299195618Srpaulostatic
1300195618SrpauloDECL_CMD_FUNC(set80211delmeshrt, val, d)
1301195618Srpaulo{
1302195618Srpaulo	set80211meshrtmac(s, IEEE80211_MESH_RTCMD_DELETE, val);
1303195618Srpaulo}
1304195618Srpaulo
1305195618Srpaulostatic
1306195618SrpauloDECL_CMD_FUNC(set80211meshrtcmd, val, d)
1307195618Srpaulo{
1308195618Srpaulo	set80211(s, IEEE80211_IOC_MESH_RTCMD, d, 0, NULL);
1309195618Srpaulo}
1310195618Srpaulo
1311195618Srpaulostatic
1312195618SrpauloDECL_CMD_FUNC(set80211hwmprootmode, val, d)
1313195618Srpaulo{
1314195618Srpaulo	int mode;
1315195618Srpaulo
1316195618Srpaulo	if (strcasecmp(val, "normal") == 0)
1317195618Srpaulo		mode = IEEE80211_HWMP_ROOTMODE_NORMAL;
1318195618Srpaulo	else if (strcasecmp(val, "proactive") == 0)
1319195618Srpaulo		mode = IEEE80211_HWMP_ROOTMODE_PROACTIVE;
1320195618Srpaulo	else if (strcasecmp(val, "rann") == 0)
1321195618Srpaulo		mode = IEEE80211_HWMP_ROOTMODE_RANN;
1322195618Srpaulo	else
1323195618Srpaulo		mode = IEEE80211_HWMP_ROOTMODE_DISABLED;
1324195618Srpaulo	set80211(s, IEEE80211_IOC_HWMP_ROOTMODE, mode, 0, NULL);
1325195618Srpaulo}
1326195618Srpaulo
1327195618Srpaulostatic
1328195618SrpauloDECL_CMD_FUNC(set80211hwmpmaxhops, val, d)
1329195618Srpaulo{
1330195618Srpaulo	set80211(s, IEEE80211_IOC_HWMP_MAXHOPS, atoi(val), 0, NULL);
1331195618Srpaulo}
1332195618Srpaulo
1333195618Srpaulostatic void
1334147795Ssamset80211pureg(const char *val, int d, int s, const struct afswtch *rafp)
1335147795Ssam{
1336147795Ssam	set80211(s, IEEE80211_IOC_PUREG, d, 0, NULL);
1337147795Ssam}
1338147795Ssam
1339153422Ssamstatic void
1340227336Sadrianset80211quiet(const char *val, int d, int s, const struct afswtch *rafp)
1341227336Sadrian{
1342227336Sadrian	set80211(s, IEEE80211_IOC_QUIET, d, 0, NULL);
1343227336Sadrian}
1344227336Sadrian
1345227336Sadrianstatic
1346227336SadrianDECL_CMD_FUNC(set80211quietperiod, val, d)
1347227336Sadrian{
1348227336Sadrian	set80211(s, IEEE80211_IOC_QUIET_PERIOD, atoi(val), 0, NULL);
1349227336Sadrian}
1350227336Sadrian
1351227336Sadrianstatic
1352227336SadrianDECL_CMD_FUNC(set80211quietcount, val, d)
1353227336Sadrian{
1354227336Sadrian	set80211(s, IEEE80211_IOC_QUIET_COUNT, atoi(val), 0, NULL);
1355227336Sadrian}
1356227336Sadrian
1357227336Sadrianstatic
1358227336SadrianDECL_CMD_FUNC(set80211quietduration, val, d)
1359227336Sadrian{
1360227336Sadrian	set80211(s, IEEE80211_IOC_QUIET_DUR, atoi(val), 0, NULL);
1361227336Sadrian}
1362227336Sadrian
1363227336Sadrianstatic
1364227336SadrianDECL_CMD_FUNC(set80211quietoffset, val, d)
1365227336Sadrian{
1366227336Sadrian	set80211(s, IEEE80211_IOC_QUIET_OFFSET, atoi(val), 0, NULL);
1367227336Sadrian}
1368227336Sadrian
1369227336Sadrianstatic void
1370170531Ssamset80211bgscan(const char *val, int d, int s, const struct afswtch *rafp)
1371153422Ssam{
1372170531Ssam	set80211(s, IEEE80211_IOC_BGSCAN, d, 0, NULL);
1373153422Ssam}
1374153422Ssam
1375148416Ssamstatic
1376170531SsamDECL_CMD_FUNC(set80211bgscanidle, val, d)
1377170531Ssam{
1378170531Ssam	set80211(s, IEEE80211_IOC_BGSCAN_IDLE, atoi(val), 0, NULL);
1379170531Ssam}
1380170531Ssam
1381170531Ssamstatic
1382170531SsamDECL_CMD_FUNC(set80211bgscanintvl, val, d)
1383170531Ssam{
1384170531Ssam	set80211(s, IEEE80211_IOC_BGSCAN_INTERVAL, atoi(val), 0, NULL);
1385170531Ssam}
1386170531Ssam
1387170531Ssamstatic
1388170531SsamDECL_CMD_FUNC(set80211scanvalid, val, d)
1389170531Ssam{
1390170531Ssam	set80211(s, IEEE80211_IOC_SCANVALID, atoi(val), 0, NULL);
1391170531Ssam}
1392170531Ssam
1393178354Ssam/*
1394178354Ssam * Parse an optional trailing specification of which netbands
1395178354Ssam * to apply a parameter to.  This is basically the same syntax
1396178354Ssam * as used for channels but you can concatenate to specify
1397178354Ssam * multiple.  For example:
1398178354Ssam *	14:abg		apply to 11a, 11b, and 11g
1399178354Ssam *	6:ht		apply to 11na and 11ng
1400178354Ssam * We don't make a big effort to catch silly things; this is
1401178354Ssam * really a convenience mechanism.
1402178354Ssam */
1403178354Ssamstatic int
1404178354Ssamgetmodeflags(const char *val)
1405170531Ssam{
1406178354Ssam	const char *cp;
1407178354Ssam	int flags;
1408178354Ssam
1409178354Ssam	flags = 0;
1410178354Ssam
1411178354Ssam	cp = strchr(val, ':');
1412178354Ssam	if (cp != NULL) {
1413178354Ssam		for (cp++; isalpha((int) *cp); cp++) {
1414178354Ssam			/* accept mixed case */
1415178354Ssam			int c = *cp;
1416178354Ssam			if (isupper(c))
1417178354Ssam				c = tolower(c);
1418178354Ssam			switch (c) {
1419178354Ssam			case 'a':		/* 802.11a */
1420178354Ssam				flags |= IEEE80211_CHAN_A;
1421178354Ssam				break;
1422178354Ssam			case 'b':		/* 802.11b */
1423178354Ssam				flags |= IEEE80211_CHAN_B;
1424178354Ssam				break;
1425178354Ssam			case 'g':		/* 802.11g */
1426178354Ssam				flags |= IEEE80211_CHAN_G;
1427178354Ssam				break;
1428178354Ssam			case 'n':		/* 802.11n */
1429178354Ssam				flags |= IEEE80211_CHAN_HT;
1430178354Ssam				break;
1431178354Ssam			case 'd':		/* dt = Atheros Dynamic Turbo */
1432178354Ssam				flags |= IEEE80211_CHAN_TURBO;
1433178354Ssam				break;
1434178354Ssam			case 't':		/* ht, dt, st, t */
1435178354Ssam				/* dt and unadorned t specify Dynamic Turbo */
1436178354Ssam				if ((flags & (IEEE80211_CHAN_STURBO|IEEE80211_CHAN_HT)) == 0)
1437178354Ssam					flags |= IEEE80211_CHAN_TURBO;
1438178354Ssam				break;
1439178354Ssam			case 's':		/* st = Atheros Static Turbo */
1440178354Ssam				flags |= IEEE80211_CHAN_STURBO;
1441178354Ssam				break;
1442188784Ssam			case 'h':		/* 1/2-width channels */
1443188784Ssam				flags |= IEEE80211_CHAN_HALF;
1444188784Ssam				break;
1445188784Ssam			case 'q':		/* 1/4-width channels */
1446188784Ssam				flags |= IEEE80211_CHAN_QUARTER;
1447188784Ssam				break;
1448178354Ssam			default:
1449178354Ssam				errx(-1, "%s: Invalid mode attribute %c\n",
1450178354Ssam				    val, *cp);
1451178354Ssam			}
1452178354Ssam		}
1453178354Ssam	}
1454178354Ssam	return flags;
1455170531Ssam}
1456170531Ssam
1457178354Ssam#define	IEEE80211_CHAN_HTA	(IEEE80211_CHAN_HT|IEEE80211_CHAN_5GHZ)
1458178354Ssam#define	IEEE80211_CHAN_HTG	(IEEE80211_CHAN_HT|IEEE80211_CHAN_2GHZ)
1459178354Ssam
1460178354Ssam#define	_APPLY(_flags, _base, _param, _v) do {				\
1461178354Ssam    if (_flags & IEEE80211_CHAN_HT) {					\
1462178354Ssam	    if ((_flags & (IEEE80211_CHAN_5GHZ|IEEE80211_CHAN_2GHZ)) == 0) {\
1463178354Ssam		    _base.params[IEEE80211_MODE_11NA]._param = _v;	\
1464178354Ssam		    _base.params[IEEE80211_MODE_11NG]._param = _v;	\
1465178354Ssam	    } else if (_flags & IEEE80211_CHAN_5GHZ)			\
1466178354Ssam		    _base.params[IEEE80211_MODE_11NA]._param = _v;	\
1467178354Ssam	    else							\
1468178354Ssam		    _base.params[IEEE80211_MODE_11NG]._param = _v;	\
1469178354Ssam    }									\
1470178354Ssam    if (_flags & IEEE80211_CHAN_TURBO) {				\
1471178354Ssam	    if ((_flags & (IEEE80211_CHAN_5GHZ|IEEE80211_CHAN_2GHZ)) == 0) {\
1472178354Ssam		    _base.params[IEEE80211_MODE_TURBO_A]._param = _v;	\
1473178354Ssam		    _base.params[IEEE80211_MODE_TURBO_G]._param = _v;	\
1474178354Ssam	    } else if (_flags & IEEE80211_CHAN_5GHZ)			\
1475178354Ssam		    _base.params[IEEE80211_MODE_TURBO_A]._param = _v;	\
1476178354Ssam	    else							\
1477178354Ssam		    _base.params[IEEE80211_MODE_TURBO_G]._param = _v;	\
1478178354Ssam    }									\
1479178354Ssam    if (_flags & IEEE80211_CHAN_STURBO)					\
1480178354Ssam	    _base.params[IEEE80211_MODE_STURBO_A]._param = _v;		\
1481178354Ssam    if ((_flags & IEEE80211_CHAN_A) == IEEE80211_CHAN_A)		\
1482178354Ssam	    _base.params[IEEE80211_MODE_11A]._param = _v;		\
1483178354Ssam    if ((_flags & IEEE80211_CHAN_G) == IEEE80211_CHAN_G)		\
1484178354Ssam	    _base.params[IEEE80211_MODE_11G]._param = _v;		\
1485178354Ssam    if ((_flags & IEEE80211_CHAN_B) == IEEE80211_CHAN_B)		\
1486178354Ssam	    _base.params[IEEE80211_MODE_11B]._param = _v;		\
1487188784Ssam    if (_flags & IEEE80211_CHAN_HALF)					\
1488188784Ssam	    _base.params[IEEE80211_MODE_HALF]._param = _v;		\
1489188784Ssam    if (_flags & IEEE80211_CHAN_QUARTER)				\
1490188784Ssam	    _base.params[IEEE80211_MODE_QUARTER]._param = _v;		\
1491178354Ssam} while (0)
1492178354Ssam#define	_APPLY1(_flags, _base, _param, _v) do {				\
1493178354Ssam    if (_flags & IEEE80211_CHAN_HT) {					\
1494178354Ssam	    if (_flags & IEEE80211_CHAN_5GHZ)				\
1495178354Ssam		    _base.params[IEEE80211_MODE_11NA]._param = _v;	\
1496178354Ssam	    else							\
1497178354Ssam		    _base.params[IEEE80211_MODE_11NG]._param = _v;	\
1498178354Ssam    } else if ((_flags & IEEE80211_CHAN_108A) == IEEE80211_CHAN_108A)	\
1499178354Ssam	    _base.params[IEEE80211_MODE_TURBO_A]._param = _v;		\
1500178354Ssam    else if ((_flags & IEEE80211_CHAN_108G) == IEEE80211_CHAN_108G)	\
1501178354Ssam	    _base.params[IEEE80211_MODE_TURBO_G]._param = _v;		\
1502178354Ssam    else if ((_flags & IEEE80211_CHAN_ST) == IEEE80211_CHAN_ST)		\
1503178354Ssam	    _base.params[IEEE80211_MODE_STURBO_A]._param = _v;		\
1504188784Ssam    else if (_flags & IEEE80211_CHAN_HALF)				\
1505188784Ssam	    _base.params[IEEE80211_MODE_HALF]._param = _v;		\
1506188784Ssam    else if (_flags & IEEE80211_CHAN_QUARTER)				\
1507188784Ssam	    _base.params[IEEE80211_MODE_QUARTER]._param = _v;		\
1508178354Ssam    else if ((_flags & IEEE80211_CHAN_A) == IEEE80211_CHAN_A)		\
1509178354Ssam	    _base.params[IEEE80211_MODE_11A]._param = _v;		\
1510178354Ssam    else if ((_flags & IEEE80211_CHAN_G) == IEEE80211_CHAN_G)		\
1511178354Ssam	    _base.params[IEEE80211_MODE_11G]._param = _v;		\
1512178354Ssam    else if ((_flags & IEEE80211_CHAN_B) == IEEE80211_CHAN_B)		\
1513178354Ssam	    _base.params[IEEE80211_MODE_11B]._param = _v;		\
1514178354Ssam} while (0)
1515178354Ssam#define	_APPLY_RATE(_flags, _base, _param, _v) do {			\
1516178354Ssam    if (_flags & IEEE80211_CHAN_HT) {					\
1517188784Ssam	(_v) = (_v / 2) | IEEE80211_RATE_MCS;				\
1518178354Ssam    }									\
1519188784Ssam    _APPLY(_flags, _base, _param, _v);					\
1520178354Ssam} while (0)
1521178354Ssam#define	_APPLY_RATE1(_flags, _base, _param, _v) do {			\
1522178354Ssam    if (_flags & IEEE80211_CHAN_HT) {					\
1523188784Ssam	(_v) = (_v / 2) | IEEE80211_RATE_MCS;				\
1524188784Ssam    }									\
1525188784Ssam    _APPLY1(_flags, _base, _param, _v);					\
1526178354Ssam} while (0)
1527178354Ssam
1528170531Ssamstatic
1529178354SsamDECL_CMD_FUNC(set80211roamrssi, val, d)
1530170531Ssam{
1531178354Ssam	double v = atof(val);
1532178354Ssam	int rssi, flags;
1533178354Ssam
1534178354Ssam	rssi = (int) (2*v);
1535178354Ssam	if (rssi != 2*v)
1536178354Ssam		errx(-1, "invalid rssi (must be .5 dBm units)");
1537178354Ssam	flags = getmodeflags(val);
1538178354Ssam	getroam(s);
1539178354Ssam	if (flags == 0) {		/* NB: no flags => current channel */
1540178354Ssam		flags = getcurchan(s)->ic_flags;
1541178354Ssam		_APPLY1(flags, roamparams, rssi, rssi);
1542178354Ssam	} else
1543178354Ssam		_APPLY(flags, roamparams, rssi, rssi);
1544178354Ssam	callback_register(setroam_cb, &roamparams);
1545170531Ssam}
1546170531Ssam
1547188784Ssamstatic int
1548188784Ssamgetrate(const char *val, const char *tag)
1549188784Ssam{
1550188784Ssam	double v = atof(val);
1551188784Ssam	int rate;
1552188784Ssam
1553188784Ssam	rate = (int) (2*v);
1554188784Ssam	if (rate != 2*v)
1555188784Ssam		errx(-1, "invalid %s rate (must be .5 Mb/s units)", tag);
1556188784Ssam	return rate;		/* NB: returns 2x the specified value */
1557188784Ssam}
1558188784Ssam
1559170531Ssamstatic
1560178354SsamDECL_CMD_FUNC(set80211roamrate, val, d)
1561170531Ssam{
1562188784Ssam	int rate, flags;
1563178354Ssam
1564188784Ssam	rate = getrate(val, "roam");
1565178354Ssam	flags = getmodeflags(val);
1566178354Ssam	getroam(s);
1567178354Ssam	if (flags == 0) {		/* NB: no flags => current channel */
1568178354Ssam		flags = getcurchan(s)->ic_flags;
1569188784Ssam		_APPLY_RATE1(flags, roamparams, rate, rate);
1570178354Ssam	} else
1571188784Ssam		_APPLY_RATE(flags, roamparams, rate, rate);
1572178354Ssam	callback_register(setroam_cb, &roamparams);
1573170531Ssam}
1574170531Ssam
1575170531Ssamstatic
1576178354SsamDECL_CMD_FUNC(set80211mcastrate, val, d)
1577170531Ssam{
1578188784Ssam	int rate, flags;
1579178354Ssam
1580188784Ssam	rate = getrate(val, "mcast");
1581178354Ssam	flags = getmodeflags(val);
1582178354Ssam	gettxparams(s);
1583178354Ssam	if (flags == 0) {		/* NB: no flags => current channel */
1584178354Ssam		flags = getcurchan(s)->ic_flags;
1585188784Ssam		_APPLY_RATE1(flags, txparams, mcastrate, rate);
1586178354Ssam	} else
1587188784Ssam		_APPLY_RATE(flags, txparams, mcastrate, rate);
1588178354Ssam	callback_register(settxparams_cb, &txparams);
1589170531Ssam}
1590170531Ssam
1591170531Ssamstatic
1592178354SsamDECL_CMD_FUNC(set80211mgtrate, val, d)
1593170531Ssam{
1594188784Ssam	int rate, flags;
1595178354Ssam
1596188784Ssam	rate = getrate(val, "mgmt");
1597178354Ssam	flags = getmodeflags(val);
1598178354Ssam	gettxparams(s);
1599178354Ssam	if (flags == 0) {		/* NB: no flags => current channel */
1600178354Ssam		flags = getcurchan(s)->ic_flags;
1601188784Ssam		_APPLY_RATE1(flags, txparams, mgmtrate, rate);
1602178354Ssam	} else
1603188784Ssam		_APPLY_RATE(flags, txparams, mgmtrate, rate);
1604178354Ssam	callback_register(settxparams_cb, &txparams);
1605170531Ssam}
1606170531Ssam
1607170531Ssamstatic
1608178354SsamDECL_CMD_FUNC(set80211ucastrate, val, d)
1609170531Ssam{
1610188784Ssam	int flags;
1611178354Ssam
1612178354Ssam	gettxparams(s);
1613178354Ssam	flags = getmodeflags(val);
1614178354Ssam	if (isanyarg(val)) {
1615178354Ssam		if (flags == 0) {	/* NB: no flags => current channel */
1616178354Ssam			flags = getcurchan(s)->ic_flags;
1617178354Ssam			_APPLY1(flags, txparams, ucastrate,
1618178354Ssam			    IEEE80211_FIXED_RATE_NONE);
1619178354Ssam		} else
1620178354Ssam			_APPLY(flags, txparams, ucastrate,
1621178354Ssam			    IEEE80211_FIXED_RATE_NONE);
1622178354Ssam	} else {
1623188784Ssam		int rate = getrate(val, "ucast");
1624178354Ssam		if (flags == 0) {	/* NB: no flags => current channel */
1625178354Ssam			flags = getcurchan(s)->ic_flags;
1626188784Ssam			_APPLY_RATE1(flags, txparams, ucastrate, rate);
1627178354Ssam		} else
1628188784Ssam			_APPLY_RATE(flags, txparams, ucastrate, rate);
1629178354Ssam	}
1630178354Ssam	callback_register(settxparams_cb, &txparams);
1631170531Ssam}
1632170531Ssam
1633170531Ssamstatic
1634178354SsamDECL_CMD_FUNC(set80211maxretry, val, d)
1635153354Ssam{
1636178354Ssam	int v = atoi(val), flags;
1637178354Ssam
1638178354Ssam	flags = getmodeflags(val);
1639178354Ssam	gettxparams(s);
1640178354Ssam	if (flags == 0) {		/* NB: no flags => current channel */
1641178354Ssam		flags = getcurchan(s)->ic_flags;
1642178354Ssam		_APPLY1(flags, txparams, maxretry, v);
1643178354Ssam	} else
1644178354Ssam		_APPLY(flags, txparams, maxretry, v);
1645178354Ssam	callback_register(settxparams_cb, &txparams);
1646153354Ssam}
1647178354Ssam#undef _APPLY_RATE
1648178354Ssam#undef _APPLY
1649178354Ssam#undef IEEE80211_CHAN_HTA
1650178354Ssam#undef IEEE80211_CHAN_HTG
1651153354Ssam
1652153354Ssamstatic
1653148416SsamDECL_CMD_FUNC(set80211fragthreshold, val, d)
1654148416Ssam{
1655148416Ssam	set80211(s, IEEE80211_IOC_FRAGTHRESHOLD,
1656148416Ssam		isundefarg(val) ? IEEE80211_FRAG_MAX : atoi(val), 0, NULL);
1657148416Ssam}
1658148416Ssam
1659160687Ssamstatic
1660160687SsamDECL_CMD_FUNC(set80211bmissthreshold, val, d)
1661160687Ssam{
1662160687Ssam	set80211(s, IEEE80211_IOC_BMISSTHRESHOLD,
1663160687Ssam		isundefarg(val) ? IEEE80211_HWBMISS_MAX : atoi(val), 0, NULL);
1664160687Ssam}
1665160687Ssam
1666170531Ssamstatic void
1667170531Ssamset80211burst(const char *val, int d, int s, const struct afswtch *rafp)
1668170531Ssam{
1669170531Ssam	set80211(s, IEEE80211_IOC_BURST, d, 0, NULL);
1670170531Ssam}
1671170531Ssam
1672170531Ssamstatic void
1673170531Ssamset80211doth(const char *val, int d, int s, const struct afswtch *rafp)
1674170531Ssam{
1675170531Ssam	set80211(s, IEEE80211_IOC_DOTH, d, 0, NULL);
1676170531Ssam}
1677170531Ssam
1678173275Ssamstatic void
1679178354Ssamset80211dfs(const char *val, int d, int s, const struct afswtch *rafp)
1680178354Ssam{
1681178354Ssam	set80211(s, IEEE80211_IOC_DFS, d, 0, NULL);
1682178354Ssam}
1683178354Ssam
1684178354Ssamstatic void
1685173275Ssamset80211shortgi(const char *val, int d, int s, const struct afswtch *rafp)
1686173275Ssam{
1687173275Ssam	set80211(s, IEEE80211_IOC_SHORTGI,
1688173275Ssam		d ? (IEEE80211_HTCAP_SHORTGI20 | IEEE80211_HTCAP_SHORTGI40) : 0,
1689173275Ssam		0, NULL);
1690173275Ssam}
1691173275Ssam
1692173275Ssamstatic void
1693173275Ssamset80211ampdu(const char *val, int d, int s, const struct afswtch *rafp)
1694173275Ssam{
1695173275Ssam	int ampdu;
1696173275Ssam
1697173275Ssam	if (get80211val(s, IEEE80211_IOC_AMPDU, &ampdu) < 0)
1698173275Ssam		errx(-1, "cannot get AMPDU setting");
1699173275Ssam	if (d < 0) {
1700173275Ssam		d = -d;
1701173275Ssam		ampdu &= ~d;
1702173275Ssam	} else
1703173275Ssam		ampdu |= d;
1704173275Ssam	set80211(s, IEEE80211_IOC_AMPDU, ampdu, 0, NULL);
1705173275Ssam}
1706173275Ssam
1707173275Ssamstatic
1708173275SsamDECL_CMD_FUNC(set80211ampdulimit, val, d)
1709173275Ssam{
1710173275Ssam	int v;
1711173275Ssam
1712173275Ssam	switch (atoi(val)) {
1713173275Ssam	case 8:
1714173275Ssam	case 8*1024:
1715173275Ssam		v = IEEE80211_HTCAP_MAXRXAMPDU_8K;
1716173275Ssam		break;
1717173275Ssam	case 16:
1718173275Ssam	case 16*1024:
1719173275Ssam		v = IEEE80211_HTCAP_MAXRXAMPDU_16K;
1720173275Ssam		break;
1721173275Ssam	case 32:
1722173275Ssam	case 32*1024:
1723173275Ssam		v = IEEE80211_HTCAP_MAXRXAMPDU_32K;
1724173275Ssam		break;
1725173275Ssam	case 64:
1726173275Ssam	case 64*1024:
1727173275Ssam		v = IEEE80211_HTCAP_MAXRXAMPDU_64K;
1728173275Ssam		break;
1729173275Ssam	default:
1730173275Ssam		errx(-1, "invalid A-MPDU limit %s", val);
1731173275Ssam	}
1732173275Ssam	set80211(s, IEEE80211_IOC_AMPDU_LIMIT, v, 0, NULL);
1733173275Ssam}
1734173275Ssam
1735173275Ssamstatic
1736173275SsamDECL_CMD_FUNC(set80211ampdudensity, val, d)
1737173275Ssam{
1738173275Ssam	int v;
1739173275Ssam
1740183260Ssam	if (isanyarg(val) || strcasecmp(val, "na") == 0)
1741173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_NA;
1742173275Ssam	else switch ((int)(atof(val)*4)) {
1743173275Ssam	case 0:
1744173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_NA;
1745173275Ssam		break;
1746173275Ssam	case 1:
1747173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_025;
1748173275Ssam		break;
1749173275Ssam	case 2:
1750173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_05;
1751173275Ssam		break;
1752173275Ssam	case 4:
1753173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_1;
1754173275Ssam		break;
1755173275Ssam	case 8:
1756173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_2;
1757173275Ssam		break;
1758173275Ssam	case 16:
1759173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_4;
1760173275Ssam		break;
1761173275Ssam	case 32:
1762173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_8;
1763173275Ssam		break;
1764173275Ssam	case 64:
1765173275Ssam		v = IEEE80211_HTCAP_MPDUDENSITY_16;
1766173275Ssam		break;
1767173275Ssam	default:
1768173275Ssam		errx(-1, "invalid A-MPDU density %s", val);
1769173275Ssam	}
1770173275Ssam	set80211(s, IEEE80211_IOC_AMPDU_DENSITY, v, 0, NULL);
1771173275Ssam}
1772173275Ssam
1773173275Ssamstatic void
1774173275Ssamset80211amsdu(const char *val, int d, int s, const struct afswtch *rafp)
1775173275Ssam{
1776173275Ssam	int amsdu;
1777173275Ssam
1778173275Ssam	if (get80211val(s, IEEE80211_IOC_AMSDU, &amsdu) < 0)
1779187801Ssam		err(-1, "cannot get AMSDU setting");
1780173275Ssam	if (d < 0) {
1781173275Ssam		d = -d;
1782173275Ssam		amsdu &= ~d;
1783173275Ssam	} else
1784173275Ssam		amsdu |= d;
1785173275Ssam	set80211(s, IEEE80211_IOC_AMSDU, amsdu, 0, NULL);
1786173275Ssam}
1787173275Ssam
1788173275Ssamstatic
1789173275SsamDECL_CMD_FUNC(set80211amsdulimit, val, d)
1790173275Ssam{
1791173275Ssam	set80211(s, IEEE80211_IOC_AMSDU_LIMIT, atoi(val), 0, NULL);
1792173275Ssam}
1793173275Ssam
1794173275Ssamstatic void
1795173275Ssamset80211puren(const char *val, int d, int s, const struct afswtch *rafp)
1796173275Ssam{
1797173275Ssam	set80211(s, IEEE80211_IOC_PUREN, d, 0, NULL);
1798173275Ssam}
1799173275Ssam
1800173275Ssamstatic void
1801173275Ssamset80211htcompat(const char *val, int d, int s, const struct afswtch *rafp)
1802173275Ssam{
1803173275Ssam	set80211(s, IEEE80211_IOC_HTCOMPAT, d, 0, NULL);
1804173275Ssam}
1805173275Ssam
1806173275Ssamstatic void
1807173275Ssamset80211htconf(const char *val, int d, int s, const struct afswtch *rafp)
1808173275Ssam{
1809173275Ssam	set80211(s, IEEE80211_IOC_HTCONF, d, 0, NULL);
1810173275Ssam	htconf = d;
1811173275Ssam}
1812173275Ssam
1813173275Ssamstatic void
1814178354Ssamset80211dwds(const char *val, int d, int s, const struct afswtch *rafp)
1815178354Ssam{
1816178354Ssam	set80211(s, IEEE80211_IOC_DWDS, d, 0, NULL);
1817178354Ssam}
1818178354Ssam
1819178354Ssamstatic void
1820173275Ssamset80211inact(const char *val, int d, int s, const struct afswtch *rafp)
1821173275Ssam{
1822173275Ssam	set80211(s, IEEE80211_IOC_INACTIVITY, d, 0, NULL);
1823173275Ssam}
1824173275Ssam
1825173275Ssamstatic void
1826178354Ssamset80211tsn(const char *val, int d, int s, const struct afswtch *rafp)
1827178354Ssam{
1828178354Ssam	set80211(s, IEEE80211_IOC_TSN, d, 0, NULL);
1829178354Ssam}
1830178354Ssam
1831178354Ssamstatic void
1832178354Ssamset80211dotd(const char *val, int d, int s, const struct afswtch *rafp)
1833178354Ssam{
1834178354Ssam	set80211(s, IEEE80211_IOC_DOTD, d, 0, NULL);
1835178354Ssam}
1836178354Ssam
1837183261Ssamstatic void
1838183261Ssamset80211smps(const char *val, int d, int s, const struct afswtch *rafp)
1839183261Ssam{
1840183261Ssam	set80211(s, IEEE80211_IOC_SMPS, d, 0, NULL);
1841183261Ssam}
1842183261Ssam
1843183261Ssamstatic void
1844183261Ssamset80211rifs(const char *val, int d, int s, const struct afswtch *rafp)
1845183261Ssam{
1846183261Ssam	set80211(s, IEEE80211_IOC_RIFS, d, 0, NULL);
1847183261Ssam}
1848183261Ssam
1849186904Ssamstatic
1850186904SsamDECL_CMD_FUNC(set80211tdmaslot, val, d)
1851186904Ssam{
1852186904Ssam	set80211(s, IEEE80211_IOC_TDMA_SLOT, atoi(val), 0, NULL);
1853186904Ssam}
1854186904Ssam
1855186904Ssamstatic
1856186904SsamDECL_CMD_FUNC(set80211tdmaslotcnt, val, d)
1857186904Ssam{
1858186904Ssam	set80211(s, IEEE80211_IOC_TDMA_SLOTCNT, atoi(val), 0, NULL);
1859186904Ssam}
1860186904Ssam
1861186904Ssamstatic
1862186904SsamDECL_CMD_FUNC(set80211tdmaslotlen, val, d)
1863186904Ssam{
1864186904Ssam	set80211(s, IEEE80211_IOC_TDMA_SLOTLEN, atoi(val), 0, NULL);
1865186904Ssam}
1866186904Ssam
1867186904Ssamstatic
1868186904SsamDECL_CMD_FUNC(set80211tdmabintval, val, d)
1869186904Ssam{
1870186904Ssam	set80211(s, IEEE80211_IOC_TDMA_BINTERVAL, atoi(val), 0, NULL);
1871186904Ssam}
1872186904Ssam
1873195618Srpaulostatic
1874195618SrpauloDECL_CMD_FUNC(set80211meshttl, val, d)
1875195618Srpaulo{
1876195618Srpaulo	set80211(s, IEEE80211_IOC_MESH_TTL, atoi(val), 0, NULL);
1877195618Srpaulo}
1878195618Srpaulo
1879195618Srpaulostatic
1880195618SrpauloDECL_CMD_FUNC(set80211meshforward, val, d)
1881195618Srpaulo{
1882233328Sadrian	set80211(s, IEEE80211_IOC_MESH_FWRD, d, 0, NULL);
1883195618Srpaulo}
1884195618Srpaulo
1885195618Srpaulostatic
1886234893SmonthadarDECL_CMD_FUNC(set80211meshgate, val, d)
1887234893Smonthadar{
1888234893Smonthadar	set80211(s, IEEE80211_IOC_MESH_GATE, d, 0, NULL);
1889234893Smonthadar}
1890234893Smonthadar
1891234893Smonthadarstatic
1892195618SrpauloDECL_CMD_FUNC(set80211meshpeering, val, d)
1893195618Srpaulo{
1894233382Sbschmidt	set80211(s, IEEE80211_IOC_MESH_AP, d, 0, NULL);
1895195618Srpaulo}
1896195618Srpaulo
1897195618Srpaulostatic
1898195618SrpauloDECL_CMD_FUNC(set80211meshmetric, val, d)
1899195618Srpaulo{
1900195618Srpaulo	char v[12];
1901195618Srpaulo
1902195618Srpaulo	memcpy(v, val, sizeof(v));
1903195618Srpaulo	set80211(s, IEEE80211_IOC_MESH_PR_METRIC, 0, 0, v);
1904195618Srpaulo}
1905195618Srpaulo
1906195618Srpaulostatic
1907195618SrpauloDECL_CMD_FUNC(set80211meshpath, val, d)
1908195618Srpaulo{
1909195618Srpaulo	char v[12];
1910195618Srpaulo
1911195618Srpaulo	memcpy(v, val, sizeof(v));
1912195618Srpaulo	set80211(s, IEEE80211_IOC_MESH_PR_PATH, 0, 0, v);
1913195618Srpaulo}
1914195618Srpaulo
1915178354Ssamstatic int
1916178354Ssamregdomain_sort(const void *a, const void *b)
1917178354Ssam{
1918178354Ssam#define	CHAN_ALL \
1919178354Ssam	(IEEE80211_CHAN_ALLTURBO|IEEE80211_CHAN_HALF|IEEE80211_CHAN_QUARTER)
1920178354Ssam	const struct ieee80211_channel *ca = a;
1921178354Ssam	const struct ieee80211_channel *cb = b;
1922178354Ssam
1923178354Ssam	return ca->ic_freq == cb->ic_freq ?
1924178354Ssam	    (ca->ic_flags & CHAN_ALL) - (cb->ic_flags & CHAN_ALL) :
1925178354Ssam	    ca->ic_freq - cb->ic_freq;
1926178354Ssam#undef CHAN_ALL
1927178354Ssam}
1928178354Ssam
1929178354Ssamstatic const struct ieee80211_channel *
1930178354Ssamchanlookup(const struct ieee80211_channel chans[], int nchans,
1931178354Ssam	int freq, int flags)
1932178354Ssam{
1933178354Ssam	int i;
1934178354Ssam
1935178354Ssam	flags &= IEEE80211_CHAN_ALLTURBO;
1936178354Ssam	for (i = 0; i < nchans; i++) {
1937178354Ssam		const struct ieee80211_channel *c = &chans[i];
1938178354Ssam		if (c->ic_freq == freq &&
1939178354Ssam		    (c->ic_flags & IEEE80211_CHAN_ALLTURBO) == flags)
1940178354Ssam			return c;
1941178354Ssam	}
1942178354Ssam	return NULL;
1943178354Ssam}
1944178354Ssam
1945187841Ssamstatic int
1946187841Ssamchanfind(const struct ieee80211_channel chans[], int nchans, int flags)
1947187841Ssam{
1948187841Ssam	int i;
1949187841Ssam
1950187841Ssam	for (i = 0; i < nchans; i++) {
1951187841Ssam		const struct ieee80211_channel *c = &chans[i];
1952187841Ssam		if ((c->ic_flags & flags) == flags)
1953187841Ssam			return 1;
1954187841Ssam	}
1955187841Ssam	return 0;
1956187841Ssam}
1957187841Ssam
1958188258Ssam/*
1959188258Ssam * Check channel compatibility.
1960188258Ssam */
1961188258Ssamstatic int
1962188258Ssamcheckchan(const struct ieee80211req_chaninfo *avail, int freq, int flags)
1963188258Ssam{
1964188258Ssam	flags &= ~REQ_FLAGS;
1965188258Ssam	/*
1966188258Ssam	 * Check if exact channel is in the calibration table;
1967188258Ssam	 * everything below is to deal with channels that we
1968188258Ssam	 * want to include but that are not explicitly listed.
1969188258Ssam	 */
1970188258Ssam	if (flags & IEEE80211_CHAN_HT40) {
1971188258Ssam		/* NB: we use an HT40 channel center that matches HT20 */
1972188258Ssam		flags = (flags &~ IEEE80211_CHAN_HT40) | IEEE80211_CHAN_HT20;
1973188258Ssam	}
1974188258Ssam	if (chanlookup(avail->ic_chans, avail->ic_nchans, freq, flags) != NULL)
1975188258Ssam		return 1;
1976188258Ssam	if (flags & IEEE80211_CHAN_GSM) {
1977188258Ssam		/*
1978188258Ssam		 * XXX GSM frequency mapping is handled in the kernel
1979188258Ssam		 * so we cannot find them in the calibration table;
1980188258Ssam		 * just accept the channel and the kernel will reject
1981188258Ssam		 * the channel list if it's wrong.
1982188258Ssam		 */
1983188258Ssam		return 1;
1984188258Ssam	}
1985188258Ssam	/*
1986188258Ssam	 * If this is a 1/2 or 1/4 width channel allow it if a full
1987188258Ssam	 * width channel is present for this frequency, and the device
1988188258Ssam	 * supports fractional channels on this band.  This is a hack
1989188258Ssam	 * that avoids bloating the calibration table; it may be better
1990188258Ssam	 * by per-band attributes though (we are effectively calculating
1991188258Ssam	 * this attribute by scanning the channel list ourself).
1992188258Ssam	 */
1993188258Ssam	if ((flags & (IEEE80211_CHAN_HALF | IEEE80211_CHAN_QUARTER)) == 0)
1994188258Ssam		return 0;
1995188258Ssam	if (chanlookup(avail->ic_chans, avail->ic_nchans, freq,
1996188258Ssam	    flags &~ (IEEE80211_CHAN_HALF | IEEE80211_CHAN_QUARTER)) == NULL)
1997188258Ssam		return 0;
1998188258Ssam	if (flags & IEEE80211_CHAN_HALF) {
1999188258Ssam		return chanfind(avail->ic_chans, avail->ic_nchans,
2000188258Ssam		    IEEE80211_CHAN_HALF |
2001188258Ssam		       (flags & (IEEE80211_CHAN_2GHZ | IEEE80211_CHAN_5GHZ)));
2002188258Ssam	} else {
2003188258Ssam		return chanfind(avail->ic_chans, avail->ic_nchans,
2004188258Ssam		    IEEE80211_CHAN_QUARTER |
2005188258Ssam			(flags & (IEEE80211_CHAN_2GHZ | IEEE80211_CHAN_5GHZ)));
2006188258Ssam	}
2007188258Ssam}
2008188258Ssam
2009178354Ssamstatic void
2010178354Ssamregdomain_addchans(struct ieee80211req_chaninfo *ci,
2011178354Ssam	const netband_head *bands,
2012178354Ssam	const struct ieee80211_regdomain *reg,
2013178354Ssam	uint32_t chanFlags,
2014178354Ssam	const struct ieee80211req_chaninfo *avail)
2015178354Ssam{
2016178354Ssam	const struct netband *nb;
2017178354Ssam	const struct freqband *b;
2018178354Ssam	struct ieee80211_channel *c, *prev;
2019188258Ssam	int freq, hi_adj, lo_adj, channelSep;
2020188258Ssam	uint32_t flags;
2021178354Ssam
2022188258Ssam	hi_adj = (chanFlags & IEEE80211_CHAN_HT40U) ? -20 : 0;
2023188258Ssam	lo_adj = (chanFlags & IEEE80211_CHAN_HT40D) ? 20 : 0;
2024178354Ssam	channelSep = (chanFlags & IEEE80211_CHAN_2GHZ) ? 0 : 40;
2025178354Ssam	LIST_FOREACH(nb, bands, next) {
2026178354Ssam		b = nb->band;
2027187842Ssam		if (verbose) {
2028187842Ssam			printf("%s:", __func__);
2029187842Ssam			printb(" chanFlags", chanFlags, IEEE80211_CHAN_BITS);
2030187842Ssam			printb(" bandFlags", nb->flags | b->flags,
2031187842Ssam			    IEEE80211_CHAN_BITS);
2032187842Ssam			putchar('\n');
2033187842Ssam		}
2034178354Ssam		prev = NULL;
2035188258Ssam		for (freq = b->freqStart + lo_adj;
2036188258Ssam		     freq <= b->freqEnd + hi_adj; freq += b->chanSep) {
2037187841Ssam			/*
2038188258Ssam			 * Construct flags for the new channel.  We take
2039188258Ssam			 * the attributes from the band descriptions except
2040188258Ssam			 * for HT40 which is enabled generically (i.e. +/-
2041188258Ssam			 * extension channel) in the band description and
2042188258Ssam			 * then constrained according by channel separation.
2043187841Ssam			 */
2044188258Ssam			flags = nb->flags | b->flags;
2045188258Ssam			if (flags & IEEE80211_CHAN_HT) {
2046188258Ssam				/*
2047188258Ssam				 * HT channels are generated specially; we're
2048188258Ssam				 * called to add HT20, HT40+, and HT40- chan's
2049188258Ssam				 * so we need to expand only band specs for
2050188258Ssam				 * the HT channel type being added.
2051188258Ssam				 */
2052188258Ssam				if ((chanFlags & IEEE80211_CHAN_HT20) &&
2053188258Ssam				    (flags & IEEE80211_CHAN_HT20) == 0) {
2054188258Ssam					if (verbose)
2055188258Ssam						printf("%u: skip, not an "
2056188258Ssam						    "HT20 channel\n", freq);
2057188258Ssam					continue;
2058188258Ssam				}
2059188258Ssam				if ((chanFlags & IEEE80211_CHAN_HT40) &&
2060188258Ssam				    (flags & IEEE80211_CHAN_HT40) == 0) {
2061188258Ssam					if (verbose)
2062188258Ssam						printf("%u: skip, not an "
2063188258Ssam						    "HT40 channel\n", freq);
2064188258Ssam					continue;
2065188258Ssam				}
2066188258Ssam				/* NB: HT attribute comes from caller */
2067188258Ssam				flags &= ~IEEE80211_CHAN_HT;
2068188258Ssam				flags |= chanFlags & IEEE80211_CHAN_HT;
2069188258Ssam			}
2070188258Ssam			/*
2071188258Ssam			 * Check if device can operate on this frequency.
2072188258Ssam			 */
2073188258Ssam			if (!checkchan(avail, freq, flags)) {
2074187842Ssam				if (verbose) {
2075187842Ssam					printf("%u: skip, ", freq);
2076188258Ssam					printb("flags", flags,
2077187842Ssam					    IEEE80211_CHAN_BITS);
2078187842Ssam					printf(" not available\n");
2079187842Ssam				}
2080178354Ssam				continue;
2081178354Ssam			}
2082188258Ssam			if ((flags & REQ_ECM) && !reg->ecm) {
2083178354Ssam				if (verbose)
2084188258Ssam					printf("%u: skip, ECM channel\n", freq);
2085178354Ssam				continue;
2086178354Ssam			}
2087188258Ssam			if ((flags & REQ_INDOOR) && reg->location == 'O') {
2088178354Ssam				if (verbose)
2089188258Ssam					printf("%u: skip, indoor channel\n",
2090187841Ssam					    freq);
2091178354Ssam				continue;
2092178354Ssam			}
2093178354Ssam			if ((flags & REQ_OUTDOOR) && reg->location == 'I') {
2094178354Ssam				if (verbose)
2095188258Ssam					printf("%u: skip, outdoor channel\n",
2096188258Ssam					    freq);
2097178354Ssam				continue;
2098178354Ssam			}
2099178354Ssam			if ((flags & IEEE80211_CHAN_HT40) &&
2100178354Ssam			    prev != NULL && (freq - prev->ic_freq) < channelSep) {
2101178354Ssam				if (verbose)
2102178354Ssam					printf("%u: skip, only %u channel "
2103178354Ssam					    "separation, need %d\n", freq,
2104178354Ssam					    freq - prev->ic_freq, channelSep);
2105178354Ssam				continue;
2106178354Ssam			}
2107178354Ssam			if (ci->ic_nchans == IEEE80211_CHAN_MAX) {
2108178354Ssam				if (verbose)
2109187842Ssam					printf("%u: skip, channel table full\n",
2110187842Ssam					    freq);
2111178354Ssam				break;
2112178354Ssam			}
2113178354Ssam			c = &ci->ic_chans[ci->ic_nchans++];
2114187801Ssam			memset(c, 0, sizeof(*c));
2115178354Ssam			c->ic_freq = freq;
2116188258Ssam			c->ic_flags = flags;
2117178354Ssam			if (c->ic_flags & IEEE80211_CHAN_DFS)
2118178354Ssam				c->ic_maxregpower = nb->maxPowerDFS;
2119178354Ssam			else
2120178354Ssam				c->ic_maxregpower = nb->maxPower;
2121187842Ssam			if (verbose) {
2122187842Ssam				printf("[%3d] add freq %u ",
2123187842Ssam				    ci->ic_nchans-1, c->ic_freq);
2124187842Ssam				printb("flags", c->ic_flags, IEEE80211_CHAN_BITS);
2125187842Ssam				printf(" power %u\n", c->ic_maxregpower);
2126187842Ssam			}
2127178354Ssam			/* NB: kernel fills in other fields */
2128178354Ssam			prev = c;
2129178354Ssam		}
2130178354Ssam	}
2131178354Ssam}
2132178354Ssam
2133178354Ssamstatic void
2134178354Ssamregdomain_makechannels(
2135178354Ssam	struct ieee80211_regdomain_req *req,
2136178354Ssam	const struct ieee80211_devcaps_req *dc)
2137178354Ssam{
2138178354Ssam	struct regdata *rdp = getregdata();
2139178354Ssam	const struct country *cc;
2140178354Ssam	const struct ieee80211_regdomain *reg = &req->rd;
2141178354Ssam	struct ieee80211req_chaninfo *ci = &req->chaninfo;
2142178354Ssam	const struct regdomain *rd;
2143178354Ssam
2144178354Ssam	/*
2145178354Ssam	 * Locate construction table for new channel list.  We treat
2146178354Ssam	 * the regdomain/SKU as definitive so a country can be in
2147178354Ssam	 * multiple with different properties (e.g. US in FCC+FCC3).
2148178354Ssam	 * If no regdomain is specified then we fallback on the country
2149178354Ssam	 * code to find the associated regdomain since countries always
2150178354Ssam	 * belong to at least one regdomain.
2151178354Ssam	 */
2152178354Ssam	if (reg->regdomain == 0) {
2153178354Ssam		cc = lib80211_country_findbycc(rdp, reg->country);
2154178354Ssam		if (cc == NULL)
2155178354Ssam			errx(1, "internal error, country %d not found",
2156178354Ssam			    reg->country);
2157178354Ssam		rd = cc->rd;
2158178354Ssam	} else
2159178354Ssam		rd = lib80211_regdomain_findbysku(rdp, reg->regdomain);
2160178354Ssam	if (rd == NULL)
2161178354Ssam		errx(1, "internal error, regdomain %d not found",
2162178354Ssam			    reg->regdomain);
2163178354Ssam	if (rd->sku != SKU_DEBUG) {
2164187801Ssam		/*
2165187801Ssam		 * regdomain_addchans incrememnts the channel count for
2166187801Ssam		 * each channel it adds so initialize ic_nchans to zero.
2167187801Ssam		 * Note that we know we have enough space to hold all possible
2168187801Ssam		 * channels because the devcaps list size was used to
2169187801Ssam		 * allocate our request.
2170187801Ssam		 */
2171187801Ssam		ci->ic_nchans = 0;
2172178354Ssam		if (!LIST_EMPTY(&rd->bands_11b))
2173178354Ssam			regdomain_addchans(ci, &rd->bands_11b, reg,
2174178354Ssam			    IEEE80211_CHAN_B, &dc->dc_chaninfo);
2175187841Ssam		if (!LIST_EMPTY(&rd->bands_11g))
2176178354Ssam			regdomain_addchans(ci, &rd->bands_11g, reg,
2177178354Ssam			    IEEE80211_CHAN_G, &dc->dc_chaninfo);
2178187841Ssam		if (!LIST_EMPTY(&rd->bands_11a))
2179178354Ssam			regdomain_addchans(ci, &rd->bands_11a, reg,
2180178354Ssam			    IEEE80211_CHAN_A, &dc->dc_chaninfo);
2181188258Ssam		if (!LIST_EMPTY(&rd->bands_11na) && dc->dc_htcaps != 0) {
2182178354Ssam			regdomain_addchans(ci, &rd->bands_11na, reg,
2183178354Ssam			    IEEE80211_CHAN_A | IEEE80211_CHAN_HT20,
2184178354Ssam			    &dc->dc_chaninfo);
2185188258Ssam			if (dc->dc_htcaps & IEEE80211_HTCAP_CHWIDTH40) {
2186188258Ssam				regdomain_addchans(ci, &rd->bands_11na, reg,
2187188258Ssam				    IEEE80211_CHAN_A | IEEE80211_CHAN_HT40U,
2188188258Ssam				    &dc->dc_chaninfo);
2189188258Ssam				regdomain_addchans(ci, &rd->bands_11na, reg,
2190188258Ssam				    IEEE80211_CHAN_A | IEEE80211_CHAN_HT40D,
2191188258Ssam				    &dc->dc_chaninfo);
2192188258Ssam			}
2193178354Ssam		}
2194188258Ssam		if (!LIST_EMPTY(&rd->bands_11ng) && dc->dc_htcaps != 0) {
2195178354Ssam			regdomain_addchans(ci, &rd->bands_11ng, reg,
2196178354Ssam			    IEEE80211_CHAN_G | IEEE80211_CHAN_HT20,
2197178354Ssam			    &dc->dc_chaninfo);
2198188258Ssam			if (dc->dc_htcaps & IEEE80211_HTCAP_CHWIDTH40) {
2199188258Ssam				regdomain_addchans(ci, &rd->bands_11ng, reg,
2200188258Ssam				    IEEE80211_CHAN_G | IEEE80211_CHAN_HT40U,
2201188258Ssam				    &dc->dc_chaninfo);
2202188258Ssam				regdomain_addchans(ci, &rd->bands_11ng, reg,
2203188258Ssam				    IEEE80211_CHAN_G | IEEE80211_CHAN_HT40D,
2204188258Ssam				    &dc->dc_chaninfo);
2205188258Ssam			}
2206178354Ssam		}
2207178354Ssam		qsort(ci->ic_chans, ci->ic_nchans, sizeof(ci->ic_chans[0]),
2208178354Ssam		    regdomain_sort);
2209178354Ssam	} else
2210187801Ssam		memcpy(ci, &dc->dc_chaninfo,
2211187801Ssam		    IEEE80211_CHANINFO_SPACE(&dc->dc_chaninfo));
2212178354Ssam}
2213178354Ssam
2214178354Ssamstatic void
2215178354Ssamlist_countries(void)
2216178354Ssam{
2217178354Ssam	struct regdata *rdp = getregdata();
2218178354Ssam	const struct country *cp;
2219178354Ssam	const struct regdomain *dp;
2220178354Ssam	int i;
2221178354Ssam
2222178354Ssam	i = 0;
2223178354Ssam	printf("\nCountry codes:\n");
2224178354Ssam	LIST_FOREACH(cp, &rdp->countries, next) {
2225178354Ssam		printf("%2s %-15.15s%s", cp->isoname,
2226178354Ssam		    cp->name, ((i+1)%4) == 0 ? "\n" : " ");
2227178354Ssam		i++;
2228178354Ssam	}
2229178354Ssam	i = 0;
2230178354Ssam	printf("\nRegulatory domains:\n");
2231178354Ssam	LIST_FOREACH(dp, &rdp->domains, next) {
2232178354Ssam		printf("%-15.15s%s", dp->name, ((i+1)%4) == 0 ? "\n" : " ");
2233178354Ssam		i++;
2234178354Ssam	}
2235178354Ssam	printf("\n");
2236178354Ssam}
2237178354Ssam
2238178354Ssamstatic void
2239178354Ssamdefaultcountry(const struct regdomain *rd)
2240178354Ssam{
2241178354Ssam	struct regdata *rdp = getregdata();
2242178354Ssam	const struct country *cc;
2243178354Ssam
2244178354Ssam	cc = lib80211_country_findbycc(rdp, rd->cc->code);
2245178354Ssam	if (cc == NULL)
2246178354Ssam		errx(1, "internal error, ISO country code %d not "
2247178354Ssam		    "defined for regdomain %s", rd->cc->code, rd->name);
2248178354Ssam	regdomain.country = cc->code;
2249178354Ssam	regdomain.isocc[0] = cc->isoname[0];
2250178354Ssam	regdomain.isocc[1] = cc->isoname[1];
2251178354Ssam}
2252178354Ssam
2253178354Ssamstatic
2254178354SsamDECL_CMD_FUNC(set80211regdomain, val, d)
2255178354Ssam{
2256178354Ssam	struct regdata *rdp = getregdata();
2257178354Ssam	const struct regdomain *rd;
2258178354Ssam
2259178354Ssam	rd = lib80211_regdomain_findbyname(rdp, val);
2260178354Ssam	if (rd == NULL) {
2261186104Ssam		char *eptr;
2262186104Ssam		long sku = strtol(val, &eptr, 0);
2263186104Ssam
2264186104Ssam		if (eptr != val)
2265186104Ssam			rd = lib80211_regdomain_findbysku(rdp, sku);
2266186104Ssam		if (eptr == val || rd == NULL)
2267178354Ssam			errx(1, "unknown regdomain %s", val);
2268178354Ssam	}
2269178354Ssam	getregdomain(s);
2270178354Ssam	regdomain.regdomain = rd->sku;
2271178354Ssam	if (regdomain.country == 0 && rd->cc != NULL) {
2272178354Ssam		/*
2273178354Ssam		 * No country code setup and there's a default
2274178354Ssam		 * one for this regdomain fill it in.
2275178354Ssam		 */
2276178354Ssam		defaultcountry(rd);
2277178354Ssam	}
2278178354Ssam	callback_register(setregdomain_cb, &regdomain);
2279178354Ssam}
2280178354Ssam
2281178354Ssamstatic
2282178354SsamDECL_CMD_FUNC(set80211country, val, d)
2283178354Ssam{
2284178354Ssam	struct regdata *rdp = getregdata();
2285178354Ssam	const struct country *cc;
2286178354Ssam
2287178354Ssam	cc = lib80211_country_findbyname(rdp, val);
2288178354Ssam	if (cc == NULL) {
2289186103Ssam		char *eptr;
2290186103Ssam		long code = strtol(val, &eptr, 0);
2291186103Ssam
2292186103Ssam		if (eptr != val)
2293186103Ssam			cc = lib80211_country_findbycc(rdp, code);
2294186103Ssam		if (eptr == val || cc == NULL)
2295178354Ssam			errx(1, "unknown ISO country code %s", val);
2296178354Ssam	}
2297178354Ssam	getregdomain(s);
2298178354Ssam	regdomain.regdomain = cc->rd->sku;
2299178354Ssam	regdomain.country = cc->code;
2300178354Ssam	regdomain.isocc[0] = cc->isoname[0];
2301178354Ssam	regdomain.isocc[1] = cc->isoname[1];
2302178354Ssam	callback_register(setregdomain_cb, &regdomain);
2303178354Ssam}
2304178354Ssam
2305178354Ssamstatic void
2306178354Ssamset80211location(const char *val, int d, int s, const struct afswtch *rafp)
2307178354Ssam{
2308178354Ssam	getregdomain(s);
2309178354Ssam	regdomain.location = d;
2310178354Ssam	callback_register(setregdomain_cb, &regdomain);
2311178354Ssam}
2312178354Ssam
2313178354Ssamstatic void
2314178354Ssamset80211ecm(const char *val, int d, int s, const struct afswtch *rafp)
2315178354Ssam{
2316178354Ssam	getregdomain(s);
2317178354Ssam	regdomain.ecm = d;
2318178354Ssam	callback_register(setregdomain_cb, &regdomain);
2319178354Ssam}
2320178354Ssam
2321178354Ssamstatic void
2322173275SsamLINE_INIT(char c)
2323173275Ssam{
2324173275Ssam	spacer = c;
2325173275Ssam	if (c == '\t')
2326173275Ssam		col = 8;
2327173275Ssam	else
2328173275Ssam		col = 1;
2329173275Ssam}
2330173275Ssam
2331173275Ssamstatic void
2332173275SsamLINE_BREAK(void)
2333173275Ssam{
2334173275Ssam	if (spacer != '\t') {
2335173275Ssam		printf("\n");
2336173275Ssam		spacer = '\t';
2337173275Ssam	}
2338173275Ssam	col = 8;		/* 8-col tab */
2339173275Ssam}
2340173275Ssam
2341173275Ssamstatic void
2342173275SsamLINE_CHECK(const char *fmt, ...)
2343173275Ssam{
2344173275Ssam	char buf[80];
2345173275Ssam	va_list ap;
2346173275Ssam	int n;
2347173275Ssam
2348173275Ssam	va_start(ap, fmt);
2349173275Ssam	n = vsnprintf(buf+1, sizeof(buf)-1, fmt, ap);
2350173275Ssam	va_end(ap);
2351173275Ssam	col += 1+n;
2352173275Ssam	if (col > MAXCOL) {
2353173275Ssam		LINE_BREAK();
2354173275Ssam		col += n;
2355173275Ssam	}
2356173275Ssam	buf[0] = spacer;
2357173275Ssam	printf("%s", buf);
2358173275Ssam	spacer = ' ';
2359173275Ssam}
2360173275Ssam
2361138593Ssamstatic int
2362170531Ssamgetmaxrate(const uint8_t rates[15], uint8_t nrates)
2363138593Ssam{
2364138593Ssam	int i, maxrate = -1;
2365138593Ssam
2366138593Ssam	for (i = 0; i < nrates; i++) {
2367138593Ssam		int rate = rates[i] & IEEE80211_RATE_VAL;
2368138593Ssam		if (rate > maxrate)
2369138593Ssam			maxrate = rate;
2370138593Ssam	}
2371138593Ssam	return maxrate / 2;
2372138593Ssam}
2373138593Ssam
2374138593Ssamstatic const char *
2375138593Ssamgetcaps(int capinfo)
2376138593Ssam{
2377138593Ssam	static char capstring[32];
2378138593Ssam	char *cp = capstring;
2379138593Ssam
2380138593Ssam	if (capinfo & IEEE80211_CAPINFO_ESS)
2381138593Ssam		*cp++ = 'E';
2382138593Ssam	if (capinfo & IEEE80211_CAPINFO_IBSS)
2383138593Ssam		*cp++ = 'I';
2384138593Ssam	if (capinfo & IEEE80211_CAPINFO_CF_POLLABLE)
2385138593Ssam		*cp++ = 'c';
2386138593Ssam	if (capinfo & IEEE80211_CAPINFO_CF_POLLREQ)
2387138593Ssam		*cp++ = 'C';
2388138593Ssam	if (capinfo & IEEE80211_CAPINFO_PRIVACY)
2389138593Ssam		*cp++ = 'P';
2390138593Ssam	if (capinfo & IEEE80211_CAPINFO_SHORT_PREAMBLE)
2391138593Ssam		*cp++ = 'S';
2392138593Ssam	if (capinfo & IEEE80211_CAPINFO_PBCC)
2393138593Ssam		*cp++ = 'B';
2394138593Ssam	if (capinfo & IEEE80211_CAPINFO_CHNL_AGILITY)
2395138593Ssam		*cp++ = 'A';
2396138593Ssam	if (capinfo & IEEE80211_CAPINFO_SHORT_SLOTTIME)
2397138593Ssam		*cp++ = 's';
2398138593Ssam	if (capinfo & IEEE80211_CAPINFO_RSN)
2399138593Ssam		*cp++ = 'R';
2400138593Ssam	if (capinfo & IEEE80211_CAPINFO_DSSSOFDM)
2401138593Ssam		*cp++ = 'D';
2402138593Ssam	*cp = '\0';
2403138593Ssam	return capstring;
2404138593Ssam}
2405138593Ssam
2406159885Ssamstatic const char *
2407159885Ssamgetflags(int flags)
2408159885Ssam{
2409159885Ssam	static char flagstring[32];
2410159885Ssam	char *cp = flagstring;
2411159885Ssam
2412159885Ssam	if (flags & IEEE80211_NODE_AUTH)
2413159885Ssam		*cp++ = 'A';
2414159885Ssam	if (flags & IEEE80211_NODE_QOS)
2415159885Ssam		*cp++ = 'Q';
2416159885Ssam	if (flags & IEEE80211_NODE_ERP)
2417159885Ssam		*cp++ = 'E';
2418159885Ssam	if (flags & IEEE80211_NODE_PWR_MGT)
2419159885Ssam		*cp++ = 'P';
2420173275Ssam	if (flags & IEEE80211_NODE_HT) {
2421170531Ssam		*cp++ = 'H';
2422173275Ssam		if (flags & IEEE80211_NODE_HTCOMPAT)
2423173275Ssam			*cp++ = '+';
2424173275Ssam	}
2425173275Ssam	if (flags & IEEE80211_NODE_WPS)
2426173275Ssam		*cp++ = 'W';
2427173275Ssam	if (flags & IEEE80211_NODE_TSN)
2428183261Ssam		*cp++ = 'N';
2429183261Ssam	if (flags & IEEE80211_NODE_AMPDU_TX)
2430173275Ssam		*cp++ = 'T';
2431183261Ssam	if (flags & IEEE80211_NODE_AMPDU_RX)
2432183261Ssam		*cp++ = 'R';
2433183261Ssam	if (flags & IEEE80211_NODE_MIMO_PS) {
2434183261Ssam		*cp++ = 'M';
2435183261Ssam		if (flags & IEEE80211_NODE_MIMO_RTS)
2436183261Ssam			*cp++ = '+';
2437183261Ssam	}
2438183261Ssam	if (flags & IEEE80211_NODE_RIFS)
2439183261Ssam		*cp++ = 'I';
2440194136Ssam	if (flags & IEEE80211_NODE_SGI40) {
2441194136Ssam		*cp++ = 'S';
2442194136Ssam		if (flags & IEEE80211_NODE_SGI20)
2443194136Ssam			*cp++ = '+';
2444194136Ssam	} else if (flags & IEEE80211_NODE_SGI20)
2445194136Ssam		*cp++ = 's';
2446194136Ssam	if (flags & IEEE80211_NODE_AMSDU_TX)
2447194136Ssam		*cp++ = 't';
2448194136Ssam	if (flags & IEEE80211_NODE_AMSDU_RX)
2449194136Ssam		*cp++ = 'r';
2450159885Ssam	*cp = '\0';
2451159885Ssam	return flagstring;
2452159885Ssam}
2453159885Ssam
2454138593Ssamstatic void
2455138593Ssamprintie(const char* tag, const uint8_t *ie, size_t ielen, int maxlen)
2456138593Ssam{
2457138593Ssam	printf("%s", tag);
2458138593Ssam	if (verbose) {
2459138593Ssam		maxlen -= strlen(tag)+2;
2460138593Ssam		if (2*ielen > maxlen)
2461138593Ssam			maxlen--;
2462138593Ssam		printf("<");
2463138593Ssam		for (; ielen > 0; ie++, ielen--) {
2464138593Ssam			if (maxlen-- <= 0)
2465138593Ssam				break;
2466138593Ssam			printf("%02x", *ie);
2467138593Ssam		}
2468138593Ssam		if (ielen != 0)
2469138593Ssam			printf("-");
2470138593Ssam		printf(">");
2471138593Ssam	}
2472138593Ssam}
2473138593Ssam
2474170531Ssam#define LE_READ_2(p)					\
2475170531Ssam	((u_int16_t)					\
2476170531Ssam	 ((((const u_int8_t *)(p))[0]      ) |		\
2477170531Ssam	  (((const u_int8_t *)(p))[1] <<  8)))
2478170531Ssam#define LE_READ_4(p)					\
2479170531Ssam	((u_int32_t)					\
2480170531Ssam	 ((((const u_int8_t *)(p))[0]      ) |		\
2481170531Ssam	  (((const u_int8_t *)(p))[1] <<  8) |		\
2482170531Ssam	  (((const u_int8_t *)(p))[2] << 16) |		\
2483170531Ssam	  (((const u_int8_t *)(p))[3] << 24)))
2484170531Ssam
2485138593Ssam/*
2486170531Ssam * NB: The decoding routines assume a properly formatted ie
2487170531Ssam *     which should be safe as the kernel only retains them
2488170531Ssam *     if they parse ok.
2489170531Ssam */
2490170531Ssam
2491170531Ssamstatic void
2492173275Ssamprintwmeparam(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2493170531Ssam{
2494170531Ssam#define	MS(_v, _f)	(((_v) & _f) >> _f##_S)
2495170531Ssam	static const char *acnames[] = { "BE", "BK", "VO", "VI" };
2496173275Ssam	const struct ieee80211_wme_param *wme =
2497173275Ssam	    (const struct ieee80211_wme_param *) ie;
2498170531Ssam	int i;
2499170531Ssam
2500170531Ssam	printf("%s", tag);
2501173275Ssam	if (!verbose)
2502173275Ssam		return;
2503173275Ssam	printf("<qosinfo 0x%x", wme->param_qosInfo);
2504173275Ssam	ie += offsetof(struct ieee80211_wme_param, params_acParams);
2505173275Ssam	for (i = 0; i < WME_NUM_AC; i++) {
2506173275Ssam		const struct ieee80211_wme_acparams *ac =
2507173275Ssam		    &wme->params_acParams[i];
2508173275Ssam
2509173275Ssam		printf(" %s[%saifsn %u cwmin %u cwmax %u txop %u]"
2510173275Ssam			, acnames[i]
2511173275Ssam			, MS(ac->acp_aci_aifsn, WME_PARAM_ACM) ? "acm " : ""
2512173275Ssam			, MS(ac->acp_aci_aifsn, WME_PARAM_AIFSN)
2513173275Ssam			, MS(ac->acp_logcwminmax, WME_PARAM_LOGCWMIN)
2514173275Ssam			, MS(ac->acp_logcwminmax, WME_PARAM_LOGCWMAX)
2515173275Ssam			, LE_READ_2(&ac->acp_txop)
2516173275Ssam		);
2517170531Ssam	}
2518173275Ssam	printf(">");
2519170531Ssam#undef MS
2520170531Ssam}
2521170531Ssam
2522170531Ssamstatic void
2523173275Ssamprintwmeinfo(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2524173275Ssam{
2525173275Ssam	printf("%s", tag);
2526173275Ssam	if (verbose) {
2527173275Ssam		const struct ieee80211_wme_info *wme =
2528173275Ssam		    (const struct ieee80211_wme_info *) ie;
2529173275Ssam		printf("<version 0x%x info 0x%x>",
2530173275Ssam		    wme->wme_version, wme->wme_info);
2531173275Ssam	}
2532173275Ssam}
2533173275Ssam
2534173275Ssamstatic void
2535173275Ssamprinthtcap(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2536173275Ssam{
2537173275Ssam	printf("%s", tag);
2538173275Ssam	if (verbose) {
2539173275Ssam		const struct ieee80211_ie_htcap *htcap =
2540173275Ssam		    (const struct ieee80211_ie_htcap *) ie;
2541173275Ssam		const char *sep;
2542173275Ssam		int i, j;
2543173275Ssam
2544173275Ssam		printf("<cap 0x%x param 0x%x",
2545173275Ssam		    LE_READ_2(&htcap->hc_cap), htcap->hc_param);
2546173275Ssam		printf(" mcsset[");
2547173275Ssam		sep = "";
2548173275Ssam		for (i = 0; i < IEEE80211_HTRATE_MAXSIZE; i++)
2549173275Ssam			if (isset(htcap->hc_mcsset, i)) {
2550173275Ssam				for (j = i+1; j < IEEE80211_HTRATE_MAXSIZE; j++)
2551173275Ssam					if (isclr(htcap->hc_mcsset, j))
2552173275Ssam						break;
2553173275Ssam				j--;
2554173275Ssam				if (i == j)
2555173275Ssam					printf("%s%u", sep, i);
2556173275Ssam				else
2557173275Ssam					printf("%s%u-%u", sep, i, j);
2558173275Ssam				i += j-i;
2559173275Ssam				sep = ",";
2560173275Ssam			}
2561173275Ssam		printf("] extcap 0x%x txbf 0x%x antenna 0x%x>",
2562173275Ssam		    LE_READ_2(&htcap->hc_extcap),
2563173275Ssam		    LE_READ_4(&htcap->hc_txbf),
2564173275Ssam		    htcap->hc_antenna);
2565173275Ssam	}
2566173275Ssam}
2567173275Ssam
2568173275Ssamstatic void
2569173275Ssamprinthtinfo(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2570173275Ssam{
2571173275Ssam	printf("%s", tag);
2572173275Ssam	if (verbose) {
2573173275Ssam		const struct ieee80211_ie_htinfo *htinfo =
2574173275Ssam		    (const struct ieee80211_ie_htinfo *) ie;
2575173275Ssam		const char *sep;
2576173275Ssam		int i, j;
2577173275Ssam
2578173275Ssam		printf("<ctl %u, %x,%x,%x,%x", htinfo->hi_ctrlchannel,
2579173275Ssam		    htinfo->hi_byte1, htinfo->hi_byte2, htinfo->hi_byte3,
2580173275Ssam		    LE_READ_2(&htinfo->hi_byte45));
2581173275Ssam		printf(" basicmcs[");
2582173275Ssam		sep = "";
2583173275Ssam		for (i = 0; i < IEEE80211_HTRATE_MAXSIZE; i++)
2584173275Ssam			if (isset(htinfo->hi_basicmcsset, i)) {
2585173275Ssam				for (j = i+1; j < IEEE80211_HTRATE_MAXSIZE; j++)
2586173275Ssam					if (isclr(htinfo->hi_basicmcsset, j))
2587173275Ssam						break;
2588173275Ssam				j--;
2589173275Ssam				if (i == j)
2590173275Ssam					printf("%s%u", sep, i);
2591173275Ssam				else
2592173275Ssam					printf("%s%u-%u", sep, i, j);
2593173275Ssam				i += j-i;
2594173275Ssam				sep = ",";
2595173275Ssam			}
2596173275Ssam		printf("]>");
2597173275Ssam	}
2598173275Ssam}
2599173275Ssam
2600173275Ssamstatic void
2601170531Ssamprintathie(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2602170531Ssam{
2603170531Ssam
2604170531Ssam	printf("%s", tag);
2605170531Ssam	if (verbose) {
2606170531Ssam		const struct ieee80211_ath_ie *ath =
2607170531Ssam			(const struct ieee80211_ath_ie *)ie;
2608170531Ssam
2609170531Ssam		printf("<");
2610170531Ssam		if (ath->ath_capability & ATHEROS_CAP_TURBO_PRIME)
2611170531Ssam			printf("DTURBO,");
2612170531Ssam		if (ath->ath_capability & ATHEROS_CAP_COMPRESSION)
2613170531Ssam			printf("COMP,");
2614170531Ssam		if (ath->ath_capability & ATHEROS_CAP_FAST_FRAME)
2615170531Ssam			printf("FF,");
2616170531Ssam		if (ath->ath_capability & ATHEROS_CAP_XR)
2617170531Ssam			printf("XR,");
2618170531Ssam		if (ath->ath_capability & ATHEROS_CAP_AR)
2619170531Ssam			printf("AR,");
2620170531Ssam		if (ath->ath_capability & ATHEROS_CAP_BURST)
2621170531Ssam			printf("BURST,");
2622170531Ssam		if (ath->ath_capability & ATHEROS_CAP_WME)
2623170531Ssam			printf("WME,");
2624170531Ssam		if (ath->ath_capability & ATHEROS_CAP_BOOST)
2625170531Ssam			printf("BOOST,");
2626170531Ssam		printf("0x%x>", LE_READ_2(ath->ath_defkeyix));
2627170531Ssam	}
2628170531Ssam}
2629170531Ssam
2630195618Srpaulo
2631195618Srpaulostatic void
2632195618Srpauloprintmeshconf(const char *tag, const uint8_t *ie, size_t ielen, int maxlen)
2633195618Srpaulo{
2634195618Srpaulo#define MATCHOUI(field, oui, string)					\
2635195618Srpaulodo {									\
2636195618Srpaulo	if (memcmp(field, oui, 4) == 0)					\
2637195618Srpaulo		printf("%s", string);					\
2638195618Srpaulo} while (0)
2639195618Srpaulo
2640195618Srpaulo	printf("%s", tag);
2641195618Srpaulo	if (verbose) {
2642195618Srpaulo		const struct ieee80211_meshconf_ie *mconf =
2643195618Srpaulo			(const struct ieee80211_meshconf_ie *)ie;
2644197980Srpaulo		printf("<PATH:");
2645197980Srpaulo		if (mconf->conf_pselid == IEEE80211_MESHCONF_PATH_HWMP)
2646197980Srpaulo			printf("HWMP");
2647197980Srpaulo		else
2648197980Srpaulo			printf("UNKNOWN");
2649195618Srpaulo		printf(" LINK:");
2650197980Srpaulo		if (mconf->conf_pmetid == IEEE80211_MESHCONF_METRIC_AIRTIME)
2651197980Srpaulo			printf("AIRTIME");
2652197980Srpaulo		else
2653197980Srpaulo			printf("UNKNOWN");
2654195618Srpaulo		printf(" CONGESTION:");
2655197980Srpaulo		if (mconf->conf_ccid == IEEE80211_MESHCONF_CC_DISABLED)
2656197980Srpaulo			printf("DISABLED");
2657197980Srpaulo		else
2658197980Srpaulo			printf("UNKNOWN");
2659195618Srpaulo		printf(" SYNC:");
2660197980Srpaulo		if (mconf->conf_syncid == IEEE80211_MESHCONF_SYNC_NEIGHOFF)
2661197980Srpaulo			printf("NEIGHOFF");
2662197980Srpaulo		else
2663197980Srpaulo			printf("UNKNOWN");
2664195618Srpaulo		printf(" AUTH:");
2665197980Srpaulo		if (mconf->conf_authid == IEEE80211_MESHCONF_AUTH_DISABLED)
2666197980Srpaulo			printf("DISABLED");
2667197980Srpaulo		else
2668197980Srpaulo			printf("UNKNOWN");
2669195618Srpaulo		printf(" FORM:0x%x CAPS:0x%x>", mconf->conf_form,
2670195618Srpaulo		    mconf->conf_cap);
2671195618Srpaulo	}
2672195618Srpaulo#undef MATCHOUI
2673195618Srpaulo}
2674195618Srpaulo
2675170531Ssamstatic const char *
2676170531Ssamwpa_cipher(const u_int8_t *sel)
2677170531Ssam{
2678170531Ssam#define	WPA_SEL(x)	(((x)<<24)|WPA_OUI)
2679170531Ssam	u_int32_t w = LE_READ_4(sel);
2680170531Ssam
2681170531Ssam	switch (w) {
2682170531Ssam	case WPA_SEL(WPA_CSE_NULL):
2683170531Ssam		return "NONE";
2684170531Ssam	case WPA_SEL(WPA_CSE_WEP40):
2685170531Ssam		return "WEP40";
2686170531Ssam	case WPA_SEL(WPA_CSE_WEP104):
2687170531Ssam		return "WEP104";
2688170531Ssam	case WPA_SEL(WPA_CSE_TKIP):
2689170531Ssam		return "TKIP";
2690170531Ssam	case WPA_SEL(WPA_CSE_CCMP):
2691170531Ssam		return "AES-CCMP";
2692170531Ssam	}
2693170531Ssam	return "?";		/* NB: so 1<< is discarded */
2694170531Ssam#undef WPA_SEL
2695170531Ssam}
2696170531Ssam
2697170531Ssamstatic const char *
2698170531Ssamwpa_keymgmt(const u_int8_t *sel)
2699170531Ssam{
2700170531Ssam#define	WPA_SEL(x)	(((x)<<24)|WPA_OUI)
2701170531Ssam	u_int32_t w = LE_READ_4(sel);
2702170531Ssam
2703170531Ssam	switch (w) {
2704170531Ssam	case WPA_SEL(WPA_ASE_8021X_UNSPEC):
2705170531Ssam		return "8021X-UNSPEC";
2706170531Ssam	case WPA_SEL(WPA_ASE_8021X_PSK):
2707170531Ssam		return "8021X-PSK";
2708170531Ssam	case WPA_SEL(WPA_ASE_NONE):
2709170531Ssam		return "NONE";
2710170531Ssam	}
2711170531Ssam	return "?";
2712170531Ssam#undef WPA_SEL
2713170531Ssam}
2714170531Ssam
2715170531Ssamstatic void
2716170531Ssamprintwpaie(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2717170531Ssam{
2718170531Ssam	u_int8_t len = ie[1];
2719170531Ssam
2720170531Ssam	printf("%s", tag);
2721170531Ssam	if (verbose) {
2722170531Ssam		const char *sep;
2723170531Ssam		int n;
2724170531Ssam
2725170531Ssam		ie += 6, len -= 4;		/* NB: len is payload only */
2726170531Ssam
2727170531Ssam		printf("<v%u", LE_READ_2(ie));
2728170531Ssam		ie += 2, len -= 2;
2729170531Ssam
2730170531Ssam		printf(" mc:%s", wpa_cipher(ie));
2731170531Ssam		ie += 4, len -= 4;
2732170531Ssam
2733170531Ssam		/* unicast ciphers */
2734170531Ssam		n = LE_READ_2(ie);
2735170531Ssam		ie += 2, len -= 2;
2736170531Ssam		sep = " uc:";
2737170531Ssam		for (; n > 0; n--) {
2738170531Ssam			printf("%s%s", sep, wpa_cipher(ie));
2739170531Ssam			ie += 4, len -= 4;
2740170531Ssam			sep = "+";
2741170531Ssam		}
2742170531Ssam
2743170531Ssam		/* key management algorithms */
2744170531Ssam		n = LE_READ_2(ie);
2745170531Ssam		ie += 2, len -= 2;
2746170531Ssam		sep = " km:";
2747170531Ssam		for (; n > 0; n--) {
2748170531Ssam			printf("%s%s", sep, wpa_keymgmt(ie));
2749170531Ssam			ie += 4, len -= 4;
2750170531Ssam			sep = "+";
2751170531Ssam		}
2752170531Ssam
2753170531Ssam		if (len > 2)		/* optional capabilities */
2754170531Ssam			printf(", caps 0x%x", LE_READ_2(ie));
2755170531Ssam		printf(">");
2756170531Ssam	}
2757170531Ssam}
2758170531Ssam
2759170531Ssamstatic const char *
2760170531Ssamrsn_cipher(const u_int8_t *sel)
2761170531Ssam{
2762170531Ssam#define	RSN_SEL(x)	(((x)<<24)|RSN_OUI)
2763170531Ssam	u_int32_t w = LE_READ_4(sel);
2764170531Ssam
2765170531Ssam	switch (w) {
2766170531Ssam	case RSN_SEL(RSN_CSE_NULL):
2767170531Ssam		return "NONE";
2768170531Ssam	case RSN_SEL(RSN_CSE_WEP40):
2769170531Ssam		return "WEP40";
2770170531Ssam	case RSN_SEL(RSN_CSE_WEP104):
2771170531Ssam		return "WEP104";
2772170531Ssam	case RSN_SEL(RSN_CSE_TKIP):
2773170531Ssam		return "TKIP";
2774170531Ssam	case RSN_SEL(RSN_CSE_CCMP):
2775170531Ssam		return "AES-CCMP";
2776170531Ssam	case RSN_SEL(RSN_CSE_WRAP):
2777170531Ssam		return "AES-OCB";
2778170531Ssam	}
2779170531Ssam	return "?";
2780170531Ssam#undef WPA_SEL
2781170531Ssam}
2782170531Ssam
2783170531Ssamstatic const char *
2784170531Ssamrsn_keymgmt(const u_int8_t *sel)
2785170531Ssam{
2786170531Ssam#define	RSN_SEL(x)	(((x)<<24)|RSN_OUI)
2787170531Ssam	u_int32_t w = LE_READ_4(sel);
2788170531Ssam
2789170531Ssam	switch (w) {
2790170531Ssam	case RSN_SEL(RSN_ASE_8021X_UNSPEC):
2791170531Ssam		return "8021X-UNSPEC";
2792170531Ssam	case RSN_SEL(RSN_ASE_8021X_PSK):
2793170531Ssam		return "8021X-PSK";
2794170531Ssam	case RSN_SEL(RSN_ASE_NONE):
2795170531Ssam		return "NONE";
2796170531Ssam	}
2797170531Ssam	return "?";
2798170531Ssam#undef RSN_SEL
2799170531Ssam}
2800170531Ssam
2801170531Ssamstatic void
2802170531Ssamprintrsnie(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2803170531Ssam{
2804170531Ssam	printf("%s", tag);
2805170531Ssam	if (verbose) {
2806170531Ssam		const char *sep;
2807170531Ssam		int n;
2808170531Ssam
2809173275Ssam		ie += 2, ielen -= 2;
2810170531Ssam
2811170531Ssam		printf("<v%u", LE_READ_2(ie));
2812173275Ssam		ie += 2, ielen -= 2;
2813170531Ssam
2814170531Ssam		printf(" mc:%s", rsn_cipher(ie));
2815173275Ssam		ie += 4, ielen -= 4;
2816170531Ssam
2817170531Ssam		/* unicast ciphers */
2818170531Ssam		n = LE_READ_2(ie);
2819173275Ssam		ie += 2, ielen -= 2;
2820170531Ssam		sep = " uc:";
2821170531Ssam		for (; n > 0; n--) {
2822170531Ssam			printf("%s%s", sep, rsn_cipher(ie));
2823173275Ssam			ie += 4, ielen -= 4;
2824170531Ssam			sep = "+";
2825170531Ssam		}
2826170531Ssam
2827170531Ssam		/* key management algorithms */
2828170531Ssam		n = LE_READ_2(ie);
2829173275Ssam		ie += 2, ielen -= 2;
2830170531Ssam		sep = " km:";
2831170531Ssam		for (; n > 0; n--) {
2832170531Ssam			printf("%s%s", sep, rsn_keymgmt(ie));
2833173275Ssam			ie += 4, ielen -= 4;
2834170531Ssam			sep = "+";
2835170531Ssam		}
2836170531Ssam
2837173275Ssam		if (ielen > 2)		/* optional capabilities */
2838170531Ssam			printf(", caps 0x%x", LE_READ_2(ie));
2839170531Ssam		/* XXXPMKID */
2840170531Ssam		printf(">");
2841170531Ssam	}
2842170531Ssam}
2843170531Ssam
2844181454Ssam/* XXX move to a public include file */
2845181454Ssam#define IEEE80211_WPS_DEV_PASS_ID	0x1012
2846181454Ssam#define IEEE80211_WPS_SELECTED_REG	0x1041
2847181454Ssam#define IEEE80211_WPS_SETUP_STATE	0x1044
2848181454Ssam#define IEEE80211_WPS_UUID_E		0x1047
2849181454Ssam#define IEEE80211_WPS_VERSION		0x104a
2850181454Ssam
2851181454Ssam#define BE_READ_2(p)					\
2852181454Ssam	((u_int16_t)					\
2853181454Ssam	 ((((const u_int8_t *)(p))[1]      ) |		\
2854181454Ssam	  (((const u_int8_t *)(p))[0] <<  8)))
2855181454Ssam
2856181454Ssamstatic void
2857181454Ssamprintwpsie(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2858181454Ssam{
2859181454Ssam	u_int8_t len = ie[1];
2860181454Ssam
2861181454Ssam	printf("%s", tag);
2862181454Ssam	if (verbose) {
2863181454Ssam		static const char *dev_pass_id[] = {
2864181454Ssam			"D",	/* Default (PIN) */
2865181454Ssam			"U",	/* User-specified */
2866181454Ssam			"M",	/* Machine-specified */
2867181454Ssam			"K",	/* Rekey */
2868181454Ssam			"P",	/* PushButton */
2869181454Ssam			"R"	/* Registrar-specified */
2870181454Ssam		};
2871181454Ssam		int n;
2872181454Ssam
2873181454Ssam		ie +=6, len -= 4;		/* NB: len is payload only */
2874181454Ssam
2875181454Ssam		/* WPS IE in Beacon and Probe Resp frames have different fields */
2876181454Ssam		printf("<");
2877181454Ssam		while (len) {
2878181454Ssam			uint16_t tlv_type = BE_READ_2(ie);
2879181454Ssam			uint16_t tlv_len  = BE_READ_2(ie + 2);
2880181454Ssam
2881181454Ssam			ie += 4, len -= 4;
2882181454Ssam
2883181454Ssam			switch (tlv_type) {
2884181454Ssam			case IEEE80211_WPS_VERSION:
2885181454Ssam				printf("v:%d.%d", *ie >> 4, *ie & 0xf);
2886181454Ssam				break;
2887181454Ssam			case IEEE80211_WPS_SETUP_STATE:
2888181454Ssam				/* Only 1 and 2 are valid */
2889181454Ssam				if (*ie == 0 || *ie >= 3)
2890181454Ssam					printf(" state:B");
2891181454Ssam				else
2892181454Ssam					printf(" st:%s", *ie == 1 ? "N" : "C");
2893181454Ssam				break;
2894181454Ssam			case IEEE80211_WPS_SELECTED_REG:
2895181454Ssam				printf(" sel:%s", *ie ? "T" : "F");
2896181454Ssam				break;
2897181454Ssam			case IEEE80211_WPS_DEV_PASS_ID:
2898181454Ssam				n = LE_READ_2(ie);
2899288305Sngie				if (n < nitems(dev_pass_id))
2900181454Ssam					printf(" dpi:%s", dev_pass_id[n]);
2901181454Ssam				break;
2902181454Ssam			case IEEE80211_WPS_UUID_E:
2903181454Ssam				printf(" uuid-e:");
2904181454Ssam				for (n = 0; n < (tlv_len - 1); n++)
2905181454Ssam					printf("%02x-", ie[n]);
2906181454Ssam				printf("%02x", ie[n]);
2907181454Ssam				break;
2908181454Ssam			}
2909181454Ssam			ie += tlv_len, len -= tlv_len;
2910181454Ssam		}
2911181454Ssam		printf(">");
2912181454Ssam	}
2913181454Ssam}
2914181454Ssam
2915186904Ssamstatic void
2916186904Ssamprinttdmaie(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2917186904Ssam{
2918186904Ssam	printf("%s", tag);
2919186904Ssam	if (verbose && ielen >= sizeof(struct ieee80211_tdma_param)) {
2920186904Ssam		const struct ieee80211_tdma_param *tdma =
2921186904Ssam		   (const struct ieee80211_tdma_param *) ie;
2922186904Ssam
2923186904Ssam		/* XXX tstamp */
2924186904Ssam		printf("<v%u slot:%u slotcnt:%u slotlen:%u bintval:%u inuse:0x%x>",
2925186904Ssam		    tdma->tdma_version, tdma->tdma_slot, tdma->tdma_slotcnt,
2926186904Ssam		    LE_READ_2(&tdma->tdma_slotlen), tdma->tdma_bintval,
2927186904Ssam		    tdma->tdma_inuse[0]);
2928186904Ssam	}
2929186904Ssam}
2930186904Ssam
2931170531Ssam/*
2932138593Ssam * Copy the ssid string contents into buf, truncating to fit.  If the
2933138593Ssam * ssid is entirely printable then just copy intact.  Otherwise convert
2934138593Ssam * to hexadecimal.  If the result is truncated then replace the last
2935138593Ssam * three characters with "...".
2936138593Ssam */
2937146873Sjhbstatic int
2938138593Ssamcopy_essid(char buf[], size_t bufsize, const u_int8_t *essid, size_t essid_len)
2939138593Ssam{
2940138593Ssam	const u_int8_t *p;
2941138593Ssam	size_t maxlen;
2942138593Ssam	int i;
2943138593Ssam
2944138593Ssam	if (essid_len > bufsize)
2945138593Ssam		maxlen = bufsize;
2946138593Ssam	else
2947138593Ssam		maxlen = essid_len;
2948138593Ssam	/* determine printable or not */
2949138593Ssam	for (i = 0, p = essid; i < maxlen; i++, p++) {
2950138593Ssam		if (*p < ' ' || *p > 0x7e)
2951138593Ssam			break;
2952138593Ssam	}
2953138593Ssam	if (i != maxlen) {		/* not printable, print as hex */
2954138593Ssam		if (bufsize < 3)
2955138593Ssam			return 0;
2956138593Ssam		strlcpy(buf, "0x", bufsize);
2957138593Ssam		bufsize -= 2;
2958138593Ssam		p = essid;
2959138593Ssam		for (i = 0; i < maxlen && bufsize >= 2; i++) {
2960147489Savatar			sprintf(&buf[2+2*i], "%02x", p[i]);
2961138593Ssam			bufsize -= 2;
2962138593Ssam		}
2963147489Savatar		if (i != essid_len)
2964147489Savatar			memcpy(&buf[2+2*i-3], "...", 3);
2965138593Ssam	} else {			/* printable, truncate as needed */
2966138593Ssam		memcpy(buf, essid, maxlen);
2967147489Savatar		if (maxlen != essid_len)
2968147489Savatar			memcpy(&buf[maxlen-3], "...", 3);
2969138593Ssam	}
2970138593Ssam	return maxlen;
2971138593Ssam}
2972138593Ssam
2973173275Ssamstatic void
2974173275Ssamprintssid(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2975173275Ssam{
2976173275Ssam	char ssid[2*IEEE80211_NWID_LEN+1];
2977173275Ssam
2978173275Ssam	printf("%s<%.*s>", tag, copy_essid(ssid, maxlen, ie+2, ie[1]), ssid);
2979173275Ssam}
2980173275Ssam
2981173275Ssamstatic void
2982173275Ssamprintrates(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
2983173275Ssam{
2984173275Ssam	const char *sep;
2985173275Ssam	int i;
2986173275Ssam
2987173275Ssam	printf("%s", tag);
2988173275Ssam	sep = "<";
2989173275Ssam	for (i = 2; i < ielen; i++) {
2990173275Ssam		printf("%s%s%d", sep,
2991173275Ssam		    ie[i] & IEEE80211_RATE_BASIC ? "B" : "",
2992173275Ssam		    ie[i] & IEEE80211_RATE_VAL);
2993173275Ssam		sep = ",";
2994173275Ssam	}
2995173275Ssam	printf(">");
2996173275Ssam}
2997173275Ssam
2998173275Ssamstatic void
2999173275Ssamprintcountry(const char *tag, const u_int8_t *ie, size_t ielen, int maxlen)
3000173275Ssam{
3001173275Ssam	const struct ieee80211_country_ie *cie =
3002173275Ssam	   (const struct ieee80211_country_ie *) ie;
3003173275Ssam	int i, nbands, schan, nchan;
3004173275Ssam
3005173275Ssam	printf("%s<%c%c%c", tag, cie->cc[0], cie->cc[1], cie->cc[2]);
3006173275Ssam	nbands = (cie->len - 3) / sizeof(cie->band[0]);
3007173275Ssam	for (i = 0; i < nbands; i++) {
3008173275Ssam		schan = cie->band[i].schan;
3009173275Ssam		nchan = cie->band[i].nchan;
3010173275Ssam		if (nchan != 1)
3011173275Ssam			printf(" %u-%u,%u", schan, schan + nchan-1,
3012173275Ssam			    cie->band[i].maxtxpwr);
3013173275Ssam		else
3014173275Ssam			printf(" %u,%u", schan, cie->band[i].maxtxpwr);
3015173275Ssam	}
3016173275Ssam	printf(">");
3017173275Ssam}
3018173275Ssam
3019148686Sstefanf/* unaligned little endian access */
3020138593Ssam#define LE_READ_4(p)					\
3021138593Ssam	((u_int32_t)					\
3022138593Ssam	 ((((const u_int8_t *)(p))[0]      ) |		\
3023138593Ssam	  (((const u_int8_t *)(p))[1] <<  8) |		\
3024138593Ssam	  (((const u_int8_t *)(p))[2] << 16) |		\
3025138593Ssam	  (((const u_int8_t *)(p))[3] << 24)))
3026138593Ssam
3027178354Ssamstatic __inline int
3028138593Ssamiswpaoui(const u_int8_t *frm)
3029138593Ssam{
3030138593Ssam	return frm[1] > 3 && LE_READ_4(frm+2) == ((WPA_OUI_TYPE<<24)|WPA_OUI);
3031138593Ssam}
3032138593Ssam
3033178354Ssamstatic __inline int
3034173275Ssamiswmeinfo(const u_int8_t *frm)
3035138593Ssam{
3036173275Ssam	return frm[1] > 5 && LE_READ_4(frm+2) == ((WME_OUI_TYPE<<24)|WME_OUI) &&
3037173275Ssam		frm[6] == WME_INFO_OUI_SUBTYPE;
3038138593Ssam}
3039138593Ssam
3040178354Ssamstatic __inline int
3041173275Ssamiswmeparam(const u_int8_t *frm)
3042173275Ssam{
3043173275Ssam	return frm[1] > 5 && LE_READ_4(frm+2) == ((WME_OUI_TYPE<<24)|WME_OUI) &&
3044173275Ssam		frm[6] == WME_PARAM_OUI_SUBTYPE;
3045173275Ssam}
3046173275Ssam
3047178354Ssamstatic __inline int
3048138593Ssamisatherosoui(const u_int8_t *frm)
3049138593Ssam{
3050138593Ssam	return frm[1] > 3 && LE_READ_4(frm+2) == ((ATH_OUI_TYPE<<24)|ATH_OUI);
3051138593Ssam}
3052138593Ssam
3053181454Ssamstatic __inline int
3054186904Ssamistdmaoui(const uint8_t *frm)
3055186904Ssam{
3056186904Ssam	return frm[1] > 3 && LE_READ_4(frm+2) == ((TDMA_OUI_TYPE<<24)|TDMA_OUI);
3057186904Ssam}
3058186904Ssam
3059186904Ssamstatic __inline int
3060181454Ssamiswpsoui(const uint8_t *frm)
3061181454Ssam{
3062181454Ssam	return frm[1] > 3 && LE_READ_4(frm+2) == ((WPS_OUI_TYPE<<24)|WPA_OUI);
3063181454Ssam}
3064181454Ssam
3065173275Ssamstatic const char *
3066173275Ssamiename(int elemid)
3067173275Ssam{
3068173275Ssam	switch (elemid) {
3069173275Ssam	case IEEE80211_ELEMID_FHPARMS:	return " FHPARMS";
3070173275Ssam	case IEEE80211_ELEMID_CFPARMS:	return " CFPARMS";
3071173275Ssam	case IEEE80211_ELEMID_TIM:	return " TIM";
3072173275Ssam	case IEEE80211_ELEMID_IBSSPARMS:return " IBSSPARMS";
3073173275Ssam	case IEEE80211_ELEMID_CHALLENGE:return " CHALLENGE";
3074173275Ssam	case IEEE80211_ELEMID_PWRCNSTR:	return " PWRCNSTR";
3075173275Ssam	case IEEE80211_ELEMID_PWRCAP:	return " PWRCAP";
3076173275Ssam	case IEEE80211_ELEMID_TPCREQ:	return " TPCREQ";
3077173275Ssam	case IEEE80211_ELEMID_TPCREP:	return " TPCREP";
3078173275Ssam	case IEEE80211_ELEMID_SUPPCHAN:	return " SUPPCHAN";
3079193447Ssam	case IEEE80211_ELEMID_CSA:	return " CSA";
3080173275Ssam	case IEEE80211_ELEMID_MEASREQ:	return " MEASREQ";
3081173275Ssam	case IEEE80211_ELEMID_MEASREP:	return " MEASREP";
3082173275Ssam	case IEEE80211_ELEMID_QUIET:	return " QUIET";
3083173275Ssam	case IEEE80211_ELEMID_IBSSDFS:	return " IBSSDFS";
3084173275Ssam	case IEEE80211_ELEMID_TPC:	return " TPC";
3085173275Ssam	case IEEE80211_ELEMID_CCKM:	return " CCKM";
3086173275Ssam	}
3087173275Ssam	return " ???";
3088173275Ssam}
3089173275Ssam
3090138593Ssamstatic void
3091138593Ssamprinties(const u_int8_t *vp, int ielen, int maxcols)
3092138593Ssam{
3093138593Ssam	while (ielen > 0) {
3094138593Ssam		switch (vp[0]) {
3095173275Ssam		case IEEE80211_ELEMID_SSID:
3096173275Ssam			if (verbose)
3097173275Ssam				printssid(" SSID", vp, 2+vp[1], maxcols);
3098173275Ssam			break;
3099173275Ssam		case IEEE80211_ELEMID_RATES:
3100173275Ssam		case IEEE80211_ELEMID_XRATES:
3101173275Ssam			if (verbose)
3102173275Ssam				printrates(vp[0] == IEEE80211_ELEMID_RATES ?
3103173275Ssam				    " RATES" : " XRATES", vp, 2+vp[1], maxcols);
3104173275Ssam			break;
3105173275Ssam		case IEEE80211_ELEMID_DSPARMS:
3106173275Ssam			if (verbose)
3107173275Ssam				printf(" DSPARMS<%u>", vp[2]);
3108173275Ssam			break;
3109173275Ssam		case IEEE80211_ELEMID_COUNTRY:
3110173275Ssam			if (verbose)
3111173275Ssam				printcountry(" COUNTRY", vp, 2+vp[1], maxcols);
3112173275Ssam			break;
3113173275Ssam		case IEEE80211_ELEMID_ERP:
3114173275Ssam			if (verbose)
3115173275Ssam				printf(" ERP<0x%x>", vp[2]);
3116173275Ssam			break;
3117138593Ssam		case IEEE80211_ELEMID_VENDOR:
3118138593Ssam			if (iswpaoui(vp))
3119170531Ssam				printwpaie(" WPA", vp, 2+vp[1], maxcols);
3120173275Ssam			else if (iswmeinfo(vp))
3121173275Ssam				printwmeinfo(" WME", vp, 2+vp[1], maxcols);
3122173275Ssam			else if (iswmeparam(vp))
3123173275Ssam				printwmeparam(" WME", vp, 2+vp[1], maxcols);
3124139492Ssam			else if (isatherosoui(vp))
3125170531Ssam				printathie(" ATH", vp, 2+vp[1], maxcols);
3126181454Ssam			else if (iswpsoui(vp))
3127181454Ssam				printwpsie(" WPS", vp, 2+vp[1], maxcols);
3128186904Ssam			else if (istdmaoui(vp))
3129186904Ssam				printtdmaie(" TDMA", vp, 2+vp[1], maxcols);
3130173275Ssam			else if (verbose)
3131138593Ssam				printie(" VEN", vp, 2+vp[1], maxcols);
3132138593Ssam			break;
3133138593Ssam		case IEEE80211_ELEMID_RSN:
3134170531Ssam			printrsnie(" RSN", vp, 2+vp[1], maxcols);
3135138593Ssam			break;
3136173275Ssam		case IEEE80211_ELEMID_HTCAP:
3137173275Ssam			printhtcap(" HTCAP", vp, 2+vp[1], maxcols);
3138173275Ssam			break;
3139173275Ssam		case IEEE80211_ELEMID_HTINFO:
3140173275Ssam			if (verbose)
3141173275Ssam				printhtinfo(" HTINFO", vp, 2+vp[1], maxcols);
3142173275Ssam			break;
3143195618Srpaulo		case IEEE80211_ELEMID_MESHID:
3144195618Srpaulo			if (verbose)
3145195618Srpaulo				printssid(" MESHID", vp, 2+vp[1], maxcols);
3146195618Srpaulo			break;
3147195618Srpaulo		case IEEE80211_ELEMID_MESHCONF:
3148195618Srpaulo			printmeshconf(" MESHCONF", vp, 2+vp[1], maxcols);
3149195618Srpaulo			break;
3150138593Ssam		default:
3151173275Ssam			if (verbose)
3152173275Ssam				printie(iename(vp[0]), vp, 2+vp[1], maxcols);
3153138593Ssam			break;
3154138593Ssam		}
3155138593Ssam		ielen -= 2+vp[1];
3156138593Ssam		vp += 2+vp[1];
3157138593Ssam	}
3158138593Ssam}
3159138593Ssam
3160138593Ssamstatic void
3161178354Ssamprintmimo(const struct ieee80211_mimo_info *mi)
3162178354Ssam{
3163178354Ssam	/* NB: don't muddy display unless there's something to show */
3164220935Sadrian	if (mi->rssi[0] != 0 || mi->rssi[1] != 0 || mi->rssi[2] != 0) {
3165178354Ssam		/* XXX ignore EVM for now */
3166178354Ssam		printf(" (rssi %d:%d:%d nf %d:%d:%d)",
3167220935Sadrian		    mi->rssi[0], mi->rssi[1], mi->rssi[2],
3168220935Sadrian		    mi->noise[0], mi->noise[1], mi->noise[2]);
3169178354Ssam	}
3170178354Ssam}
3171178354Ssam
3172178354Ssamstatic void
3173138593Ssamlist_scan(int s)
3174138593Ssam{
3175138593Ssam	uint8_t buf[24*1024];
3176153892Srwatson	char ssid[IEEE80211_NWID_LEN+1];
3177173275Ssam	const uint8_t *cp;
3178195618Srpaulo	int len, ssidmax, idlen;
3179138593Ssam
3180173275Ssam	if (get80211len(s, IEEE80211_IOC_SCAN_RESULTS, buf, sizeof(buf), &len) < 0)
3181138593Ssam		errx(1, "unable to get scan results");
3182138593Ssam	if (len < sizeof(struct ieee80211req_scan_result))
3183138593Ssam		return;
3184138593Ssam
3185170531Ssam	getchaninfo(s);
3186170531Ssam
3187195618Srpaulo	ssidmax = verbose ? IEEE80211_NWID_LEN - 1 : 14;
3188290438Savos	printf("%-*.*s  %-17.17s  %4s %4s   %-7s  %3s %4s\n"
3189195618Srpaulo		, ssidmax, ssidmax, "SSID/MESH ID"
3190138593Ssam		, "BSSID"
3191138593Ssam		, "CHAN"
3192138593Ssam		, "RATE"
3193170531Ssam		, " S:N"
3194138593Ssam		, "INT"
3195138593Ssam		, "CAPS"
3196138593Ssam	);
3197138593Ssam	cp = buf;
3198138593Ssam	do {
3199170531Ssam		const struct ieee80211req_scan_result *sr;
3200195618Srpaulo		const uint8_t *vp, *idp;
3201138593Ssam
3202170531Ssam		sr = (const struct ieee80211req_scan_result *) cp;
3203173275Ssam		vp = cp + sr->isr_ie_off;
3204195618Srpaulo		if (sr->isr_meshid_len) {
3205195618Srpaulo			idp = vp + sr->isr_ssid_len;
3206195618Srpaulo			idlen = sr->isr_meshid_len;
3207195618Srpaulo		} else {
3208195618Srpaulo			idp = vp;
3209195618Srpaulo			idlen = sr->isr_ssid_len;
3210195618Srpaulo		}
3211290438Savos		printf("%-*.*s  %s  %3d  %3dM %4d:%-4d %4d %-4.4s"
3212154522Ssam			, ssidmax
3213195618Srpaulo			  , copy_essid(ssid, ssidmax, idp, idlen)
3214154522Ssam			  , ssid
3215138593Ssam			, ether_ntoa((const struct ether_addr *) sr->isr_bssid)
3216165570Ssam			, ieee80211_mhz2ieee(sr->isr_freq, sr->isr_flags)
3217138593Ssam			, getmaxrate(sr->isr_rates, sr->isr_nrates)
3218170531Ssam			, (sr->isr_rssi/2)+sr->isr_noise, sr->isr_noise
3219138593Ssam			, sr->isr_intval
3220138593Ssam			, getcaps(sr->isr_capinfo)
3221138593Ssam		);
3222195618Srpaulo		printies(vp + sr->isr_ssid_len + sr->isr_meshid_len,
3223195618Srpaulo		    sr->isr_ie_len, 24);
3224138593Ssam		printf("\n");
3225138593Ssam		cp += sr->isr_len, len -= sr->isr_len;
3226138593Ssam	} while (len >= sizeof(struct ieee80211req_scan_result));
3227138593Ssam}
3228138593Ssam
3229138593Ssamstatic void
3230138593Ssamscan_and_wait(int s)
3231138593Ssam{
3232178354Ssam	struct ieee80211_scan_req sr;
3233138593Ssam	struct ieee80211req ireq;
3234138593Ssam	int sroute;
3235138593Ssam
3236138593Ssam	sroute = socket(PF_ROUTE, SOCK_RAW, 0);
3237138593Ssam	if (sroute < 0) {
3238138593Ssam		perror("socket(PF_ROUTE,SOCK_RAW)");
3239138593Ssam		return;
3240138593Ssam	}
3241138593Ssam	(void) memset(&ireq, 0, sizeof(ireq));
3242138593Ssam	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
3243138593Ssam	ireq.i_type = IEEE80211_IOC_SCAN_REQ;
3244178354Ssam
3245178354Ssam	memset(&sr, 0, sizeof(sr));
3246178354Ssam	sr.sr_flags = IEEE80211_IOC_SCAN_ACTIVE
3247218090Sbschmidt		    | IEEE80211_IOC_SCAN_BGSCAN
3248178354Ssam		    | IEEE80211_IOC_SCAN_NOPICK
3249178354Ssam		    | IEEE80211_IOC_SCAN_ONCE;
3250178354Ssam	sr.sr_duration = IEEE80211_IOC_SCAN_FOREVER;
3251178354Ssam	sr.sr_nssid = 0;
3252178354Ssam
3253178354Ssam	ireq.i_data = &sr;
3254178354Ssam	ireq.i_len = sizeof(sr);
3255218093Sbschmidt	/*
3256218093Sbschmidt	 * NB: only root can trigger a scan so ignore errors. Also ignore
3257218093Sbschmidt	 * possible errors from net80211, even if no new scan could be
3258218093Sbschmidt	 * started there might still be a valid scan cache.
3259218093Sbschmidt	 */
3260218093Sbschmidt	if (ioctl(s, SIOCS80211, &ireq) == 0) {
3261138593Ssam		char buf[2048];
3262138593Ssam		struct if_announcemsghdr *ifan;
3263138593Ssam		struct rt_msghdr *rtm;
3264138593Ssam
3265138593Ssam		do {
3266138593Ssam			if (read(sroute, buf, sizeof(buf)) < 0) {
3267138593Ssam				perror("read(PF_ROUTE)");
3268138593Ssam				break;
3269138593Ssam			}
3270138593Ssam			rtm = (struct rt_msghdr *) buf;
3271138593Ssam			if (rtm->rtm_version != RTM_VERSION)
3272138593Ssam				break;
3273138593Ssam			ifan = (struct if_announcemsghdr *) rtm;
3274138593Ssam		} while (rtm->rtm_type != RTM_IEEE80211 ||
3275138593Ssam		    ifan->ifan_what != RTM_IEEE80211_SCAN);
3276138593Ssam	}
3277138593Ssam	close(sroute);
3278138593Ssam}
3279138593Ssam
3280138593Ssamstatic
3281138593SsamDECL_CMD_FUNC(set80211scan, val, d)
3282138593Ssam{
3283138593Ssam	scan_and_wait(s);
3284138593Ssam	list_scan(s);
3285138593Ssam}
3286138593Ssam
3287161147Ssamstatic enum ieee80211_opmode get80211opmode(int s);
3288161147Ssam
3289173275Ssamstatic int
3290173275Ssamgettxseq(const struct ieee80211req_sta_info *si)
3291173275Ssam{
3292173275Ssam	int i, txseq;
3293173275Ssam
3294173275Ssam	if ((si->isi_state & IEEE80211_NODE_QOS) == 0)
3295173275Ssam		return si->isi_txseqs[0];
3296173275Ssam	/* XXX not right but usually what folks want */
3297173275Ssam	txseq = 0;
3298173275Ssam	for (i = 0; i < IEEE80211_TID_SIZE; i++)
3299173275Ssam		if (si->isi_txseqs[i] > txseq)
3300173275Ssam			txseq = si->isi_txseqs[i];
3301173275Ssam	return txseq;
3302173275Ssam}
3303173275Ssam
3304173275Ssamstatic int
3305173275Ssamgetrxseq(const struct ieee80211req_sta_info *si)
3306173275Ssam{
3307173275Ssam	int i, rxseq;
3308173275Ssam
3309173275Ssam	if ((si->isi_state & IEEE80211_NODE_QOS) == 0)
3310173275Ssam		return si->isi_rxseqs[0];
3311173275Ssam	/* XXX not right but usually what folks want */
3312173275Ssam	rxseq = 0;
3313173275Ssam	for (i = 0; i < IEEE80211_TID_SIZE; i++)
3314173275Ssam		if (si->isi_rxseqs[i] > rxseq)
3315173275Ssam			rxseq = si->isi_rxseqs[i];
3316173275Ssam	return rxseq;
3317173275Ssam}
3318173275Ssam
3319138593Ssamstatic void
3320138593Ssamlist_stations(int s)
3321138593Ssam{
3322161147Ssam	union {
3323161147Ssam		struct ieee80211req_sta_req req;
3324161147Ssam		uint8_t buf[24*1024];
3325161147Ssam	} u;
3326161147Ssam	enum ieee80211_opmode opmode = get80211opmode(s);
3327170531Ssam	const uint8_t *cp;
3328138593Ssam	int len;
3329138593Ssam
3330161147Ssam	/* broadcast address =>'s get all stations */
3331161147Ssam	(void) memset(u.req.is_u.macaddr, 0xff, IEEE80211_ADDR_LEN);
3332161147Ssam	if (opmode == IEEE80211_M_STA) {
3333161147Ssam		/*
3334161147Ssam		 * Get information about the associated AP.
3335161147Ssam		 */
3336173275Ssam		(void) get80211(s, IEEE80211_IOC_BSSID,
3337173275Ssam		    u.req.is_u.macaddr, IEEE80211_ADDR_LEN);
3338161147Ssam	}
3339173275Ssam	if (get80211len(s, IEEE80211_IOC_STA_INFO, &u, sizeof(u), &len) < 0)
3340138593Ssam		errx(1, "unable to get station information");
3341138593Ssam	if (len < sizeof(struct ieee80211req_sta_info))
3342138593Ssam		return;
3343138593Ssam
3344170531Ssam	getchaninfo(s);
3345170531Ssam
3346195618Srpaulo	if (opmode == IEEE80211_M_MBSS)
3347195618Srpaulo		printf("%-17.17s %4s %5s %5s %7s %4s %4s %4s %6s %6s\n"
3348195618Srpaulo			, "ADDR"
3349195618Srpaulo			, "CHAN"
3350195618Srpaulo			, "LOCAL"
3351195618Srpaulo			, "PEER"
3352195618Srpaulo			, "STATE"
3353195618Srpaulo			, "RATE"
3354195618Srpaulo			, "RSSI"
3355195618Srpaulo			, "IDLE"
3356195618Srpaulo			, "TXSEQ"
3357195618Srpaulo			, "RXSEQ"
3358195618Srpaulo		);
3359195618Srpaulo	else
3360195618Srpaulo		printf("%-17.17s %4s %4s %4s %4s %4s %6s %6s %4s %-7s\n"
3361195618Srpaulo			, "ADDR"
3362195618Srpaulo			, "AID"
3363195618Srpaulo			, "CHAN"
3364195618Srpaulo			, "RATE"
3365195618Srpaulo			, "RSSI"
3366195618Srpaulo			, "IDLE"
3367195618Srpaulo			, "TXSEQ"
3368195618Srpaulo			, "RXSEQ"
3369195618Srpaulo			, "CAPS"
3370195618Srpaulo			, "FLAG"
3371195618Srpaulo		);
3372170531Ssam	cp = (const uint8_t *) u.req.info;
3373138593Ssam	do {
3374170531Ssam		const struct ieee80211req_sta_info *si;
3375138593Ssam
3376170531Ssam		si = (const struct ieee80211req_sta_info *) cp;
3377161147Ssam		if (si->isi_len < sizeof(*si))
3378161147Ssam			break;
3379195618Srpaulo		if (opmode == IEEE80211_M_MBSS)
3380195618Srpaulo			printf("%s %4d %5x %5x %7.7s %3dM %4.1f %4d %6d %6d"
3381195618Srpaulo				, ether_ntoa((const struct ether_addr*)
3382195618Srpaulo				    si->isi_macaddr)
3383195618Srpaulo				, ieee80211_mhz2ieee(si->isi_freq,
3384195618Srpaulo				    si->isi_flags)
3385195618Srpaulo				, si->isi_localid
3386195618Srpaulo				, si->isi_peerid
3387195618Srpaulo				, mesh_linkstate_string(si->isi_peerstate)
3388195618Srpaulo				, si->isi_txmbps/2
3389195618Srpaulo				, si->isi_rssi/2.
3390195618Srpaulo				, si->isi_inact
3391195618Srpaulo				, gettxseq(si)
3392195618Srpaulo				, getrxseq(si)
3393195618Srpaulo			);
3394195618Srpaulo		else
3395195618Srpaulo			printf("%s %4u %4d %3dM %4.1f %4d %6d %6d %-4.4s %-7.7s"
3396195618Srpaulo				, ether_ntoa((const struct ether_addr*)
3397195618Srpaulo				    si->isi_macaddr)
3398195618Srpaulo				, IEEE80211_AID(si->isi_associd)
3399195618Srpaulo				, ieee80211_mhz2ieee(si->isi_freq,
3400195618Srpaulo				    si->isi_flags)
3401195618Srpaulo				, si->isi_txmbps/2
3402195618Srpaulo				, si->isi_rssi/2.
3403195618Srpaulo				, si->isi_inact
3404195618Srpaulo				, gettxseq(si)
3405195618Srpaulo				, getrxseq(si)
3406195618Srpaulo				, getcaps(si->isi_capinfo)
3407195618Srpaulo				, getflags(si->isi_state)
3408195618Srpaulo			);
3409170531Ssam		printies(cp + si->isi_ie_off, si->isi_ie_len, 24);
3410178354Ssam		printmimo(&si->isi_mimo);
3411138593Ssam		printf("\n");
3412138593Ssam		cp += si->isi_len, len -= si->isi_len;
3413138593Ssam	} while (len >= sizeof(struct ieee80211req_sta_info));
3414138593Ssam}
3415138593Ssam
3416170531Ssamstatic const char *
3417195618Srpaulomesh_linkstate_string(uint8_t state)
3418195618Srpaulo{
3419195618Srpaulo	static const char *state_names[] = {
3420195618Srpaulo	    [0] = "IDLE",
3421195618Srpaulo	    [1] = "OPEN-TX",
3422195618Srpaulo	    [2] = "OPEN-RX",
3423195618Srpaulo	    [3] = "CONF-RX",
3424195618Srpaulo	    [4] = "ESTAB",
3425195618Srpaulo	    [5] = "HOLDING",
3426195618Srpaulo	};
3427195618Srpaulo
3428288305Sngie	if (state >= nitems(state_names)) {
3429195618Srpaulo		static char buf[10];
3430195618Srpaulo		snprintf(buf, sizeof(buf), "#%u", state);
3431195618Srpaulo		return buf;
3432195618Srpaulo	} else
3433195618Srpaulo		return state_names[state];
3434195618Srpaulo}
3435195618Srpaulo
3436195618Srpaulostatic const char *
3437170531Ssamget_chaninfo(const struct ieee80211_channel *c, int precise,
3438170531Ssam	char buf[], size_t bsize)
3439138593Ssam{
3440138593Ssam	buf[0] = '\0';
3441138593Ssam	if (IEEE80211_IS_CHAN_FHSS(c))
3442170531Ssam		strlcat(buf, " FHSS", bsize);
3443187843Ssam	if (IEEE80211_IS_CHAN_A(c))
3444187843Ssam		strlcat(buf, " 11a", bsize);
3445187843Ssam	else if (IEEE80211_IS_CHAN_ANYG(c))
3446187843Ssam		strlcat(buf, " 11g", bsize);
3447187843Ssam	else if (IEEE80211_IS_CHAN_B(c))
3448170531Ssam		strlcat(buf, " 11b", bsize);
3449187843Ssam	if (IEEE80211_IS_CHAN_HALF(c))
3450202161Sgavin		strlcat(buf, "/10MHz", bsize);
3451187843Ssam	if (IEEE80211_IS_CHAN_QUARTER(c))
3452202161Sgavin		strlcat(buf, "/5MHz", bsize);
3453170531Ssam	if (IEEE80211_IS_CHAN_TURBO(c))
3454170531Ssam		strlcat(buf, " Turbo", bsize);
3455170531Ssam	if (precise) {
3456170531Ssam		if (IEEE80211_IS_CHAN_HT20(c))
3457170531Ssam			strlcat(buf, " ht/20", bsize);
3458170531Ssam		else if (IEEE80211_IS_CHAN_HT40D(c))
3459170531Ssam			strlcat(buf, " ht/40-", bsize);
3460170531Ssam		else if (IEEE80211_IS_CHAN_HT40U(c))
3461170531Ssam			strlcat(buf, " ht/40+", bsize);
3462170531Ssam	} else {
3463170531Ssam		if (IEEE80211_IS_CHAN_HT(c))
3464170531Ssam			strlcat(buf, " ht", bsize);
3465170531Ssam	}
3466170531Ssam	return buf;
3467170531Ssam}
3468170531Ssam
3469170531Ssamstatic void
3470173275Ssamprint_chaninfo(const struct ieee80211_channel *c, int verb)
3471170531Ssam{
3472170531Ssam	char buf[14];
3473170531Ssam
3474224219Sadrian	if (verb)
3475224219Sadrian		printf("Channel %3u : %u%c%c%c%c%c MHz%-14.14s",
3476224219Sadrian		    ieee80211_mhz2ieee(c->ic_freq, c->ic_flags), c->ic_freq,
3477224219Sadrian		    IEEE80211_IS_CHAN_PASSIVE(c) ? '*' : ' ',
3478224219Sadrian		    IEEE80211_IS_CHAN_DFS(c) ? 'D' : ' ',
3479224219Sadrian		    IEEE80211_IS_CHAN_RADAR(c) ? 'R' : ' ',
3480224219Sadrian		    IEEE80211_IS_CHAN_CWINT(c) ? 'I' : ' ',
3481224219Sadrian		    IEEE80211_IS_CHAN_CACDONE(c) ? 'C' : ' ',
3482224219Sadrian		    get_chaninfo(c, verb, buf, sizeof(buf)));
3483224219Sadrian	else
3484202161Sgavin	printf("Channel %3u : %u%c MHz%-14.14s",
3485224219Sadrian	    ieee80211_mhz2ieee(c->ic_freq, c->ic_flags), c->ic_freq,
3486224219Sadrian	    IEEE80211_IS_CHAN_PASSIVE(c) ? '*' : ' ',
3487224219Sadrian	    get_chaninfo(c, verb, buf, sizeof(buf)));
3488224219Sadrian
3489138593Ssam}
3490138593Ssam
3491187844Ssamstatic int
3492187844Ssamchanpref(const struct ieee80211_channel *c)
3493187844Ssam{
3494187844Ssam	if (IEEE80211_IS_CHAN_HT40(c))
3495187844Ssam		return 40;
3496187844Ssam	if (IEEE80211_IS_CHAN_HT20(c))
3497187844Ssam		return 30;
3498187844Ssam	if (IEEE80211_IS_CHAN_HALF(c))
3499187844Ssam		return 10;
3500187844Ssam	if (IEEE80211_IS_CHAN_QUARTER(c))
3501187844Ssam		return 5;
3502187844Ssam	if (IEEE80211_IS_CHAN_TURBO(c))
3503187844Ssam		return 25;
3504187844Ssam	if (IEEE80211_IS_CHAN_A(c))
3505187844Ssam		return 20;
3506187844Ssam	if (IEEE80211_IS_CHAN_G(c))
3507187844Ssam		return 20;
3508187844Ssam	if (IEEE80211_IS_CHAN_B(c))
3509187844Ssam		return 15;
3510187844Ssam	if (IEEE80211_IS_CHAN_PUREG(c))
3511187844Ssam		return 15;
3512187844Ssam	return 0;
3513187844Ssam}
3514187844Ssam
3515138593Ssamstatic void
3516173275Ssamprint_channels(int s, const struct ieee80211req_chaninfo *chans,
3517173275Ssam	int allchans, int verb)
3518138593Ssam{
3519187801Ssam	struct ieee80211req_chaninfo *achans;
3520170531Ssam	uint8_t reported[IEEE80211_CHAN_BYTES];
3521138593Ssam	const struct ieee80211_channel *c;
3522170531Ssam	int i, half;
3523138593Ssam
3524187801Ssam	achans = malloc(IEEE80211_CHANINFO_SPACE(chans));
3525187801Ssam	if (achans == NULL)
3526187801Ssam		errx(1, "no space for active channel list");
3527187801Ssam	achans->ic_nchans = 0;
3528170531Ssam	memset(reported, 0, sizeof(reported));
3529138593Ssam	if (!allchans) {
3530138593Ssam		struct ieee80211req_chanlist active;
3531138593Ssam
3532173275Ssam		if (get80211(s, IEEE80211_IOC_CHANLIST, &active, sizeof(active)) < 0)
3533138593Ssam			errx(1, "unable to get active channel list");
3534173275Ssam		for (i = 0; i < chans->ic_nchans; i++) {
3535173275Ssam			c = &chans->ic_chans[i];
3536170531Ssam			if (!isset(active.ic_channels, c->ic_ieee))
3537170531Ssam				continue;
3538170531Ssam			/*
3539170531Ssam			 * Suppress compatible duplicates unless
3540170531Ssam			 * verbose.  The kernel gives us it's
3541170531Ssam			 * complete channel list which has separate
3542170531Ssam			 * entries for 11g/11b and 11a/turbo.
3543170531Ssam			 */
3544173275Ssam			if (isset(reported, c->ic_ieee) && !verb) {
3545170531Ssam				/* XXX we assume duplicates are adjacent */
3546187801Ssam				achans->ic_chans[achans->ic_nchans-1] = *c;
3547170531Ssam			} else {
3548187801Ssam				achans->ic_chans[achans->ic_nchans++] = *c;
3549170531Ssam				setbit(reported, c->ic_ieee);
3550170531Ssam			}
3551138593Ssam		}
3552170531Ssam	} else {
3553173275Ssam		for (i = 0; i < chans->ic_nchans; i++) {
3554173275Ssam			c = &chans->ic_chans[i];
3555170531Ssam			/* suppress duplicates as above */
3556173275Ssam			if (isset(reported, c->ic_ieee) && !verb) {
3557170531Ssam				/* XXX we assume duplicates are adjacent */
3558187844Ssam				struct ieee80211_channel *a =
3559187844Ssam				    &achans->ic_chans[achans->ic_nchans-1];
3560187844Ssam				if (chanpref(c) > chanpref(a))
3561187844Ssam					*a = *c;
3562170531Ssam			} else {
3563187801Ssam				achans->ic_chans[achans->ic_nchans++] = *c;
3564170531Ssam				setbit(reported, c->ic_ieee);
3565170531Ssam			}
3566170531Ssam		}
3567170531Ssam	}
3568187801Ssam	half = achans->ic_nchans / 2;
3569187801Ssam	if (achans->ic_nchans % 2)
3570138593Ssam		half++;
3571170531Ssam
3572187801Ssam	for (i = 0; i < achans->ic_nchans / 2; i++) {
3573187801Ssam		print_chaninfo(&achans->ic_chans[i], verb);
3574187801Ssam		print_chaninfo(&achans->ic_chans[half+i], verb);
3575138593Ssam		printf("\n");
3576138593Ssam	}
3577187801Ssam	if (achans->ic_nchans % 2) {
3578187801Ssam		print_chaninfo(&achans->ic_chans[i], verb);
3579138593Ssam		printf("\n");
3580138593Ssam	}
3581187801Ssam	free(achans);
3582138593Ssam}
3583138593Ssam
3584138593Ssamstatic void
3585173275Ssamlist_channels(int s, int allchans)
3586173275Ssam{
3587173275Ssam	getchaninfo(s);
3588187801Ssam	print_channels(s, chaninfo, allchans, verbose);
3589173275Ssam}
3590173275Ssam
3591173275Ssamstatic void
3592170531Ssamprint_txpow(const struct ieee80211_channel *c)
3593170531Ssam{
3594202161Sgavin	printf("Channel %3u : %u MHz %3.1f reg %2d  ",
3595170531Ssam	    c->ic_ieee, c->ic_freq,
3596170531Ssam	    c->ic_maxpower/2., c->ic_maxregpower);
3597170531Ssam}
3598170531Ssam
3599170531Ssamstatic void
3600170531Ssamprint_txpow_verbose(const struct ieee80211_channel *c)
3601170531Ssam{
3602173275Ssam	print_chaninfo(c, 1);
3603170531Ssam	printf("min %4.1f dBm  max %3.1f dBm  reg %2d dBm",
3604170531Ssam	    c->ic_minpower/2., c->ic_maxpower/2., c->ic_maxregpower);
3605170531Ssam	/* indicate where regulatory cap limits power use */
3606170531Ssam	if (c->ic_maxpower > 2*c->ic_maxregpower)
3607170531Ssam		printf(" <");
3608170531Ssam}
3609170531Ssam
3610170531Ssamstatic void
3611170531Ssamlist_txpow(int s)
3612170531Ssam{
3613187801Ssam	struct ieee80211req_chaninfo *achans;
3614170531Ssam	uint8_t reported[IEEE80211_CHAN_BYTES];
3615170531Ssam	struct ieee80211_channel *c, *prev;
3616170531Ssam	int i, half;
3617170531Ssam
3618170531Ssam	getchaninfo(s);
3619187801Ssam	achans = malloc(IEEE80211_CHANINFO_SPACE(chaninfo));
3620187801Ssam	if (achans == NULL)
3621187801Ssam		errx(1, "no space for active channel list");
3622187801Ssam	achans->ic_nchans = 0;
3623170531Ssam	memset(reported, 0, sizeof(reported));
3624187801Ssam	for (i = 0; i < chaninfo->ic_nchans; i++) {
3625187801Ssam		c = &chaninfo->ic_chans[i];
3626170531Ssam		/* suppress duplicates as above */
3627170531Ssam		if (isset(reported, c->ic_ieee) && !verbose) {
3628170531Ssam			/* XXX we assume duplicates are adjacent */
3629187801Ssam			prev = &achans->ic_chans[achans->ic_nchans-1];
3630170531Ssam			/* display highest power on channel */
3631170531Ssam			if (c->ic_maxpower > prev->ic_maxpower)
3632170531Ssam				*prev = *c;
3633170531Ssam		} else {
3634187801Ssam			achans->ic_chans[achans->ic_nchans++] = *c;
3635170531Ssam			setbit(reported, c->ic_ieee);
3636170531Ssam		}
3637170531Ssam	}
3638170531Ssam	if (!verbose) {
3639187801Ssam		half = achans->ic_nchans / 2;
3640187801Ssam		if (achans->ic_nchans % 2)
3641170531Ssam			half++;
3642170531Ssam
3643187801Ssam		for (i = 0; i < achans->ic_nchans / 2; i++) {
3644187801Ssam			print_txpow(&achans->ic_chans[i]);
3645187801Ssam			print_txpow(&achans->ic_chans[half+i]);
3646170531Ssam			printf("\n");
3647170531Ssam		}
3648187801Ssam		if (achans->ic_nchans % 2) {
3649187801Ssam			print_txpow(&achans->ic_chans[i]);
3650170531Ssam			printf("\n");
3651170531Ssam		}
3652170531Ssam	} else {
3653187801Ssam		for (i = 0; i < achans->ic_nchans; i++) {
3654187801Ssam			print_txpow_verbose(&achans->ic_chans[i]);
3655170531Ssam			printf("\n");
3656170531Ssam		}
3657170531Ssam	}
3658187801Ssam	free(achans);
3659170531Ssam}
3660170531Ssam
3661170531Ssamstatic void
3662138593Ssamlist_keys(int s)
3663138593Ssam{
3664138593Ssam}
3665138593Ssam
3666138593Ssam#define	IEEE80211_C_BITS \
3667195618Srpaulo	"\20\1STA\002803ENCAP\7FF\10TURBOP\11IBSS\12PMGT" \
3668178354Ssam	"\13HOSTAP\14AHDEMO\15SWRETRY\16TXPMGT\17SHSLOT\20SHPREAMBLE" \
3669195618Srpaulo	"\21MONITOR\22DFS\23MBSS\30WPA1\31WPA2\32BURST\33WME\34WDS\36BGSCAN" \
3670186904Ssam	"\37TXFRAG\40TDMA"
3671138593Ssam
3672138593Ssamstatic void
3673138593Ssamlist_capabilities(int s)
3674138593Ssam{
3675187801Ssam	struct ieee80211_devcaps_req *dc;
3676138593Ssam
3677187845Ssam	if (verbose)
3678187845Ssam		dc = malloc(IEEE80211_DEVCAPS_SIZE(MAXCHAN));
3679187845Ssam	else
3680187845Ssam		dc = malloc(IEEE80211_DEVCAPS_SIZE(1));
3681187801Ssam	if (dc == NULL)
3682187801Ssam		errx(1, "no space for device capabilities");
3683187845Ssam	dc->dc_chaninfo.ic_nchans = verbose ? MAXCHAN : 1;
3684187801Ssam	getdevcaps(s, dc);
3685187801Ssam	printb("drivercaps", dc->dc_drivercaps, IEEE80211_C_BITS);
3686187801Ssam	if (dc->dc_cryptocaps != 0 || verbose) {
3687178354Ssam		putchar('\n');
3688187801Ssam		printb("cryptocaps", dc->dc_cryptocaps, IEEE80211_CRYPTO_BITS);
3689178354Ssam	}
3690187801Ssam	if (dc->dc_htcaps != 0 || verbose) {
3691178354Ssam		putchar('\n');
3692187801Ssam		printb("htcaps", dc->dc_htcaps, IEEE80211_HTCAP_BITS);
3693178354Ssam	}
3694138593Ssam	putchar('\n');
3695187845Ssam	if (verbose) {
3696187845Ssam		chaninfo = &dc->dc_chaninfo;	/* XXX */
3697187845Ssam		print_channels(s, &dc->dc_chaninfo, 1/*allchans*/, verbose);
3698187845Ssam	}
3699187801Ssam	free(dc);
3700138593Ssam}
3701138593Ssam
3702173275Ssamstatic int
3703173275Ssamget80211wme(int s, int param, int ac, int *val)
3704173275Ssam{
3705173275Ssam	struct ieee80211req ireq;
3706173275Ssam
3707173275Ssam	(void) memset(&ireq, 0, sizeof(ireq));
3708173275Ssam	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
3709173275Ssam	ireq.i_type = param;
3710173275Ssam	ireq.i_len = ac;
3711173275Ssam	if (ioctl(s, SIOCG80211, &ireq) < 0) {
3712173275Ssam		warn("cannot get WME parameter %d, ac %d%s",
3713173275Ssam		    param, ac & IEEE80211_WMEPARAM_VAL,
3714173275Ssam		    ac & IEEE80211_WMEPARAM_BSS ? " (BSS)" : "");
3715173275Ssam		return -1;
3716173275Ssam	}
3717173275Ssam	*val = ireq.i_val;
3718173275Ssam	return 0;
3719173275Ssam}
3720173275Ssam
3721138593Ssamstatic void
3722181199Ssamlist_wme_aci(int s, const char *tag, int ac)
3723138593Ssam{
3724181199Ssam	int val;
3725138593Ssam
3726181199Ssam	printf("\t%s", tag);
3727138593Ssam
3728181199Ssam	/* show WME BSS parameters */
3729181199Ssam	if (get80211wme(s, IEEE80211_IOC_WME_CWMIN, ac, &val) != -1)
3730181199Ssam		printf(" cwmin %2u", val);
3731181199Ssam	if (get80211wme(s, IEEE80211_IOC_WME_CWMAX, ac, &val) != -1)
3732181199Ssam		printf(" cwmax %2u", val);
3733181199Ssam	if (get80211wme(s, IEEE80211_IOC_WME_AIFS, ac, &val) != -1)
3734181199Ssam		printf(" aifs %2u", val);
3735181199Ssam	if (get80211wme(s, IEEE80211_IOC_WME_TXOPLIMIT, ac, &val) != -1)
3736181199Ssam		printf(" txopLimit %3u", val);
3737181199Ssam	if (get80211wme(s, IEEE80211_IOC_WME_ACM, ac, &val) != -1) {
3738181199Ssam		if (val)
3739181199Ssam			printf(" acm");
3740181199Ssam		else if (verbose)
3741181199Ssam			printf(" -acm");
3742181199Ssam	}
3743181199Ssam	/* !BSS only */
3744181199Ssam	if ((ac & IEEE80211_WMEPARAM_BSS) == 0) {
3745181199Ssam		if (get80211wme(s, IEEE80211_IOC_WME_ACKPOLICY, ac, &val) != -1) {
3746181199Ssam			if (!val)
3747181199Ssam				printf(" -ack");
3748138593Ssam			else if (verbose)
3749181199Ssam				printf(" ack");
3750138593Ssam		}
3751181199Ssam	}
3752181199Ssam	printf("\n");
3753181199Ssam}
3754181199Ssam
3755181199Ssamstatic void
3756181199Ssamlist_wme(int s)
3757181199Ssam{
3758181199Ssam	static const char *acnames[] = { "AC_BE", "AC_BK", "AC_VI", "AC_VO" };
3759181199Ssam	int ac;
3760181199Ssam
3761181199Ssam	if (verbose) {
3762181199Ssam		/* display both BSS and local settings */
3763181199Ssam		for (ac = WME_AC_BE; ac <= WME_AC_VO; ac++) {
3764181199Ssam	again:
3765181199Ssam			if (ac & IEEE80211_WMEPARAM_BSS)
3766181199Ssam				list_wme_aci(s, "     ", ac);
3767181199Ssam			else
3768181199Ssam				list_wme_aci(s, acnames[ac], ac);
3769181199Ssam			if ((ac & IEEE80211_WMEPARAM_BSS) == 0) {
3770181199Ssam				ac |= IEEE80211_WMEPARAM_BSS;
3771181199Ssam				goto again;
3772181199Ssam			} else
3773181199Ssam				ac &= ~IEEE80211_WMEPARAM_BSS;
3774138593Ssam		}
3775181199Ssam	} else {
3776181199Ssam		/* display only channel settings */
3777181199Ssam		for (ac = WME_AC_BE; ac <= WME_AC_VO; ac++)
3778181199Ssam			list_wme_aci(s, acnames[ac], ac);
3779138593Ssam	}
3780138593Ssam}
3781138593Ssam
3782149029Ssamstatic void
3783178354Ssamlist_roam(int s)
3784178354Ssam{
3785178354Ssam	const struct ieee80211_roamparam *rp;
3786178354Ssam	int mode;
3787178354Ssam
3788178354Ssam	getroam(s);
3789188784Ssam	for (mode = IEEE80211_MODE_11A; mode < IEEE80211_MODE_MAX; mode++) {
3790178354Ssam		rp = &roamparams.params[mode];
3791178354Ssam		if (rp->rssi == 0 && rp->rate == 0)
3792178354Ssam			continue;
3793188784Ssam		if (mode == IEEE80211_MODE_11NA || mode == IEEE80211_MODE_11NG) {
3794188784Ssam			if (rp->rssi & 1)
3795188784Ssam				LINE_CHECK("roam:%-7.7s rssi %2u.5dBm  MCS %2u    ",
3796188784Ssam				    modename[mode], rp->rssi/2,
3797188784Ssam				    rp->rate &~ IEEE80211_RATE_MCS);
3798188784Ssam			else
3799188784Ssam				LINE_CHECK("roam:%-7.7s rssi %4udBm  MCS %2u    ",
3800188784Ssam				    modename[mode], rp->rssi/2,
3801188784Ssam				    rp->rate &~ IEEE80211_RATE_MCS);
3802188784Ssam		} else {
3803188784Ssam			if (rp->rssi & 1)
3804188784Ssam				LINE_CHECK("roam:%-7.7s rssi %2u.5dBm rate %2u Mb/s",
3805188784Ssam				    modename[mode], rp->rssi/2, rp->rate/2);
3806188784Ssam			else
3807188784Ssam				LINE_CHECK("roam:%-7.7s rssi %4udBm rate %2u Mb/s",
3808188784Ssam				    modename[mode], rp->rssi/2, rp->rate/2);
3809188784Ssam		}
3810178354Ssam	}
3811178354Ssam}
3812178354Ssam
3813178354Ssamstatic void
3814178354Ssamlist_txparams(int s)
3815178354Ssam{
3816178354Ssam	const struct ieee80211_txparam *tp;
3817178354Ssam	int mode;
3818178354Ssam
3819178354Ssam	gettxparams(s);
3820188784Ssam	for (mode = IEEE80211_MODE_11A; mode < IEEE80211_MODE_MAX; mode++) {
3821178354Ssam		tp = &txparams.params[mode];
3822178354Ssam		if (tp->mgmtrate == 0 && tp->mcastrate == 0)
3823178354Ssam			continue;
3824188784Ssam		if (mode == IEEE80211_MODE_11NA || mode == IEEE80211_MODE_11NG) {
3825188784Ssam			if (tp->ucastrate == IEEE80211_FIXED_RATE_NONE)
3826188784Ssam				LINE_CHECK("%-7.7s ucast NONE    mgmt %2u MCS  "
3827188784Ssam				    "mcast %2u MCS  maxretry %u",
3828188784Ssam				    modename[mode],
3829188784Ssam				    tp->mgmtrate &~ IEEE80211_RATE_MCS,
3830188784Ssam				    tp->mcastrate &~ IEEE80211_RATE_MCS,
3831188784Ssam				    tp->maxretry);
3832188784Ssam			else
3833188784Ssam				LINE_CHECK("%-7.7s ucast %2u MCS  mgmt %2u MCS  "
3834188784Ssam				    "mcast %2u MCS  maxretry %u",
3835188784Ssam				    modename[mode],
3836188784Ssam				    tp->ucastrate &~ IEEE80211_RATE_MCS,
3837188784Ssam				    tp->mgmtrate &~ IEEE80211_RATE_MCS,
3838188784Ssam				    tp->mcastrate &~ IEEE80211_RATE_MCS,
3839188784Ssam				    tp->maxretry);
3840188784Ssam		} else {
3841188784Ssam			if (tp->ucastrate == IEEE80211_FIXED_RATE_NONE)
3842188784Ssam				LINE_CHECK("%-7.7s ucast NONE    mgmt %2u Mb/s "
3843188784Ssam				    "mcast %2u Mb/s maxretry %u",
3844188784Ssam				    modename[mode],
3845188784Ssam				    tp->mgmtrate/2,
3846188784Ssam				    tp->mcastrate/2, tp->maxretry);
3847188784Ssam			else
3848188784Ssam				LINE_CHECK("%-7.7s ucast %2u Mb/s mgmt %2u Mb/s "
3849188784Ssam				    "mcast %2u Mb/s maxretry %u",
3850188784Ssam				    modename[mode],
3851188784Ssam				    tp->ucastrate/2, tp->mgmtrate/2,
3852188784Ssam				    tp->mcastrate/2, tp->maxretry);
3853188784Ssam		}
3854178354Ssam	}
3855178354Ssam}
3856178354Ssam
3857178354Ssamstatic void
3858173275Ssamprintpolicy(int policy)
3859173275Ssam{
3860173275Ssam	switch (policy) {
3861173275Ssam	case IEEE80211_MACCMD_POLICY_OPEN:
3862173275Ssam		printf("policy: open\n");
3863173275Ssam		break;
3864173275Ssam	case IEEE80211_MACCMD_POLICY_ALLOW:
3865173275Ssam		printf("policy: allow\n");
3866173275Ssam		break;
3867173275Ssam	case IEEE80211_MACCMD_POLICY_DENY:
3868173275Ssam		printf("policy: deny\n");
3869173275Ssam		break;
3870178354Ssam	case IEEE80211_MACCMD_POLICY_RADIUS:
3871178354Ssam		printf("policy: radius\n");
3872178354Ssam		break;
3873173275Ssam	default:
3874173275Ssam		printf("policy: unknown (%u)\n", policy);
3875173275Ssam		break;
3876173275Ssam	}
3877173275Ssam}
3878173275Ssam
3879173275Ssamstatic void
3880149029Ssamlist_mac(int s)
3881149029Ssam{
3882149029Ssam	struct ieee80211req ireq;
3883149029Ssam	struct ieee80211req_maclist *acllist;
3884173275Ssam	int i, nacls, policy, len;
3885173275Ssam	uint8_t *data;
3886149029Ssam	char c;
3887149029Ssam
3888149029Ssam	(void) memset(&ireq, 0, sizeof(ireq));
3889149029Ssam	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name)); /* XXX ?? */
3890149029Ssam	ireq.i_type = IEEE80211_IOC_MACCMD;
3891149029Ssam	ireq.i_val = IEEE80211_MACCMD_POLICY;
3892149029Ssam	if (ioctl(s, SIOCG80211, &ireq) < 0) {
3893149029Ssam		if (errno == EINVAL) {
3894149029Ssam			printf("No acl policy loaded\n");
3895149029Ssam			return;
3896149029Ssam		}
3897149029Ssam		err(1, "unable to get mac policy");
3898149029Ssam	}
3899149029Ssam	policy = ireq.i_val;
3900149029Ssam	if (policy == IEEE80211_MACCMD_POLICY_OPEN) {
3901149029Ssam		c = '*';
3902149029Ssam	} else if (policy == IEEE80211_MACCMD_POLICY_ALLOW) {
3903149029Ssam		c = '+';
3904149029Ssam	} else if (policy == IEEE80211_MACCMD_POLICY_DENY) {
3905149029Ssam		c = '-';
3906178354Ssam	} else if (policy == IEEE80211_MACCMD_POLICY_RADIUS) {
3907178354Ssam		c = 'r';		/* NB: should never have entries */
3908149029Ssam	} else {
3909149029Ssam		printf("policy: unknown (%u)\n", policy);
3910149029Ssam		c = '?';
3911149029Ssam	}
3912173275Ssam	if (verbose || c == '?')
3913173275Ssam		printpolicy(policy);
3914173275Ssam
3915175952Ssam	ireq.i_val = IEEE80211_MACCMD_LIST;
3916175952Ssam	ireq.i_len = 0;
3917175952Ssam	if (ioctl(s, SIOCG80211, &ireq) < 0)
3918173275Ssam		err(1, "unable to get mac acl list size");
3919175952Ssam	if (ireq.i_len == 0) {		/* NB: no acls */
3920173275Ssam		if (!(verbose || c == '?'))
3921173275Ssam			printpolicy(policy);
3922173275Ssam		return;
3923173275Ssam	}
3924175952Ssam	len = ireq.i_len;
3925173275Ssam
3926173275Ssam	data = malloc(len);
3927173275Ssam	if (data == NULL)
3928173275Ssam		err(1, "out of memory for acl list");
3929173275Ssam
3930175952Ssam	ireq.i_data = data;
3931175952Ssam	if (ioctl(s, SIOCG80211, &ireq) < 0)
3932173275Ssam		err(1, "unable to get mac acl list");
3933173275Ssam	nacls = len / sizeof(*acllist);
3934173275Ssam	acllist = (struct ieee80211req_maclist *) data;
3935149029Ssam	for (i = 0; i < nacls; i++)
3936149029Ssam		printf("%c%s\n", c, ether_ntoa(
3937149029Ssam			(const struct ether_addr *) acllist[i].ml_macaddr));
3938173275Ssam	free(data);
3939149029Ssam}
3940149029Ssam
3941178354Ssamstatic void
3942178354Ssamprint_regdomain(const struct ieee80211_regdomain *reg, int verb)
3943178354Ssam{
3944178354Ssam	if ((reg->regdomain != 0 &&
3945178354Ssam	    reg->regdomain != reg->country) || verb) {
3946178354Ssam		const struct regdomain *rd =
3947178354Ssam		    lib80211_regdomain_findbysku(getregdata(), reg->regdomain);
3948178354Ssam		if (rd == NULL)
3949178354Ssam			LINE_CHECK("regdomain %d", reg->regdomain);
3950178354Ssam		else
3951178354Ssam			LINE_CHECK("regdomain %s", rd->name);
3952178354Ssam	}
3953178354Ssam	if (reg->country != 0 || verb) {
3954178354Ssam		const struct country *cc =
3955178354Ssam		    lib80211_country_findbycc(getregdata(), reg->country);
3956178354Ssam		if (cc == NULL)
3957178354Ssam			LINE_CHECK("country %d", reg->country);
3958178354Ssam		else
3959178354Ssam			LINE_CHECK("country %s", cc->isoname);
3960178354Ssam	}
3961178354Ssam	if (reg->location == 'I')
3962178354Ssam		LINE_CHECK("indoor");
3963178354Ssam	else if (reg->location == 'O')
3964178354Ssam		LINE_CHECK("outdoor");
3965178354Ssam	else if (verb)
3966178354Ssam		LINE_CHECK("anywhere");
3967178354Ssam	if (reg->ecm)
3968178354Ssam		LINE_CHECK("ecm");
3969178354Ssam	else if (verb)
3970178354Ssam		LINE_CHECK("-ecm");
3971178354Ssam}
3972178354Ssam
3973178354Ssamstatic void
3974178354Ssamlist_regdomain(int s, int channelsalso)
3975178354Ssam{
3976178354Ssam	getregdomain(s);
3977178354Ssam	if (channelsalso) {
3978178354Ssam		getchaninfo(s);
3979178354Ssam		spacer = ':';
3980178354Ssam		print_regdomain(&regdomain, 1);
3981178354Ssam		LINE_BREAK();
3982187801Ssam		print_channels(s, chaninfo, 1/*allchans*/, 1/*verbose*/);
3983178354Ssam	} else
3984178354Ssam		print_regdomain(&regdomain, verbose);
3985178354Ssam}
3986178354Ssam
3987195618Srpaulostatic void
3988195618Srpaulolist_mesh(int s)
3989195618Srpaulo{
3990195618Srpaulo	struct ieee80211req ireq;
3991195618Srpaulo	struct ieee80211req_mesh_route routes[128];
3992195908Srpaulo	struct ieee80211req_mesh_route *rt;
3993195618Srpaulo
3994195618Srpaulo	(void) memset(&ireq, 0, sizeof(ireq));
3995195618Srpaulo	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
3996195618Srpaulo	ireq.i_type = IEEE80211_IOC_MESH_RTCMD;
3997195618Srpaulo	ireq.i_val = IEEE80211_MESH_RTCMD_LIST;
3998195618Srpaulo	ireq.i_data = &routes;
3999195618Srpaulo	ireq.i_len = sizeof(routes);
4000195618Srpaulo	if (ioctl(s, SIOCG80211, &ireq) < 0)
4001195618Srpaulo	 	err(1, "unable to get the Mesh routing table");
4002195618Srpaulo
4003195908Srpaulo	printf("%-17.17s %-17.17s %4s %4s %4s %6s %s\n"
4004195618Srpaulo		, "DEST"
4005195618Srpaulo		, "NEXT HOP"
4006195618Srpaulo		, "HOPS"
4007195618Srpaulo		, "METRIC"
4008195784Srpaulo		, "LIFETIME"
4009195908Srpaulo		, "MSEQ"
4010195908Srpaulo		, "FLAGS");
4011195618Srpaulo
4012195908Srpaulo	for (rt = &routes[0]; rt - &routes[0] < ireq.i_len / sizeof(*rt); rt++){
4013195618Srpaulo		printf("%s ",
4014195908Srpaulo		    ether_ntoa((const struct ether_addr *)rt->imr_dest));
4015195908Srpaulo		printf("%s %4u   %4u   %6u %6u    %c%c\n",
4016195908Srpaulo			ether_ntoa((const struct ether_addr *)rt->imr_nexthop),
4017195908Srpaulo			rt->imr_nhops, rt->imr_metric, rt->imr_lifetime,
4018195908Srpaulo			rt->imr_lastmseq,
4019234895Smonthadar			(rt->imr_flags & IEEE80211_MESHRT_FLAGS_DISCOVER) ?
4020234895Smonthadar			    'D' :
4021195908Srpaulo			(rt->imr_flags & IEEE80211_MESHRT_FLAGS_VALID) ?
4022195908Srpaulo			    'V' : '!',
4023195908Srpaulo			(rt->imr_flags & IEEE80211_MESHRT_FLAGS_PROXY) ?
4024246505Smonthadar			    'P' :
4025246505Smonthadar			(rt->imr_flags & IEEE80211_MESHRT_FLAGS_GATE) ?
4026246505Smonthadar			    'G' :' ');
4027195618Srpaulo	}
4028195618Srpaulo}
4029195618Srpaulo
4030138593Ssamstatic
4031138593SsamDECL_CMD_FUNC(set80211list, arg, d)
4032138593Ssam{
4033138593Ssam#define	iseq(a,b)	(strncasecmp(a,b,sizeof(b)-1) == 0)
4034138593Ssam
4035173275Ssam	LINE_INIT('\t');
4036173275Ssam
4037138593Ssam	if (iseq(arg, "sta"))
4038138593Ssam		list_stations(s);
4039138593Ssam	else if (iseq(arg, "scan") || iseq(arg, "ap"))
4040138593Ssam		list_scan(s);
4041138593Ssam	else if (iseq(arg, "chan") || iseq(arg, "freq"))
4042138593Ssam		list_channels(s, 1);
4043138593Ssam	else if (iseq(arg, "active"))
4044138593Ssam		list_channels(s, 0);
4045138593Ssam	else if (iseq(arg, "keys"))
4046138593Ssam		list_keys(s);
4047138593Ssam	else if (iseq(arg, "caps"))
4048138593Ssam		list_capabilities(s);
4049178354Ssam	else if (iseq(arg, "wme") || iseq(arg, "wmm"))
4050138593Ssam		list_wme(s);
4051149029Ssam	else if (iseq(arg, "mac"))
4052149029Ssam		list_mac(s);
4053170531Ssam	else if (iseq(arg, "txpow"))
4054170531Ssam		list_txpow(s);
4055178354Ssam	else if (iseq(arg, "roam"))
4056178354Ssam		list_roam(s);
4057178354Ssam	else if (iseq(arg, "txparam") || iseq(arg, "txparm"))
4058178354Ssam		list_txparams(s);
4059178354Ssam	else if (iseq(arg, "regdomain"))
4060178354Ssam		list_regdomain(s, 1);
4061178354Ssam	else if (iseq(arg, "countries"))
4062178354Ssam		list_countries();
4063195618Srpaulo	else if (iseq(arg, "mesh"))
4064195618Srpaulo		list_mesh(s);
4065138593Ssam	else
4066138593Ssam		errx(1, "Don't know how to list %s for %s", arg, name);
4067178354Ssam	LINE_BREAK();
4068138593Ssam#undef iseq
4069138593Ssam}
4070138593Ssam
4071138593Ssamstatic enum ieee80211_opmode
4072138593Ssamget80211opmode(int s)
4073138593Ssam{
4074138593Ssam	struct ifmediareq ifmr;
4075138593Ssam
4076138593Ssam	(void) memset(&ifmr, 0, sizeof(ifmr));
4077138593Ssam	(void) strncpy(ifmr.ifm_name, name, sizeof(ifmr.ifm_name));
4078138593Ssam
4079138593Ssam	if (ioctl(s, SIOCGIFMEDIA, (caddr_t)&ifmr) >= 0) {
4080186101Ssam		if (ifmr.ifm_current & IFM_IEEE80211_ADHOC) {
4081186101Ssam			if (ifmr.ifm_current & IFM_FLAG0)
4082186101Ssam				return IEEE80211_M_AHDEMO;
4083186101Ssam			else
4084186101Ssam				return IEEE80211_M_IBSS;
4085186101Ssam		}
4086138593Ssam		if (ifmr.ifm_current & IFM_IEEE80211_HOSTAP)
4087138593Ssam			return IEEE80211_M_HOSTAP;
4088291352Sadrian		if (ifmr.ifm_current & IFM_IEEE80211_IBSS)
4089291352Sadrian			return IEEE80211_M_IBSS;
4090138593Ssam		if (ifmr.ifm_current & IFM_IEEE80211_MONITOR)
4091138593Ssam			return IEEE80211_M_MONITOR;
4092195618Srpaulo		if (ifmr.ifm_current & IFM_IEEE80211_MBSS)
4093195618Srpaulo			return IEEE80211_M_MBSS;
4094138593Ssam	}
4095138593Ssam	return IEEE80211_M_STA;
4096138593Ssam}
4097138593Ssam
4098138593Ssam#if 0
4099138593Ssamstatic void
4100138593Ssamprintcipher(int s, struct ieee80211req *ireq, int keylenop)
4101138593Ssam{
4102138593Ssam	switch (ireq->i_val) {
4103138593Ssam	case IEEE80211_CIPHER_WEP:
4104138593Ssam		ireq->i_type = keylenop;
4105138593Ssam		if (ioctl(s, SIOCG80211, ireq) != -1)
4106138593Ssam			printf("WEP-%s",
4107138593Ssam			    ireq->i_len <= 5 ? "40" :
4108138593Ssam			    ireq->i_len <= 13 ? "104" : "128");
4109138593Ssam		else
4110138593Ssam			printf("WEP");
4111138593Ssam		break;
4112138593Ssam	case IEEE80211_CIPHER_TKIP:
4113138593Ssam		printf("TKIP");
4114138593Ssam		break;
4115138593Ssam	case IEEE80211_CIPHER_AES_OCB:
4116138593Ssam		printf("AES-OCB");
4117138593Ssam		break;
4118138593Ssam	case IEEE80211_CIPHER_AES_CCM:
4119138593Ssam		printf("AES-CCM");
4120138593Ssam		break;
4121138593Ssam	case IEEE80211_CIPHER_CKIP:
4122138593Ssam		printf("CKIP");
4123138593Ssam		break;
4124138593Ssam	case IEEE80211_CIPHER_NONE:
4125138593Ssam		printf("NONE");
4126138593Ssam		break;
4127138593Ssam	default:
4128138593Ssam		printf("UNKNOWN (0x%x)", ireq->i_val);
4129138593Ssam		break;
4130138593Ssam	}
4131138593Ssam}
4132138593Ssam#endif
4133138593Ssam
4134155931Ssamstatic void
4135138593Ssamprintkey(const struct ieee80211req_key *ik)
4136138593Ssam{
4137138593Ssam	static const uint8_t zerodata[IEEE80211_KEYBUF_SIZE];
4138138593Ssam	int keylen = ik->ik_keylen;
4139138593Ssam	int printcontents;
4140138593Ssam
4141148001Srwatson	printcontents = printkeys &&
4142138593Ssam		(memcmp(ik->ik_keydata, zerodata, keylen) != 0 || verbose);
4143138593Ssam	if (printcontents)
4144138593Ssam		LINE_BREAK();
4145138593Ssam	switch (ik->ik_type) {
4146138593Ssam	case IEEE80211_CIPHER_WEP:
4147138593Ssam		/* compatibility */
4148155931Ssam		LINE_CHECK("wepkey %u:%s", ik->ik_keyix+1,
4149138593Ssam		    keylen <= 5 ? "40-bit" :
4150138593Ssam		    keylen <= 13 ? "104-bit" : "128-bit");
4151138593Ssam		break;
4152138593Ssam	case IEEE80211_CIPHER_TKIP:
4153138593Ssam		if (keylen > 128/8)
4154138593Ssam			keylen -= 128/8;	/* ignore MIC for now */
4155155931Ssam		LINE_CHECK("TKIP %u:%u-bit", ik->ik_keyix+1, 8*keylen);
4156138593Ssam		break;
4157138593Ssam	case IEEE80211_CIPHER_AES_OCB:
4158155931Ssam		LINE_CHECK("AES-OCB %u:%u-bit", ik->ik_keyix+1, 8*keylen);
4159138593Ssam		break;
4160138593Ssam	case IEEE80211_CIPHER_AES_CCM:
4161155931Ssam		LINE_CHECK("AES-CCM %u:%u-bit", ik->ik_keyix+1, 8*keylen);
4162138593Ssam		break;
4163138593Ssam	case IEEE80211_CIPHER_CKIP:
4164155931Ssam		LINE_CHECK("CKIP %u:%u-bit", ik->ik_keyix+1, 8*keylen);
4165138593Ssam		break;
4166138593Ssam	case IEEE80211_CIPHER_NONE:
4167155931Ssam		LINE_CHECK("NULL %u:%u-bit", ik->ik_keyix+1, 8*keylen);
4168138593Ssam		break;
4169138593Ssam	default:
4170155931Ssam		LINE_CHECK("UNKNOWN (0x%x) %u:%u-bit",
4171138593Ssam			ik->ik_type, ik->ik_keyix+1, 8*keylen);
4172138593Ssam		break;
4173138593Ssam	}
4174138593Ssam	if (printcontents) {
4175138593Ssam		int i;
4176138593Ssam
4177138593Ssam		printf(" <");
4178138593Ssam		for (i = 0; i < keylen; i++)
4179138593Ssam			printf("%02x", ik->ik_keydata[i]);
4180138593Ssam		printf(">");
4181138593Ssam		if (ik->ik_type != IEEE80211_CIPHER_WEP &&
4182138593Ssam		    (ik->ik_keyrsc != 0 || verbose))
4183146873Sjhb			printf(" rsc %ju", (uintmax_t)ik->ik_keyrsc);
4184138593Ssam		if (ik->ik_type != IEEE80211_CIPHER_WEP &&
4185138593Ssam		    (ik->ik_keytsc != 0 || verbose))
4186146873Sjhb			printf(" tsc %ju", (uintmax_t)ik->ik_keytsc);
4187138593Ssam		if (ik->ik_flags != 0 && verbose) {
4188138593Ssam			const char *sep = " ";
4189138593Ssam
4190138593Ssam			if (ik->ik_flags & IEEE80211_KEY_XMIT)
4191138593Ssam				printf("%stx", sep), sep = "+";
4192138593Ssam			if (ik->ik_flags & IEEE80211_KEY_RECV)
4193138593Ssam				printf("%srx", sep), sep = "+";
4194138593Ssam			if (ik->ik_flags & IEEE80211_KEY_DEFAULT)
4195138593Ssam				printf("%sdef", sep), sep = "+";
4196138593Ssam		}
4197138593Ssam		LINE_BREAK();
4198138593Ssam	}
4199138593Ssam}
4200138593Ssam
4201138593Ssamstatic void
4202173275Ssamprintrate(const char *tag, int v, int defrate, int defmcs)
4203138593Ssam{
4204188784Ssam	if ((v & IEEE80211_RATE_MCS) == 0) {
4205188784Ssam		if (v != defrate) {
4206188784Ssam			if (v & 1)
4207188784Ssam				LINE_CHECK("%s %d.5", tag, v/2);
4208188784Ssam			else
4209188784Ssam				LINE_CHECK("%s %d", tag, v/2);
4210188784Ssam		}
4211188784Ssam	} else {
4212173275Ssam		if (v != defmcs)
4213173275Ssam			LINE_CHECK("%s %d", tag, v &~ 0x80);
4214173275Ssam	}
4215173275Ssam}
4216173275Ssam
4217173275Ssamstatic int
4218195618Srpaulogetid(int s, int ix, void *data, size_t len, int *plen, int mesh)
4219173275Ssam{
4220138593Ssam	struct ieee80211req ireq;
4221138593Ssam
4222138593Ssam	(void) memset(&ireq, 0, sizeof(ireq));
4223138593Ssam	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
4224195618Srpaulo	ireq.i_type = (!mesh) ? IEEE80211_IOC_SSID : IEEE80211_IOC_MESH_ID;
4225173275Ssam	ireq.i_val = ix;
4226173275Ssam	ireq.i_data = data;
4227173275Ssam	ireq.i_len = len;
4228173275Ssam	if (ioctl(s, SIOCG80211, &ireq) < 0)
4229173275Ssam		return -1;
4230173275Ssam	*plen = ireq.i_len;
4231173275Ssam	return 0;
4232173275Ssam}
423377218Sphk
4234173275Ssamstatic void
4235173275Ssamieee80211_status(int s)
4236173275Ssam{
4237173275Ssam	static const uint8_t zerobssid[IEEE80211_ADDR_LEN];
4238173275Ssam	enum ieee80211_opmode opmode = get80211opmode(s);
4239173275Ssam	int i, num, wpa, wme, bgscan, bgscaninterval, val, len, wepmode;
4240173275Ssam	uint8_t data[32];
4241173275Ssam	const struct ieee80211_channel *c;
4242178354Ssam	const struct ieee80211_roamparam *rp;
4243178354Ssam	const struct ieee80211_txparam *tp;
4244173275Ssam
4245195618Srpaulo	if (getid(s, -1, data, sizeof(data), &len, 0) < 0) {
4246148686Sstefanf		/* If we can't get the SSID, this isn't an 802.11 device. */
424777218Sphk		return;
424877218Sphk	}
4249173275Ssam
4250173275Ssam	/*
4251173275Ssam	 * Invalidate cached state so printing status for multiple
4252173275Ssam	 * if's doesn't reuse the first interfaces' cached state.
4253173275Ssam	 */
4254173275Ssam	gotcurchan = 0;
4255178354Ssam	gotroam = 0;
4256178354Ssam	gottxparams = 0;
4257173275Ssam	gothtconf = 0;
4258178354Ssam	gotregdomain = 0;
4259173275Ssam
4260195618Srpaulo	printf("\t");
4261195618Srpaulo	if (opmode == IEEE80211_M_MBSS) {
4262195618Srpaulo		printf("meshid ");
4263195618Srpaulo		getid(s, 0, data, sizeof(data), &len, 1);
4264195618Srpaulo		print_string(data, len);
4265195618Srpaulo	} else {
4266195618Srpaulo		if (get80211val(s, IEEE80211_IOC_NUMSSIDS, &num) < 0)
4267195618Srpaulo			num = 0;
4268195618Srpaulo		printf("ssid ");
4269195618Srpaulo		if (num > 1) {
4270195618Srpaulo			for (i = 0; i < num; i++) {
4271195618Srpaulo				if (getid(s, i, data, sizeof(data), &len, 0) >= 0 && len > 0) {
4272195618Srpaulo					printf(" %d:", i + 1);
4273195618Srpaulo					print_string(data, len);
4274195618Srpaulo				}
4275138593Ssam			}
4276195618Srpaulo		} else
4277195618Srpaulo			print_string(data, len);
4278195618Srpaulo	}
4279173275Ssam	c = getcurchan(s);
4280170531Ssam	if (c->ic_freq != IEEE80211_CHAN_ANY) {
4281170531Ssam		char buf[14];
4282202161Sgavin		printf(" channel %d (%u MHz%s)", c->ic_ieee, c->ic_freq,
4283170531Ssam			get_chaninfo(c, 1, buf, sizeof(buf)));
4284138593Ssam	} else if (verbose)
4285138593Ssam		printf(" channel UNDEF");
4286138593Ssam
4287173275Ssam	if (get80211(s, IEEE80211_IOC_BSSID, data, IEEE80211_ADDR_LEN) >= 0 &&
4288173275Ssam	    (memcmp(data, zerobssid, sizeof(zerobssid)) != 0 || verbose))
4289173275Ssam		printf(" bssid %s", ether_ntoa((struct ether_addr *)data));
4290138593Ssam
4291173275Ssam	if (get80211len(s, IEEE80211_IOC_STATIONNAME, data, sizeof(data), &len) != -1) {
4292138593Ssam		printf("\n\tstationname ");
4293173275Ssam		print_string(data, len);
429477218Sphk	}
429577218Sphk
4296138593Ssam	spacer = ' ';		/* force first break */
4297138593Ssam	LINE_BREAK();
429877218Sphk
4299178354Ssam	list_regdomain(s, 0);
4300178354Ssam
4301173275Ssam	wpa = 0;
4302173275Ssam	if (get80211val(s, IEEE80211_IOC_AUTHMODE, &val) != -1) {
4303173275Ssam		switch (val) {
4304173275Ssam		case IEEE80211_AUTH_NONE:
4305173275Ssam			LINE_CHECK("authmode NONE");
4306173275Ssam			break;
4307173275Ssam		case IEEE80211_AUTH_OPEN:
4308173275Ssam			LINE_CHECK("authmode OPEN");
4309173275Ssam			break;
4310173275Ssam		case IEEE80211_AUTH_SHARED:
4311173275Ssam			LINE_CHECK("authmode SHARED");
4312173275Ssam			break;
4313173275Ssam		case IEEE80211_AUTH_8021X:
4314173275Ssam			LINE_CHECK("authmode 802.1x");
4315173275Ssam			break;
4316173275Ssam		case IEEE80211_AUTH_WPA:
4317173275Ssam			if (get80211val(s, IEEE80211_IOC_WPA, &wpa) < 0)
4318173275Ssam				wpa = 1;	/* default to WPA1 */
4319173275Ssam			switch (wpa) {
4320173275Ssam			case 2:
4321173275Ssam				LINE_CHECK("authmode WPA2/802.11i");
432277218Sphk				break;
4323173275Ssam			case 3:
4324173275Ssam				LINE_CHECK("authmode WPA1+WPA2/802.11i");
432577218Sphk				break;
4326127649Ssam			default:
4327173275Ssam				LINE_CHECK("authmode WPA");
4328127649Ssam				break;
4329173275Ssam			}
4330173275Ssam			break;
4331173275Ssam		case IEEE80211_AUTH_AUTO:
4332173275Ssam			LINE_CHECK("authmode AUTO");
4333173275Ssam			break;
4334173275Ssam		default:
4335173275Ssam			LINE_CHECK("authmode UNKNOWN (0x%x)", val);
4336173275Ssam			break;
4337127649Ssam		}
4338127649Ssam	}
4339127649Ssam
4340173275Ssam	if (wpa || verbose) {
4341178354Ssam		if (get80211val(s, IEEE80211_IOC_WPS, &val) != -1) {
4342178354Ssam			if (val)
4343178354Ssam				LINE_CHECK("wps");
4344178354Ssam			else if (verbose)
4345178354Ssam				LINE_CHECK("-wps");
4346178354Ssam		}
4347178354Ssam		if (get80211val(s, IEEE80211_IOC_TSN, &val) != -1) {
4348178354Ssam			if (val)
4349178354Ssam				LINE_CHECK("tsn");
4350178354Ssam			else if (verbose)
4351178354Ssam				LINE_CHECK("-tsn");
4352178354Ssam		}
4353173275Ssam		if (ioctl(s, IEEE80211_IOC_COUNTERMEASURES, &val) != -1) {
4354173275Ssam			if (val)
4355173275Ssam				LINE_CHECK("countermeasures");
4356173275Ssam			else if (verbose)
4357173275Ssam				LINE_CHECK("-countermeasures");
4358173275Ssam		}
4359178354Ssam#if 0
4360178354Ssam		/* XXX not interesting with WPA done in user space */
4361178354Ssam		ireq.i_type = IEEE80211_IOC_KEYMGTALGS;
4362178354Ssam		if (ioctl(s, SIOCG80211, &ireq) != -1) {
4363178354Ssam		}
4364178354Ssam
4365178354Ssam		ireq.i_type = IEEE80211_IOC_MCASTCIPHER;
4366178354Ssam		if (ioctl(s, SIOCG80211, &ireq) != -1) {
4367178354Ssam			LINE_CHECK("mcastcipher ");
4368178354Ssam			printcipher(s, &ireq, IEEE80211_IOC_MCASTKEYLEN);
4369178354Ssam			spacer = ' ';
4370178354Ssam		}
4371178354Ssam
4372178354Ssam		ireq.i_type = IEEE80211_IOC_UCASTCIPHER;
4373178354Ssam		if (ioctl(s, SIOCG80211, &ireq) != -1) {
4374178354Ssam			LINE_CHECK("ucastcipher ");
4375178354Ssam			printcipher(s, &ireq, IEEE80211_IOC_UCASTKEYLEN);
4376178354Ssam		}
4377178354Ssam
4378178354Ssam		if (wpa & 2) {
4379178354Ssam			ireq.i_type = IEEE80211_IOC_RSNCAPS;
4380178354Ssam			if (ioctl(s, SIOCG80211, &ireq) != -1) {
4381178354Ssam				LINE_CHECK("RSN caps 0x%x", ireq.i_val);
4382178354Ssam				spacer = ' ';
4383178354Ssam			}
4384178354Ssam		}
4385178354Ssam
4386178354Ssam		ireq.i_type = IEEE80211_IOC_UCASTCIPHERS;
4387178354Ssam		if (ioctl(s, SIOCG80211, &ireq) != -1) {
4388178354Ssam		}
4389178354Ssam#endif
4390173275Ssam	}
4391138593Ssam
4392173275Ssam	if (get80211val(s, IEEE80211_IOC_WEP, &wepmode) != -1 &&
4393173275Ssam	    wepmode != IEEE80211_WEP_NOSUP) {
4394173275Ssam
4395138718Ssam		switch (wepmode) {
4396173275Ssam		case IEEE80211_WEP_OFF:
4397173275Ssam			LINE_CHECK("privacy OFF");
4398173275Ssam			break;
4399173275Ssam		case IEEE80211_WEP_ON:
4400173275Ssam			LINE_CHECK("privacy ON");
4401173275Ssam			break;
4402173275Ssam		case IEEE80211_WEP_MIXED:
4403173275Ssam			LINE_CHECK("privacy MIXED");
4404173275Ssam			break;
4405173275Ssam		default:
4406173275Ssam			LINE_CHECK("privacy UNKNOWN (0x%x)", wepmode);
4407173275Ssam			break;
440877218Sphk		}
440977218Sphk
441077218Sphk		/*
441177218Sphk		 * If we get here then we've got WEP support so we need
441277218Sphk		 * to print WEP status.
441391454Sbrooks		 */
441477218Sphk
4415173275Ssam		if (get80211val(s, IEEE80211_IOC_WEPTXKEY, &val) < 0) {
441677218Sphk			warn("WEP support, but no tx key!");
441777218Sphk			goto end;
441877218Sphk		}
4419173275Ssam		if (val != -1)
4420173275Ssam			LINE_CHECK("deftxkey %d", val+1);
4421138718Ssam		else if (wepmode != IEEE80211_WEP_OFF || verbose)
4422155931Ssam			LINE_CHECK("deftxkey UNDEF");
442377218Sphk
4424173275Ssam		if (get80211val(s, IEEE80211_IOC_NUMWEPKEYS, &num) < 0) {
442577218Sphk			warn("WEP support, but no NUMWEPKEYS support!");
442677218Sphk			goto end;
442777218Sphk		}
442877218Sphk
4429138593Ssam		for (i = 0; i < num; i++) {
4430138593Ssam			struct ieee80211req_key ik;
443177218Sphk
4432138593Ssam			memset(&ik, 0, sizeof(ik));
4433138593Ssam			ik.ik_keyix = i;
4434173275Ssam			if (get80211(s, IEEE80211_IOC_WPAKEY, &ik, sizeof(ik)) < 0) {
443577218Sphk				warn("WEP support, but can get keys!");
443677218Sphk				goto end;
443777218Sphk			}
4438138593Ssam			if (ik.ik_keylen != 0) {
4439138593Ssam				if (verbose)
4440138593Ssam					LINE_BREAK();
4441138593Ssam				printkey(&ik);
4442138593Ssam			}
4443138593Ssam		}
4444173275Ssamend:
4445173275Ssam		;
4446138593Ssam	}
4447138593Ssam
4448173275Ssam	if (get80211val(s, IEEE80211_IOC_POWERSAVE, &val) != -1 &&
4449173275Ssam	    val != IEEE80211_POWERSAVE_NOSUP ) {
4450173275Ssam		if (val != IEEE80211_POWERSAVE_OFF || verbose) {
4451173275Ssam			switch (val) {
4452173275Ssam			case IEEE80211_POWERSAVE_OFF:
4453173275Ssam				LINE_CHECK("powersavemode OFF");
4454173275Ssam				break;
4455173275Ssam			case IEEE80211_POWERSAVE_CAM:
4456173275Ssam				LINE_CHECK("powersavemode CAM");
4457173275Ssam				break;
4458173275Ssam			case IEEE80211_POWERSAVE_PSP:
4459173275Ssam				LINE_CHECK("powersavemode PSP");
4460173275Ssam				break;
4461173275Ssam			case IEEE80211_POWERSAVE_PSP_CAM:
4462173275Ssam				LINE_CHECK("powersavemode PSP-CAM");
4463173275Ssam				break;
4464138593Ssam			}
4465173275Ssam			if (get80211val(s, IEEE80211_IOC_POWERSAVESLEEP, &val) != -1)
4466173275Ssam				LINE_CHECK("powersavesleep %d", val);
4467138593Ssam		}
4468138593Ssam	}
4469138593Ssam
4470173275Ssam	if (get80211val(s, IEEE80211_IOC_TXPOWER, &val) != -1) {
4471173275Ssam		if (val & 1)
4472173275Ssam			LINE_CHECK("txpower %d.5", val/2);
4473173275Ssam		else
4474173275Ssam			LINE_CHECK("txpower %d", val/2);
4475173275Ssam	}
4476138593Ssam	if (verbose) {
4477173275Ssam		if (get80211val(s, IEEE80211_IOC_TXPOWMAX, &val) != -1)
4478173275Ssam			LINE_CHECK("txpowmax %.1f", val/2.);
4479138593Ssam	}
4480138593Ssam
4481178354Ssam	if (get80211val(s, IEEE80211_IOC_DOTD, &val) != -1) {
4482178354Ssam		if (val)
4483178354Ssam			LINE_CHECK("dotd");
4484178354Ssam		else if (verbose)
4485178354Ssam			LINE_CHECK("-dotd");
4486178354Ssam	}
4487178354Ssam
4488173275Ssam	if (get80211val(s, IEEE80211_IOC_RTSTHRESHOLD, &val) != -1) {
4489173275Ssam		if (val != IEEE80211_RTS_MAX || verbose)
4490173275Ssam			LINE_CHECK("rtsthreshold %d", val);
4491138593Ssam	}
4492138593Ssam
4493173275Ssam	if (get80211val(s, IEEE80211_IOC_FRAGTHRESHOLD, &val) != -1) {
4494173275Ssam		if (val != IEEE80211_FRAG_MAX || verbose)
4495173275Ssam			LINE_CHECK("fragthreshold %d", val);
4496170531Ssam	}
4497173275Ssam	if (opmode == IEEE80211_M_STA || verbose) {
4498173275Ssam		if (get80211val(s, IEEE80211_IOC_BMISSTHRESHOLD, &val) != -1) {
4499173275Ssam			if (val != IEEE80211_HWBMISS_MAX || verbose)
4500173275Ssam				LINE_CHECK("bmiss %d", val);
4501153354Ssam		}
4502153354Ssam	}
4503153354Ssam
4504178354Ssam	if (!verbose) {
4505178354Ssam		gettxparams(s);
4506178354Ssam		tp = &txparams.params[chan2mode(c)];
4507178354Ssam		printrate("ucastrate", tp->ucastrate,
4508178354Ssam		    IEEE80211_FIXED_RATE_NONE, IEEE80211_FIXED_RATE_NONE);
4509188784Ssam		printrate("mcastrate", tp->mcastrate, 2*1,
4510188784Ssam		    IEEE80211_RATE_MCS|0);
4511188784Ssam		printrate("mgmtrate", tp->mgmtrate, 2*1,
4512188784Ssam		    IEEE80211_RATE_MCS|0);
4513178354Ssam		if (tp->maxretry != 6)		/* XXX */
4514178354Ssam			LINE_CHECK("maxretry %d", tp->maxretry);
4515178354Ssam	} else {
4516178354Ssam		LINE_BREAK();
4517178354Ssam		list_txparams(s);
4518178354Ssam	}
4519170531Ssam
4520173275Ssam	bgscaninterval = -1;
4521173275Ssam	(void) get80211val(s, IEEE80211_IOC_BGSCAN_INTERVAL, &bgscaninterval);
4522173275Ssam
4523173275Ssam	if (get80211val(s, IEEE80211_IOC_SCANVALID, &val) != -1) {
4524173275Ssam		if (val != bgscaninterval || verbose)
4525173275Ssam			LINE_CHECK("scanvalid %u", val);
4526148416Ssam	}
4527148416Ssam
4528173275Ssam	bgscan = 0;
4529173275Ssam	if (get80211val(s, IEEE80211_IOC_BGSCAN, &bgscan) != -1) {
4530173275Ssam		if (bgscan)
4531170531Ssam			LINE_CHECK("bgscan");
4532170531Ssam		else if (verbose)
4533170531Ssam			LINE_CHECK("-bgscan");
4534160687Ssam	}
4535170531Ssam	if (bgscan || verbose) {
4536170531Ssam		if (bgscaninterval != -1)
4537170531Ssam			LINE_CHECK("bgscanintvl %u", bgscaninterval);
4538173275Ssam		if (get80211val(s, IEEE80211_IOC_BGSCAN_IDLE, &val) != -1)
4539173275Ssam			LINE_CHECK("bgscanidle %u", val);
4540178354Ssam		if (!verbose) {
4541178354Ssam			getroam(s);
4542178354Ssam			rp = &roamparams.params[chan2mode(c)];
4543178354Ssam			if (rp->rssi & 1)
4544178354Ssam				LINE_CHECK("roam:rssi %u.5", rp->rssi/2);
4545178354Ssam			else
4546178354Ssam				LINE_CHECK("roam:rssi %u", rp->rssi/2);
4547178354Ssam			LINE_CHECK("roam:rate %u", rp->rate/2);
4548178354Ssam		} else {
4549178354Ssam			LINE_BREAK();
4550178354Ssam			list_roam(s);
4551205514Srpaulo			LINE_BREAK();
4552170531Ssam		}
4553170531Ssam	}
4554160687Ssam
4555165570Ssam	if (IEEE80211_IS_CHAN_ANYG(c) || verbose) {
4556173275Ssam		if (get80211val(s, IEEE80211_IOC_PUREG, &val) != -1) {
4557173275Ssam			if (val)
4558155931Ssam				LINE_CHECK("pureg");
4559147795Ssam			else if (verbose)
4560155931Ssam				LINE_CHECK("-pureg");
4561147795Ssam		}
4562173275Ssam		if (get80211val(s, IEEE80211_IOC_PROTMODE, &val) != -1) {
4563173275Ssam			switch (val) {
4564173275Ssam			case IEEE80211_PROTMODE_OFF:
4565173275Ssam				LINE_CHECK("protmode OFF");
4566173275Ssam				break;
4567173275Ssam			case IEEE80211_PROTMODE_CTS:
4568173275Ssam				LINE_CHECK("protmode CTS");
4569173275Ssam				break;
4570173275Ssam			case IEEE80211_PROTMODE_RTSCTS:
4571173275Ssam				LINE_CHECK("protmode RTSCTS");
4572173275Ssam				break;
4573173275Ssam			default:
4574173275Ssam				LINE_CHECK("protmode UNKNOWN (0x%x)", val);
4575173275Ssam				break;
4576138593Ssam			}
4577138593Ssam		}
4578138593Ssam	}
4579138593Ssam
4580173275Ssam	if (IEEE80211_IS_CHAN_HT(c) || verbose) {
4581173275Ssam		gethtconf(s);
4582173275Ssam		switch (htconf & 3) {
4583173275Ssam		case 0:
4584173275Ssam		case 2:
4585173275Ssam			LINE_CHECK("-ht");
4586173275Ssam			break;
4587173275Ssam		case 1:
4588173275Ssam			LINE_CHECK("ht20");
4589173275Ssam			break;
4590173275Ssam		case 3:
4591173275Ssam			if (verbose)
4592173275Ssam				LINE_CHECK("ht");
4593173275Ssam			break;
4594173275Ssam		}
4595173275Ssam		if (get80211val(s, IEEE80211_IOC_HTCOMPAT, &val) != -1) {
4596173275Ssam			if (!val)
4597173275Ssam				LINE_CHECK("-htcompat");
4598173275Ssam			else if (verbose)
4599173275Ssam				LINE_CHECK("htcompat");
4600173275Ssam		}
4601173275Ssam		if (get80211val(s, IEEE80211_IOC_AMPDU, &val) != -1) {
4602173275Ssam			switch (val) {
4603173275Ssam			case 0:
4604173275Ssam				LINE_CHECK("-ampdu");
4605173275Ssam				break;
4606173275Ssam			case 1:
4607173275Ssam				LINE_CHECK("ampdutx -ampdurx");
4608173275Ssam				break;
4609173275Ssam			case 2:
4610173275Ssam				LINE_CHECK("-ampdutx ampdurx");
4611173275Ssam				break;
4612173275Ssam			case 3:
4613173275Ssam				if (verbose)
4614173275Ssam					LINE_CHECK("ampdu");
4615173275Ssam				break;
4616173275Ssam			}
4617173275Ssam		}
4618173275Ssam		if (get80211val(s, IEEE80211_IOC_AMPDU_LIMIT, &val) != -1) {
4619173275Ssam			switch (val) {
4620173275Ssam			case IEEE80211_HTCAP_MAXRXAMPDU_8K:
4621173275Ssam				LINE_CHECK("ampdulimit 8k");
4622173275Ssam				break;
4623173275Ssam			case IEEE80211_HTCAP_MAXRXAMPDU_16K:
4624173275Ssam				LINE_CHECK("ampdulimit 16k");
4625173275Ssam				break;
4626173275Ssam			case IEEE80211_HTCAP_MAXRXAMPDU_32K:
4627173275Ssam				LINE_CHECK("ampdulimit 32k");
4628173275Ssam				break;
4629173275Ssam			case IEEE80211_HTCAP_MAXRXAMPDU_64K:
4630173275Ssam				LINE_CHECK("ampdulimit 64k");
4631173275Ssam				break;
4632173275Ssam			}
4633173275Ssam		}
4634173275Ssam		if (get80211val(s, IEEE80211_IOC_AMPDU_DENSITY, &val) != -1) {
4635173275Ssam			switch (val) {
4636173275Ssam			case IEEE80211_HTCAP_MPDUDENSITY_NA:
4637173275Ssam				if (verbose)
4638183260Ssam					LINE_CHECK("ampdudensity NA");
4639173275Ssam				break;
4640173275Ssam			case IEEE80211_HTCAP_MPDUDENSITY_025:
4641173275Ssam				LINE_CHECK("ampdudensity .25");
4642173275Ssam				break;
4643173275Ssam			case IEEE80211_HTCAP_MPDUDENSITY_05:
4644173275Ssam				LINE_CHECK("ampdudensity .5");
4645173275Ssam				break;
4646173275Ssam			case IEEE80211_HTCAP_MPDUDENSITY_1:
4647173275Ssam				LINE_CHECK("ampdudensity 1");
4648173275Ssam				break;
4649173275Ssam			case IEEE80211_HTCAP_MPDUDENSITY_2:
4650173275Ssam				LINE_CHECK("ampdudensity 2");
4651173275Ssam				break;
4652173275Ssam			case IEEE80211_HTCAP_MPDUDENSITY_4:
4653173275Ssam				LINE_CHECK("ampdudensity 4");
4654173275Ssam				break;
4655173275Ssam			case IEEE80211_HTCAP_MPDUDENSITY_8:
4656173275Ssam				LINE_CHECK("ampdudensity 8");
4657173275Ssam				break;
4658173275Ssam			case IEEE80211_HTCAP_MPDUDENSITY_16:
4659173275Ssam				LINE_CHECK("ampdudensity 16");
4660173275Ssam				break;
4661173275Ssam			}
4662173275Ssam		}
4663173275Ssam		if (get80211val(s, IEEE80211_IOC_AMSDU, &val) != -1) {
4664173275Ssam			switch (val) {
4665173275Ssam			case 0:
4666173275Ssam				LINE_CHECK("-amsdu");
4667173275Ssam				break;
4668173275Ssam			case 1:
4669173275Ssam				LINE_CHECK("amsdutx -amsdurx");
4670173275Ssam				break;
4671173275Ssam			case 2:
4672173275Ssam				LINE_CHECK("-amsdutx amsdurx");
4673173275Ssam				break;
4674173275Ssam			case 3:
4675173275Ssam				if (verbose)
4676173275Ssam					LINE_CHECK("amsdu");
4677173275Ssam				break;
4678173275Ssam			}
4679173275Ssam		}
4680173275Ssam		/* XXX amsdu limit */
4681173275Ssam		if (get80211val(s, IEEE80211_IOC_SHORTGI, &val) != -1) {
4682173275Ssam			if (val)
4683173275Ssam				LINE_CHECK("shortgi");
4684173275Ssam			else if (verbose)
4685173275Ssam				LINE_CHECK("-shortgi");
4686173275Ssam		}
4687173275Ssam		if (get80211val(s, IEEE80211_IOC_HTPROTMODE, &val) != -1) {
4688173275Ssam			if (val == IEEE80211_PROTMODE_OFF)
4689173275Ssam				LINE_CHECK("htprotmode OFF");
4690173275Ssam			else if (val != IEEE80211_PROTMODE_RTSCTS)
4691173275Ssam				LINE_CHECK("htprotmode UNKNOWN (0x%x)", val);
4692173275Ssam			else if (verbose)
4693173275Ssam				LINE_CHECK("htprotmode RTSCTS");
4694173275Ssam		}
4695173275Ssam		if (get80211val(s, IEEE80211_IOC_PUREN, &val) != -1) {
4696173275Ssam			if (val)
4697173275Ssam				LINE_CHECK("puren");
4698173275Ssam			else if (verbose)
4699173275Ssam				LINE_CHECK("-puren");
4700173275Ssam		}
4701183261Ssam		if (get80211val(s, IEEE80211_IOC_SMPS, &val) != -1) {
4702183261Ssam			if (val == IEEE80211_HTCAP_SMPS_DYNAMIC)
4703183261Ssam				LINE_CHECK("smpsdyn");
4704183261Ssam			else if (val == IEEE80211_HTCAP_SMPS_ENA)
4705183261Ssam				LINE_CHECK("smps");
4706183261Ssam			else if (verbose)
4707183261Ssam				LINE_CHECK("-smps");
4708183261Ssam		}
4709183261Ssam		if (get80211val(s, IEEE80211_IOC_RIFS, &val) != -1) {
4710183261Ssam			if (val)
4711183261Ssam				LINE_CHECK("rifs");
4712183261Ssam			else if (verbose)
4713183261Ssam				LINE_CHECK("-rifs");
4714183261Ssam		}
4715173275Ssam	}
4716173275Ssam
4717173275Ssam	if (get80211val(s, IEEE80211_IOC_WME, &wme) != -1) {
4718138593Ssam		if (wme)
4719155931Ssam			LINE_CHECK("wme");
4720138593Ssam		else if (verbose)
4721155931Ssam			LINE_CHECK("-wme");
4722138593Ssam	} else
4723138593Ssam		wme = 0;
4724138593Ssam
4725173275Ssam	if (get80211val(s, IEEE80211_IOC_BURST, &val) != -1) {
4726173275Ssam		if (val)
4727155931Ssam			LINE_CHECK("burst");
4728153422Ssam		else if (verbose)
4729155931Ssam			LINE_CHECK("-burst");
4730153422Ssam	}
4731153422Ssam
4732173275Ssam	if (get80211val(s, IEEE80211_IOC_FF, &val) != -1) {
4733173275Ssam		if (val)
4734170531Ssam			LINE_CHECK("ff");
4735170531Ssam		else if (verbose)
4736170531Ssam			LINE_CHECK("-ff");
4737170531Ssam	}
4738173275Ssam	if (get80211val(s, IEEE80211_IOC_TURBOP, &val) != -1) {
4739173275Ssam		if (val)
4740170531Ssam			LINE_CHECK("dturbo");
4741170531Ssam		else if (verbose)
4742170531Ssam			LINE_CHECK("-dturbo");
4743170531Ssam	}
4744178354Ssam	if (get80211val(s, IEEE80211_IOC_DWDS, &val) != -1) {
4745178354Ssam		if (val)
4746178354Ssam			LINE_CHECK("dwds");
4747178354Ssam		else if (verbose)
4748178354Ssam			LINE_CHECK("-dwds");
4749178354Ssam	}
4750170531Ssam
4751138593Ssam	if (opmode == IEEE80211_M_HOSTAP) {
4752173275Ssam		if (get80211val(s, IEEE80211_IOC_HIDESSID, &val) != -1) {
4753173275Ssam			if (val)
4754168075Ssam				LINE_CHECK("hidessid");
4755138593Ssam			else if (verbose)
4756168075Ssam				LINE_CHECK("-hidessid");
4757138593Ssam		}
4758173275Ssam		if (get80211val(s, IEEE80211_IOC_APBRIDGE, &val) != -1) {
4759173275Ssam			if (!val)
4760155931Ssam				LINE_CHECK("-apbridge");
4761138593Ssam			else if (verbose)
4762155931Ssam				LINE_CHECK("apbridge");
4763138593Ssam		}
4764173275Ssam		if (get80211val(s, IEEE80211_IOC_DTIM_PERIOD, &val) != -1)
4765173275Ssam			LINE_CHECK("dtimperiod %u", val);
4766138593Ssam
4767173275Ssam		if (get80211val(s, IEEE80211_IOC_DOTH, &val) != -1) {
4768173275Ssam			if (!val)
4769170531Ssam				LINE_CHECK("-doth");
4770170531Ssam			else if (verbose)
4771170531Ssam				LINE_CHECK("doth");
4772170531Ssam		}
4773178354Ssam		if (get80211val(s, IEEE80211_IOC_DFS, &val) != -1) {
4774178354Ssam			if (!val)
4775178354Ssam				LINE_CHECK("-dfs");
4776178354Ssam			else if (verbose)
4777178354Ssam				LINE_CHECK("dfs");
4778178354Ssam		}
4779173275Ssam		if (get80211val(s, IEEE80211_IOC_INACTIVITY, &val) != -1) {
4780173275Ssam			if (!val)
4781173275Ssam				LINE_CHECK("-inact");
4782173275Ssam			else if (verbose)
4783173275Ssam				LINE_CHECK("inact");
4784173275Ssam		}
4785138593Ssam	} else {
4786173275Ssam		if (get80211val(s, IEEE80211_IOC_ROAMING, &val) != -1) {
4787173275Ssam			if (val != IEEE80211_ROAMING_AUTO || verbose) {
4788173275Ssam				switch (val) {
4789138593Ssam				case IEEE80211_ROAMING_DEVICE:
4790155931Ssam					LINE_CHECK("roaming DEVICE");
4791138593Ssam					break;
4792138593Ssam				case IEEE80211_ROAMING_AUTO:
4793155931Ssam					LINE_CHECK("roaming AUTO");
4794138593Ssam					break;
4795138593Ssam				case IEEE80211_ROAMING_MANUAL:
4796155931Ssam					LINE_CHECK("roaming MANUAL");
4797138593Ssam					break;
4798138593Ssam				default:
4799155931Ssam					LINE_CHECK("roaming UNKNOWN (0x%x)",
4800173275Ssam						val);
4801138593Ssam					break;
4802138593Ssam				}
4803138593Ssam			}
4804138593Ssam		}
4805138593Ssam	}
4806186101Ssam
4807186904Ssam	if (opmode == IEEE80211_M_AHDEMO) {
4808186904Ssam		if (get80211val(s, IEEE80211_IOC_TDMA_SLOT, &val) != -1)
4809186904Ssam			LINE_CHECK("tdmaslot %u", val);
4810186904Ssam		if (get80211val(s, IEEE80211_IOC_TDMA_SLOTCNT, &val) != -1)
4811186904Ssam			LINE_CHECK("tdmaslotcnt %u", val);
4812186904Ssam		if (get80211val(s, IEEE80211_IOC_TDMA_SLOTLEN, &val) != -1)
4813186904Ssam			LINE_CHECK("tdmaslotlen %u", val);
4814186904Ssam		if (get80211val(s, IEEE80211_IOC_TDMA_BINTERVAL, &val) != -1)
4815186904Ssam			LINE_CHECK("tdmabintval %u", val);
4816186904Ssam	} else if (get80211val(s, IEEE80211_IOC_BEACON_INTERVAL, &val) != -1) {
4817173275Ssam		/* XXX default define not visible */
4818173275Ssam		if (val != 100 || verbose)
4819173275Ssam			LINE_CHECK("bintval %u", val);
4820138593Ssam	}
4821138593Ssam
4822138593Ssam	if (wme && verbose) {
4823138593Ssam		LINE_BREAK();
4824138593Ssam		list_wme(s);
4825138593Ssam	}
4826195618Srpaulo
4827195618Srpaulo	if (opmode == IEEE80211_M_MBSS) {
4828195618Srpaulo		if (get80211val(s, IEEE80211_IOC_MESH_TTL, &val) != -1) {
4829195618Srpaulo			LINE_CHECK("meshttl %u", val);
4830195618Srpaulo		}
4831195618Srpaulo		if (get80211val(s, IEEE80211_IOC_MESH_AP, &val) != -1) {
4832195618Srpaulo			if (val)
4833195618Srpaulo				LINE_CHECK("meshpeering");
4834195618Srpaulo			else
4835195618Srpaulo				LINE_CHECK("-meshpeering");
4836195618Srpaulo		}
4837195618Srpaulo		if (get80211val(s, IEEE80211_IOC_MESH_FWRD, &val) != -1) {
4838195618Srpaulo			if (val)
4839195618Srpaulo				LINE_CHECK("meshforward");
4840195618Srpaulo			else
4841195618Srpaulo				LINE_CHECK("-meshforward");
4842195618Srpaulo		}
4843234893Smonthadar		if (get80211val(s, IEEE80211_IOC_MESH_GATE, &val) != -1) {
4844234893Smonthadar			if (val)
4845234893Smonthadar				LINE_CHECK("meshgate");
4846234893Smonthadar			else
4847234893Smonthadar				LINE_CHECK("-meshgate");
4848234893Smonthadar		}
4849195618Srpaulo		if (get80211len(s, IEEE80211_IOC_MESH_PR_METRIC, data, 12,
4850195618Srpaulo		    &len) != -1) {
4851195618Srpaulo			data[len] = '\0';
4852195618Srpaulo			LINE_CHECK("meshmetric %s", data);
4853195618Srpaulo		}
4854195618Srpaulo		if (get80211len(s, IEEE80211_IOC_MESH_PR_PATH, data, 12,
4855195618Srpaulo		    &len) != -1) {
4856195618Srpaulo			data[len] = '\0';
4857195618Srpaulo			LINE_CHECK("meshpath %s", data);
4858195618Srpaulo		}
4859195618Srpaulo		if (get80211val(s, IEEE80211_IOC_HWMP_ROOTMODE, &val) != -1) {
4860195618Srpaulo			switch (val) {
4861195618Srpaulo			case IEEE80211_HWMP_ROOTMODE_DISABLED:
4862195618Srpaulo				LINE_CHECK("hwmprootmode DISABLED");
4863195618Srpaulo				break;
4864195618Srpaulo			case IEEE80211_HWMP_ROOTMODE_NORMAL:
4865195618Srpaulo				LINE_CHECK("hwmprootmode NORMAL");
4866195618Srpaulo				break;
4867195618Srpaulo			case IEEE80211_HWMP_ROOTMODE_PROACTIVE:
4868195618Srpaulo				LINE_CHECK("hwmprootmode PROACTIVE");
4869195618Srpaulo				break;
4870195618Srpaulo			case IEEE80211_HWMP_ROOTMODE_RANN:
4871195618Srpaulo				LINE_CHECK("hwmprootmode RANN");
4872195618Srpaulo				break;
4873195618Srpaulo			default:
4874195618Srpaulo				LINE_CHECK("hwmprootmode UNKNOWN(%d)", val);
4875195618Srpaulo				break;
4876195618Srpaulo			}
4877195618Srpaulo		}
4878195618Srpaulo		if (get80211val(s, IEEE80211_IOC_HWMP_MAXHOPS, &val) != -1) {
4879195618Srpaulo			LINE_CHECK("hwmpmaxhops %u", val);
4880195618Srpaulo		}
4881195618Srpaulo	}
4882195618Srpaulo
4883173275Ssam	LINE_BREAK();
4884173275Ssam}
4885138593Ssam
4886173275Ssamstatic int
4887173275Ssamget80211(int s, int type, void *data, int len)
4888173275Ssam{
4889173275Ssam	struct ieee80211req ireq;
4890138593Ssam
4891173275Ssam	(void) memset(&ireq, 0, sizeof(ireq));
4892173275Ssam	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
4893173275Ssam	ireq.i_type = type;
4894173275Ssam	ireq.i_data = data;
4895173275Ssam	ireq.i_len = len;
4896173275Ssam	return ioctl(s, SIOCG80211, &ireq);
4897173275Ssam}
4898138593Ssam
4899173275Ssamstatic int
4900173275Ssamget80211len(int s, int type, void *data, int len, int *plen)
4901173275Ssam{
4902173275Ssam	struct ieee80211req ireq;
4903138593Ssam
4904173275Ssam	(void) memset(&ireq, 0, sizeof(ireq));
4905173275Ssam	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
4906173275Ssam	ireq.i_type = type;
4907173275Ssam	ireq.i_len = len;
4908187801Ssam	assert(ireq.i_len == len);	/* NB: check for 16-bit truncation */
4909173275Ssam	ireq.i_data = data;
4910173275Ssam	if (ioctl(s, SIOCG80211, &ireq) < 0)
4911173275Ssam		return -1;
4912173275Ssam	*plen = ireq.i_len;
4913173275Ssam	return 0;
4914173275Ssam}
4915138593Ssam
4916173275Ssamstatic int
4917173275Ssamget80211val(int s, int type, int *val)
4918173275Ssam{
4919173275Ssam	struct ieee80211req ireq;
492077218Sphk
4921173275Ssam	(void) memset(&ireq, 0, sizeof(ireq));
4922173275Ssam	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
4923173275Ssam	ireq.i_type = type;
4924173275Ssam	if (ioctl(s, SIOCG80211, &ireq) < 0)
4925173275Ssam		return -1;
4926173275Ssam	*val = ireq.i_val;
4927173275Ssam	return 0;
492877218Sphk}
492977218Sphk
493077218Sphkstatic void
4931170531Ssamset80211(int s, int type, int val, int len, void *data)
493277218Sphk{
493377218Sphk	struct ieee80211req	ireq;
493477218Sphk
493577218Sphk	(void) memset(&ireq, 0, sizeof(ireq));
493677218Sphk	(void) strncpy(ireq.i_name, name, sizeof(ireq.i_name));
493777218Sphk	ireq.i_type = type;
493877218Sphk	ireq.i_val = val;
493977218Sphk	ireq.i_len = len;
4940187801Ssam	assert(ireq.i_len == len);	/* NB: check for 16-bit truncation */
494177218Sphk	ireq.i_data = data;
494291454Sbrooks	if (ioctl(s, SIOCS80211, &ireq) < 0)
494377218Sphk		err(1, "SIOCS80211");
494477218Sphk}
494577218Sphk
494677218Sphkstatic const char *
494777218Sphkget_string(const char *val, const char *sep, u_int8_t *buf, int *lenp)
494877218Sphk{
494977218Sphk	int len;
495077218Sphk	int hexstr;
495177218Sphk	u_int8_t *p;
495277218Sphk
495377218Sphk	len = *lenp;
495477218Sphk	p = buf;
495577218Sphk	hexstr = (val[0] == '0' && tolower((u_char)val[1]) == 'x');
495677218Sphk	if (hexstr)
495777218Sphk		val += 2;
495877218Sphk	for (;;) {
495977218Sphk		if (*val == '\0')
496077218Sphk			break;
496177218Sphk		if (sep != NULL && strchr(sep, *val) != NULL) {
496277218Sphk			val++;
496377218Sphk			break;
496477218Sphk		}
496577218Sphk		if (hexstr) {
4966127831Sphk			if (!isxdigit((u_char)val[0])) {
496777218Sphk				warnx("bad hexadecimal digits");
496877218Sphk				return NULL;
496977218Sphk			}
4970127831Sphk			if (!isxdigit((u_char)val[1])) {
4971127831Sphk				warnx("odd count hexadecimal digits");
4972127831Sphk				return NULL;
4973127831Sphk			}
497477218Sphk		}
4975127831Sphk		if (p >= buf + len) {
497677218Sphk			if (hexstr)
497777218Sphk				warnx("hexadecimal digits too long");
497877218Sphk			else
4979127831Sphk				warnx("string too long");
498077218Sphk			return NULL;
498177218Sphk		}
498277218Sphk		if (hexstr) {
498377218Sphk#define	tohex(x)	(isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10)
498477218Sphk			*p++ = (tohex((u_char)val[0]) << 4) |
498577218Sphk			    tohex((u_char)val[1]);
498677218Sphk#undef tohex
498777218Sphk			val += 2;
498877218Sphk		} else
498977218Sphk			*p++ = *val++;
499077218Sphk	}
499177218Sphk	len = p - buf;
499277218Sphk	/* The string "-" is treated as the empty string. */
4993165045Ssam	if (!hexstr && len == 1 && buf[0] == '-') {
499477218Sphk		len = 0;
4995165045Ssam		memset(buf, 0, *lenp);
4996165045Ssam	} else if (len < *lenp)
499777218Sphk		memset(p, 0, *lenp - len);
499877218Sphk	*lenp = len;
499977218Sphk	return val;
500077218Sphk}
500177218Sphk
500277218Sphkstatic void
500377218Sphkprint_string(const u_int8_t *buf, int len)
500477218Sphk{
500577218Sphk	int i;
500677218Sphk	int hasspc;
500777218Sphk
500877218Sphk	i = 0;
500977218Sphk	hasspc = 0;
501091454Sbrooks	for (; i < len; i++) {
501177218Sphk		if (!isprint(buf[i]) && buf[i] != '\0')
501277218Sphk			break;
501377218Sphk		if (isspace(buf[i]))
501477218Sphk			hasspc++;
501577218Sphk	}
501677218Sphk	if (i == len) {
501777218Sphk		if (hasspc || len == 0 || buf[0] == '\0')
501877218Sphk			printf("\"%.*s\"", len, buf);
501977218Sphk		else
502077218Sphk			printf("%.*s", len, buf);
502177218Sphk	} else {
502277218Sphk		printf("0x");
502377218Sphk		for (i = 0; i < len; i++)
502477218Sphk			printf("%02x", buf[i]);
502577218Sphk	}
502677218Sphk}
502777218Sphk
5028178354Ssam/*
5029178354Ssam * Virtual AP cloning support.
5030178354Ssam */
5031178354Ssamstatic struct ieee80211_clone_params params = {
5032178354Ssam	.icp_opmode	= IEEE80211_M_STA,	/* default to station mode */
5033178354Ssam};
5034178354Ssam
5035178354Ssamstatic void
5036178354Ssamwlan_create(int s, struct ifreq *ifr)
5037178354Ssam{
5038178354Ssam	static const uint8_t zerobssid[IEEE80211_ADDR_LEN];
5039178354Ssam
5040178354Ssam	if (params.icp_parent[0] == '\0')
5041189096Srpaulo		errx(1, "must specify a parent device (wlandev) when creating "
5042189096Srpaulo		    "a wlan device");
5043178354Ssam	if (params.icp_opmode == IEEE80211_M_WDS &&
5044178354Ssam	    memcmp(params.icp_bssid, zerobssid, sizeof(zerobssid)) == 0)
5045178354Ssam		errx(1, "no bssid specified for WDS (use wlanbssid)");
5046178354Ssam	ifr->ifr_data = (caddr_t) &params;
5047178354Ssam	if (ioctl(s, SIOCIFCREATE2, ifr) < 0)
5048178354Ssam		err(1, "SIOCIFCREATE2");
5049178354Ssam}
5050178354Ssam
5051178354Ssamstatic
5052178354SsamDECL_CMD_FUNC(set80211clone_wlandev, arg, d)
5053178354Ssam{
5054178354Ssam	strlcpy(params.icp_parent, arg, IFNAMSIZ);
5055178354Ssam}
5056178354Ssam
5057178354Ssamstatic
5058178354SsamDECL_CMD_FUNC(set80211clone_wlanbssid, arg, d)
5059178354Ssam{
5060178354Ssam	const struct ether_addr *ea;
5061178354Ssam
5062178354Ssam	ea = ether_aton(arg);
5063178354Ssam	if (ea == NULL)
5064178354Ssam		errx(1, "%s: cannot parse bssid", arg);
5065178354Ssam	memcpy(params.icp_bssid, ea->octet, IEEE80211_ADDR_LEN);
5066178354Ssam}
5067178354Ssam
5068178354Ssamstatic
5069178354SsamDECL_CMD_FUNC(set80211clone_wlanaddr, arg, d)
5070178354Ssam{
5071178354Ssam	const struct ether_addr *ea;
5072178354Ssam
5073178354Ssam	ea = ether_aton(arg);
5074178354Ssam	if (ea == NULL)
5075207320Srpaulo		errx(1, "%s: cannot parse address", arg);
5076178354Ssam	memcpy(params.icp_macaddr, ea->octet, IEEE80211_ADDR_LEN);
5077178354Ssam	params.icp_flags |= IEEE80211_CLONE_MACADDR;
5078178354Ssam}
5079178354Ssam
5080178354Ssamstatic
5081178354SsamDECL_CMD_FUNC(set80211clone_wlanmode, arg, d)
5082178354Ssam{
5083178354Ssam#define	iseq(a,b)	(strncasecmp(a,b,sizeof(b)-1) == 0)
5084178354Ssam	if (iseq(arg, "sta"))
5085178354Ssam		params.icp_opmode = IEEE80211_M_STA;
5086178354Ssam	else if (iseq(arg, "ahdemo") || iseq(arg, "adhoc-demo"))
5087178354Ssam		params.icp_opmode = IEEE80211_M_AHDEMO;
5088178354Ssam	else if (iseq(arg, "ibss") || iseq(arg, "adhoc"))
5089178354Ssam		params.icp_opmode = IEEE80211_M_IBSS;
5090178354Ssam	else if (iseq(arg, "ap") || iseq(arg, "host"))
5091178354Ssam		params.icp_opmode = IEEE80211_M_HOSTAP;
5092178354Ssam	else if (iseq(arg, "wds"))
5093178354Ssam		params.icp_opmode = IEEE80211_M_WDS;
5094178354Ssam	else if (iseq(arg, "monitor"))
5095178354Ssam		params.icp_opmode = IEEE80211_M_MONITOR;
5096186904Ssam	else if (iseq(arg, "tdma")) {
5097186904Ssam		params.icp_opmode = IEEE80211_M_AHDEMO;
5098186904Ssam		params.icp_flags |= IEEE80211_CLONE_TDMA;
5099195618Srpaulo	} else if (iseq(arg, "mesh") || iseq(arg, "mp")) /* mesh point */
5100195618Srpaulo		params.icp_opmode = IEEE80211_M_MBSS;
5101195618Srpaulo	else
5102178354Ssam		errx(1, "Don't know to create %s for %s", arg, name);
5103178354Ssam#undef iseq
5104178354Ssam}
5105178354Ssam
5106178354Ssamstatic void
5107178354Ssamset80211clone_beacons(const char *val, int d, int s, const struct afswtch *rafp)
5108178354Ssam{
5109178354Ssam	/* NB: inverted sense */
5110178354Ssam	if (d)
5111178354Ssam		params.icp_flags &= ~IEEE80211_CLONE_NOBEACONS;
5112178354Ssam	else
5113178354Ssam		params.icp_flags |= IEEE80211_CLONE_NOBEACONS;
5114178354Ssam}
5115178354Ssam
5116178354Ssamstatic void
5117178354Ssamset80211clone_bssid(const char *val, int d, int s, const struct afswtch *rafp)
5118178354Ssam{
5119178354Ssam	if (d)
5120178354Ssam		params.icp_flags |= IEEE80211_CLONE_BSSID;
5121178354Ssam	else
5122178354Ssam		params.icp_flags &= ~IEEE80211_CLONE_BSSID;
5123178354Ssam}
5124178354Ssam
5125178354Ssamstatic void
5126178354Ssamset80211clone_wdslegacy(const char *val, int d, int s, const struct afswtch *rafp)
5127178354Ssam{
5128178354Ssam	if (d)
5129178354Ssam		params.icp_flags |= IEEE80211_CLONE_WDSLEGACY;
5130178354Ssam	else
5131178354Ssam		params.icp_flags &= ~IEEE80211_CLONE_WDSLEGACY;
5132178354Ssam}
5133178354Ssam
5134138593Ssamstatic struct cmd ieee80211_cmds[] = {
5135138593Ssam	DEF_CMD_ARG("ssid",		set80211ssid),
5136138593Ssam	DEF_CMD_ARG("nwid",		set80211ssid),
5137195618Srpaulo	DEF_CMD_ARG("meshid",		set80211meshid),
5138138593Ssam	DEF_CMD_ARG("stationname",	set80211stationname),
5139138593Ssam	DEF_CMD_ARG("station",		set80211stationname),	/* BSD/OS */
5140138593Ssam	DEF_CMD_ARG("channel",		set80211channel),
5141138593Ssam	DEF_CMD_ARG("authmode",		set80211authmode),
5142138593Ssam	DEF_CMD_ARG("powersavemode",	set80211powersavemode),
5143138593Ssam	DEF_CMD("powersave",	1,	set80211powersave),
5144138593Ssam	DEF_CMD("-powersave",	0,	set80211powersave),
5145138593Ssam	DEF_CMD_ARG("powersavesleep", 	set80211powersavesleep),
5146138593Ssam	DEF_CMD_ARG("wepmode",		set80211wepmode),
5147138593Ssam	DEF_CMD("wep",		1,	set80211wep),
5148138593Ssam	DEF_CMD("-wep",		0,	set80211wep),
5149139493Ssam	DEF_CMD_ARG("deftxkey",		set80211weptxkey),
5150138593Ssam	DEF_CMD_ARG("weptxkey",		set80211weptxkey),
5151138593Ssam	DEF_CMD_ARG("wepkey",		set80211wepkey),
5152138593Ssam	DEF_CMD_ARG("nwkey",		set80211nwkey),		/* NetBSD */
5153138593Ssam	DEF_CMD("-nwkey",	0,	set80211wep),		/* NetBSD */
5154138593Ssam	DEF_CMD_ARG("rtsthreshold",	set80211rtsthreshold),
5155138593Ssam	DEF_CMD_ARG("protmode",		set80211protmode),
5156138593Ssam	DEF_CMD_ARG("txpower",		set80211txpower),
5157138593Ssam	DEF_CMD_ARG("roaming",		set80211roaming),
5158138593Ssam	DEF_CMD("wme",		1,	set80211wme),
5159138593Ssam	DEF_CMD("-wme",		0,	set80211wme),
5160178354Ssam	DEF_CMD("wmm",		1,	set80211wme),
5161178354Ssam	DEF_CMD("-wmm",		0,	set80211wme),
5162138593Ssam	DEF_CMD("hidessid",	1,	set80211hidessid),
5163138593Ssam	DEF_CMD("-hidessid",	0,	set80211hidessid),
5164138593Ssam	DEF_CMD("apbridge",	1,	set80211apbridge),
5165138593Ssam	DEF_CMD("-apbridge",	0,	set80211apbridge),
5166138593Ssam	DEF_CMD_ARG("chanlist",		set80211chanlist),
5167138593Ssam	DEF_CMD_ARG("bssid",		set80211bssid),
5168138593Ssam	DEF_CMD_ARG("ap",		set80211bssid),
5169138593Ssam	DEF_CMD("scan",	0,		set80211scan),
5170138593Ssam	DEF_CMD_ARG("list",		set80211list),
5171138593Ssam	DEF_CMD_ARG2("cwmin",		set80211cwmin),
5172138593Ssam	DEF_CMD_ARG2("cwmax",		set80211cwmax),
5173138593Ssam	DEF_CMD_ARG2("aifs",		set80211aifs),
5174138593Ssam	DEF_CMD_ARG2("txoplimit",	set80211txoplimit),
5175148621Ssam	DEF_CMD_ARG("acm",		set80211acm),
5176148621Ssam	DEF_CMD_ARG("-acm",		set80211noacm),
5177148621Ssam	DEF_CMD_ARG("ack",		set80211ackpolicy),
5178148621Ssam	DEF_CMD_ARG("-ack",		set80211noackpolicy),
5179138593Ssam	DEF_CMD_ARG2("bss:cwmin",	set80211bsscwmin),
5180138593Ssam	DEF_CMD_ARG2("bss:cwmax",	set80211bsscwmax),
5181138593Ssam	DEF_CMD_ARG2("bss:aifs",	set80211bssaifs),
5182138593Ssam	DEF_CMD_ARG2("bss:txoplimit",	set80211bsstxoplimit),
5183138593Ssam	DEF_CMD_ARG("dtimperiod",	set80211dtimperiod),
5184138593Ssam	DEF_CMD_ARG("bintval",		set80211bintval),
5185138593Ssam	DEF_CMD("mac:open",	IEEE80211_MACCMD_POLICY_OPEN,	set80211maccmd),
5186138593Ssam	DEF_CMD("mac:allow",	IEEE80211_MACCMD_POLICY_ALLOW,	set80211maccmd),
5187138593Ssam	DEF_CMD("mac:deny",	IEEE80211_MACCMD_POLICY_DENY,	set80211maccmd),
5188178354Ssam	DEF_CMD("mac:radius",	IEEE80211_MACCMD_POLICY_RADIUS,	set80211maccmd),
5189138593Ssam	DEF_CMD("mac:flush",	IEEE80211_MACCMD_FLUSH,		set80211maccmd),
5190138593Ssam	DEF_CMD("mac:detach",	IEEE80211_MACCMD_DETACH,	set80211maccmd),
5191138593Ssam	DEF_CMD_ARG("mac:add",		set80211addmac),
5192138593Ssam	DEF_CMD_ARG("mac:del",		set80211delmac),
5193138593Ssam	DEF_CMD_ARG("mac:kick",		set80211kickmac),
5194147795Ssam	DEF_CMD("pureg",	1,	set80211pureg),
5195147795Ssam	DEF_CMD("-pureg",	0,	set80211pureg),
5196170531Ssam	DEF_CMD("ff",		1,	set80211fastframes),
5197170531Ssam	DEF_CMD("-ff",		0,	set80211fastframes),
5198170531Ssam	DEF_CMD("dturbo",	1,	set80211dturbo),
5199170531Ssam	DEF_CMD("-dturbo",	0,	set80211dturbo),
5200170531Ssam	DEF_CMD("bgscan",	1,	set80211bgscan),
5201170531Ssam	DEF_CMD("-bgscan",	0,	set80211bgscan),
5202170531Ssam	DEF_CMD_ARG("bgscanidle",	set80211bgscanidle),
5203170531Ssam	DEF_CMD_ARG("bgscanintvl",	set80211bgscanintvl),
5204170531Ssam	DEF_CMD_ARG("scanvalid",	set80211scanvalid),
5205227336Sadrian	DEF_CMD("quiet",        1,      set80211quiet),
5206227336Sadrian	DEF_CMD("-quiet",       0,      set80211quiet),
5207227336Sadrian	DEF_CMD_ARG("quiet_count",      set80211quietcount),
5208227336Sadrian	DEF_CMD_ARG("quiet_period",     set80211quietperiod),
5209227336Sadrian	DEF_CMD_ARG("quiet_dur",        set80211quietduration),
5210227336Sadrian	DEF_CMD_ARG("quiet_offset",     set80211quietoffset),
5211178354Ssam	DEF_CMD_ARG("roam:rssi",	set80211roamrssi),
5212178354Ssam	DEF_CMD_ARG("roam:rate",	set80211roamrate),
5213153354Ssam	DEF_CMD_ARG("mcastrate",	set80211mcastrate),
5214178354Ssam	DEF_CMD_ARG("ucastrate",	set80211ucastrate),
5215178354Ssam	DEF_CMD_ARG("mgtrate",		set80211mgtrate),
5216178354Ssam	DEF_CMD_ARG("mgmtrate",		set80211mgtrate),
5217178354Ssam	DEF_CMD_ARG("maxretry",		set80211maxretry),
5218148416Ssam	DEF_CMD_ARG("fragthreshold",	set80211fragthreshold),
5219153422Ssam	DEF_CMD("burst",	1,	set80211burst),
5220153422Ssam	DEF_CMD("-burst",	0,	set80211burst),
5221160687Ssam	DEF_CMD_ARG("bmiss",		set80211bmissthreshold),
5222160687Ssam	DEF_CMD_ARG("bmissthreshold",	set80211bmissthreshold),
5223173275Ssam	DEF_CMD("shortgi",	1,	set80211shortgi),
5224173275Ssam	DEF_CMD("-shortgi",	0,	set80211shortgi),
5225173275Ssam	DEF_CMD("ampdurx",	2,	set80211ampdu),
5226173275Ssam	DEF_CMD("-ampdurx",	-2,	set80211ampdu),
5227173275Ssam	DEF_CMD("ampdutx",	1,	set80211ampdu),
5228173275Ssam	DEF_CMD("-ampdutx",	-1,	set80211ampdu),
5229173275Ssam	DEF_CMD("ampdu",	3,	set80211ampdu),		/* NB: tx+rx */
5230173275Ssam	DEF_CMD("-ampdu",	-3,	set80211ampdu),
5231173275Ssam	DEF_CMD_ARG("ampdulimit",	set80211ampdulimit),
5232173275Ssam	DEF_CMD_ARG("ampdudensity",	set80211ampdudensity),
5233173275Ssam	DEF_CMD("amsdurx",	2,	set80211amsdu),
5234173275Ssam	DEF_CMD("-amsdurx",	-2,	set80211amsdu),
5235173275Ssam	DEF_CMD("amsdutx",	1,	set80211amsdu),
5236173275Ssam	DEF_CMD("-amsdutx",	-1,	set80211amsdu),
5237173275Ssam	DEF_CMD("amsdu",	3,	set80211amsdu),		/* NB: tx+rx */
5238173275Ssam	DEF_CMD("-amsdu",	-3,	set80211amsdu),
5239173275Ssam	DEF_CMD_ARG("amsdulimit",	set80211amsdulimit),
5240173275Ssam	DEF_CMD("puren",	1,	set80211puren),
5241173275Ssam	DEF_CMD("-puren",	0,	set80211puren),
5242170531Ssam	DEF_CMD("doth",		1,	set80211doth),
5243170531Ssam	DEF_CMD("-doth",	0,	set80211doth),
5244178354Ssam	DEF_CMD("dfs",		1,	set80211dfs),
5245178354Ssam	DEF_CMD("-dfs",		0,	set80211dfs),
5246173275Ssam	DEF_CMD("htcompat",	1,	set80211htcompat),
5247173275Ssam	DEF_CMD("-htcompat",	0,	set80211htcompat),
5248178354Ssam	DEF_CMD("dwds",		1,	set80211dwds),
5249178354Ssam	DEF_CMD("-dwds",	0,	set80211dwds),
5250173275Ssam	DEF_CMD("inact",	1,	set80211inact),
5251173275Ssam	DEF_CMD("-inact",	0,	set80211inact),
5252178354Ssam	DEF_CMD("tsn",		1,	set80211tsn),
5253178354Ssam	DEF_CMD("-tsn",		0,	set80211tsn),
5254178354Ssam	DEF_CMD_ARG("regdomain",	set80211regdomain),
5255178354Ssam	DEF_CMD_ARG("country",		set80211country),
5256178354Ssam	DEF_CMD("indoor",	'I',	set80211location),
5257178354Ssam	DEF_CMD("-indoor",	'O',	set80211location),
5258178354Ssam	DEF_CMD("outdoor",	'O',	set80211location),
5259178354Ssam	DEF_CMD("-outdoor",	'I',	set80211location),
5260178354Ssam	DEF_CMD("anywhere",	' ',	set80211location),
5261178354Ssam	DEF_CMD("ecm",		1,	set80211ecm),
5262178354Ssam	DEF_CMD("-ecm",		0,	set80211ecm),
5263178354Ssam	DEF_CMD("dotd",		1,	set80211dotd),
5264178354Ssam	DEF_CMD("-dotd",	0,	set80211dotd),
5265173275Ssam	DEF_CMD_ARG("htprotmode",	set80211htprotmode),
5266173275Ssam	DEF_CMD("ht20",		1,	set80211htconf),
5267173275Ssam	DEF_CMD("-ht20",	0,	set80211htconf),
5268173275Ssam	DEF_CMD("ht40",		3,	set80211htconf),	/* NB: 20+40 */
5269173275Ssam	DEF_CMD("-ht40",	0,	set80211htconf),
5270173275Ssam	DEF_CMD("ht",		3,	set80211htconf),	/* NB: 20+40 */
5271173275Ssam	DEF_CMD("-ht",		0,	set80211htconf),
5272183261Ssam	DEF_CMD("rifs",		1,	set80211rifs),
5273183261Ssam	DEF_CMD("-rifs",	0,	set80211rifs),
5274183261Ssam	DEF_CMD("smps",		IEEE80211_HTCAP_SMPS_ENA,	set80211smps),
5275183261Ssam	DEF_CMD("smpsdyn",	IEEE80211_HTCAP_SMPS_DYNAMIC,	set80211smps),
5276183261Ssam	DEF_CMD("-smps",	IEEE80211_HTCAP_SMPS_OFF,	set80211smps),
5277178354Ssam	/* XXX for testing */
5278178354Ssam	DEF_CMD_ARG("chanswitch",	set80211chanswitch),
5279178354Ssam
5280186904Ssam	DEF_CMD_ARG("tdmaslot",		set80211tdmaslot),
5281186904Ssam	DEF_CMD_ARG("tdmaslotcnt",	set80211tdmaslotcnt),
5282186904Ssam	DEF_CMD_ARG("tdmaslotlen",	set80211tdmaslotlen),
5283186904Ssam	DEF_CMD_ARG("tdmabintval",	set80211tdmabintval),
5284186904Ssam
5285195618Srpaulo	DEF_CMD_ARG("meshttl",		set80211meshttl),
5286195618Srpaulo	DEF_CMD("meshforward",	1,	set80211meshforward),
5287195618Srpaulo	DEF_CMD("-meshforward",	0,	set80211meshforward),
5288234893Smonthadar	DEF_CMD("meshgate",	1,	set80211meshgate),
5289234893Smonthadar	DEF_CMD("-meshgate",	0,	set80211meshgate),
5290195618Srpaulo	DEF_CMD("meshpeering",	1,	set80211meshpeering),
5291195618Srpaulo	DEF_CMD("-meshpeering",	0,	set80211meshpeering),
5292195618Srpaulo	DEF_CMD_ARG("meshmetric",	set80211meshmetric),
5293195618Srpaulo	DEF_CMD_ARG("meshpath",		set80211meshpath),
5294195618Srpaulo	DEF_CMD("meshrt:flush",	IEEE80211_MESH_RTCMD_FLUSH,	set80211meshrtcmd),
5295195618Srpaulo	DEF_CMD_ARG("meshrt:add",	set80211addmeshrt),
5296195618Srpaulo	DEF_CMD_ARG("meshrt:del",	set80211delmeshrt),
5297195618Srpaulo	DEF_CMD_ARG("hwmprootmode",	set80211hwmprootmode),
5298195618Srpaulo	DEF_CMD_ARG("hwmpmaxhops",	set80211hwmpmaxhops),
5299195618Srpaulo
5300178354Ssam	/* vap cloning support */
5301178354Ssam	DEF_CLONE_CMD_ARG("wlanaddr",	set80211clone_wlanaddr),
5302178354Ssam	DEF_CLONE_CMD_ARG("wlanbssid",	set80211clone_wlanbssid),
5303178354Ssam	DEF_CLONE_CMD_ARG("wlandev",	set80211clone_wlandev),
5304178354Ssam	DEF_CLONE_CMD_ARG("wlanmode",	set80211clone_wlanmode),
5305178354Ssam	DEF_CLONE_CMD("beacons", 1,	set80211clone_beacons),
5306178354Ssam	DEF_CLONE_CMD("-beacons", 0,	set80211clone_beacons),
5307178354Ssam	DEF_CLONE_CMD("bssid",	1,	set80211clone_bssid),
5308178354Ssam	DEF_CLONE_CMD("-bssid",	0,	set80211clone_bssid),
5309178354Ssam	DEF_CLONE_CMD("wdslegacy", 1,	set80211clone_wdslegacy),
5310178354Ssam	DEF_CLONE_CMD("-wdslegacy", 0,	set80211clone_wdslegacy),
5311138593Ssam};
5312138593Ssamstatic struct afswtch af_ieee80211 = {
5313138593Ssam	.af_name	= "af_ieee80211",
5314138593Ssam	.af_af		= AF_UNSPEC,
5315139494Ssam	.af_other_status = ieee80211_status,
5316138593Ssam};
5317138593Ssam
5318138593Ssamstatic __constructor void
5319138593Ssamieee80211_ctor(void)
5320138593Ssam{
5321138593Ssam	int i;
5322138593Ssam
5323288305Sngie	for (i = 0; i < nitems(ieee80211_cmds);  i++)
5324138593Ssam		cmd_register(&ieee80211_cmds[i]);
5325138593Ssam	af_register(&af_ieee80211);
5326189096Srpaulo	clone_setdefcallback("wlan", wlan_create);
5327138593Ssam}
5328