Home | History | Annotate | Line # | Download | only in net80211
ieee80211_ioctl.h revision 1.25
      1 /*	$NetBSD: ieee80211_ioctl.h,v 1.25 2019/01/27 02:08:48 pgoyette Exp $	*/
      2 /*-
      3  * Copyright (c) 2001 Atsushi Onoe
      4  * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. The name of the author may not be used to endorse or promote products
     16  *    derived from this software without specific prior written permission.
     17  *
     18  * Alternatively, this software may be distributed under the terms of the
     19  * GNU General Public License ("GPL") version 2 as published by the Free
     20  * Software Foundation.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  *
     33  * $FreeBSD: src/sys/net80211/ieee80211_ioctl.h,v 1.14 2005/08/13 17:31:48 sam Exp $
     34  */
     35 #ifndef _NET80211_IEEE80211_IOCTL_H_
     36 #define _NET80211_IEEE80211_IOCTL_H_
     37 
     38 /*
     39  * IEEE 802.11 ioctls.
     40  */
     41 #include <sys/ioccom.h>
     42 #include <net80211/_ieee80211.h>
     43 #include <net80211/ieee80211.h>
     44 #include <net80211/ieee80211_crypto.h>
     45 
     46 /*
     47  * Per/node (station) statistics available when operating as an AP.
     48  */
     49 struct ieee80211_nodestats {
     50 	u_int32_t	ns_rx_data;		/* rx data frames */
     51 	u_int32_t	ns_rx_mgmt;		/* rx management frames */
     52 	u_int32_t	ns_rx_ctrl;		/* rx control frames */
     53 	u_int32_t	ns_rx_ucast;		/* rx unicast frames */
     54 	u_int32_t	ns_rx_mcast;		/* rx multi/broadcast frames */
     55 	u_int64_t	ns_rx_bytes;		/* rx data count (bytes) */
     56 	u_int64_t	ns_rx_beacons;		/* rx beacon frames */
     57 	u_int32_t	ns_rx_proberesp;	/* rx probe response frames */
     58 
     59 	u_int32_t	ns_rx_dup;		/* rx discard 'cuz dup */
     60 	u_int32_t	ns_rx_noprivacy;	/* rx w/ wep but privacy off */
     61 	u_int32_t	ns_rx_wepfail;		/* rx wep processing failed */
     62 	u_int32_t	ns_rx_demicfail;	/* rx demic failed */
     63 	u_int32_t	ns_rx_decap;		/* rx decapsulation failed */
     64 	u_int32_t	ns_rx_defrag;		/* rx defragmentation failed */
     65 	u_int32_t	ns_rx_disassoc;		/* rx disassociation */
     66 	u_int32_t	ns_rx_deauth;		/* rx deauthentication */
     67 	u_int32_t	ns_rx_decryptcrc;	/* rx decrypt failed on crc */
     68 	u_int32_t	ns_rx_unauth;		/* rx on unauthorized port */
     69 	u_int32_t	ns_rx_unencrypted;	/* rx unecrypted w/ privacy */
     70 
     71 	u_int32_t	ns_tx_data;		/* tx data frames */
     72 	u_int32_t	ns_tx_mgmt;		/* tx management frames */
     73 	u_int32_t	ns_tx_ucast;		/* tx unicast frames */
     74 	u_int32_t	ns_tx_mcast;		/* tx multi/broadcast frames */
     75 	u_int64_t	ns_tx_bytes;		/* tx data count (bytes) */
     76 	u_int32_t	ns_tx_probereq;		/* tx probe request frames */
     77 
     78 	u_int32_t	ns_tx_novlantag;	/* tx discard 'cuz no tag */
     79 	u_int32_t	ns_tx_vlanmismatch;	/* tx discard 'cuz bad tag */
     80 
     81 	u_int32_t	ns_ps_discard;		/* ps discard 'cuz of age */
     82 
     83 	/* MIB-related state */
     84 	u_int32_t	ns_tx_assoc;		/* [re]associations */
     85 	u_int32_t	ns_tx_assoc_fail;	/* [re]association failures */
     86 	u_int32_t	ns_tx_auth;		/* [re]authentications */
     87 	u_int32_t	ns_tx_auth_fail;	/* [re]authentication failures*/
     88 	u_int32_t	ns_tx_deauth;		/* deauthentications */
     89 	u_int32_t	ns_tx_deauth_code;	/* last deauth reason */
     90 	u_int32_t	ns_tx_disassoc;		/* disassociations */
     91 	u_int32_t	ns_tx_disassoc_code;	/* last disassociation reason */
     92 };
     93 
     94 struct ieee80211_ostats {
     95 	u_int32_t	is_rx_badversion;	/* rx frame with bad version */
     96 	u_int32_t	is_rx_tooshort;		/* rx frame too short */
     97 	u_int32_t	is_rx_wrongbss;		/* rx from wrong bssid */
     98 	u_int32_t	is_rx_dup;		/* rx discard 'cuz dup */
     99 	u_int32_t	is_rx_wrongdir;		/* rx w/ wrong direction */
    100 	u_int32_t	is_rx_mcastecho;	/* rx discard 'cuz mcast echo */
    101 	u_int32_t	is_rx_notassoc;		/* rx discard 'cuz sta !assoc */
    102 	u_int32_t	is_rx_nowep;		/* rx w/ wep but wep !config */
    103 	u_int32_t	is_rx_wepfail;		/* rx wep processing failed */
    104 	u_int32_t	is_rx_decap;		/* rx decapsulation failed */
    105 	u_int32_t	is_rx_mgtdiscard;	/* rx discard mgt frames */
    106 	u_int32_t	is_rx_ctl;		/* rx discard ctrl frames */
    107 	u_int32_t	is_rx_rstoobig;		/* rx rate set truncated */
    108 	u_int32_t	is_rx_elem_missing;	/* rx required element missing*/
    109 	u_int32_t	is_rx_elem_toobig;	/* rx element too big */
    110 	u_int32_t	is_rx_elem_toosmall;	/* rx element too small */
    111 	u_int32_t	is_rx_elem_unknown;	/* rx element unknown */
    112 	u_int32_t	is_rx_badchan;		/* rx frame w/ invalid chan */
    113 	u_int32_t	is_rx_chanmismatch;	/* rx frame chan mismatch */
    114 	u_int32_t	is_rx_nodealloc;	/* rx frame dropped */
    115 	u_int32_t	is_rx_ssidmismatch;	/* rx frame ssid mismatch  */
    116 	u_int32_t	is_rx_auth_unsupported;	/* rx w/ unsupported auth alg */
    117 	u_int32_t	is_rx_auth_fail;	/* rx sta auth failure */
    118 	u_int32_t	is_rx_assoc_bss;	/* rx assoc from wrong bssid */
    119 	u_int32_t	is_rx_assoc_notauth;	/* rx assoc w/o auth */
    120 	u_int32_t	is_rx_assoc_capmismatch;/* rx assoc w/ cap mismatch */
    121 	u_int32_t	is_rx_assoc_norate;	/* rx assoc w/ no rate match */
    122 	u_int32_t	is_rx_deauth;		/* rx deauthentication */
    123 	u_int32_t	is_rx_disassoc;		/* rx disassociation */
    124 	u_int32_t	is_rx_badsubtype;	/* rx frame w/ unknown subtype*/
    125 	u_int32_t	is_rx_nombuf;		/* rx failed for lack of mbuf */
    126 	u_int32_t	is_rx_decryptcrc;	/* rx decrypt failed on crc */
    127 	u_int32_t	is_rx_ahdemo_mgt;	/* rx discard ahdemo mgt frame*/
    128 	u_int32_t	is_rx_bad_auth;		/* rx bad auth request */
    129 	u_int32_t	is_tx_nombuf;		/* tx failed for lack of mbuf */
    130 	u_int32_t	is_tx_nonode;		/* tx failed for no node */
    131 	u_int32_t	is_tx_unknownmgt;	/* tx of unknown mgt frame */
    132 	u_int32_t	is_scan_active;		/* active scans started */
    133 	u_int32_t	is_scan_passive;	/* passive scans started */
    134 	u_int32_t	is_node_timeout;	/* nodes timed out inactivity */
    135 	u_int32_t	is_crypto_nomem;	/* no memory for crypto ctx */
    136 };
    137 
    138 /*
    139  * Summary statistics.
    140  */
    141 struct ieee80211_stats {
    142 	u_int32_t	is_rx_badversion;	/* rx frame with bad version */
    143 	u_int32_t	is_rx_tooshort;		/* rx frame too short */
    144 	u_int32_t	is_rx_wrongbss;		/* rx from wrong bssid */
    145 	u_int32_t	is_rx_dup;		/* rx discard 'cuz dup */
    146 	u_int32_t	is_rx_wrongdir;		/* rx w/ wrong direction */
    147 	u_int32_t	is_rx_mcastecho;	/* rx discard 'cuz mcast echo */
    148 	u_int32_t	is_rx_notassoc;		/* rx discard 'cuz sta !assoc */
    149 	u_int32_t	is_rx_noprivacy;	/* rx w/ wep but privacy off */
    150 	u_int32_t	is_rx_unencrypted;	/* rx w/o wep and privacy on */
    151 	u_int32_t	is_rx_wepfail;		/* rx wep processing failed */
    152 	u_int32_t	is_rx_decap;		/* rx decapsulation failed */
    153 	u_int32_t	is_rx_mgtdiscard;	/* rx discard mgt frames */
    154 	u_int32_t	is_rx_ctl;		/* rx discard ctrl frames */
    155 	u_int32_t	is_rx_beacon;		/* rx beacon frames */
    156 	u_int32_t	is_rx_rstoobig;		/* rx rate set truncated */
    157 	u_int32_t	is_rx_elem_missing;	/* rx required element missing*/
    158 	u_int32_t	is_rx_elem_toobig;	/* rx element too big */
    159 	u_int32_t	is_rx_elem_toosmall;	/* rx element too small */
    160 	u_int32_t	is_rx_elem_unknown;	/* rx element unknown */
    161 	u_int32_t	is_rx_badchan;		/* rx frame w/ invalid chan */
    162 	u_int32_t	is_rx_chanmismatch;	/* rx frame chan mismatch */
    163 	u_int32_t	is_rx_nodealloc;	/* rx frame dropped */
    164 	u_int32_t	is_rx_ssidmismatch;	/* rx frame ssid mismatch  */
    165 	u_int32_t	is_rx_auth_unsupported;	/* rx w/ unsupported auth alg */
    166 	u_int32_t	is_rx_auth_fail;	/* rx sta auth failure */
    167 	u_int32_t	is_rx_auth_countermeasures;/* rx auth discard 'cuz CM */
    168 	u_int32_t	is_rx_assoc_bss;	/* rx assoc from wrong bssid */
    169 	u_int32_t	is_rx_assoc_notauth;	/* rx assoc w/o auth */
    170 	u_int32_t	is_rx_assoc_capmismatch;/* rx assoc w/ cap mismatch */
    171 	u_int32_t	is_rx_assoc_norate;	/* rx assoc w/ no rate match */
    172 	u_int32_t	is_rx_assoc_badwpaie;	/* rx assoc w/ bad WPA IE */
    173 	u_int32_t	is_rx_deauth;		/* rx deauthentication */
    174 	u_int32_t	is_rx_disassoc;		/* rx disassociation */
    175 	u_int32_t	is_rx_badsubtype;	/* rx frame w/ unknown subtype*/
    176 	u_int32_t	is_rx_nobuf;		/* rx failed for lack of buf */
    177 	u_int32_t	is_rx_decryptcrc;	/* rx decrypt failed on crc */
    178 	u_int32_t	is_rx_ahdemo_mgt;	/* rx discard ahdemo mgt frame*/
    179 	u_int32_t	is_rx_bad_auth;		/* rx bad auth request */
    180 	u_int32_t	is_rx_unauth;		/* rx on unauthorized port */
    181 	u_int32_t	is_rx_badkeyid;		/* rx w/ incorrect keyid */
    182 	u_int32_t	is_rx_ccmpreplay;	/* rx seq# violation (CCMP) */
    183 	u_int32_t	is_rx_ccmpformat;	/* rx format bad (CCMP) */
    184 	u_int32_t	is_rx_ccmpmic;		/* rx MIC check failed (CCMP) */
    185 	u_int32_t	is_rx_tkipreplay;	/* rx seq# violation (TKIP) */
    186 	u_int32_t	is_rx_tkipformat;	/* rx format bad (TKIP) */
    187 	u_int32_t	is_rx_tkipmic;		/* rx MIC check failed (TKIP) */
    188 	u_int32_t	is_rx_tkipicv;		/* rx ICV check failed (TKIP) */
    189 	u_int32_t	is_rx_badcipher;	/* rx failed 'cuz key type */
    190 	u_int32_t	is_rx_nocipherctx;	/* rx failed 'cuz key !setup */
    191 	u_int32_t	is_rx_acl;		/* rx discard 'cuz acl policy */
    192 	u_int32_t	is_tx_nobuf;		/* tx failed for lack of buf */
    193 	u_int32_t	is_tx_nonode;		/* tx failed for no node */
    194 	u_int32_t	is_tx_unknownmgt;	/* tx of unknown mgt frame */
    195 	u_int32_t	is_tx_badcipher;	/* tx failed 'cuz key type */
    196 	u_int32_t	is_tx_nodefkey;		/* tx failed 'cuz no defkey */
    197 	u_int32_t	is_tx_noheadroom;	/* tx failed 'cuz no space */
    198 	u_int32_t	is_tx_fragframes;	/* tx frames fragmented */
    199 	u_int32_t	is_tx_frags;		/* tx fragments created */
    200 	u_int32_t	is_scan_active;		/* active scans started */
    201 	u_int32_t	is_scan_passive;	/* passive scans started */
    202 	u_int32_t	is_node_timeout;	/* nodes timed out inactivity */
    203 	u_int32_t	is_crypto_nomem;	/* no memory for crypto ctx */
    204 	u_int32_t	is_crypto_tkip;		/* tkip crypto done in s/w */
    205 	u_int32_t	is_crypto_tkipenmic;	/* tkip en-MIC done in s/w */
    206 	u_int32_t	is_crypto_tkipdemic;	/* tkip de-MIC done in s/w */
    207 	u_int32_t	is_crypto_tkipcm;	/* tkip counter measures */
    208 	u_int32_t	is_crypto_ccmp;		/* ccmp crypto done in s/w */
    209 	u_int32_t	is_crypto_wep;		/* wep crypto done in s/w */
    210 	u_int32_t	is_crypto_setkey_cipher;/* cipher rejected key */
    211 	u_int32_t	is_crypto_setkey_nokey;	/* no key index for setkey */
    212 	u_int32_t	is_crypto_delkey;	/* driver key delete failed */
    213 	u_int32_t	is_crypto_badcipher;	/* unknown cipher */
    214 	u_int32_t	is_crypto_nocipher;	/* cipher not available */
    215 	u_int32_t	is_crypto_attachfail;	/* cipher attach failed */
    216 	u_int32_t	is_crypto_swfallback;	/* cipher fallback to s/w */
    217 	u_int32_t	is_crypto_keyfail;	/* driver key alloc failed */
    218 	u_int32_t	is_crypto_enmicfail;	/* en-MIC failed */
    219 	u_int32_t	is_ibss_capmismatch;	/* merge failed-cap mismatch */
    220 	u_int32_t	is_ibss_norate;		/* merge failed-rate mismatch */
    221 	u_int32_t	is_ps_unassoc;		/* ps-poll for unassoc. sta */
    222 	u_int32_t	is_ps_badaid;		/* ps-poll w/ incorrect aid */
    223 	u_int32_t	is_ps_qempty;		/* ps-poll w/ nothing to send */
    224 	u_int32_t	is_ff_badhdr;		/* fast frame rx'd w/ bad hdr */
    225 	u_int32_t	is_ff_tooshort;		/* fast frame rx decap error */
    226 	u_int32_t	is_ff_split;		/* fast frame rx split error */
    227 	u_int32_t	is_ff_decap;		/* fast frames decap'd */
    228 	u_int32_t	is_ff_encap;		/* fast frames encap'd for tx */
    229 	u_int32_t	is_rx_badbintval;	/* rx frame w/ bogus bintval */
    230 	u_int32_t	is_spare[9];
    231 };
    232 
    233 /*
    234  * Max size of optional information elements.  We artificially
    235  * constrain this; it's limited only by the max frame size (and
    236  * the max parameter size of the wireless extensions).
    237  */
    238 #define	IEEE80211_MAX_OPT_IE	256
    239 
    240 /*
    241  * WPA/RSN get/set key request.  Specify the key/cipher
    242  * type and whether the key is to be used for sending and/or
    243  * receiving.  The key index should be set only when working
    244  * with global keys (use IEEE80211_KEYIX_NONE for ``no index'').
    245  * Otherwise a unicast/pairwise key is specified by the bssid
    246  * (on a station) or mac address (on an ap).  They key length
    247  * must include any MIC key data; otherwise it should be no
    248  more than IEEE80211_KEYBUF_SIZE.
    249  */
    250 struct ieee80211req_key {
    251 	u_int8_t	ik_type;	/* key/cipher type */
    252 	u_int8_t	ik_pad;
    253 	u_int16_t	ik_keyix;	/* key index */
    254 	u_int8_t	ik_keylen;	/* key length in bytes */
    255 	u_int8_t	ik_flags;
    256 /* NB: IEEE80211_KEY_XMIT and IEEE80211_KEY_RECV defined elsewhere */
    257 #define	IEEE80211_KEY_DEFAULT	0x80	/* default xmit key */
    258 	u_int8_t	ik_macaddr[IEEE80211_ADDR_LEN];
    259 	u_int64_t	ik_keyrsc;	/* key receive sequence counter */
    260 	u_int64_t	ik_keytsc;	/* key transmit sequence counter */
    261 	u_int8_t	ik_keydata[IEEE80211_KEYBUF_SIZE+IEEE80211_MICBUF_SIZE];
    262 };
    263 
    264 /*
    265  * Delete a key either by index or address.  Set the index
    266  * to IEEE80211_KEYIX_NONE when deleting a unicast key.
    267  */
    268 struct ieee80211req_del_key {
    269 	u_int8_t	idk_keyix;	/* key index */
    270 	u_int8_t	idk_macaddr[IEEE80211_ADDR_LEN];
    271 };
    272 
    273 /*
    274  * MLME state manipulation request.  IEEE80211_MLME_ASSOC
    275  * only makes sense when operating as a station.  The other
    276  * requests can be used when operating as a station or an
    277  * ap (to effect a station).
    278  */
    279 struct ieee80211req_mlme {
    280 	u_int8_t	im_op;		/* operation to perform */
    281 #define	IEEE80211_MLME_ASSOC		1	/* associate station */
    282 #define	IEEE80211_MLME_DISASSOC		2	/* disassociate station */
    283 #define	IEEE80211_MLME_DEAUTH		3	/* deauthenticate station */
    284 #define	IEEE80211_MLME_AUTHORIZE	4	/* authorize station */
    285 #define	IEEE80211_MLME_UNAUTHORIZE	5	/* unauthorize station */
    286 	u_int8_t	im_ssid_len;	/* length of optional ssid */
    287 	u_int16_t	im_reason;	/* 802.11 reason code */
    288 	u_int8_t	im_macaddr[IEEE80211_ADDR_LEN];
    289 	u_int8_t	im_ssid[IEEE80211_NWID_LEN];
    290 };
    291 
    292 /*
    293  * MAC ACL operations.
    294  */
    295 enum {
    296 	IEEE80211_MACCMD_POLICY_OPEN	= 0,	/* set policy: no ACL's */
    297 	IEEE80211_MACCMD_POLICY_ALLOW	= 1,	/* set policy: allow traffic */
    298 	IEEE80211_MACCMD_POLICY_DENY	= 2,	/* set policy: deny traffic */
    299 	IEEE80211_MACCMD_FLUSH		= 3,	/* flush ACL database */
    300 	IEEE80211_MACCMD_DETACH		= 4,	/* detach ACL policy */
    301 	IEEE80211_MACCMD_POLICY		= 5,	/* get ACL policy */
    302 	IEEE80211_MACCMD_LIST		= 6	/* get ACL database */
    303 };
    304 
    305 struct ieee80211req_maclist {
    306 	u_int8_t	ml_macaddr[IEEE80211_ADDR_LEN];
    307 };
    308 
    309 /*
    310  * Set the active channel list.  Note this list is
    311  * intersected with the available channel list in
    312  * calculating the set of channels actually used in
    313  * scanning.
    314  */
    315 struct ieee80211req_chanlist {
    316 	u_int8_t	ic_channels[IEEE80211_CHAN_BYTES];
    317 };
    318 
    319 /*
    320  * Get the active channel list info.
    321  */
    322 struct ieee80211req_chaninfo {
    323 	u_int	ic_nchans;
    324 	struct ieee80211_channel ic_chans[IEEE80211_CHAN_MAX];
    325 };
    326 
    327 /*
    328  * Retrieve the WPA/RSN information element for an associated station.
    329  */
    330 struct ieee80211req_wpaie {
    331 	u_int8_t	wpa_macaddr[IEEE80211_ADDR_LEN];
    332 	u_int8_t	wpa_ie[IEEE80211_MAX_OPT_IE];
    333 };
    334 
    335 /*
    336  * Retrieve per-node statistics.
    337  */
    338 struct ieee80211req_sta_stats {
    339 	union {
    340 		/* NB: explicitly force 64-bit alignment */
    341 		u_int8_t	macaddr[IEEE80211_ADDR_LEN];
    342 		u_int64_t	pad;
    343 	} is_u;
    344 	struct ieee80211_nodestats is_stats;
    345 };
    346 
    347 /*
    348  * Station information block; the mac address is used
    349  * to retrieve other data like stats, unicast key, etc.
    350  */
    351 struct ieee80211req_sta_info {
    352 	u_int16_t	isi_len;		/* length (mult of 4) */
    353 	u_int16_t	isi_freq;		/* MHz */
    354 	u_int16_t	isi_flags;		/* channel flags */
    355 	u_int16_t	isi_state;		/* state flags */
    356 	u_int8_t	isi_authmode;		/* authentication algorithm */
    357 	u_int8_t	isi_rssi;
    358 	u_int8_t	isi_capinfo;		/* capabilities */
    359 	u_int8_t	isi_erp;		/* ERP element */
    360 	u_int8_t	isi_macaddr[IEEE80211_ADDR_LEN];
    361 	u_int8_t	isi_nrates;
    362 						/* negotiated rates */
    363 	u_int8_t	isi_rates[IEEE80211_RATE_MAXSIZE];
    364 	u_int8_t	isi_txrate;		/* index to isi_rates[] */
    365 	u_int16_t	isi_ie_len;		/* IE length */
    366 	u_int16_t	isi_associd;		/* assoc response */
    367 	u_int16_t	isi_txpower;		/* current tx power */
    368 	u_int16_t	isi_vlan;		/* vlan tag */
    369 	u_int16_t	isi_txseqs[17];		/* seq to be transmitted */
    370 	u_int16_t	isi_rxseqs[17];		/* seq previous for qos frames*/
    371 	u_int16_t	isi_inact;		/* inactivity timer */
    372 	/* XXX frag state? */
    373 	/* variable length IE data */
    374 };
    375 
    376 /*
    377  * Retrieve per-station information; to retrieve all
    378  * specify a mac address of ff:ff:ff:ff:ff:ff.
    379  */
    380 struct ieee80211req_sta_req {
    381 	union {
    382 		/* NB: explicitly force 64-bit alignment */
    383 		u_int8_t	macaddr[IEEE80211_ADDR_LEN];
    384 		u_int64_t	pad;
    385 	} is_u;
    386 	struct ieee80211req_sta_info info[1];	/* variable length */
    387 };
    388 
    389 /*
    390  * Get/set per-station tx power cap.
    391  */
    392 struct ieee80211req_sta_txpow {
    393 	u_int8_t	it_macaddr[IEEE80211_ADDR_LEN];
    394 	u_int8_t	it_txpow;
    395 };
    396 
    397 /*
    398  * WME parameters are set and return using i_val and i_len.
    399  * i_val holds the value itself.  i_len specifies the AC
    400  * and, as appropriate, then high bit specifies whether the
    401  * operation is to be applied to the BSS or ourself.
    402  */
    403 #define	IEEE80211_WMEPARAM_SELF	0x0000		/* parameter applies to self */
    404 #define	IEEE80211_WMEPARAM_BSS	0x8000		/* parameter applies to BSS */
    405 #define	IEEE80211_WMEPARAM_VAL	0x7fff		/* parameter value */
    406 
    407 /*
    408  * FreeBSD-style ioctls.
    409  */
    410 /* the first member must be matched with struct ifreq */
    411 struct ieee80211req {
    412 	char		i_name[IFNAMSIZ];	/* if_name, e.g. "wi0" */
    413 	u_int16_t	i_type;			/* req type */
    414 	int16_t		i_val;			/* Index or simple value */
    415 	u_int16_t	i_len;			/* Index or simple value */
    416 	void		*i_data;		/* Extra data */
    417 };
    418 
    419 #ifdef __FreeBSD__
    420 #define	SIOCS80211		 _IOW('i', 234, struct ieee80211req)
    421 #define	SIOCG80211		_IOWR('i', 235, struct ieee80211req)
    422 #define	SIOCG80211STATS		_IOWR('i', 236, struct ifreq)
    423 #endif /* __FreeBSD__ */
    424 
    425 #ifdef __NetBSD__
    426 #define	SIOCS80211		 _IOW('i', 244, struct ieee80211req)
    427 #define	SIOCG80211		_IOWR('i', 245, struct ieee80211req)
    428 #define	SIOCG80211STATS		_IOWR('i', 246, struct ifreq)
    429 #define	SIOCG80211ZSTATS	_IOWR('i', 247, struct ifreq)
    430 #define	OSIOCG80211STATS	_IOWR('i', 242, struct ifreq)
    431 #define	OSIOCG80211ZSTATS	_IOWR('i', 243, struct ifreq)
    432 #endif /* __NetBSD__ */
    433 
    434 #if defined(__FreeBSD__) || defined(COMPAT_FREEBSD_NET80211)
    435 #define IEEE80211_IOC_SSID		1
    436 #endif /* __FreeBSD__ || COMPAT_FREEBSD_NET80211 */
    437 #define IEEE80211_IOC_NUMSSIDS		2
    438 #define IEEE80211_IOC_WEP		3
    439 #define 	IEEE80211_WEP_NOSUP	-1
    440 #define 	IEEE80211_WEP_OFF	0
    441 #define 	IEEE80211_WEP_ON	1
    442 #define 	IEEE80211_WEP_MIXED	2
    443 #if defined(__FreeBSD__) || defined(COMPAT_FREEBSD_NET80211)
    444 #define IEEE80211_IOC_WEPKEY		4
    445 #endif /* __FreeBSD__ || COMPAT_FREEBSD_NET80211 */
    446 #define IEEE80211_IOC_NUMWEPKEYS	5
    447 #if defined(__FreeBSD__) || defined(COMPAT_FREEBSD_NET80211)
    448 #define IEEE80211_IOC_WEPTXKEY		6
    449 #endif /* __FreeBSD__ || COMPAT_FREEBSD_NET80211 */
    450 #define IEEE80211_IOC_AUTHMODE		7
    451 #define IEEE80211_IOC_STATIONNAME	8
    452 #if defined(__FreeBSD__) || defined(COMPAT_FREEBSD_NET80211)
    453 #define IEEE80211_IOC_CHANNEL		9
    454 #endif /* __FreeBSD__ || COMPAT_FREEBSD_NET80211 */
    455 #define IEEE80211_IOC_POWERSAVE		10
    456 #define 	IEEE80211_POWERSAVE_NOSUP	-1
    457 #define 	IEEE80211_POWERSAVE_OFF		0
    458 #define 	IEEE80211_POWERSAVE_CAM		1
    459 #define 	IEEE80211_POWERSAVE_PSP		2
    460 #define 	IEEE80211_POWERSAVE_PSP_CAM	3
    461 #define 	IEEE80211_POWERSAVE_ON		IEEE80211_POWERSAVE_CAM
    462 #define IEEE80211_IOC_POWERSAVESLEEP	11
    463 #define	IEEE80211_IOC_RTSTHRESHOLD	12
    464 #define IEEE80211_IOC_PROTMODE		13
    465 #define 	IEEE80211_PROTMODE_OFF		0
    466 #define 	IEEE80211_PROTMODE_CTS		1
    467 #define 	IEEE80211_PROTMODE_RTSCTS	2
    468 #define	IEEE80211_IOC_TXPOWER		14	/* global tx power limit */
    469 #if defined(__FreeBSD__) || defined(COMPAT_FREEBSD_NET80211)
    470 #define	IEEE80211_IOC_BSSID		15
    471 #endif /* __FreeBSD__ || COMPAT_FREEBSD_NET80211 */
    472 #define	IEEE80211_IOC_ROAMING		16	/* roaming mode */
    473 #define	IEEE80211_IOC_PRIVACY		17	/* privacy invoked */
    474 #define	IEEE80211_IOC_DROPUNENCRYPTED	18	/* discard unencrypted frames */
    475 #define	IEEE80211_IOC_WPAKEY		19
    476 #define	IEEE80211_IOC_DELKEY		20
    477 #define	IEEE80211_IOC_MLME		21
    478 #define	IEEE80211_IOC_OPTIE		22	/* optional info. element */
    479 #define	IEEE80211_IOC_SCAN_REQ		23
    480 #define	IEEE80211_IOC_SCAN_RESULTS	24
    481 #define	IEEE80211_IOC_COUNTERMEASURES	25	/* WPA/TKIP countermeasures */
    482 #define	IEEE80211_IOC_WPA		26	/* WPA mode (0,1,2) */
    483 #define	IEEE80211_IOC_CHANLIST		27	/* channel list */
    484 #define	IEEE80211_IOC_WME		28	/* WME mode (on, off) */
    485 #define	IEEE80211_IOC_HIDESSID		29	/* hide SSID mode (on, off) */
    486 #define	IEEE80211_IOC_APBRIDGE		30	/* AP inter-sta bridging */
    487 #define	IEEE80211_IOC_MCASTCIPHER	31	/* multicast/default cipher */
    488 #define	IEEE80211_IOC_MCASTKEYLEN	32	/* multicast key length */
    489 #define	IEEE80211_IOC_UCASTCIPHERS	33	/* unicast cipher suites */
    490 #define	IEEE80211_IOC_UCASTCIPHER	34	/* unicast cipher */
    491 #define	IEEE80211_IOC_UCASTKEYLEN	35	/* unicast key length */
    492 #define	IEEE80211_IOC_DRIVER_CAPS	36	/* driver capabilities */
    493 #define	IEEE80211_IOC_KEYMGTALGS	37	/* key management algorithms */
    494 #define	IEEE80211_IOC_RSNCAPS		38	/* RSN capabilities */
    495 #define	IEEE80211_IOC_WPAIE		39	/* WPA information element */
    496 #define	IEEE80211_IOC_STA_STATS		40	/* per-station statistics */
    497 #define	IEEE80211_IOC_MACCMD		41	/* MAC ACL operation */
    498 #define	IEEE80211_IOC_CHANINFO		42	/* channel info list */
    499 #define	IEEE80211_IOC_TXPOWMAX		43	/* max tx power for channel */
    500 #define	IEEE80211_IOC_STA_TXPOW		44	/* per-station tx power limit */
    501 #define	IEEE80211_IOC_STA_INFO		45	/* station/neighbor info */
    502 #define	IEEE80211_IOC_WME_CWMIN		46	/* WME: ECWmin */
    503 #define	IEEE80211_IOC_WME_CWMAX		47	/* WME: ECWmax */
    504 #define	IEEE80211_IOC_WME_AIFS		48	/* WME: AIFSN */
    505 #define	IEEE80211_IOC_WME_TXOPLIMIT	49	/* WME: txops limit */
    506 #define	IEEE80211_IOC_WME_ACM		50	/* WME: ACM (bss only) */
    507 #define	IEEE80211_IOC_WME_ACKPOLICY	51	/* WME: ACK policy (!bss only)*/
    508 #define	IEEE80211_IOC_DTIM_PERIOD	52	/* DTIM period (beacons) */
    509 #define	IEEE80211_IOC_BEACON_INTERVAL	53	/* beacon interval (ms) */
    510 #define	IEEE80211_IOC_ADDMAC		54	/* add sta to MAC ACL table */
    511 #define	IEEE80211_IOC_DELMAC		55	/* del sta from MAC ACL table */
    512 #define	IEEE80211_IOC_PUREG		56	/* pure 11g (no 11b stations) */
    513 #define	IEEE80211_IOC_MCAST_RATE	72	/* tx rate for mcast frames */
    514 #define	IEEE80211_IOC_FRAGTHRESHOLD	73	/* tx fragmentation threshold */
    515 
    516 /*
    517  * Scan result data returned for IEEE80211_IOC_SCAN_RESULTS.
    518  */
    519 struct ieee80211req_scan_result {
    520 	u_int16_t	isr_len;		/* length (mult of 4) */
    521 	u_int16_t	isr_freq;		/* MHz */
    522 	u_int16_t	isr_flags;		/* channel flags */
    523 	u_int8_t	isr_noise;
    524 	u_int8_t	isr_rssi;
    525 	u_int8_t	isr_intval;		/* beacon interval */
    526 	u_int8_t	isr_capinfo;		/* capabilities */
    527 	u_int8_t	isr_erp;		/* ERP element */
    528 	u_int8_t	isr_bssid[IEEE80211_ADDR_LEN];
    529 	u_int8_t	isr_nrates;
    530 	u_int8_t	isr_rates[IEEE80211_RATE_MAXSIZE];
    531 	u_int8_t	isr_ssid_len;		/* SSID length */
    532 	u_int8_t	isr_ie_len;		/* IE length */
    533 	u_int8_t	isr_pad[5];
    534 	/* variable length SSID followed by IE data */
    535 };
    536 
    537 #ifdef __NetBSD__
    538 /* nwid is pointed at by ifr.ifr_data */
    539 struct ieee80211_nwid {
    540 	u_int8_t	i_len;
    541 	u_int8_t	i_nwid[IEEE80211_NWID_LEN];
    542 };
    543 
    544 #define	SIOCS80211NWID		_IOWR('i', 230, struct ifreq)
    545 #define	SIOCG80211NWID		_IOWR('i', 231, struct ifreq)
    546 
    547 /* the first member must be matched with struct ifreq */
    548 struct ieee80211_nwkey {
    549 	char		i_name[IFNAMSIZ];	/* if_name, e.g. "wi0" */
    550 	int		i_wepon;		/* wep enabled flag */
    551 	int		i_defkid;		/* default encrypt key id */
    552 	struct {
    553 		int		i_keylen;
    554 		u_int8_t	*i_keydat;
    555 	}		i_key[IEEE80211_WEP_NKID];
    556 };
    557 #define	SIOCS80211NWKEY		 _IOW('i', 232, struct ieee80211_nwkey)
    558 #define	SIOCG80211NWKEY		_IOWR('i', 233, struct ieee80211_nwkey)
    559 /* i_wepon */
    560 #define	IEEE80211_NWKEY_OPEN	0		/* No privacy */
    561 #define	IEEE80211_NWKEY_WEP	1		/* WEP enabled */
    562 #define	IEEE80211_NWKEY_EAP	2		/* EAP enabled */
    563 #define	IEEE80211_NWKEY_PERSIST	0x100		/* designate persist keyset */
    564 
    565 /* power management parameters */
    566 struct ieee80211_power {
    567 	char		i_name[IFNAMSIZ];	/* if_name, e.g. "wi0" */
    568 	int		i_enabled;		/* 1 == on, 0 == off */
    569 	int		i_maxsleep;		/* max sleep in ms */
    570 };
    571 #define	SIOCS80211POWER		 _IOW('i', 234, struct ieee80211_power)
    572 #define	SIOCG80211POWER		_IOWR('i', 235, struct ieee80211_power)
    573 
    574 struct ieee80211_auth {
    575 	char		i_name[IFNAMSIZ];	/* if_name, e.g. "wi0" */
    576 	int		i_authtype;
    577 };
    578 
    579 #define	SIOCS80211AUTH		 _IOW('i', 236, struct ieee80211_auth)
    580 #define	SIOCG80211AUTH		_IOWR('i', 237, struct ieee80211_auth)
    581 
    582 struct ieee80211chanreq {
    583 	char		i_name[IFNAMSIZ];	/* if_name, e.g. "wi0" */
    584 	u_int16_t	i_channel;
    585 };
    586 
    587 #ifndef IEEE80211_CHAN_ANY
    588 #define	IEEE80211_CHAN_ANY	0xffff
    589 #endif
    590 
    591 #define	SIOCS80211CHANNEL	 _IOW('i', 238, struct ieee80211chanreq)
    592 #define	SIOCG80211CHANNEL	_IOWR('i', 239, struct ieee80211chanreq)
    593 
    594 struct ieee80211_bssid {
    595 	char		i_name[IFNAMSIZ];	/* if_name, e.g. "wi0" */
    596 	u_int8_t	i_bssid[IEEE80211_ADDR_LEN];
    597 };
    598 
    599 #define	SIOCS80211BSSID		 _IOW('i', 240, struct ieee80211_bssid)
    600 #define	SIOCG80211BSSID		_IOWR('i', 241, struct ieee80211_bssid)
    601 
    602 #endif
    603 
    604 #endif /* !_NET80211_IEEE80211_IOCTL_H_ */
    605