1607ca46eSDavid Howells #ifndef __LINUX_NL80211_H 2607ca46eSDavid Howells #define __LINUX_NL80211_H 3607ca46eSDavid Howells /* 4607ca46eSDavid Howells * 802.11 netlink interface public header 5607ca46eSDavid Howells * 6607ca46eSDavid Howells * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> 7607ca46eSDavid Howells * Copyright 2008 Michael Wu <flamingice@sourmilk.net> 8607ca46eSDavid Howells * Copyright 2008 Luis Carlos Cobo <luisca@cozybit.com> 9607ca46eSDavid Howells * Copyright 2008 Michael Buesch <m@bues.ch> 10607ca46eSDavid Howells * Copyright 2008, 2009 Luis R. Rodriguez <lrodriguez@atheros.com> 11607ca46eSDavid Howells * Copyright 2008 Jouni Malinen <jouni.malinen@atheros.com> 12607ca46eSDavid Howells * Copyright 2008 Colin McCabe <colin@cozybit.com> 133b06d277SAvraham Stern * Copyright 2015 Intel Deutschland GmbH 14607ca46eSDavid Howells * 15607ca46eSDavid Howells * Permission to use, copy, modify, and/or distribute this software for any 16607ca46eSDavid Howells * purpose with or without fee is hereby granted, provided that the above 17607ca46eSDavid Howells * copyright notice and this permission notice appear in all copies. 18607ca46eSDavid Howells * 19607ca46eSDavid Howells * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 20607ca46eSDavid Howells * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 21607ca46eSDavid Howells * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 22607ca46eSDavid Howells * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 23607ca46eSDavid Howells * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 24607ca46eSDavid Howells * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 25607ca46eSDavid Howells * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 26607ca46eSDavid Howells * 27607ca46eSDavid Howells */ 28607ca46eSDavid Howells 295fc74329SJohannes Berg /* 305fc74329SJohannes Berg * This header file defines the userspace API to the wireless stack. Please 315fc74329SJohannes Berg * be careful not to break things - i.e. don't move anything around or so 325fc74329SJohannes Berg * unless you can demonstrate that it breaks neither API nor ABI. 335fc74329SJohannes Berg * 345fc74329SJohannes Berg * Additions to the API should be accompanied by actual implementations in 355fc74329SJohannes Berg * an upstream driver, so that example implementations exist in case there 365fc74329SJohannes Berg * are ever concerns about the precise semantics of the API or changes are 375fc74329SJohannes Berg * needed, and to ensure that code for dead (no longer implemented) API 385fc74329SJohannes Berg * can actually be identified and removed. 395fc74329SJohannes Berg * Nonetheless, semantics should also be documented carefully in this file. 405fc74329SJohannes Berg */ 415fc74329SJohannes Berg 42607ca46eSDavid Howells #include <linux/types.h> 43607ca46eSDavid Howells 44fb4e1568SMarcel Holtmann #define NL80211_GENL_NAME "nl80211" 45fb4e1568SMarcel Holtmann 4671b836ecSJohannes Berg #define NL80211_MULTICAST_GROUP_CONFIG "config" 4771b836ecSJohannes Berg #define NL80211_MULTICAST_GROUP_SCAN "scan" 4871b836ecSJohannes Berg #define NL80211_MULTICAST_GROUP_REG "regulatory" 4971b836ecSJohannes Berg #define NL80211_MULTICAST_GROUP_MLME "mlme" 5071b836ecSJohannes Berg #define NL80211_MULTICAST_GROUP_VENDOR "vendor" 5171b836ecSJohannes Berg #define NL80211_MULTICAST_GROUP_TESTMODE "testmode" 5271b836ecSJohannes Berg 53607ca46eSDavid Howells /** 54607ca46eSDavid Howells * DOC: Station handling 55607ca46eSDavid Howells * 56607ca46eSDavid Howells * Stations are added per interface, but a special case exists with VLAN 57607ca46eSDavid Howells * interfaces. When a station is bound to an AP interface, it may be moved 58607ca46eSDavid Howells * into a VLAN identified by a VLAN interface index (%NL80211_ATTR_STA_VLAN). 59607ca46eSDavid Howells * The station is still assumed to belong to the AP interface it was added 60607ca46eSDavid Howells * to. 61607ca46eSDavid Howells * 6277ee7c89SJohannes Berg * Station handling varies per interface type and depending on the driver's 6377ee7c89SJohannes Berg * capabilities. 6477ee7c89SJohannes Berg * 6577ee7c89SJohannes Berg * For drivers supporting TDLS with external setup (WIPHY_FLAG_SUPPORTS_TDLS 6677ee7c89SJohannes Berg * and WIPHY_FLAG_TDLS_EXTERNAL_SETUP), the station lifetime is as follows: 6777ee7c89SJohannes Berg * - a setup station entry is added, not yet authorized, without any rate 6877ee7c89SJohannes Berg * or capability information, this just exists to avoid race conditions 6977ee7c89SJohannes Berg * - when the TDLS setup is done, a single NL80211_CMD_SET_STATION is valid 7077ee7c89SJohannes Berg * to add rate and capability information to the station and at the same 7177ee7c89SJohannes Berg * time mark it authorized. 7277ee7c89SJohannes Berg * - %NL80211_TDLS_ENABLE_LINK is then used 7377ee7c89SJohannes Berg * - after this, the only valid operation is to remove it by tearing down 7477ee7c89SJohannes Berg * the TDLS link (%NL80211_TDLS_DISABLE_LINK) 7577ee7c89SJohannes Berg * 7677ee7c89SJohannes Berg * TODO: need more info for other interface types 77607ca46eSDavid Howells */ 78607ca46eSDavid Howells 79607ca46eSDavid Howells /** 80607ca46eSDavid Howells * DOC: Frame transmission/registration support 81607ca46eSDavid Howells * 82607ca46eSDavid Howells * Frame transmission and registration support exists to allow userspace 83607ca46eSDavid Howells * management entities such as wpa_supplicant react to management frames 84607ca46eSDavid Howells * that are not being handled by the kernel. This includes, for example, 85607ca46eSDavid Howells * certain classes of action frames that cannot be handled in the kernel 86607ca46eSDavid Howells * for various reasons. 87607ca46eSDavid Howells * 88607ca46eSDavid Howells * Frame registration is done on a per-interface basis and registrations 89607ca46eSDavid Howells * cannot be removed other than by closing the socket. It is possible to 90607ca46eSDavid Howells * specify a registration filter to register, for example, only for a 91607ca46eSDavid Howells * certain type of action frame. In particular with action frames, those 92607ca46eSDavid Howells * that userspace registers for will not be returned as unhandled by the 93607ca46eSDavid Howells * driver, so that the registered application has to take responsibility 94607ca46eSDavid Howells * for doing that. 95607ca46eSDavid Howells * 96607ca46eSDavid Howells * The type of frame that can be registered for is also dependent on the 97607ca46eSDavid Howells * driver and interface type. The frame types are advertised in wiphy 98607ca46eSDavid Howells * attributes so applications know what to expect. 99607ca46eSDavid Howells * 100607ca46eSDavid Howells * NOTE: When an interface changes type while registrations are active, 101607ca46eSDavid Howells * these registrations are ignored until the interface type is 102607ca46eSDavid Howells * changed again. This means that changing the interface type can 103607ca46eSDavid Howells * lead to a situation that couldn't otherwise be produced, but 104607ca46eSDavid Howells * any such registrations will be dormant in the sense that they 105607ca46eSDavid Howells * will not be serviced, i.e. they will not receive any frames. 106607ca46eSDavid Howells * 107607ca46eSDavid Howells * Frame transmission allows userspace to send for example the required 108607ca46eSDavid Howells * responses to action frames. It is subject to some sanity checking, 109607ca46eSDavid Howells * but many frames can be transmitted. When a frame was transmitted, its 110607ca46eSDavid Howells * status is indicated to the sending socket. 111607ca46eSDavid Howells * 112607ca46eSDavid Howells * For more technical details, see the corresponding command descriptions 113607ca46eSDavid Howells * below. 114607ca46eSDavid Howells */ 115607ca46eSDavid Howells 116607ca46eSDavid Howells /** 117607ca46eSDavid Howells * DOC: Virtual interface / concurrency capabilities 118607ca46eSDavid Howells * 119607ca46eSDavid Howells * Some devices are able to operate with virtual MACs, they can have 120607ca46eSDavid Howells * more than one virtual interface. The capability handling for this 121607ca46eSDavid Howells * is a bit complex though, as there may be a number of restrictions 122607ca46eSDavid Howells * on the types of concurrency that are supported. 123607ca46eSDavid Howells * 124607ca46eSDavid Howells * To start with, each device supports the interface types listed in 125607ca46eSDavid Howells * the %NL80211_ATTR_SUPPORTED_IFTYPES attribute, but by listing the 126607ca46eSDavid Howells * types there no concurrency is implied. 127607ca46eSDavid Howells * 128607ca46eSDavid Howells * Once concurrency is desired, more attributes must be observed: 129607ca46eSDavid Howells * To start with, since some interface types are purely managed in 130607ca46eSDavid Howells * software, like the AP-VLAN type in mac80211 for example, there's 131607ca46eSDavid Howells * an additional list of these, they can be added at any time and 132607ca46eSDavid Howells * are only restricted by some semantic restrictions (e.g. AP-VLAN 133607ca46eSDavid Howells * cannot be added without a corresponding AP interface). This list 134607ca46eSDavid Howells * is exported in the %NL80211_ATTR_SOFTWARE_IFTYPES attribute. 135607ca46eSDavid Howells * 136607ca46eSDavid Howells * Further, the list of supported combinations is exported. This is 137607ca46eSDavid Howells * in the %NL80211_ATTR_INTERFACE_COMBINATIONS attribute. Basically, 138607ca46eSDavid Howells * it exports a list of "groups", and at any point in time the 139607ca46eSDavid Howells * interfaces that are currently active must fall into any one of 140607ca46eSDavid Howells * the advertised groups. Within each group, there are restrictions 141607ca46eSDavid Howells * on the number of interfaces of different types that are supported 142607ca46eSDavid Howells * and also the number of different channels, along with potentially 143607ca46eSDavid Howells * some other restrictions. See &enum nl80211_if_combination_attrs. 144607ca46eSDavid Howells * 145607ca46eSDavid Howells * All together, these attributes define the concurrency of virtual 146607ca46eSDavid Howells * interfaces that a given device supports. 147607ca46eSDavid Howells */ 148607ca46eSDavid Howells 149607ca46eSDavid Howells /** 150be29b99aSAmitkumar Karwar * DOC: packet coalesce support 151be29b99aSAmitkumar Karwar * 152be29b99aSAmitkumar Karwar * In most cases, host that receives IPv4 and IPv6 multicast/broadcast 153be29b99aSAmitkumar Karwar * packets does not do anything with these packets. Therefore the 154be29b99aSAmitkumar Karwar * reception of these unwanted packets causes unnecessary processing 155be29b99aSAmitkumar Karwar * and power consumption. 156be29b99aSAmitkumar Karwar * 157be29b99aSAmitkumar Karwar * Packet coalesce feature helps to reduce number of received interrupts 158be29b99aSAmitkumar Karwar * to host by buffering these packets in firmware/hardware for some 159be29b99aSAmitkumar Karwar * predefined time. Received interrupt will be generated when one of the 160be29b99aSAmitkumar Karwar * following events occur. 161be29b99aSAmitkumar Karwar * a) Expiration of hardware timer whose expiration time is set to maximum 162be29b99aSAmitkumar Karwar * coalescing delay of matching coalesce rule. 163be29b99aSAmitkumar Karwar * b) Coalescing buffer in hardware reaches it's limit. 164be29b99aSAmitkumar Karwar * c) Packet doesn't match any of the configured coalesce rules. 165be29b99aSAmitkumar Karwar * 166be29b99aSAmitkumar Karwar * User needs to configure following parameters for creating a coalesce 167be29b99aSAmitkumar Karwar * rule. 168be29b99aSAmitkumar Karwar * a) Maximum coalescing delay 169be29b99aSAmitkumar Karwar * b) List of packet patterns which needs to be matched 170be29b99aSAmitkumar Karwar * c) Condition for coalescence. pattern 'match' or 'no match' 171be29b99aSAmitkumar Karwar * Multiple such rules can be created. 172be29b99aSAmitkumar Karwar */ 173be29b99aSAmitkumar Karwar 174be29b99aSAmitkumar Karwar /** 175607ca46eSDavid Howells * enum nl80211_commands - supported nl80211 commands 176607ca46eSDavid Howells * 177607ca46eSDavid Howells * @NL80211_CMD_UNSPEC: unspecified command to catch errors 178607ca46eSDavid Howells * 179607ca46eSDavid Howells * @NL80211_CMD_GET_WIPHY: request information about a wiphy or dump request 180607ca46eSDavid Howells * to get a list of all present wiphys. 181607ca46eSDavid Howells * @NL80211_CMD_SET_WIPHY: set wiphy parameters, needs %NL80211_ATTR_WIPHY or 182607ca46eSDavid Howells * %NL80211_ATTR_IFINDEX; can be used to set %NL80211_ATTR_WIPHY_NAME, 1833d9d1d66SJohannes Berg * %NL80211_ATTR_WIPHY_TXQ_PARAMS, %NL80211_ATTR_WIPHY_FREQ (and the 1843d9d1d66SJohannes Berg * attributes determining the channel width; this is used for setting 1853d9d1d66SJohannes Berg * monitor mode channel), %NL80211_ATTR_WIPHY_RETRY_SHORT, 186607ca46eSDavid Howells * %NL80211_ATTR_WIPHY_RETRY_LONG, %NL80211_ATTR_WIPHY_FRAG_THRESHOLD, 187607ca46eSDavid Howells * and/or %NL80211_ATTR_WIPHY_RTS_THRESHOLD. 188607ca46eSDavid Howells * However, for setting the channel, see %NL80211_CMD_SET_CHANNEL 189607ca46eSDavid Howells * instead, the support here is for backward compatibility only. 190607ca46eSDavid Howells * @NL80211_CMD_NEW_WIPHY: Newly created wiphy, response to get request 191607ca46eSDavid Howells * or rename notification. Has attributes %NL80211_ATTR_WIPHY and 192607ca46eSDavid Howells * %NL80211_ATTR_WIPHY_NAME. 193607ca46eSDavid Howells * @NL80211_CMD_DEL_WIPHY: Wiphy deleted. Has attributes 194607ca46eSDavid Howells * %NL80211_ATTR_WIPHY and %NL80211_ATTR_WIPHY_NAME. 195607ca46eSDavid Howells * 196607ca46eSDavid Howells * @NL80211_CMD_GET_INTERFACE: Request an interface's configuration; 197a12c6b86SJohannes Berg * either a dump request for all interfaces or a specific get with a 198a12c6b86SJohannes Berg * single %NL80211_ATTR_IFINDEX is supported. 199607ca46eSDavid Howells * @NL80211_CMD_SET_INTERFACE: Set type of a virtual interface, requires 200607ca46eSDavid Howells * %NL80211_ATTR_IFINDEX and %NL80211_ATTR_IFTYPE. 201607ca46eSDavid Howells * @NL80211_CMD_NEW_INTERFACE: Newly created virtual interface or response 202607ca46eSDavid Howells * to %NL80211_CMD_GET_INTERFACE. Has %NL80211_ATTR_IFINDEX, 203607ca46eSDavid Howells * %NL80211_ATTR_WIPHY and %NL80211_ATTR_IFTYPE attributes. Can also 204607ca46eSDavid Howells * be sent from userspace to request creation of a new virtual interface, 205607ca46eSDavid Howells * then requires attributes %NL80211_ATTR_WIPHY, %NL80211_ATTR_IFTYPE and 206607ca46eSDavid Howells * %NL80211_ATTR_IFNAME. 207607ca46eSDavid Howells * @NL80211_CMD_DEL_INTERFACE: Virtual interface was deleted, has attributes 208607ca46eSDavid Howells * %NL80211_ATTR_IFINDEX and %NL80211_ATTR_WIPHY. Can also be sent from 209607ca46eSDavid Howells * userspace to request deletion of a virtual interface, then requires 210607ca46eSDavid Howells * attribute %NL80211_ATTR_IFINDEX. 211607ca46eSDavid Howells * 212607ca46eSDavid Howells * @NL80211_CMD_GET_KEY: Get sequence counter information for a key specified 213607ca46eSDavid Howells * by %NL80211_ATTR_KEY_IDX and/or %NL80211_ATTR_MAC. 214607ca46eSDavid Howells * @NL80211_CMD_SET_KEY: Set key attributes %NL80211_ATTR_KEY_DEFAULT, 215607ca46eSDavid Howells * %NL80211_ATTR_KEY_DEFAULT_MGMT, or %NL80211_ATTR_KEY_THRESHOLD. 216607ca46eSDavid Howells * @NL80211_CMD_NEW_KEY: add a key with given %NL80211_ATTR_KEY_DATA, 217607ca46eSDavid Howells * %NL80211_ATTR_KEY_IDX, %NL80211_ATTR_MAC, %NL80211_ATTR_KEY_CIPHER, 218607ca46eSDavid Howells * and %NL80211_ATTR_KEY_SEQ attributes. 219607ca46eSDavid Howells * @NL80211_CMD_DEL_KEY: delete a key identified by %NL80211_ATTR_KEY_IDX 220607ca46eSDavid Howells * or %NL80211_ATTR_MAC. 221607ca46eSDavid Howells * 222607ca46eSDavid Howells * @NL80211_CMD_GET_BEACON: (not used) 223607ca46eSDavid Howells * @NL80211_CMD_SET_BEACON: change the beacon on an access point interface 224607ca46eSDavid Howells * using the %NL80211_ATTR_BEACON_HEAD and %NL80211_ATTR_BEACON_TAIL 225607ca46eSDavid Howells * attributes. For drivers that generate the beacon and probe responses 226607ca46eSDavid Howells * internally, the following attributes must be provided: %NL80211_ATTR_IE, 227607ca46eSDavid Howells * %NL80211_ATTR_IE_PROBE_RESP and %NL80211_ATTR_IE_ASSOC_RESP. 228607ca46eSDavid Howells * @NL80211_CMD_START_AP: Start AP operation on an AP interface, parameters 229607ca46eSDavid Howells * are like for %NL80211_CMD_SET_BEACON, and additionally parameters that 230607ca46eSDavid Howells * do not change are used, these include %NL80211_ATTR_BEACON_INTERVAL, 231607ca46eSDavid Howells * %NL80211_ATTR_DTIM_PERIOD, %NL80211_ATTR_SSID, 232607ca46eSDavid Howells * %NL80211_ATTR_HIDDEN_SSID, %NL80211_ATTR_CIPHERS_PAIRWISE, 233607ca46eSDavid Howells * %NL80211_ATTR_CIPHER_GROUP, %NL80211_ATTR_WPA_VERSIONS, 234607ca46eSDavid Howells * %NL80211_ATTR_AKM_SUITES, %NL80211_ATTR_PRIVACY, 23577765eafSVasanthakumar Thiagarajan * %NL80211_ATTR_AUTH_TYPE, %NL80211_ATTR_INACTIVITY_TIMEOUT, 23677765eafSVasanthakumar Thiagarajan * %NL80211_ATTR_ACL_POLICY and %NL80211_ATTR_MAC_ADDRS. 237607ca46eSDavid Howells * The channel to use can be set on the interface or be given using the 2383d9d1d66SJohannes Berg * %NL80211_ATTR_WIPHY_FREQ and the attributes determining channel width. 239607ca46eSDavid Howells * @NL80211_CMD_NEW_BEACON: old alias for %NL80211_CMD_START_AP 240607ca46eSDavid Howells * @NL80211_CMD_STOP_AP: Stop AP operation on the given interface 241607ca46eSDavid Howells * @NL80211_CMD_DEL_BEACON: old alias for %NL80211_CMD_STOP_AP 242607ca46eSDavid Howells * 243607ca46eSDavid Howells * @NL80211_CMD_GET_STATION: Get station attributes for station identified by 244607ca46eSDavid Howells * %NL80211_ATTR_MAC on the interface identified by %NL80211_ATTR_IFINDEX. 245607ca46eSDavid Howells * @NL80211_CMD_SET_STATION: Set station attributes for station identified by 246607ca46eSDavid Howells * %NL80211_ATTR_MAC on the interface identified by %NL80211_ATTR_IFINDEX. 247607ca46eSDavid Howells * @NL80211_CMD_NEW_STATION: Add a station with given attributes to the 248607ca46eSDavid Howells * the interface identified by %NL80211_ATTR_IFINDEX. 249607ca46eSDavid Howells * @NL80211_CMD_DEL_STATION: Remove a station identified by %NL80211_ATTR_MAC 250607ca46eSDavid Howells * or, if no MAC address given, all stations, on the interface identified 25198856866SJouni Malinen * by %NL80211_ATTR_IFINDEX. %NL80211_ATTR_MGMT_SUBTYPE and 25298856866SJouni Malinen * %NL80211_ATTR_REASON_CODE can optionally be used to specify which type 25398856866SJouni Malinen * of disconnection indication should be sent to the station 25498856866SJouni Malinen * (Deauthentication or Disassociation frame and reason code for that 25598856866SJouni Malinen * frame). 256607ca46eSDavid Howells * 257607ca46eSDavid Howells * @NL80211_CMD_GET_MPATH: Get mesh path attributes for mesh path to 258607ca46eSDavid Howells * destination %NL80211_ATTR_MAC on the interface identified by 259607ca46eSDavid Howells * %NL80211_ATTR_IFINDEX. 260607ca46eSDavid Howells * @NL80211_CMD_SET_MPATH: Set mesh path attributes for mesh path to 261607ca46eSDavid Howells * destination %NL80211_ATTR_MAC on the interface identified by 262607ca46eSDavid Howells * %NL80211_ATTR_IFINDEX. 263607ca46eSDavid Howells * @NL80211_CMD_NEW_MPATH: Create a new mesh path for the destination given by 264607ca46eSDavid Howells * %NL80211_ATTR_MAC via %NL80211_ATTR_MPATH_NEXT_HOP. 265607ca46eSDavid Howells * @NL80211_CMD_DEL_MPATH: Delete a mesh path to the destination given by 266607ca46eSDavid Howells * %NL80211_ATTR_MAC. 267607ca46eSDavid Howells * @NL80211_CMD_NEW_PATH: Add a mesh path with given attributes to the 268607ca46eSDavid Howells * the interface identified by %NL80211_ATTR_IFINDEX. 269607ca46eSDavid Howells * @NL80211_CMD_DEL_PATH: Remove a mesh path identified by %NL80211_ATTR_MAC 270607ca46eSDavid Howells * or, if no MAC address given, all mesh paths, on the interface identified 271607ca46eSDavid Howells * by %NL80211_ATTR_IFINDEX. 272607ca46eSDavid Howells * @NL80211_CMD_SET_BSS: Set BSS attributes for BSS identified by 273607ca46eSDavid Howells * %NL80211_ATTR_IFINDEX. 274607ca46eSDavid Howells * 275607ca46eSDavid Howells * @NL80211_CMD_GET_REG: ask the wireless core to send us its currently set 276ad30ca2cSArik Nemtsov * regulatory domain. If %NL80211_ATTR_WIPHY is specified and the device 277ad30ca2cSArik Nemtsov * has a private regulatory domain, it will be returned. Otherwise, the 278ad30ca2cSArik Nemtsov * global regdomain will be returned. 279ad30ca2cSArik Nemtsov * A device will have a private regulatory domain if it uses the 280ad30ca2cSArik Nemtsov * regulatory_hint() API. Even when a private regdomain is used the channel 281ad30ca2cSArik Nemtsov * information will still be mended according to further hints from 282ad30ca2cSArik Nemtsov * the regulatory core to help with compliance. A dump version of this API 283ad30ca2cSArik Nemtsov * is now available which will returns the global regdomain as well as 284ad30ca2cSArik Nemtsov * all private regdomains of present wiphys (for those that have it). 2851bdd716cSArik Nemtsov * If a wiphy is self-managed (%NL80211_ATTR_WIPHY_SELF_MANAGED_REG), then 2861bdd716cSArik Nemtsov * its private regdomain is the only valid one for it. The regulatory 2871bdd716cSArik Nemtsov * core is not used to help with compliance in this case. 288607ca46eSDavid Howells * @NL80211_CMD_SET_REG: Set current regulatory domain. CRDA sends this command 289607ca46eSDavid Howells * after being queried by the kernel. CRDA replies by sending a regulatory 290607ca46eSDavid Howells * domain structure which consists of %NL80211_ATTR_REG_ALPHA set to our 291607ca46eSDavid Howells * current alpha2 if it found a match. It also provides 292607ca46eSDavid Howells * NL80211_ATTR_REG_RULE_FLAGS, and a set of regulatory rules. Each 293607ca46eSDavid Howells * regulatory rule is a nested set of attributes given by 294607ca46eSDavid Howells * %NL80211_ATTR_REG_RULE_FREQ_[START|END] and 295607ca46eSDavid Howells * %NL80211_ATTR_FREQ_RANGE_MAX_BW with an attached power rule given by 296607ca46eSDavid Howells * %NL80211_ATTR_REG_RULE_POWER_MAX_ANT_GAIN and 297607ca46eSDavid Howells * %NL80211_ATTR_REG_RULE_POWER_MAX_EIRP. 298607ca46eSDavid Howells * @NL80211_CMD_REQ_SET_REG: ask the wireless core to set the regulatory domain 299607ca46eSDavid Howells * to the specified ISO/IEC 3166-1 alpha2 country code. The core will 300607ca46eSDavid Howells * store this as a valid request and then query userspace for it. 301607ca46eSDavid Howells * 302607ca46eSDavid Howells * @NL80211_CMD_GET_MESH_CONFIG: Get mesh networking properties for the 303607ca46eSDavid Howells * interface identified by %NL80211_ATTR_IFINDEX 304607ca46eSDavid Howells * 305607ca46eSDavid Howells * @NL80211_CMD_SET_MESH_CONFIG: Set mesh networking properties for the 306607ca46eSDavid Howells * interface identified by %NL80211_ATTR_IFINDEX 307607ca46eSDavid Howells * 308607ca46eSDavid Howells * @NL80211_CMD_SET_MGMT_EXTRA_IE: Set extra IEs for management frames. The 309607ca46eSDavid Howells * interface is identified with %NL80211_ATTR_IFINDEX and the management 310607ca46eSDavid Howells * frame subtype with %NL80211_ATTR_MGMT_SUBTYPE. The extra IE data to be 311607ca46eSDavid Howells * added to the end of the specified management frame is specified with 312607ca46eSDavid Howells * %NL80211_ATTR_IE. If the command succeeds, the requested data will be 313607ca46eSDavid Howells * added to all specified management frames generated by 314607ca46eSDavid Howells * kernel/firmware/driver. 315607ca46eSDavid Howells * Note: This command has been removed and it is only reserved at this 316607ca46eSDavid Howells * point to avoid re-using existing command number. The functionality this 317607ca46eSDavid Howells * command was planned for has been provided with cleaner design with the 318607ca46eSDavid Howells * option to specify additional IEs in NL80211_CMD_TRIGGER_SCAN, 319607ca46eSDavid Howells * NL80211_CMD_AUTHENTICATE, NL80211_CMD_ASSOCIATE, 320607ca46eSDavid Howells * NL80211_CMD_DEAUTHENTICATE, and NL80211_CMD_DISASSOCIATE. 321607ca46eSDavid Howells * 322607ca46eSDavid Howells * @NL80211_CMD_GET_SCAN: get scan results 323607ca46eSDavid Howells * @NL80211_CMD_TRIGGER_SCAN: trigger a new scan with the given parameters 324607ca46eSDavid Howells * %NL80211_ATTR_TX_NO_CCK_RATE is used to decide whether to send the 325818965d3SJouni Malinen * probe requests at CCK rate or not. %NL80211_ATTR_MAC can be used to 326818965d3SJouni Malinen * specify a BSSID to scan for; if not included, the wildcard BSSID will 327818965d3SJouni Malinen * be used. 328607ca46eSDavid Howells * @NL80211_CMD_NEW_SCAN_RESULTS: scan notification (as a reply to 329607ca46eSDavid Howells * NL80211_CMD_GET_SCAN and on the "scan" multicast group) 330607ca46eSDavid Howells * @NL80211_CMD_SCAN_ABORTED: scan was aborted, for unspecified reasons, 331607ca46eSDavid Howells * partial scan results may be available 332607ca46eSDavid Howells * 333607ca46eSDavid Howells * @NL80211_CMD_START_SCHED_SCAN: start a scheduled scan at certain 3343b06d277SAvraham Stern * intervals and certain number of cycles, as specified by 3353b06d277SAvraham Stern * %NL80211_ATTR_SCHED_SCAN_PLANS. If %NL80211_ATTR_SCHED_SCAN_PLANS is 3363b06d277SAvraham Stern * not specified and only %NL80211_ATTR_SCHED_SCAN_INTERVAL is specified, 3373b06d277SAvraham Stern * scheduled scan will run in an infinite loop with the specified interval. 3383b06d277SAvraham Stern * These attributes are mutually exculsive, 3393b06d277SAvraham Stern * i.e. NL80211_ATTR_SCHED_SCAN_INTERVAL must not be passed if 3403b06d277SAvraham Stern * NL80211_ATTR_SCHED_SCAN_PLANS is defined. 3413b06d277SAvraham Stern * If for some reason scheduled scan is aborted by the driver, all scan 3423b06d277SAvraham Stern * plans are canceled (including scan plans that did not start yet). 343607ca46eSDavid Howells * Like with normal scans, if SSIDs (%NL80211_ATTR_SCAN_SSIDS) 344607ca46eSDavid Howells * are passed, they are used in the probe requests. For 345607ca46eSDavid Howells * broadcast, a broadcast SSID must be passed (ie. an empty 346607ca46eSDavid Howells * string). If no SSID is passed, no probe requests are sent and 347607ca46eSDavid Howells * a passive scan is performed. %NL80211_ATTR_SCAN_FREQUENCIES, 348607ca46eSDavid Howells * if passed, define which channels should be scanned; if not 349607ca46eSDavid Howells * passed, all channels allowed for the current regulatory domain 350607ca46eSDavid Howells * are used. Extra IEs can also be passed from the userspace by 3519c748934SLuciano Coelho * using the %NL80211_ATTR_IE attribute. The first cycle of the 3529c748934SLuciano Coelho * scheduled scan can be delayed by %NL80211_ATTR_SCHED_SCAN_DELAY 3539c748934SLuciano Coelho * is supplied. 354d9b8396aSJohannes Berg * @NL80211_CMD_STOP_SCHED_SCAN: stop a scheduled scan. Returns -ENOENT if 355d9b8396aSJohannes Berg * scheduled scan is not running. The caller may assume that as soon 356d9b8396aSJohannes Berg * as the call returns, it is safe to start a new scheduled scan again. 357607ca46eSDavid Howells * @NL80211_CMD_SCHED_SCAN_RESULTS: indicates that there are scheduled scan 358607ca46eSDavid Howells * results available. 359607ca46eSDavid Howells * @NL80211_CMD_SCHED_SCAN_STOPPED: indicates that the scheduled scan has 360607ca46eSDavid Howells * stopped. The driver may issue this event at any time during a 361607ca46eSDavid Howells * scheduled scan. One reason for stopping the scan is if the hardware 362607ca46eSDavid Howells * does not support starting an association or a normal scan while running 363607ca46eSDavid Howells * a scheduled scan. This event is also sent when the 364607ca46eSDavid Howells * %NL80211_CMD_STOP_SCHED_SCAN command is received or when the interface 365607ca46eSDavid Howells * is brought down while a scheduled scan was running. 366607ca46eSDavid Howells * 367607ca46eSDavid Howells * @NL80211_CMD_GET_SURVEY: get survey resuls, e.g. channel occupation 368607ca46eSDavid Howells * or noise level 369607ca46eSDavid Howells * @NL80211_CMD_NEW_SURVEY_RESULTS: survey data notification (as a reply to 370607ca46eSDavid Howells * NL80211_CMD_GET_SURVEY and on the "scan" multicast group) 371607ca46eSDavid Howells * 372607ca46eSDavid Howells * @NL80211_CMD_SET_PMKSA: Add a PMKSA cache entry, using %NL80211_ATTR_MAC 373607ca46eSDavid Howells * (for the BSSID) and %NL80211_ATTR_PMKID. 374607ca46eSDavid Howells * @NL80211_CMD_DEL_PMKSA: Delete a PMKSA cache entry, using %NL80211_ATTR_MAC 375607ca46eSDavid Howells * (for the BSSID) and %NL80211_ATTR_PMKID. 376607ca46eSDavid Howells * @NL80211_CMD_FLUSH_PMKSA: Flush all PMKSA cache entries. 377607ca46eSDavid Howells * 378607ca46eSDavid Howells * @NL80211_CMD_REG_CHANGE: indicates to userspace the regulatory domain 379607ca46eSDavid Howells * has been changed and provides details of the request information 380607ca46eSDavid Howells * that caused the change such as who initiated the regulatory request 381607ca46eSDavid Howells * (%NL80211_ATTR_REG_INITIATOR), the wiphy_idx 382607ca46eSDavid Howells * (%NL80211_ATTR_REG_ALPHA2) on which the request was made from if 383607ca46eSDavid Howells * the initiator was %NL80211_REGDOM_SET_BY_COUNTRY_IE or 384607ca46eSDavid Howells * %NL80211_REGDOM_SET_BY_DRIVER, the type of regulatory domain 385607ca46eSDavid Howells * set (%NL80211_ATTR_REG_TYPE), if the type of regulatory domain is 386607ca46eSDavid Howells * %NL80211_REG_TYPE_COUNTRY the alpha2 to which we have moved on 387607ca46eSDavid Howells * to (%NL80211_ATTR_REG_ALPHA2). 388607ca46eSDavid Howells * @NL80211_CMD_REG_BEACON_HINT: indicates to userspace that an AP beacon 389607ca46eSDavid Howells * has been found while world roaming thus enabling active scan or 390607ca46eSDavid Howells * any mode of operation that initiates TX (beacons) on a channel 391607ca46eSDavid Howells * where we would not have been able to do either before. As an example 392607ca46eSDavid Howells * if you are world roaming (regulatory domain set to world or if your 393607ca46eSDavid Howells * driver is using a custom world roaming regulatory domain) and while 394607ca46eSDavid Howells * doing a passive scan on the 5 GHz band you find an AP there (if not 395607ca46eSDavid Howells * on a DFS channel) you will now be able to actively scan for that AP 396607ca46eSDavid Howells * or use AP mode on your card on that same channel. Note that this will 397607ca46eSDavid Howells * never be used for channels 1-11 on the 2 GHz band as they are always 398607ca46eSDavid Howells * enabled world wide. This beacon hint is only sent if your device had 399607ca46eSDavid Howells * either disabled active scanning or beaconing on a channel. We send to 400607ca46eSDavid Howells * userspace the wiphy on which we removed a restriction from 401607ca46eSDavid Howells * (%NL80211_ATTR_WIPHY) and the channel on which this occurred 402607ca46eSDavid Howells * before (%NL80211_ATTR_FREQ_BEFORE) and after (%NL80211_ATTR_FREQ_AFTER) 403607ca46eSDavid Howells * the beacon hint was processed. 404607ca46eSDavid Howells * 405607ca46eSDavid Howells * @NL80211_CMD_AUTHENTICATE: authentication request and notification. 406607ca46eSDavid Howells * This command is used both as a command (request to authenticate) and 407607ca46eSDavid Howells * as an event on the "mlme" multicast group indicating completion of the 408607ca46eSDavid Howells * authentication process. 409607ca46eSDavid Howells * When used as a command, %NL80211_ATTR_IFINDEX is used to identify the 410607ca46eSDavid Howells * interface. %NL80211_ATTR_MAC is used to specify PeerSTAAddress (and 411607ca46eSDavid Howells * BSSID in case of station mode). %NL80211_ATTR_SSID is used to specify 412607ca46eSDavid Howells * the SSID (mainly for association, but is included in authentication 413607ca46eSDavid Howells * request, too, to help BSS selection. %NL80211_ATTR_WIPHY_FREQ is used 414607ca46eSDavid Howells * to specify the frequence of the channel in MHz. %NL80211_ATTR_AUTH_TYPE 415607ca46eSDavid Howells * is used to specify the authentication type. %NL80211_ATTR_IE is used to 416607ca46eSDavid Howells * define IEs (VendorSpecificInfo, but also including RSN IE and FT IEs) 417607ca46eSDavid Howells * to be added to the frame. 418607ca46eSDavid Howells * When used as an event, this reports reception of an Authentication 419607ca46eSDavid Howells * frame in station and IBSS modes when the local MLME processed the 420607ca46eSDavid Howells * frame, i.e., it was for the local STA and was received in correct 421607ca46eSDavid Howells * state. This is similar to MLME-AUTHENTICATE.confirm primitive in the 422607ca46eSDavid Howells * MLME SAP interface (kernel providing MLME, userspace SME). The 423607ca46eSDavid Howells * included %NL80211_ATTR_FRAME attribute contains the management frame 424607ca46eSDavid Howells * (including both the header and frame body, but not FCS). This event is 425607ca46eSDavid Howells * also used to indicate if the authentication attempt timed out. In that 426607ca46eSDavid Howells * case the %NL80211_ATTR_FRAME attribute is replaced with a 427607ca46eSDavid Howells * %NL80211_ATTR_TIMED_OUT flag (and %NL80211_ATTR_MAC to indicate which 428607ca46eSDavid Howells * pending authentication timed out). 429607ca46eSDavid Howells * @NL80211_CMD_ASSOCIATE: association request and notification; like 430607ca46eSDavid Howells * NL80211_CMD_AUTHENTICATE but for Association and Reassociation 431607ca46eSDavid Howells * (similar to MLME-ASSOCIATE.request, MLME-REASSOCIATE.request, 43235eb8f7bSJouni Malinen * MLME-ASSOCIATE.confirm or MLME-REASSOCIATE.confirm primitives). The 43335eb8f7bSJouni Malinen * %NL80211_ATTR_PREV_BSSID attribute is used to specify whether the 43435eb8f7bSJouni Malinen * request is for the initial association to an ESS (that attribute not 43535eb8f7bSJouni Malinen * included) or for reassociation within the ESS (that attribute is 43635eb8f7bSJouni Malinen * included). 437607ca46eSDavid Howells * @NL80211_CMD_DEAUTHENTICATE: deauthentication request and notification; like 438607ca46eSDavid Howells * NL80211_CMD_AUTHENTICATE but for Deauthentication frames (similar to 439607ca46eSDavid Howells * MLME-DEAUTHENTICATION.request and MLME-DEAUTHENTICATE.indication 440607ca46eSDavid Howells * primitives). 441607ca46eSDavid Howells * @NL80211_CMD_DISASSOCIATE: disassociation request and notification; like 442607ca46eSDavid Howells * NL80211_CMD_AUTHENTICATE but for Disassociation frames (similar to 443607ca46eSDavid Howells * MLME-DISASSOCIATE.request and MLME-DISASSOCIATE.indication primitives). 444607ca46eSDavid Howells * 445607ca46eSDavid Howells * @NL80211_CMD_MICHAEL_MIC_FAILURE: notification of a locally detected Michael 446607ca46eSDavid Howells * MIC (part of TKIP) failure; sent on the "mlme" multicast group; the 447607ca46eSDavid Howells * event includes %NL80211_ATTR_MAC to describe the source MAC address of 448607ca46eSDavid Howells * the frame with invalid MIC, %NL80211_ATTR_KEY_TYPE to show the key 449607ca46eSDavid Howells * type, %NL80211_ATTR_KEY_IDX to indicate the key identifier, and 450607ca46eSDavid Howells * %NL80211_ATTR_KEY_SEQ to indicate the TSC value of the frame; this 451607ca46eSDavid Howells * event matches with MLME-MICHAELMICFAILURE.indication() primitive 452607ca46eSDavid Howells * 453607ca46eSDavid Howells * @NL80211_CMD_JOIN_IBSS: Join a new IBSS -- given at least an SSID and a 454607ca46eSDavid Howells * FREQ attribute (for the initial frequency if no peer can be found) 455607ca46eSDavid Howells * and optionally a MAC (as BSSID) and FREQ_FIXED attribute if those 456607ca46eSDavid Howells * should be fixed rather than automatically determined. Can only be 457607ca46eSDavid Howells * executed on a network interface that is UP, and fixed BSSID/FREQ 458607ca46eSDavid Howells * may be rejected. Another optional parameter is the beacon interval, 459607ca46eSDavid Howells * given in the %NL80211_ATTR_BEACON_INTERVAL attribute, which if not 460607ca46eSDavid Howells * given defaults to 100 TU (102.4ms). 461607ca46eSDavid Howells * @NL80211_CMD_LEAVE_IBSS: Leave the IBSS -- no special arguments, the IBSS is 462607ca46eSDavid Howells * determined by the network interface. 463607ca46eSDavid Howells * 464607ca46eSDavid Howells * @NL80211_CMD_TESTMODE: testmode command, takes a wiphy (or ifindex) attribute 465607ca46eSDavid Howells * to identify the device, and the TESTDATA blob attribute to pass through 466607ca46eSDavid Howells * to the driver. 467607ca46eSDavid Howells * 468607ca46eSDavid Howells * @NL80211_CMD_CONNECT: connection request and notification; this command 469607ca46eSDavid Howells * requests to connect to a specified network but without separating 470607ca46eSDavid Howells * auth and assoc steps. For this, you need to specify the SSID in a 471607ca46eSDavid Howells * %NL80211_ATTR_SSID attribute, and can optionally specify the association 472cee00a95SJouni Malinen * IEs in %NL80211_ATTR_IE, %NL80211_ATTR_AUTH_TYPE, %NL80211_ATTR_USE_MFP, 473cee00a95SJouni Malinen * %NL80211_ATTR_MAC, %NL80211_ATTR_WIPHY_FREQ, %NL80211_ATTR_CONTROL_PORT, 4741df4a510SJouni Malinen * %NL80211_ATTR_CONTROL_PORT_ETHERTYPE, 4751df4a510SJouni Malinen * %NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT, %NL80211_ATTR_MAC_HINT, and 4761df4a510SJouni Malinen * %NL80211_ATTR_WIPHY_FREQ_HINT. 4771df4a510SJouni Malinen * If included, %NL80211_ATTR_MAC and %NL80211_ATTR_WIPHY_FREQ are 4781df4a510SJouni Malinen * restrictions on BSS selection, i.e., they effectively prevent roaming 4791df4a510SJouni Malinen * within the ESS. %NL80211_ATTR_MAC_HINT and %NL80211_ATTR_WIPHY_FREQ_HINT 4801df4a510SJouni Malinen * can be included to provide a recommendation of the initial BSS while 4811df4a510SJouni Malinen * allowing the driver to roam to other BSSes within the ESS and also to 4821df4a510SJouni Malinen * ignore this recommendation if the indicated BSS is not ideal. Only one 4831df4a510SJouni Malinen * set of BSSID,frequency parameters is used (i.e., either the enforcing 4841df4a510SJouni Malinen * %NL80211_ATTR_MAC,%NL80211_ATTR_WIPHY_FREQ or the less strict 4851df4a510SJouni Malinen * %NL80211_ATTR_MAC_HINT and %NL80211_ATTR_WIPHY_FREQ_HINT). 48635eb8f7bSJouni Malinen * %NL80211_ATTR_PREV_BSSID can be used to request a reassociation within 48735eb8f7bSJouni Malinen * the ESS in case the device is already associated and an association with 48835eb8f7bSJouni Malinen * a different BSS is desired. 489607ca46eSDavid Howells * Background scan period can optionally be 490607ca46eSDavid Howells * specified in %NL80211_ATTR_BG_SCAN_PERIOD, 491607ca46eSDavid Howells * if not specified default background scan configuration 492607ca46eSDavid Howells * in driver is used and if period value is 0, bg scan will be disabled. 493607ca46eSDavid Howells * This attribute is ignored if driver does not support roam scan. 494607ca46eSDavid Howells * It is also sent as an event, with the BSSID and response IEs when the 495607ca46eSDavid Howells * connection is established or failed to be established. This can be 496bf1ecd21SJouni Malinen * determined by the %NL80211_ATTR_STATUS_CODE attribute (0 = success, 497bf1ecd21SJouni Malinen * non-zero = failure). If %NL80211_ATTR_TIMED_OUT is included in the 498bf1ecd21SJouni Malinen * event, the connection attempt failed due to not being able to initiate 499bf1ecd21SJouni Malinen * authentication/association or not receiving a response from the AP. 500bf1ecd21SJouni Malinen * Non-zero %NL80211_ATTR_STATUS_CODE value is indicated in that case as 501bf1ecd21SJouni Malinen * well to remain backwards compatible. 502607ca46eSDavid Howells * @NL80211_CMD_ROAM: request that the card roam (currently not implemented), 503607ca46eSDavid Howells * sent as an event when the card/driver roamed by itself. 504607ca46eSDavid Howells * @NL80211_CMD_DISCONNECT: drop a given connection; also used to notify 505607ca46eSDavid Howells * userspace that a connection was dropped by the AP or due to other 506607ca46eSDavid Howells * reasons, for this the %NL80211_ATTR_DISCONNECTED_BY_AP and 507607ca46eSDavid Howells * %NL80211_ATTR_REASON_CODE attributes are used. 508607ca46eSDavid Howells * 509607ca46eSDavid Howells * @NL80211_CMD_SET_WIPHY_NETNS: Set a wiphy's netns. Note that all devices 510607ca46eSDavid Howells * associated with this wiphy must be down and will follow. 511607ca46eSDavid Howells * 512607ca46eSDavid Howells * @NL80211_CMD_REMAIN_ON_CHANNEL: Request to remain awake on the specified 513607ca46eSDavid Howells * channel for the specified amount of time. This can be used to do 514607ca46eSDavid Howells * off-channel operations like transmit a Public Action frame and wait for 515607ca46eSDavid Howells * a response while being associated to an AP on another channel. 516607ca46eSDavid Howells * %NL80211_ATTR_IFINDEX is used to specify which interface (and thus 517607ca46eSDavid Howells * radio) is used. %NL80211_ATTR_WIPHY_FREQ is used to specify the 51842d97a59SJohannes Berg * frequency for the operation. 519607ca46eSDavid Howells * %NL80211_ATTR_DURATION is used to specify the duration in milliseconds 520607ca46eSDavid Howells * to remain on the channel. This command is also used as an event to 521607ca46eSDavid Howells * notify when the requested duration starts (it may take a while for the 522607ca46eSDavid Howells * driver to schedule this time due to other concurrent needs for the 523607ca46eSDavid Howells * radio). 524607ca46eSDavid Howells * When called, this operation returns a cookie (%NL80211_ATTR_COOKIE) 525607ca46eSDavid Howells * that will be included with any events pertaining to this request; 526607ca46eSDavid Howells * the cookie is also used to cancel the request. 527607ca46eSDavid Howells * @NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL: This command can be used to cancel a 528607ca46eSDavid Howells * pending remain-on-channel duration if the desired operation has been 529607ca46eSDavid Howells * completed prior to expiration of the originally requested duration. 530607ca46eSDavid Howells * %NL80211_ATTR_WIPHY or %NL80211_ATTR_IFINDEX is used to specify the 531607ca46eSDavid Howells * radio. The %NL80211_ATTR_COOKIE attribute must be given as well to 532607ca46eSDavid Howells * uniquely identify the request. 533607ca46eSDavid Howells * This command is also used as an event to notify when a requested 534607ca46eSDavid Howells * remain-on-channel duration has expired. 535607ca46eSDavid Howells * 536607ca46eSDavid Howells * @NL80211_CMD_SET_TX_BITRATE_MASK: Set the mask of rates to be used in TX 537607ca46eSDavid Howells * rate selection. %NL80211_ATTR_IFINDEX is used to specify the interface 538607ca46eSDavid Howells * and @NL80211_ATTR_TX_RATES the set of allowed rates. 539607ca46eSDavid Howells * 540607ca46eSDavid Howells * @NL80211_CMD_REGISTER_FRAME: Register for receiving certain mgmt frames 541607ca46eSDavid Howells * (via @NL80211_CMD_FRAME) for processing in userspace. This command 542607ca46eSDavid Howells * requires an interface index, a frame type attribute (optional for 543607ca46eSDavid Howells * backward compatibility reasons, if not given assumes action frames) 544607ca46eSDavid Howells * and a match attribute containing the first few bytes of the frame 545607ca46eSDavid Howells * that should match, e.g. a single byte for only a category match or 546607ca46eSDavid Howells * four bytes for vendor frames including the OUI. The registration 547607ca46eSDavid Howells * cannot be dropped, but is removed automatically when the netlink 548607ca46eSDavid Howells * socket is closed. Multiple registrations can be made. 549607ca46eSDavid Howells * @NL80211_CMD_REGISTER_ACTION: Alias for @NL80211_CMD_REGISTER_FRAME for 550607ca46eSDavid Howells * backward compatibility 551607ca46eSDavid Howells * @NL80211_CMD_FRAME: Management frame TX request and RX notification. This 552607ca46eSDavid Howells * command is used both as a request to transmit a management frame and 553607ca46eSDavid Howells * as an event indicating reception of a frame that was not processed in 554607ca46eSDavid Howells * kernel code, but is for us (i.e., which may need to be processed in a 555607ca46eSDavid Howells * user space application). %NL80211_ATTR_FRAME is used to specify the 55642d97a59SJohannes Berg * frame contents (including header). %NL80211_ATTR_WIPHY_FREQ is used 55742d97a59SJohannes Berg * to indicate on which channel the frame is to be transmitted or was 55842d97a59SJohannes Berg * received. If this channel is not the current channel (remain-on-channel 55942d97a59SJohannes Berg * or the operational channel) the device will switch to the given channel 56042d97a59SJohannes Berg * and transmit the frame, optionally waiting for a response for the time 561607ca46eSDavid Howells * specified using %NL80211_ATTR_DURATION. When called, this operation 562607ca46eSDavid Howells * returns a cookie (%NL80211_ATTR_COOKIE) that will be included with the 563607ca46eSDavid Howells * TX status event pertaining to the TX request. 564607ca46eSDavid Howells * %NL80211_ATTR_TX_NO_CCK_RATE is used to decide whether to send the 565607ca46eSDavid Howells * management frames at CCK rate or not in 2GHz band. 56634d22ce2SAndrei Otcheretianski * %NL80211_ATTR_CSA_C_OFFSETS_TX is an array of offsets to CSA 56734d22ce2SAndrei Otcheretianski * counters which will be updated to the current value. This attribute 56834d22ce2SAndrei Otcheretianski * is used during CSA period. 569607ca46eSDavid Howells * @NL80211_CMD_FRAME_WAIT_CANCEL: When an off-channel TX was requested, this 570607ca46eSDavid Howells * command may be used with the corresponding cookie to cancel the wait 571607ca46eSDavid Howells * time if it is known that it is no longer necessary. 572607ca46eSDavid Howells * @NL80211_CMD_ACTION: Alias for @NL80211_CMD_FRAME for backward compatibility. 573607ca46eSDavid Howells * @NL80211_CMD_FRAME_TX_STATUS: Report TX status of a management frame 574607ca46eSDavid Howells * transmitted with %NL80211_CMD_FRAME. %NL80211_ATTR_COOKIE identifies 575607ca46eSDavid Howells * the TX command and %NL80211_ATTR_FRAME includes the contents of the 576607ca46eSDavid Howells * frame. %NL80211_ATTR_ACK flag is included if the recipient acknowledged 577607ca46eSDavid Howells * the frame. 578607ca46eSDavid Howells * @NL80211_CMD_ACTION_TX_STATUS: Alias for @NL80211_CMD_FRAME_TX_STATUS for 579607ca46eSDavid Howells * backward compatibility. 580607ca46eSDavid Howells * 581607ca46eSDavid Howells * @NL80211_CMD_SET_POWER_SAVE: Set powersave, using %NL80211_ATTR_PS_STATE 582607ca46eSDavid Howells * @NL80211_CMD_GET_POWER_SAVE: Get powersave status in %NL80211_ATTR_PS_STATE 583607ca46eSDavid Howells * 584607ca46eSDavid Howells * @NL80211_CMD_SET_CQM: Connection quality monitor configuration. This command 585607ca46eSDavid Howells * is used to configure connection quality monitoring notification trigger 586607ca46eSDavid Howells * levels. 587607ca46eSDavid Howells * @NL80211_CMD_NOTIFY_CQM: Connection quality monitor notification. This 588607ca46eSDavid Howells * command is used as an event to indicate the that a trigger level was 589607ca46eSDavid Howells * reached. 590607ca46eSDavid Howells * @NL80211_CMD_SET_CHANNEL: Set the channel (using %NL80211_ATTR_WIPHY_FREQ 5913d9d1d66SJohannes Berg * and the attributes determining channel width) the given interface 5923d9d1d66SJohannes Berg * (identifed by %NL80211_ATTR_IFINDEX) shall operate on. 593607ca46eSDavid Howells * In case multiple channels are supported by the device, the mechanism 594607ca46eSDavid Howells * with which it switches channels is implementation-defined. 595607ca46eSDavid Howells * When a monitor interface is given, it can only switch channel while 596607ca46eSDavid Howells * no other interfaces are operating to avoid disturbing the operation 597607ca46eSDavid Howells * of any other interfaces, and other interfaces will again take 598607ca46eSDavid Howells * precedence when they are used. 599607ca46eSDavid Howells * 600607ca46eSDavid Howells * @NL80211_CMD_SET_WDS_PEER: Set the MAC address of the peer on a WDS interface. 601607ca46eSDavid Howells * 602607ca46eSDavid Howells * @NL80211_CMD_JOIN_MESH: Join a mesh. The mesh ID must be given, and initial 603607ca46eSDavid Howells * mesh config parameters may be given. 604607ca46eSDavid Howells * @NL80211_CMD_LEAVE_MESH: Leave the mesh network -- no special arguments, the 605607ca46eSDavid Howells * network is determined by the network interface. 606607ca46eSDavid Howells * 607607ca46eSDavid Howells * @NL80211_CMD_UNPROT_DEAUTHENTICATE: Unprotected deauthentication frame 608607ca46eSDavid Howells * notification. This event is used to indicate that an unprotected 609607ca46eSDavid Howells * deauthentication frame was dropped when MFP is in use. 610607ca46eSDavid Howells * @NL80211_CMD_UNPROT_DISASSOCIATE: Unprotected disassociation frame 611607ca46eSDavid Howells * notification. This event is used to indicate that an unprotected 612607ca46eSDavid Howells * disassociation frame was dropped when MFP is in use. 613607ca46eSDavid Howells * 614607ca46eSDavid Howells * @NL80211_CMD_NEW_PEER_CANDIDATE: Notification on the reception of a 615607ca46eSDavid Howells * beacon or probe response from a compatible mesh peer. This is only 616607ca46eSDavid Howells * sent while no station information (sta_info) exists for the new peer 617bb2798d4SThomas Pedersen * candidate and when @NL80211_MESH_SETUP_USERSPACE_AUTH, 618bb2798d4SThomas Pedersen * @NL80211_MESH_SETUP_USERSPACE_AMPE, or 619bb2798d4SThomas Pedersen * @NL80211_MESH_SETUP_USERSPACE_MPM is set. On reception of this 620bb2798d4SThomas Pedersen * notification, userspace may decide to create a new station 621bb2798d4SThomas Pedersen * (@NL80211_CMD_NEW_STATION). To stop this notification from 622607ca46eSDavid Howells * reoccurring, the userspace authentication daemon may want to create the 623607ca46eSDavid Howells * new station with the AUTHENTICATED flag unset and maybe change it later 624607ca46eSDavid Howells * depending on the authentication result. 625607ca46eSDavid Howells * 626607ca46eSDavid Howells * @NL80211_CMD_GET_WOWLAN: get Wake-on-Wireless-LAN (WoWLAN) settings. 627607ca46eSDavid Howells * @NL80211_CMD_SET_WOWLAN: set Wake-on-Wireless-LAN (WoWLAN) settings. 628607ca46eSDavid Howells * Since wireless is more complex than wired ethernet, it supports 629607ca46eSDavid Howells * various triggers. These triggers can be configured through this 630607ca46eSDavid Howells * command with the %NL80211_ATTR_WOWLAN_TRIGGERS attribute. For 631607ca46eSDavid Howells * more background information, see 632607ca46eSDavid Howells * http://wireless.kernel.org/en/users/Documentation/WoWLAN. 633cd8f7cb4SJohannes Berg * The @NL80211_CMD_SET_WOWLAN command can also be used as a notification 634cd8f7cb4SJohannes Berg * from the driver reporting the wakeup reason. In this case, the 635cd8f7cb4SJohannes Berg * @NL80211_ATTR_WOWLAN_TRIGGERS attribute will contain the reason 636cd8f7cb4SJohannes Berg * for the wakeup, if it was caused by wireless. If it is not present 637cd8f7cb4SJohannes Berg * in the wakeup notification, the wireless device didn't cause the 638cd8f7cb4SJohannes Berg * wakeup but reports that it was woken up. 639607ca46eSDavid Howells * 640607ca46eSDavid Howells * @NL80211_CMD_SET_REKEY_OFFLOAD: This command is used give the driver 641607ca46eSDavid Howells * the necessary information for supporting GTK rekey offload. This 642607ca46eSDavid Howells * feature is typically used during WoWLAN. The configuration data 643607ca46eSDavid Howells * is contained in %NL80211_ATTR_REKEY_DATA (which is nested and 644607ca46eSDavid Howells * contains the data in sub-attributes). After rekeying happened, 645607ca46eSDavid Howells * this command may also be sent by the driver as an MLME event to 646607ca46eSDavid Howells * inform userspace of the new replay counter. 647607ca46eSDavid Howells * 648607ca46eSDavid Howells * @NL80211_CMD_PMKSA_CANDIDATE: This is used as an event to inform userspace 649607ca46eSDavid Howells * of PMKSA caching dandidates. 650607ca46eSDavid Howells * 651607ca46eSDavid Howells * @NL80211_CMD_TDLS_OPER: Perform a high-level TDLS command (e.g. link setup). 6523475b094SJouni Malinen * In addition, this can be used as an event to request userspace to take 6533475b094SJouni Malinen * actions on TDLS links (set up a new link or tear down an existing one). 6543475b094SJouni Malinen * In such events, %NL80211_ATTR_TDLS_OPERATION indicates the requested 6553475b094SJouni Malinen * operation, %NL80211_ATTR_MAC contains the peer MAC address, and 6563475b094SJouni Malinen * %NL80211_ATTR_REASON_CODE the reason code to be used (only with 6573475b094SJouni Malinen * %NL80211_TDLS_TEARDOWN). 658c17bff87SArik Nemtsov * @NL80211_CMD_TDLS_MGMT: Send a TDLS management frame. The 659c17bff87SArik Nemtsov * %NL80211_ATTR_TDLS_ACTION attribute determines the type of frame to be 660c17bff87SArik Nemtsov * sent. Public Action codes (802.11-2012 8.1.5.1) will be sent as 661c17bff87SArik Nemtsov * 802.11 management frames, while TDLS action codes (802.11-2012 662c17bff87SArik Nemtsov * 8.5.13.1) will be encapsulated and sent as data frames. The currently 663c17bff87SArik Nemtsov * supported Public Action code is %WLAN_PUB_ACTION_TDLS_DISCOVER_RES 664c17bff87SArik Nemtsov * and the currently supported TDLS actions codes are given in 665c17bff87SArik Nemtsov * &enum ieee80211_tdls_actioncode. 666607ca46eSDavid Howells * 667607ca46eSDavid Howells * @NL80211_CMD_UNEXPECTED_FRAME: Used by an application controlling an AP 668607ca46eSDavid Howells * (or GO) interface (i.e. hostapd) to ask for unexpected frames to 669607ca46eSDavid Howells * implement sending deauth to stations that send unexpected class 3 670607ca46eSDavid Howells * frames. Also used as the event sent by the kernel when such a frame 671607ca46eSDavid Howells * is received. 672607ca46eSDavid Howells * For the event, the %NL80211_ATTR_MAC attribute carries the TA and 673607ca46eSDavid Howells * other attributes like the interface index are present. 674607ca46eSDavid Howells * If used as the command it must have an interface index and you can 675607ca46eSDavid Howells * only unsubscribe from the event by closing the socket. Subscription 676607ca46eSDavid Howells * is also for %NL80211_CMD_UNEXPECTED_4ADDR_FRAME events. 677607ca46eSDavid Howells * 678607ca46eSDavid Howells * @NL80211_CMD_UNEXPECTED_4ADDR_FRAME: Sent as an event indicating that the 679607ca46eSDavid Howells * associated station identified by %NL80211_ATTR_MAC sent a 4addr frame 680607ca46eSDavid Howells * and wasn't already in a 4-addr VLAN. The event will be sent similarly 681607ca46eSDavid Howells * to the %NL80211_CMD_UNEXPECTED_FRAME event, to the same listener. 682607ca46eSDavid Howells * 683607ca46eSDavid Howells * @NL80211_CMD_PROBE_CLIENT: Probe an associated station on an AP interface 684607ca46eSDavid Howells * by sending a null data frame to it and reporting when the frame is 685607ca46eSDavid Howells * acknowleged. This is used to allow timing out inactive clients. Uses 686607ca46eSDavid Howells * %NL80211_ATTR_IFINDEX and %NL80211_ATTR_MAC. The command returns a 687607ca46eSDavid Howells * direct reply with an %NL80211_ATTR_COOKIE that is later used to match 688607ca46eSDavid Howells * up the event with the request. The event includes the same data and 689607ca46eSDavid Howells * has %NL80211_ATTR_ACK set if the frame was ACKed. 690607ca46eSDavid Howells * 691607ca46eSDavid Howells * @NL80211_CMD_REGISTER_BEACONS: Register this socket to receive beacons from 692607ca46eSDavid Howells * other BSSes when any interfaces are in AP mode. This helps implement 693607ca46eSDavid Howells * OLBC handling in hostapd. Beacons are reported in %NL80211_CMD_FRAME 694607ca46eSDavid Howells * messages. Note that per PHY only one application may register. 695607ca46eSDavid Howells * 696607ca46eSDavid Howells * @NL80211_CMD_SET_NOACK_MAP: sets a bitmap for the individual TIDs whether 697607ca46eSDavid Howells * No Acknowledgement Policy should be applied. 698607ca46eSDavid Howells * 699607ca46eSDavid Howells * @NL80211_CMD_CH_SWITCH_NOTIFY: An AP or GO may decide to switch channels 700607ca46eSDavid Howells * independently of the userspace SME, send this event indicating 7013d9d1d66SJohannes Berg * %NL80211_ATTR_IFINDEX is now on %NL80211_ATTR_WIPHY_FREQ and the 702d04b5ac9SLuciano Coelho * attributes determining channel width. This indication may also be 703d04b5ac9SLuciano Coelho * sent when a remotely-initiated switch (e.g., when a STA receives a CSA 704d04b5ac9SLuciano Coelho * from the remote AP) is completed; 705607ca46eSDavid Howells * 706f8d7552eSLuciano Coelho * @NL80211_CMD_CH_SWITCH_STARTED_NOTIFY: Notify that a channel switch 707f8d7552eSLuciano Coelho * has been started on an interface, regardless of the initiator 708f8d7552eSLuciano Coelho * (ie. whether it was requested from a remote device or 709f8d7552eSLuciano Coelho * initiated on our own). It indicates that 710f8d7552eSLuciano Coelho * %NL80211_ATTR_IFINDEX will be on %NL80211_ATTR_WIPHY_FREQ 711f8d7552eSLuciano Coelho * after %NL80211_ATTR_CH_SWITCH_COUNT TBTT's. The userspace may 712f8d7552eSLuciano Coelho * decide to react to this indication by requesting other 713f8d7552eSLuciano Coelho * interfaces to change channel as well. 714f8d7552eSLuciano Coelho * 715607ca46eSDavid Howells * @NL80211_CMD_START_P2P_DEVICE: Start the given P2P Device, identified by 716607ca46eSDavid Howells * its %NL80211_ATTR_WDEV identifier. It must have been created with 717607ca46eSDavid Howells * %NL80211_CMD_NEW_INTERFACE previously. After it has been started, the 718607ca46eSDavid Howells * P2P Device can be used for P2P operations, e.g. remain-on-channel and 719607ca46eSDavid Howells * public action frame TX. 720607ca46eSDavid Howells * @NL80211_CMD_STOP_P2P_DEVICE: Stop the given P2P Device, identified by 721607ca46eSDavid Howells * its %NL80211_ATTR_WDEV identifier. 722607ca46eSDavid Howells * 723607ca46eSDavid Howells * @NL80211_CMD_CONN_FAILED: connection request to an AP failed; used to 724607ca46eSDavid Howells * notify userspace that AP has rejected the connection request from a 725607ca46eSDavid Howells * station, due to particular reason. %NL80211_ATTR_CONN_FAILED_REASON 726607ca46eSDavid Howells * is used for this. 727607ca46eSDavid Howells * 728f4e583c8SAntonio Quartulli * @NL80211_CMD_SET_MCAST_RATE: Change the rate used to send multicast frames 729f4e583c8SAntonio Quartulli * for IBSS or MESH vif. 730f4e583c8SAntonio Quartulli * 73177765eafSVasanthakumar Thiagarajan * @NL80211_CMD_SET_MAC_ACL: sets ACL for MAC address based access control. 73277765eafSVasanthakumar Thiagarajan * This is to be used with the drivers advertising the support of MAC 73377765eafSVasanthakumar Thiagarajan * address based access control. List of MAC addresses is passed in 73477765eafSVasanthakumar Thiagarajan * %NL80211_ATTR_MAC_ADDRS and ACL policy is passed in 73577765eafSVasanthakumar Thiagarajan * %NL80211_ATTR_ACL_POLICY. Driver will enable ACL with this list, if it 73677765eafSVasanthakumar Thiagarajan * is not already done. The new list will replace any existing list. Driver 73777765eafSVasanthakumar Thiagarajan * will clear its ACL when the list of MAC addresses passed is empty. This 73877765eafSVasanthakumar Thiagarajan * command is used in AP/P2P GO mode. Driver has to make sure to clear its 73977765eafSVasanthakumar Thiagarajan * ACL list during %NL80211_CMD_STOP_AP. 74077765eafSVasanthakumar Thiagarajan * 74104f39047SSimon Wunderlich * @NL80211_CMD_RADAR_DETECT: Start a Channel availability check (CAC). Once 74204f39047SSimon Wunderlich * a radar is detected or the channel availability scan (CAC) has finished 74304f39047SSimon Wunderlich * or was aborted, or a radar was detected, usermode will be notified with 74404f39047SSimon Wunderlich * this event. This command is also used to notify userspace about radars 74504f39047SSimon Wunderlich * while operating on this channel. 74604f39047SSimon Wunderlich * %NL80211_ATTR_RADAR_EVENT is used to inform about the type of the 74704f39047SSimon Wunderlich * event. 74804f39047SSimon Wunderlich * 7493713b4e3SJohannes Berg * @NL80211_CMD_GET_PROTOCOL_FEATURES: Get global nl80211 protocol features, 7503713b4e3SJohannes Berg * i.e. features for the nl80211 protocol rather than device features. 7513713b4e3SJohannes Berg * Returns the features in the %NL80211_ATTR_PROTOCOL_FEATURES bitmap. 7523713b4e3SJohannes Berg * 753355199e0SJouni Malinen * @NL80211_CMD_UPDATE_FT_IES: Pass down the most up-to-date Fast Transition 754355199e0SJouni Malinen * Information Element to the WLAN driver 755355199e0SJouni Malinen * 756355199e0SJouni Malinen * @NL80211_CMD_FT_EVENT: Send a Fast transition event from the WLAN driver 757355199e0SJouni Malinen * to the supplicant. This will carry the target AP's MAC address along 758355199e0SJouni Malinen * with the relevant Information Elements. This event is used to report 759355199e0SJouni Malinen * received FT IEs (MDIE, FTIE, RSN IE, TIE, RICIE). 760355199e0SJouni Malinen * 7615de17984SArend van Spriel * @NL80211_CMD_CRIT_PROTOCOL_START: Indicates user-space will start running 7625de17984SArend van Spriel * a critical protocol that needs more reliability in the connection to 7635de17984SArend van Spriel * complete. 7645de17984SArend van Spriel * 7655de17984SArend van Spriel * @NL80211_CMD_CRIT_PROTOCOL_STOP: Indicates the connection reliability can 7665de17984SArend van Spriel * return back to normal. 7675de17984SArend van Spriel * 768be29b99aSAmitkumar Karwar * @NL80211_CMD_GET_COALESCE: Get currently supported coalesce rules. 769be29b99aSAmitkumar Karwar * @NL80211_CMD_SET_COALESCE: Configure coalesce rules or clear existing rules. 770be29b99aSAmitkumar Karwar * 77116ef1fe2SSimon Wunderlich * @NL80211_CMD_CHANNEL_SWITCH: Perform a channel switch by announcing the 77216ef1fe2SSimon Wunderlich * the new channel information (Channel Switch Announcement - CSA) 77316ef1fe2SSimon Wunderlich * in the beacon for some time (as defined in the 77416ef1fe2SSimon Wunderlich * %NL80211_ATTR_CH_SWITCH_COUNT parameter) and then change to the 77516ef1fe2SSimon Wunderlich * new channel. Userspace provides the new channel information (using 77616ef1fe2SSimon Wunderlich * %NL80211_ATTR_WIPHY_FREQ and the attributes determining channel 77716ef1fe2SSimon Wunderlich * width). %NL80211_ATTR_CH_SWITCH_BLOCK_TX may be supplied to inform 77816ef1fe2SSimon Wunderlich * other station that transmission must be blocked until the channel 77916ef1fe2SSimon Wunderlich * switch is complete. 78016ef1fe2SSimon Wunderlich * 781ad7e718cSJohannes Berg * @NL80211_CMD_VENDOR: Vendor-specified command/event. The command is specified 782ad7e718cSJohannes Berg * by the %NL80211_ATTR_VENDOR_ID attribute and a sub-command in 783ad7e718cSJohannes Berg * %NL80211_ATTR_VENDOR_SUBCMD. Parameter(s) can be transported in 784ad7e718cSJohannes Berg * %NL80211_ATTR_VENDOR_DATA. 785ad7e718cSJohannes Berg * For feature advertisement, the %NL80211_ATTR_VENDOR_DATA attribute is 786ad7e718cSJohannes Berg * used in the wiphy data as a nested attribute containing descriptions 787ad7e718cSJohannes Berg * (&struct nl80211_vendor_cmd_info) of the supported vendor commands. 788ad7e718cSJohannes Berg * This may also be sent as an event with the same attributes. 789ad7e718cSJohannes Berg * 790fa9ffc74SKyeyoon Park * @NL80211_CMD_SET_QOS_MAP: Set Interworking QoS mapping for IP DSCP values. 791fa9ffc74SKyeyoon Park * The QoS mapping information is included in %NL80211_ATTR_QOS_MAP. If 792fa9ffc74SKyeyoon Park * that attribute is not included, QoS mapping is disabled. Since this 793fa9ffc74SKyeyoon Park * QoS mapping is relevant for IP packets, it is only valid during an 794fa9ffc74SKyeyoon Park * association. This is cleared on disassociation and AP restart. 795fa9ffc74SKyeyoon Park * 796960d01acSJohannes Berg * @NL80211_CMD_ADD_TX_TS: Ask the kernel to add a traffic stream for the given 797960d01acSJohannes Berg * %NL80211_ATTR_TSID and %NL80211_ATTR_MAC with %NL80211_ATTR_USER_PRIO 798960d01acSJohannes Berg * and %NL80211_ATTR_ADMITTED_TIME parameters. 799960d01acSJohannes Berg * Note that the action frame handshake with the AP shall be handled by 800960d01acSJohannes Berg * userspace via the normal management RX/TX framework, this only sets 801960d01acSJohannes Berg * up the TX TS in the driver/device. 802960d01acSJohannes Berg * If the admitted time attribute is not added then the request just checks 803960d01acSJohannes Berg * if a subsequent setup could be successful, the intent is to use this to 804960d01acSJohannes Berg * avoid setting up a session with the AP when local restrictions would 805960d01acSJohannes Berg * make that impossible. However, the subsequent "real" setup may still 806960d01acSJohannes Berg * fail even if the check was successful. 807960d01acSJohannes Berg * @NL80211_CMD_DEL_TX_TS: Remove an existing TS with the %NL80211_ATTR_TSID 808960d01acSJohannes Berg * and %NL80211_ATTR_MAC parameters. It isn't necessary to call this 809960d01acSJohannes Berg * before removing a station entry entirely, or before disassociating 810960d01acSJohannes Berg * or similar, cleanup will happen in the driver/device in this case. 811960d01acSJohannes Berg * 81266be7d2bSHenning Rogge * @NL80211_CMD_GET_MPP: Get mesh path attributes for mesh proxy path to 81366be7d2bSHenning Rogge * destination %NL80211_ATTR_MAC on the interface identified by 81466be7d2bSHenning Rogge * %NL80211_ATTR_IFINDEX. 81566be7d2bSHenning Rogge * 8166e0bd6c3SRostislav Lisovy * @NL80211_CMD_JOIN_OCB: Join the OCB network. The center frequency and 8176e0bd6c3SRostislav Lisovy * bandwidth of a channel must be given. 8186e0bd6c3SRostislav Lisovy * @NL80211_CMD_LEAVE_OCB: Leave the OCB network -- no special arguments, the 8196e0bd6c3SRostislav Lisovy * network is determined by the network interface. 8206e0bd6c3SRostislav Lisovy * 8211057d35eSArik Nemtsov * @NL80211_CMD_TDLS_CHANNEL_SWITCH: Start channel-switching with a TDLS peer, 8221057d35eSArik Nemtsov * identified by the %NL80211_ATTR_MAC parameter. A target channel is 8231057d35eSArik Nemtsov * provided via %NL80211_ATTR_WIPHY_FREQ and other attributes determining 8241057d35eSArik Nemtsov * channel width/type. The target operating class is given via 8251057d35eSArik Nemtsov * %NL80211_ATTR_OPER_CLASS. 8261057d35eSArik Nemtsov * The driver is responsible for continually initiating channel-switching 8271057d35eSArik Nemtsov * operations and returning to the base channel for communication with the 8281057d35eSArik Nemtsov * AP. 8291057d35eSArik Nemtsov * @NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH: Stop channel-switching with a TDLS 8301057d35eSArik Nemtsov * peer given by %NL80211_ATTR_MAC. Both peers must be on the base channel 8311057d35eSArik Nemtsov * when this command completes. 8321057d35eSArik Nemtsov * 833b0d7aa59SJonathan Doron * @NL80211_CMD_WIPHY_REG_CHANGE: Similar to %NL80211_CMD_REG_CHANGE, but used 834b0d7aa59SJonathan Doron * as an event to indicate changes for devices with wiphy-specific regdom 835b0d7aa59SJonathan Doron * management. 836b0d7aa59SJonathan Doron * 83791d3ab46SVidyullatha Kanchanapally * @NL80211_CMD_ABORT_SCAN: Stop an ongoing scan. Returns -ENOENT if a scan is 83891d3ab46SVidyullatha Kanchanapally * not running. The driver indicates the status of the scan through 83991d3ab46SVidyullatha Kanchanapally * cfg80211_scan_done(). 84091d3ab46SVidyullatha Kanchanapally * 841cb3b7d87SAyala Beker * @NL80211_CMD_START_NAN: Start NAN operation, identified by its 842cb3b7d87SAyala Beker * %NL80211_ATTR_WDEV interface. This interface must have been previously 843cb3b7d87SAyala Beker * created with %NL80211_CMD_NEW_INTERFACE. After it has been started, the 844cb3b7d87SAyala Beker * NAN interface will create or join a cluster. This command must have a 845cb3b7d87SAyala Beker * valid %NL80211_ATTR_NAN_MASTER_PREF attribute and optional 846cb3b7d87SAyala Beker * %NL80211_ATTR_NAN_DUAL attributes. 847cb3b7d87SAyala Beker * After this command NAN functions can be added. 848cb3b7d87SAyala Beker * @NL80211_CMD_STOP_NAN: Stop the NAN operation, identified by 849cb3b7d87SAyala Beker * its %NL80211_ATTR_WDEV interface. 850cb3b7d87SAyala Beker * 851607ca46eSDavid Howells * @NL80211_CMD_MAX: highest used command number 852607ca46eSDavid Howells * @__NL80211_CMD_AFTER_LAST: internal use 853607ca46eSDavid Howells */ 854607ca46eSDavid Howells enum nl80211_commands { 855607ca46eSDavid Howells /* don't change the order or add anything between, this is ABI! */ 856607ca46eSDavid Howells NL80211_CMD_UNSPEC, 857607ca46eSDavid Howells 858607ca46eSDavid Howells NL80211_CMD_GET_WIPHY, /* can dump */ 859607ca46eSDavid Howells NL80211_CMD_SET_WIPHY, 860607ca46eSDavid Howells NL80211_CMD_NEW_WIPHY, 861607ca46eSDavid Howells NL80211_CMD_DEL_WIPHY, 862607ca46eSDavid Howells 863607ca46eSDavid Howells NL80211_CMD_GET_INTERFACE, /* can dump */ 864607ca46eSDavid Howells NL80211_CMD_SET_INTERFACE, 865607ca46eSDavid Howells NL80211_CMD_NEW_INTERFACE, 866607ca46eSDavid Howells NL80211_CMD_DEL_INTERFACE, 867607ca46eSDavid Howells 868607ca46eSDavid Howells NL80211_CMD_GET_KEY, 869607ca46eSDavid Howells NL80211_CMD_SET_KEY, 870607ca46eSDavid Howells NL80211_CMD_NEW_KEY, 871607ca46eSDavid Howells NL80211_CMD_DEL_KEY, 872607ca46eSDavid Howells 873607ca46eSDavid Howells NL80211_CMD_GET_BEACON, 874607ca46eSDavid Howells NL80211_CMD_SET_BEACON, 875607ca46eSDavid Howells NL80211_CMD_START_AP, 876607ca46eSDavid Howells NL80211_CMD_NEW_BEACON = NL80211_CMD_START_AP, 877607ca46eSDavid Howells NL80211_CMD_STOP_AP, 878607ca46eSDavid Howells NL80211_CMD_DEL_BEACON = NL80211_CMD_STOP_AP, 879607ca46eSDavid Howells 880607ca46eSDavid Howells NL80211_CMD_GET_STATION, 881607ca46eSDavid Howells NL80211_CMD_SET_STATION, 882607ca46eSDavid Howells NL80211_CMD_NEW_STATION, 883607ca46eSDavid Howells NL80211_CMD_DEL_STATION, 884607ca46eSDavid Howells 885607ca46eSDavid Howells NL80211_CMD_GET_MPATH, 886607ca46eSDavid Howells NL80211_CMD_SET_MPATH, 887607ca46eSDavid Howells NL80211_CMD_NEW_MPATH, 888607ca46eSDavid Howells NL80211_CMD_DEL_MPATH, 889607ca46eSDavid Howells 890607ca46eSDavid Howells NL80211_CMD_SET_BSS, 891607ca46eSDavid Howells 892607ca46eSDavid Howells NL80211_CMD_SET_REG, 893607ca46eSDavid Howells NL80211_CMD_REQ_SET_REG, 894607ca46eSDavid Howells 895607ca46eSDavid Howells NL80211_CMD_GET_MESH_CONFIG, 896607ca46eSDavid Howells NL80211_CMD_SET_MESH_CONFIG, 897607ca46eSDavid Howells 898607ca46eSDavid Howells NL80211_CMD_SET_MGMT_EXTRA_IE /* reserved; not used */, 899607ca46eSDavid Howells 900607ca46eSDavid Howells NL80211_CMD_GET_REG, 901607ca46eSDavid Howells 902607ca46eSDavid Howells NL80211_CMD_GET_SCAN, 903607ca46eSDavid Howells NL80211_CMD_TRIGGER_SCAN, 904607ca46eSDavid Howells NL80211_CMD_NEW_SCAN_RESULTS, 905607ca46eSDavid Howells NL80211_CMD_SCAN_ABORTED, 906607ca46eSDavid Howells 907607ca46eSDavid Howells NL80211_CMD_REG_CHANGE, 908607ca46eSDavid Howells 909607ca46eSDavid Howells NL80211_CMD_AUTHENTICATE, 910607ca46eSDavid Howells NL80211_CMD_ASSOCIATE, 911607ca46eSDavid Howells NL80211_CMD_DEAUTHENTICATE, 912607ca46eSDavid Howells NL80211_CMD_DISASSOCIATE, 913607ca46eSDavid Howells 914607ca46eSDavid Howells NL80211_CMD_MICHAEL_MIC_FAILURE, 915607ca46eSDavid Howells 916607ca46eSDavid Howells NL80211_CMD_REG_BEACON_HINT, 917607ca46eSDavid Howells 918607ca46eSDavid Howells NL80211_CMD_JOIN_IBSS, 919607ca46eSDavid Howells NL80211_CMD_LEAVE_IBSS, 920607ca46eSDavid Howells 921607ca46eSDavid Howells NL80211_CMD_TESTMODE, 922607ca46eSDavid Howells 923607ca46eSDavid Howells NL80211_CMD_CONNECT, 924607ca46eSDavid Howells NL80211_CMD_ROAM, 925607ca46eSDavid Howells NL80211_CMD_DISCONNECT, 926607ca46eSDavid Howells 927607ca46eSDavid Howells NL80211_CMD_SET_WIPHY_NETNS, 928607ca46eSDavid Howells 929607ca46eSDavid Howells NL80211_CMD_GET_SURVEY, 930607ca46eSDavid Howells NL80211_CMD_NEW_SURVEY_RESULTS, 931607ca46eSDavid Howells 932607ca46eSDavid Howells NL80211_CMD_SET_PMKSA, 933607ca46eSDavid Howells NL80211_CMD_DEL_PMKSA, 934607ca46eSDavid Howells NL80211_CMD_FLUSH_PMKSA, 935607ca46eSDavid Howells 936607ca46eSDavid Howells NL80211_CMD_REMAIN_ON_CHANNEL, 937607ca46eSDavid Howells NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL, 938607ca46eSDavid Howells 939607ca46eSDavid Howells NL80211_CMD_SET_TX_BITRATE_MASK, 940607ca46eSDavid Howells 941607ca46eSDavid Howells NL80211_CMD_REGISTER_FRAME, 942607ca46eSDavid Howells NL80211_CMD_REGISTER_ACTION = NL80211_CMD_REGISTER_FRAME, 943607ca46eSDavid Howells NL80211_CMD_FRAME, 944607ca46eSDavid Howells NL80211_CMD_ACTION = NL80211_CMD_FRAME, 945607ca46eSDavid Howells NL80211_CMD_FRAME_TX_STATUS, 946607ca46eSDavid Howells NL80211_CMD_ACTION_TX_STATUS = NL80211_CMD_FRAME_TX_STATUS, 947607ca46eSDavid Howells 948607ca46eSDavid Howells NL80211_CMD_SET_POWER_SAVE, 949607ca46eSDavid Howells NL80211_CMD_GET_POWER_SAVE, 950607ca46eSDavid Howells 951607ca46eSDavid Howells NL80211_CMD_SET_CQM, 952607ca46eSDavid Howells NL80211_CMD_NOTIFY_CQM, 953607ca46eSDavid Howells 954607ca46eSDavid Howells NL80211_CMD_SET_CHANNEL, 955607ca46eSDavid Howells NL80211_CMD_SET_WDS_PEER, 956607ca46eSDavid Howells 957607ca46eSDavid Howells NL80211_CMD_FRAME_WAIT_CANCEL, 958607ca46eSDavid Howells 959607ca46eSDavid Howells NL80211_CMD_JOIN_MESH, 960607ca46eSDavid Howells NL80211_CMD_LEAVE_MESH, 961607ca46eSDavid Howells 962607ca46eSDavid Howells NL80211_CMD_UNPROT_DEAUTHENTICATE, 963607ca46eSDavid Howells NL80211_CMD_UNPROT_DISASSOCIATE, 964607ca46eSDavid Howells 965607ca46eSDavid Howells NL80211_CMD_NEW_PEER_CANDIDATE, 966607ca46eSDavid Howells 967607ca46eSDavid Howells NL80211_CMD_GET_WOWLAN, 968607ca46eSDavid Howells NL80211_CMD_SET_WOWLAN, 969607ca46eSDavid Howells 970607ca46eSDavid Howells NL80211_CMD_START_SCHED_SCAN, 971607ca46eSDavid Howells NL80211_CMD_STOP_SCHED_SCAN, 972607ca46eSDavid Howells NL80211_CMD_SCHED_SCAN_RESULTS, 973607ca46eSDavid Howells NL80211_CMD_SCHED_SCAN_STOPPED, 974607ca46eSDavid Howells 975607ca46eSDavid Howells NL80211_CMD_SET_REKEY_OFFLOAD, 976607ca46eSDavid Howells 977607ca46eSDavid Howells NL80211_CMD_PMKSA_CANDIDATE, 978607ca46eSDavid Howells 979607ca46eSDavid Howells NL80211_CMD_TDLS_OPER, 980607ca46eSDavid Howells NL80211_CMD_TDLS_MGMT, 981607ca46eSDavid Howells 982607ca46eSDavid Howells NL80211_CMD_UNEXPECTED_FRAME, 983607ca46eSDavid Howells 984607ca46eSDavid Howells NL80211_CMD_PROBE_CLIENT, 985607ca46eSDavid Howells 986607ca46eSDavid Howells NL80211_CMD_REGISTER_BEACONS, 987607ca46eSDavid Howells 988607ca46eSDavid Howells NL80211_CMD_UNEXPECTED_4ADDR_FRAME, 989607ca46eSDavid Howells 990607ca46eSDavid Howells NL80211_CMD_SET_NOACK_MAP, 991607ca46eSDavid Howells 992607ca46eSDavid Howells NL80211_CMD_CH_SWITCH_NOTIFY, 993607ca46eSDavid Howells 994607ca46eSDavid Howells NL80211_CMD_START_P2P_DEVICE, 995607ca46eSDavid Howells NL80211_CMD_STOP_P2P_DEVICE, 996607ca46eSDavid Howells 997607ca46eSDavid Howells NL80211_CMD_CONN_FAILED, 998607ca46eSDavid Howells 999f4e583c8SAntonio Quartulli NL80211_CMD_SET_MCAST_RATE, 1000f4e583c8SAntonio Quartulli 100177765eafSVasanthakumar Thiagarajan NL80211_CMD_SET_MAC_ACL, 100277765eafSVasanthakumar Thiagarajan 100304f39047SSimon Wunderlich NL80211_CMD_RADAR_DETECT, 100404f39047SSimon Wunderlich 10053713b4e3SJohannes Berg NL80211_CMD_GET_PROTOCOL_FEATURES, 10063713b4e3SJohannes Berg 1007355199e0SJouni Malinen NL80211_CMD_UPDATE_FT_IES, 1008355199e0SJouni Malinen NL80211_CMD_FT_EVENT, 1009355199e0SJouni Malinen 10105de17984SArend van Spriel NL80211_CMD_CRIT_PROTOCOL_START, 10115de17984SArend van Spriel NL80211_CMD_CRIT_PROTOCOL_STOP, 10125de17984SArend van Spriel 1013be29b99aSAmitkumar Karwar NL80211_CMD_GET_COALESCE, 1014be29b99aSAmitkumar Karwar NL80211_CMD_SET_COALESCE, 1015be29b99aSAmitkumar Karwar 101616ef1fe2SSimon Wunderlich NL80211_CMD_CHANNEL_SWITCH, 101716ef1fe2SSimon Wunderlich 1018ad7e718cSJohannes Berg NL80211_CMD_VENDOR, 1019ad7e718cSJohannes Berg 1020fa9ffc74SKyeyoon Park NL80211_CMD_SET_QOS_MAP, 1021fa9ffc74SKyeyoon Park 1022960d01acSJohannes Berg NL80211_CMD_ADD_TX_TS, 1023960d01acSJohannes Berg NL80211_CMD_DEL_TX_TS, 1024960d01acSJohannes Berg 102566be7d2bSHenning Rogge NL80211_CMD_GET_MPP, 102666be7d2bSHenning Rogge 10276e0bd6c3SRostislav Lisovy NL80211_CMD_JOIN_OCB, 10286e0bd6c3SRostislav Lisovy NL80211_CMD_LEAVE_OCB, 10296e0bd6c3SRostislav Lisovy 1030f8d7552eSLuciano Coelho NL80211_CMD_CH_SWITCH_STARTED_NOTIFY, 1031f8d7552eSLuciano Coelho 10321057d35eSArik Nemtsov NL80211_CMD_TDLS_CHANNEL_SWITCH, 10331057d35eSArik Nemtsov NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH, 10341057d35eSArik Nemtsov 1035b0d7aa59SJonathan Doron NL80211_CMD_WIPHY_REG_CHANGE, 1036b0d7aa59SJonathan Doron 103791d3ab46SVidyullatha Kanchanapally NL80211_CMD_ABORT_SCAN, 103891d3ab46SVidyullatha Kanchanapally 1039cb3b7d87SAyala Beker NL80211_CMD_START_NAN, 1040cb3b7d87SAyala Beker NL80211_CMD_STOP_NAN, 1041cb3b7d87SAyala Beker 1042607ca46eSDavid Howells /* add new commands above here */ 1043607ca46eSDavid Howells 1044607ca46eSDavid Howells /* used to define NL80211_CMD_MAX below */ 1045607ca46eSDavid Howells __NL80211_CMD_AFTER_LAST, 1046607ca46eSDavid Howells NL80211_CMD_MAX = __NL80211_CMD_AFTER_LAST - 1 1047607ca46eSDavid Howells }; 1048607ca46eSDavid Howells 1049607ca46eSDavid Howells /* 1050607ca46eSDavid Howells * Allow user space programs to use #ifdef on new commands by defining them 1051607ca46eSDavid Howells * here 1052607ca46eSDavid Howells */ 1053607ca46eSDavid Howells #define NL80211_CMD_SET_BSS NL80211_CMD_SET_BSS 1054607ca46eSDavid Howells #define NL80211_CMD_SET_MGMT_EXTRA_IE NL80211_CMD_SET_MGMT_EXTRA_IE 1055607ca46eSDavid Howells #define NL80211_CMD_REG_CHANGE NL80211_CMD_REG_CHANGE 1056607ca46eSDavid Howells #define NL80211_CMD_AUTHENTICATE NL80211_CMD_AUTHENTICATE 1057607ca46eSDavid Howells #define NL80211_CMD_ASSOCIATE NL80211_CMD_ASSOCIATE 1058607ca46eSDavid Howells #define NL80211_CMD_DEAUTHENTICATE NL80211_CMD_DEAUTHENTICATE 1059607ca46eSDavid Howells #define NL80211_CMD_DISASSOCIATE NL80211_CMD_DISASSOCIATE 1060607ca46eSDavid Howells #define NL80211_CMD_REG_BEACON_HINT NL80211_CMD_REG_BEACON_HINT 1061607ca46eSDavid Howells 1062607ca46eSDavid Howells #define NL80211_ATTR_FEATURE_FLAGS NL80211_ATTR_FEATURE_FLAGS 1063607ca46eSDavid Howells 1064607ca46eSDavid Howells /* source-level API compatibility */ 1065607ca46eSDavid Howells #define NL80211_CMD_GET_MESH_PARAMS NL80211_CMD_GET_MESH_CONFIG 1066607ca46eSDavid Howells #define NL80211_CMD_SET_MESH_PARAMS NL80211_CMD_SET_MESH_CONFIG 1067607ca46eSDavid Howells #define NL80211_MESH_SETUP_VENDOR_PATH_SEL_IE NL80211_MESH_SETUP_IE 1068607ca46eSDavid Howells 1069607ca46eSDavid Howells /** 1070607ca46eSDavid Howells * enum nl80211_attrs - nl80211 netlink attributes 1071607ca46eSDavid Howells * 1072607ca46eSDavid Howells * @NL80211_ATTR_UNSPEC: unspecified attribute to catch errors 1073607ca46eSDavid Howells * 1074607ca46eSDavid Howells * @NL80211_ATTR_WIPHY: index of wiphy to operate on, cf. 1075607ca46eSDavid Howells * /sys/class/ieee80211/<phyname>/index 1076607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_NAME: wiphy name (used for renaming) 1077607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_TXQ_PARAMS: a nested array of TX queue parameters 10783d9d1d66SJohannes Berg * @NL80211_ATTR_WIPHY_FREQ: frequency of the selected channel in MHz, 10793d9d1d66SJohannes Berg * defines the channel together with the (deprecated) 10803d9d1d66SJohannes Berg * %NL80211_ATTR_WIPHY_CHANNEL_TYPE attribute or the attributes 10813d9d1d66SJohannes Berg * %NL80211_ATTR_CHANNEL_WIDTH and if needed %NL80211_ATTR_CENTER_FREQ1 10823d9d1d66SJohannes Berg * and %NL80211_ATTR_CENTER_FREQ2 10833d9d1d66SJohannes Berg * @NL80211_ATTR_CHANNEL_WIDTH: u32 attribute containing one of the values 10843d9d1d66SJohannes Berg * of &enum nl80211_chan_width, describing the channel width. See the 10853d9d1d66SJohannes Berg * documentation of the enum for more information. 10863d9d1d66SJohannes Berg * @NL80211_ATTR_CENTER_FREQ1: Center frequency of the first part of the 10873d9d1d66SJohannes Berg * channel, used for anything but 20 MHz bandwidth 10883d9d1d66SJohannes Berg * @NL80211_ATTR_CENTER_FREQ2: Center frequency of the second part of the 10893d9d1d66SJohannes Berg * channel, used only for 80+80 MHz bandwidth 1090607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_CHANNEL_TYPE: included with NL80211_ATTR_WIPHY_FREQ 10913d9d1d66SJohannes Berg * if HT20 or HT40 are to be used (i.e., HT disabled if not included): 1092607ca46eSDavid Howells * NL80211_CHAN_NO_HT = HT not allowed (i.e., same as not including 1093607ca46eSDavid Howells * this attribute) 1094607ca46eSDavid Howells * NL80211_CHAN_HT20 = HT20 only 1095607ca46eSDavid Howells * NL80211_CHAN_HT40MINUS = secondary channel is below the primary channel 1096607ca46eSDavid Howells * NL80211_CHAN_HT40PLUS = secondary channel is above the primary channel 10973d9d1d66SJohannes Berg * This attribute is now deprecated. 1098607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_RETRY_SHORT: TX retry limit for frames whose length is 1099607ca46eSDavid Howells * less than or equal to the RTS threshold; allowed range: 1..255; 1100607ca46eSDavid Howells * dot11ShortRetryLimit; u8 1101607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_RETRY_LONG: TX retry limit for frames whose length is 1102607ca46eSDavid Howells * greater than the RTS threshold; allowed range: 1..255; 1103607ca46eSDavid Howells * dot11ShortLongLimit; u8 1104607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_FRAG_THRESHOLD: fragmentation threshold, i.e., maximum 1105607ca46eSDavid Howells * length in octets for frames; allowed range: 256..8000, disable 1106607ca46eSDavid Howells * fragmentation with (u32)-1; dot11FragmentationThreshold; u32 1107607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_RTS_THRESHOLD: RTS threshold (TX frames with length 1108607ca46eSDavid Howells * larger than or equal to this use RTS/CTS handshake); allowed range: 1109607ca46eSDavid Howells * 0..65536, disable with (u32)-1; dot11RTSThreshold; u32 1110607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_COVERAGE_CLASS: Coverage Class as defined by IEEE 802.11 1111607ca46eSDavid Howells * section 7.3.2.9; dot11CoverageClass; u8 1112607ca46eSDavid Howells * 1113607ca46eSDavid Howells * @NL80211_ATTR_IFINDEX: network interface index of the device to operate on 1114607ca46eSDavid Howells * @NL80211_ATTR_IFNAME: network interface name 1115607ca46eSDavid Howells * @NL80211_ATTR_IFTYPE: type of virtual interface, see &enum nl80211_iftype 1116607ca46eSDavid Howells * 1117607ca46eSDavid Howells * @NL80211_ATTR_WDEV: wireless device identifier, used for pseudo-devices 1118607ca46eSDavid Howells * that don't have a netdev (u64) 1119607ca46eSDavid Howells * 1120607ca46eSDavid Howells * @NL80211_ATTR_MAC: MAC address (various uses) 1121607ca46eSDavid Howells * 1122607ca46eSDavid Howells * @NL80211_ATTR_KEY_DATA: (temporal) key data; for TKIP this consists of 1123607ca46eSDavid Howells * 16 bytes encryption key followed by 8 bytes each for TX and RX MIC 1124607ca46eSDavid Howells * keys 1125607ca46eSDavid Howells * @NL80211_ATTR_KEY_IDX: key ID (u8, 0-3) 1126607ca46eSDavid Howells * @NL80211_ATTR_KEY_CIPHER: key cipher suite (u32, as defined by IEEE 802.11 1127607ca46eSDavid Howells * section 7.3.2.25.1, e.g. 0x000FAC04) 1128607ca46eSDavid Howells * @NL80211_ATTR_KEY_SEQ: transmit key sequence number (IV/PN) for TKIP and 1129607ca46eSDavid Howells * CCMP keys, each six bytes in little endian 1130607ca46eSDavid Howells * @NL80211_ATTR_KEY_DEFAULT: Flag attribute indicating the key is default key 1131607ca46eSDavid Howells * @NL80211_ATTR_KEY_DEFAULT_MGMT: Flag attribute indicating the key is the 1132607ca46eSDavid Howells * default management key 1133607ca46eSDavid Howells * @NL80211_ATTR_CIPHER_SUITES_PAIRWISE: For crypto settings for connect or 1134607ca46eSDavid Howells * other commands, indicates which pairwise cipher suites are used 1135607ca46eSDavid Howells * @NL80211_ATTR_CIPHER_SUITE_GROUP: For crypto settings for connect or 1136607ca46eSDavid Howells * other commands, indicates which group cipher suite is used 1137607ca46eSDavid Howells * 1138607ca46eSDavid Howells * @NL80211_ATTR_BEACON_INTERVAL: beacon interval in TU 1139607ca46eSDavid Howells * @NL80211_ATTR_DTIM_PERIOD: DTIM period for beaconing 1140607ca46eSDavid Howells * @NL80211_ATTR_BEACON_HEAD: portion of the beacon before the TIM IE 1141607ca46eSDavid Howells * @NL80211_ATTR_BEACON_TAIL: portion of the beacon after the TIM IE 1142607ca46eSDavid Howells * 1143607ca46eSDavid Howells * @NL80211_ATTR_STA_AID: Association ID for the station (u16) 1144607ca46eSDavid Howells * @NL80211_ATTR_STA_FLAGS: flags, nested element with NLA_FLAG attributes of 1145607ca46eSDavid Howells * &enum nl80211_sta_flags (deprecated, use %NL80211_ATTR_STA_FLAGS2) 1146607ca46eSDavid Howells * @NL80211_ATTR_STA_LISTEN_INTERVAL: listen interval as defined by 1147607ca46eSDavid Howells * IEEE 802.11 7.3.1.6 (u16). 1148607ca46eSDavid Howells * @NL80211_ATTR_STA_SUPPORTED_RATES: supported rates, array of supported 1149607ca46eSDavid Howells * rates as defined by IEEE 802.11 7.3.2.2 but without the length 1150607ca46eSDavid Howells * restriction (at most %NL80211_MAX_SUPP_RATES). 1151607ca46eSDavid Howells * @NL80211_ATTR_STA_VLAN: interface index of VLAN interface to move station 1152607ca46eSDavid Howells * to, or the AP interface the station was originally added to to. 1153607ca46eSDavid Howells * @NL80211_ATTR_STA_INFO: information about a station, part of station info 1154607ca46eSDavid Howells * given for %NL80211_CMD_GET_STATION, nested attribute containing 1155607ca46eSDavid Howells * info as possible, see &enum nl80211_sta_info. 1156607ca46eSDavid Howells * 1157607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_BANDS: Information about an operating bands, 1158607ca46eSDavid Howells * consisting of a nested array. 1159607ca46eSDavid Howells * 1160607ca46eSDavid Howells * @NL80211_ATTR_MESH_ID: mesh id (1-32 bytes). 1161f8bacc21SJohannes Berg * @NL80211_ATTR_STA_PLINK_ACTION: action to perform on the mesh peer link 1162f8bacc21SJohannes Berg * (see &enum nl80211_plink_action). 1163607ca46eSDavid Howells * @NL80211_ATTR_MPATH_NEXT_HOP: MAC address of the next hop for a mesh path. 1164607ca46eSDavid Howells * @NL80211_ATTR_MPATH_INFO: information about a mesh_path, part of mesh path 1165607ca46eSDavid Howells * info given for %NL80211_CMD_GET_MPATH, nested attribute described at 1166607ca46eSDavid Howells * &enum nl80211_mpath_info. 1167607ca46eSDavid Howells * 1168607ca46eSDavid Howells * @NL80211_ATTR_MNTR_FLAGS: flags, nested element with NLA_FLAG attributes of 1169607ca46eSDavid Howells * &enum nl80211_mntr_flags. 1170607ca46eSDavid Howells * 1171607ca46eSDavid Howells * @NL80211_ATTR_REG_ALPHA2: an ISO-3166-alpha2 country code for which the 1172607ca46eSDavid Howells * current regulatory domain should be set to or is already set to. 1173607ca46eSDavid Howells * For example, 'CR', for Costa Rica. This attribute is used by the kernel 1174607ca46eSDavid Howells * to query the CRDA to retrieve one regulatory domain. This attribute can 1175607ca46eSDavid Howells * also be used by userspace to query the kernel for the currently set 1176607ca46eSDavid Howells * regulatory domain. We chose an alpha2 as that is also used by the 1177789fd033SLuis R. Rodriguez * IEEE-802.11 country information element to identify a country. 1178607ca46eSDavid Howells * Users can also simply ask the wireless core to set regulatory domain 1179607ca46eSDavid Howells * to a specific alpha2. 1180607ca46eSDavid Howells * @NL80211_ATTR_REG_RULES: a nested array of regulatory domain regulatory 1181607ca46eSDavid Howells * rules. 1182607ca46eSDavid Howells * 1183607ca46eSDavid Howells * @NL80211_ATTR_BSS_CTS_PROT: whether CTS protection is enabled (u8, 0 or 1) 1184607ca46eSDavid Howells * @NL80211_ATTR_BSS_SHORT_PREAMBLE: whether short preamble is enabled 1185607ca46eSDavid Howells * (u8, 0 or 1) 1186607ca46eSDavid Howells * @NL80211_ATTR_BSS_SHORT_SLOT_TIME: whether short slot time enabled 1187607ca46eSDavid Howells * (u8, 0 or 1) 1188607ca46eSDavid Howells * @NL80211_ATTR_BSS_BASIC_RATES: basic rates, array of basic 1189607ca46eSDavid Howells * rates in format defined by IEEE 802.11 7.3.2.2 but without the length 1190607ca46eSDavid Howells * restriction (at most %NL80211_MAX_SUPP_RATES). 1191607ca46eSDavid Howells * 1192607ca46eSDavid Howells * @NL80211_ATTR_HT_CAPABILITY: HT Capability information element (from 1193607ca46eSDavid Howells * association request when used with NL80211_CMD_NEW_STATION) 1194607ca46eSDavid Howells * 1195607ca46eSDavid Howells * @NL80211_ATTR_SUPPORTED_IFTYPES: nested attribute containing all 1196607ca46eSDavid Howells * supported interface types, each a flag attribute with the number 1197607ca46eSDavid Howells * of the interface mode. 1198607ca46eSDavid Howells * 1199607ca46eSDavid Howells * @NL80211_ATTR_MGMT_SUBTYPE: Management frame subtype for 1200607ca46eSDavid Howells * %NL80211_CMD_SET_MGMT_EXTRA_IE. 1201607ca46eSDavid Howells * 1202607ca46eSDavid Howells * @NL80211_ATTR_IE: Information element(s) data (used, e.g., with 1203607ca46eSDavid Howells * %NL80211_CMD_SET_MGMT_EXTRA_IE). 1204607ca46eSDavid Howells * 1205607ca46eSDavid Howells * @NL80211_ATTR_MAX_NUM_SCAN_SSIDS: number of SSIDs you can scan with 1206607ca46eSDavid Howells * a single scan request, a wiphy attribute. 1207607ca46eSDavid Howells * @NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS: number of SSIDs you can 1208607ca46eSDavid Howells * scan with a single scheduled scan request, a wiphy attribute. 1209607ca46eSDavid Howells * @NL80211_ATTR_MAX_SCAN_IE_LEN: maximum length of information elements 1210607ca46eSDavid Howells * that can be added to a scan request 1211607ca46eSDavid Howells * @NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN: maximum length of information 1212607ca46eSDavid Howells * elements that can be added to a scheduled scan request 1213607ca46eSDavid Howells * @NL80211_ATTR_MAX_MATCH_SETS: maximum number of sets that can be 1214607ca46eSDavid Howells * used with @NL80211_ATTR_SCHED_SCAN_MATCH, a wiphy attribute. 1215607ca46eSDavid Howells * 1216607ca46eSDavid Howells * @NL80211_ATTR_SCAN_FREQUENCIES: nested attribute with frequencies (in MHz) 1217607ca46eSDavid Howells * @NL80211_ATTR_SCAN_SSIDS: nested attribute with SSIDs, leave out for passive 1218607ca46eSDavid Howells * scanning and include a zero-length SSID (wildcard) for wildcard scan 1219607ca46eSDavid Howells * @NL80211_ATTR_BSS: scan result BSS 1220607ca46eSDavid Howells * 1221607ca46eSDavid Howells * @NL80211_ATTR_REG_INITIATOR: indicates who requested the regulatory domain 1222607ca46eSDavid Howells * currently in effect. This could be any of the %NL80211_REGDOM_SET_BY_* 1223607ca46eSDavid Howells * @NL80211_ATTR_REG_TYPE: indicates the type of the regulatory domain currently 1224607ca46eSDavid Howells * set. This can be one of the nl80211_reg_type (%NL80211_REGDOM_TYPE_*) 1225607ca46eSDavid Howells * 1226607ca46eSDavid Howells * @NL80211_ATTR_SUPPORTED_COMMANDS: wiphy attribute that specifies 1227607ca46eSDavid Howells * an array of command numbers (i.e. a mapping index to command number) 1228607ca46eSDavid Howells * that the driver for the given wiphy supports. 1229607ca46eSDavid Howells * 1230607ca46eSDavid Howells * @NL80211_ATTR_FRAME: frame data (binary attribute), including frame header 1231607ca46eSDavid Howells * and body, but not FCS; used, e.g., with NL80211_CMD_AUTHENTICATE and 1232607ca46eSDavid Howells * NL80211_CMD_ASSOCIATE events 1233607ca46eSDavid Howells * @NL80211_ATTR_SSID: SSID (binary attribute, 0..32 octets) 1234607ca46eSDavid Howells * @NL80211_ATTR_AUTH_TYPE: AuthenticationType, see &enum nl80211_auth_type, 1235607ca46eSDavid Howells * represented as a u32 1236607ca46eSDavid Howells * @NL80211_ATTR_REASON_CODE: ReasonCode for %NL80211_CMD_DEAUTHENTICATE and 1237607ca46eSDavid Howells * %NL80211_CMD_DISASSOCIATE, u16 1238607ca46eSDavid Howells * 1239607ca46eSDavid Howells * @NL80211_ATTR_KEY_TYPE: Key Type, see &enum nl80211_key_type, represented as 1240607ca46eSDavid Howells * a u32 1241607ca46eSDavid Howells * 1242607ca46eSDavid Howells * @NL80211_ATTR_FREQ_BEFORE: A channel which has suffered a regulatory change 1243607ca46eSDavid Howells * due to considerations from a beacon hint. This attribute reflects 1244607ca46eSDavid Howells * the state of the channel _before_ the beacon hint processing. This 1245607ca46eSDavid Howells * attributes consists of a nested attribute containing 1246607ca46eSDavid Howells * NL80211_FREQUENCY_ATTR_* 1247607ca46eSDavid Howells * @NL80211_ATTR_FREQ_AFTER: A channel which has suffered a regulatory change 1248607ca46eSDavid Howells * due to considerations from a beacon hint. This attribute reflects 1249607ca46eSDavid Howells * the state of the channel _after_ the beacon hint processing. This 1250607ca46eSDavid Howells * attributes consists of a nested attribute containing 1251607ca46eSDavid Howells * NL80211_FREQUENCY_ATTR_* 1252607ca46eSDavid Howells * 1253607ca46eSDavid Howells * @NL80211_ATTR_CIPHER_SUITES: a set of u32 values indicating the supported 1254607ca46eSDavid Howells * cipher suites 1255607ca46eSDavid Howells * 1256607ca46eSDavid Howells * @NL80211_ATTR_FREQ_FIXED: a flag indicating the IBSS should not try to look 1257607ca46eSDavid Howells * for other networks on different channels 1258607ca46eSDavid Howells * 1259607ca46eSDavid Howells * @NL80211_ATTR_TIMED_OUT: a flag indicating than an operation timed out; this 1260607ca46eSDavid Howells * is used, e.g., with %NL80211_CMD_AUTHENTICATE event 1261607ca46eSDavid Howells * 1262607ca46eSDavid Howells * @NL80211_ATTR_USE_MFP: Whether management frame protection (IEEE 802.11w) is 1263607ca46eSDavid Howells * used for the association (&enum nl80211_mfp, represented as a u32); 1264607ca46eSDavid Howells * this attribute can be used 1265cee00a95SJouni Malinen * with %NL80211_CMD_ASSOCIATE and %NL80211_CMD_CONNECT requests 1266607ca46eSDavid Howells * 1267607ca46eSDavid Howells * @NL80211_ATTR_STA_FLAGS2: Attribute containing a 1268607ca46eSDavid Howells * &struct nl80211_sta_flag_update. 1269607ca46eSDavid Howells * 1270607ca46eSDavid Howells * @NL80211_ATTR_CONTROL_PORT: A flag indicating whether user space controls 1271607ca46eSDavid Howells * IEEE 802.1X port, i.e., sets/clears %NL80211_STA_FLAG_AUTHORIZED, in 1272607ca46eSDavid Howells * station mode. If the flag is included in %NL80211_CMD_ASSOCIATE 1273607ca46eSDavid Howells * request, the driver will assume that the port is unauthorized until 1274607ca46eSDavid Howells * authorized by user space. Otherwise, port is marked authorized by 1275607ca46eSDavid Howells * default in station mode. 1276607ca46eSDavid Howells * @NL80211_ATTR_CONTROL_PORT_ETHERTYPE: A 16-bit value indicating the 1277607ca46eSDavid Howells * ethertype that will be used for key negotiation. It can be 1278607ca46eSDavid Howells * specified with the associate and connect commands. If it is not 1279607ca46eSDavid Howells * specified, the value defaults to 0x888E (PAE, 802.1X). This 1280607ca46eSDavid Howells * attribute is also used as a flag in the wiphy information to 1281607ca46eSDavid Howells * indicate that protocols other than PAE are supported. 1282607ca46eSDavid Howells * @NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT: When included along with 1283607ca46eSDavid Howells * %NL80211_ATTR_CONTROL_PORT_ETHERTYPE, indicates that the custom 1284607ca46eSDavid Howells * ethertype frames used for key negotiation must not be encrypted. 1285607ca46eSDavid Howells * 1286607ca46eSDavid Howells * @NL80211_ATTR_TESTDATA: Testmode data blob, passed through to the driver. 1287607ca46eSDavid Howells * We recommend using nested, driver-specific attributes within this. 1288607ca46eSDavid Howells * 1289607ca46eSDavid Howells * @NL80211_ATTR_DISCONNECTED_BY_AP: A flag indicating that the DISCONNECT 1290607ca46eSDavid Howells * event was due to the AP disconnecting the station, and not due to 1291607ca46eSDavid Howells * a local disconnect request. 1292607ca46eSDavid Howells * @NL80211_ATTR_STATUS_CODE: StatusCode for the %NL80211_CMD_CONNECT 1293607ca46eSDavid Howells * event (u16) 1294607ca46eSDavid Howells * @NL80211_ATTR_PRIVACY: Flag attribute, used with connect(), indicating 1295607ca46eSDavid Howells * that protected APs should be used. This is also used with NEW_BEACON to 1296607ca46eSDavid Howells * indicate that the BSS is to use protection. 1297607ca46eSDavid Howells * 1298607ca46eSDavid Howells * @NL80211_ATTR_CIPHERS_PAIRWISE: Used with CONNECT, ASSOCIATE, and NEW_BEACON 1299607ca46eSDavid Howells * to indicate which unicast key ciphers will be used with the connection 1300607ca46eSDavid Howells * (an array of u32). 1301607ca46eSDavid Howells * @NL80211_ATTR_CIPHER_GROUP: Used with CONNECT, ASSOCIATE, and NEW_BEACON to 1302607ca46eSDavid Howells * indicate which group key cipher will be used with the connection (a 1303607ca46eSDavid Howells * u32). 1304607ca46eSDavid Howells * @NL80211_ATTR_WPA_VERSIONS: Used with CONNECT, ASSOCIATE, and NEW_BEACON to 1305607ca46eSDavid Howells * indicate which WPA version(s) the AP we want to associate with is using 1306607ca46eSDavid Howells * (a u32 with flags from &enum nl80211_wpa_versions). 1307607ca46eSDavid Howells * @NL80211_ATTR_AKM_SUITES: Used with CONNECT, ASSOCIATE, and NEW_BEACON to 1308607ca46eSDavid Howells * indicate which key management algorithm(s) to use (an array of u32). 1309607ca46eSDavid Howells * 1310607ca46eSDavid Howells * @NL80211_ATTR_REQ_IE: (Re)association request information elements as 1311607ca46eSDavid Howells * sent out by the card, for ROAM and successful CONNECT events. 1312607ca46eSDavid Howells * @NL80211_ATTR_RESP_IE: (Re)association response information elements as 1313607ca46eSDavid Howells * sent by peer, for ROAM and successful CONNECT events. 1314607ca46eSDavid Howells * 131535eb8f7bSJouni Malinen * @NL80211_ATTR_PREV_BSSID: previous BSSID, to be used in ASSOCIATE and CONNECT 131635eb8f7bSJouni Malinen * commands to specify a request to reassociate within an ESS, i.e., to use 131735eb8f7bSJouni Malinen * Reassociate Request frame (with the value of this attribute in the 131835eb8f7bSJouni Malinen * Current AP address field) instead of Association Request frame which is 131935eb8f7bSJouni Malinen * used for the initial association to an ESS. 1320607ca46eSDavid Howells * 1321607ca46eSDavid Howells * @NL80211_ATTR_KEY: key information in a nested attribute with 1322607ca46eSDavid Howells * %NL80211_KEY_* sub-attributes 1323607ca46eSDavid Howells * @NL80211_ATTR_KEYS: array of keys for static WEP keys for connect() 1324607ca46eSDavid Howells * and join_ibss(), key information is in a nested attribute each 1325607ca46eSDavid Howells * with %NL80211_KEY_* sub-attributes 1326607ca46eSDavid Howells * 1327607ca46eSDavid Howells * @NL80211_ATTR_PID: Process ID of a network namespace. 1328607ca46eSDavid Howells * 1329607ca46eSDavid Howells * @NL80211_ATTR_GENERATION: Used to indicate consistent snapshots for 1330607ca46eSDavid Howells * dumps. This number increases whenever the object list being 1331607ca46eSDavid Howells * dumped changes, and as such userspace can verify that it has 1332607ca46eSDavid Howells * obtained a complete and consistent snapshot by verifying that 1333607ca46eSDavid Howells * all dump messages contain the same generation number. If it 1334607ca46eSDavid Howells * changed then the list changed and the dump should be repeated 1335607ca46eSDavid Howells * completely from scratch. 1336607ca46eSDavid Howells * 1337607ca46eSDavid Howells * @NL80211_ATTR_4ADDR: Use 4-address frames on a virtual interface 1338607ca46eSDavid Howells * 1339607ca46eSDavid Howells * @NL80211_ATTR_SURVEY_INFO: survey information about a channel, part of 1340607ca46eSDavid Howells * the survey response for %NL80211_CMD_GET_SURVEY, nested attribute 1341607ca46eSDavid Howells * containing info as possible, see &enum survey_info. 1342607ca46eSDavid Howells * 1343607ca46eSDavid Howells * @NL80211_ATTR_PMKID: PMK material for PMKSA caching. 1344607ca46eSDavid Howells * @NL80211_ATTR_MAX_NUM_PMKIDS: maximum number of PMKIDs a firmware can 1345607ca46eSDavid Howells * cache, a wiphy attribute. 1346607ca46eSDavid Howells * 1347607ca46eSDavid Howells * @NL80211_ATTR_DURATION: Duration of an operation in milliseconds, u32. 1348607ca46eSDavid Howells * @NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION: Device attribute that 1349607ca46eSDavid Howells * specifies the maximum duration that can be requested with the 1350607ca46eSDavid Howells * remain-on-channel operation, in milliseconds, u32. 1351607ca46eSDavid Howells * 1352607ca46eSDavid Howells * @NL80211_ATTR_COOKIE: Generic 64-bit cookie to identify objects. 1353607ca46eSDavid Howells * 1354607ca46eSDavid Howells * @NL80211_ATTR_TX_RATES: Nested set of attributes 1355607ca46eSDavid Howells * (enum nl80211_tx_rate_attributes) describing TX rates per band. The 1356607ca46eSDavid Howells * enum nl80211_band value is used as the index (nla_type() of the nested 1357607ca46eSDavid Howells * data. If a band is not included, it will be configured to allow all 1358607ca46eSDavid Howells * rates based on negotiated supported rates information. This attribute 13598564e382SJohannes Berg * is used with %NL80211_CMD_SET_TX_BITRATE_MASK and with starting AP, 13608564e382SJohannes Berg * and joining mesh networks (not IBSS yet). In the later case, it must 13618564e382SJohannes Berg * specify just a single bitrate, which is to be used for the beacon. 13628564e382SJohannes Berg * The driver must also specify support for this with the extended 13638564e382SJohannes Berg * features NL80211_EXT_FEATURE_BEACON_RATE_LEGACY, 13648564e382SJohannes Berg * NL80211_EXT_FEATURE_BEACON_RATE_HT and 13658564e382SJohannes Berg * NL80211_EXT_FEATURE_BEACON_RATE_VHT. 1366607ca46eSDavid Howells * 1367607ca46eSDavid Howells * @NL80211_ATTR_FRAME_MATCH: A binary attribute which typically must contain 1368607ca46eSDavid Howells * at least one byte, currently used with @NL80211_CMD_REGISTER_FRAME. 1369607ca46eSDavid Howells * @NL80211_ATTR_FRAME_TYPE: A u16 indicating the frame type/subtype for the 1370607ca46eSDavid Howells * @NL80211_CMD_REGISTER_FRAME command. 1371607ca46eSDavid Howells * @NL80211_ATTR_TX_FRAME_TYPES: wiphy capability attribute, which is a 1372607ca46eSDavid Howells * nested attribute of %NL80211_ATTR_FRAME_TYPE attributes, containing 1373607ca46eSDavid Howells * information about which frame types can be transmitted with 1374607ca46eSDavid Howells * %NL80211_CMD_FRAME. 1375607ca46eSDavid Howells * @NL80211_ATTR_RX_FRAME_TYPES: wiphy capability attribute, which is a 1376607ca46eSDavid Howells * nested attribute of %NL80211_ATTR_FRAME_TYPE attributes, containing 1377607ca46eSDavid Howells * information about which frame types can be registered for RX. 1378607ca46eSDavid Howells * 1379607ca46eSDavid Howells * @NL80211_ATTR_ACK: Flag attribute indicating that the frame was 1380607ca46eSDavid Howells * acknowledged by the recipient. 1381607ca46eSDavid Howells * 1382607ca46eSDavid Howells * @NL80211_ATTR_PS_STATE: powersave state, using &enum nl80211_ps_state values. 1383607ca46eSDavid Howells * 1384607ca46eSDavid Howells * @NL80211_ATTR_CQM: connection quality monitor configuration in a 1385607ca46eSDavid Howells * nested attribute with %NL80211_ATTR_CQM_* sub-attributes. 1386607ca46eSDavid Howells * 1387607ca46eSDavid Howells * @NL80211_ATTR_LOCAL_STATE_CHANGE: Flag attribute to indicate that a command 1388607ca46eSDavid Howells * is requesting a local authentication/association state change without 1389607ca46eSDavid Howells * invoking actual management frame exchange. This can be used with 1390607ca46eSDavid Howells * NL80211_CMD_AUTHENTICATE, NL80211_CMD_DEAUTHENTICATE, 1391607ca46eSDavid Howells * NL80211_CMD_DISASSOCIATE. 1392607ca46eSDavid Howells * 1393607ca46eSDavid Howells * @NL80211_ATTR_AP_ISOLATE: (AP mode) Do not forward traffic between stations 1394607ca46eSDavid Howells * connected to this BSS. 1395607ca46eSDavid Howells * 1396607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_TX_POWER_SETTING: Transmit power setting type. See 1397607ca46eSDavid Howells * &enum nl80211_tx_power_setting for possible values. 1398607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_TX_POWER_LEVEL: Transmit power level in signed mBm units. 1399607ca46eSDavid Howells * This is used in association with @NL80211_ATTR_WIPHY_TX_POWER_SETTING 1400607ca46eSDavid Howells * for non-automatic settings. 1401607ca46eSDavid Howells * 1402607ca46eSDavid Howells * @NL80211_ATTR_SUPPORT_IBSS_RSN: The device supports IBSS RSN, which mostly 1403607ca46eSDavid Howells * means support for per-station GTKs. 1404607ca46eSDavid Howells * 1405607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_ANTENNA_TX: Bitmap of allowed antennas for transmitting. 1406607ca46eSDavid Howells * This can be used to mask out antennas which are not attached or should 1407607ca46eSDavid Howells * not be used for transmitting. If an antenna is not selected in this 1408607ca46eSDavid Howells * bitmap the hardware is not allowed to transmit on this antenna. 1409607ca46eSDavid Howells * 1410607ca46eSDavid Howells * Each bit represents one antenna, starting with antenna 1 at the first 1411607ca46eSDavid Howells * bit. Depending on which antennas are selected in the bitmap, 802.11n 1412607ca46eSDavid Howells * drivers can derive which chainmasks to use (if all antennas belonging to 1413607ca46eSDavid Howells * a particular chain are disabled this chain should be disabled) and if 1414607ca46eSDavid Howells * a chain has diversity antennas wether diversity should be used or not. 1415607ca46eSDavid Howells * HT capabilities (STBC, TX Beamforming, Antenna selection) can be 1416607ca46eSDavid Howells * derived from the available chains after applying the antenna mask. 1417607ca46eSDavid Howells * Non-802.11n drivers can derive wether to use diversity or not. 1418607ca46eSDavid Howells * Drivers may reject configurations or RX/TX mask combinations they cannot 1419607ca46eSDavid Howells * support by returning -EINVAL. 1420607ca46eSDavid Howells * 1421607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_ANTENNA_RX: Bitmap of allowed antennas for receiving. 1422607ca46eSDavid Howells * This can be used to mask out antennas which are not attached or should 1423607ca46eSDavid Howells * not be used for receiving. If an antenna is not selected in this bitmap 1424607ca46eSDavid Howells * the hardware should not be configured to receive on this antenna. 1425607ca46eSDavid Howells * For a more detailed description see @NL80211_ATTR_WIPHY_ANTENNA_TX. 1426607ca46eSDavid Howells * 1427607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX: Bitmap of antennas which are available 1428607ca46eSDavid Howells * for configuration as TX antennas via the above parameters. 1429607ca46eSDavid Howells * 1430607ca46eSDavid Howells * @NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX: Bitmap of antennas which are available 1431607ca46eSDavid Howells * for configuration as RX antennas via the above parameters. 1432607ca46eSDavid Howells * 1433607ca46eSDavid Howells * @NL80211_ATTR_MCAST_RATE: Multicast tx rate (in 100 kbps) for IBSS 1434607ca46eSDavid Howells * 1435607ca46eSDavid Howells * @NL80211_ATTR_OFFCHANNEL_TX_OK: For management frame TX, the frame may be 1436607ca46eSDavid Howells * transmitted on another channel when the channel given doesn't match 1437607ca46eSDavid Howells * the current channel. If the current channel doesn't match and this 1438607ca46eSDavid Howells * flag isn't set, the frame will be rejected. This is also used as an 1439607ca46eSDavid Howells * nl80211 capability flag. 1440607ca46eSDavid Howells * 1441607ca46eSDavid Howells * @NL80211_ATTR_BSS_HT_OPMODE: HT operation mode (u16) 1442607ca46eSDavid Howells * 1443607ca46eSDavid Howells * @NL80211_ATTR_KEY_DEFAULT_TYPES: A nested attribute containing flags 1444607ca46eSDavid Howells * attributes, specifying what a key should be set as default as. 1445607ca46eSDavid Howells * See &enum nl80211_key_default_types. 1446607ca46eSDavid Howells * 1447607ca46eSDavid Howells * @NL80211_ATTR_MESH_SETUP: Optional mesh setup parameters. These cannot be 1448607ca46eSDavid Howells * changed once the mesh is active. 1449607ca46eSDavid Howells * @NL80211_ATTR_MESH_CONFIG: Mesh configuration parameters, a nested attribute 1450607ca46eSDavid Howells * containing attributes from &enum nl80211_meshconf_params. 1451607ca46eSDavid Howells * @NL80211_ATTR_SUPPORT_MESH_AUTH: Currently, this means the underlying driver 1452607ca46eSDavid Howells * allows auth frames in a mesh to be passed to userspace for processing via 1453607ca46eSDavid Howells * the @NL80211_MESH_SETUP_USERSPACE_AUTH flag. 1454bb2798d4SThomas Pedersen * @NL80211_ATTR_STA_PLINK_STATE: The state of a mesh peer link as defined in 1455bb2798d4SThomas Pedersen * &enum nl80211_plink_state. Used when userspace is driving the peer link 1456bb2798d4SThomas Pedersen * management state machine. @NL80211_MESH_SETUP_USERSPACE_AMPE or 1457bb2798d4SThomas Pedersen * @NL80211_MESH_SETUP_USERSPACE_MPM must be enabled. 1458607ca46eSDavid Howells * 1459607ca46eSDavid Howells * @NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED: indicates, as part of the wiphy 1460607ca46eSDavid Howells * capabilities, the supported WoWLAN triggers 1461607ca46eSDavid Howells * @NL80211_ATTR_WOWLAN_TRIGGERS: used by %NL80211_CMD_SET_WOWLAN to 1462607ca46eSDavid Howells * indicate which WoW triggers should be enabled. This is also 1463607ca46eSDavid Howells * used by %NL80211_CMD_GET_WOWLAN to get the currently enabled WoWLAN 1464607ca46eSDavid Howells * triggers. 1465607ca46eSDavid Howells * 1466607ca46eSDavid Howells * @NL80211_ATTR_SCHED_SCAN_INTERVAL: Interval between scheduled scan 1467607ca46eSDavid Howells * cycles, in msecs. 1468607ca46eSDavid Howells * 1469607ca46eSDavid Howells * @NL80211_ATTR_SCHED_SCAN_MATCH: Nested attribute with one or more 1470607ca46eSDavid Howells * sets of attributes to match during scheduled scans. Only BSSs 1471607ca46eSDavid Howells * that match any of the sets will be reported. These are 1472607ca46eSDavid Howells * pass-thru filter rules. 1473607ca46eSDavid Howells * For a match to succeed, the BSS must match all attributes of a 1474607ca46eSDavid Howells * set. Since not every hardware supports matching all types of 1475607ca46eSDavid Howells * attributes, there is no guarantee that the reported BSSs are 1476607ca46eSDavid Howells * fully complying with the match sets and userspace needs to be 1477607ca46eSDavid Howells * able to ignore them by itself. 1478607ca46eSDavid Howells * Thus, the implementation is somewhat hardware-dependent, but 1479607ca46eSDavid Howells * this is only an optimization and the userspace application 1480607ca46eSDavid Howells * needs to handle all the non-filtered results anyway. 1481607ca46eSDavid Howells * If the match attributes don't make sense when combined with 1482607ca46eSDavid Howells * the values passed in @NL80211_ATTR_SCAN_SSIDS (eg. if an SSID 1483607ca46eSDavid Howells * is included in the probe request, but the match attributes 1484607ca46eSDavid Howells * will never let it go through), -EINVAL may be returned. 1485607ca46eSDavid Howells * If ommited, no filtering is done. 1486607ca46eSDavid Howells * 1487607ca46eSDavid Howells * @NL80211_ATTR_INTERFACE_COMBINATIONS: Nested attribute listing the supported 1488607ca46eSDavid Howells * interface combinations. In each nested item, it contains attributes 1489607ca46eSDavid Howells * defined in &enum nl80211_if_combination_attrs. 1490607ca46eSDavid Howells * @NL80211_ATTR_SOFTWARE_IFTYPES: Nested attribute (just like 1491607ca46eSDavid Howells * %NL80211_ATTR_SUPPORTED_IFTYPES) containing the interface types that 1492607ca46eSDavid Howells * are managed in software: interfaces of these types aren't subject to 1493607ca46eSDavid Howells * any restrictions in their number or combinations. 1494607ca46eSDavid Howells * 1495607ca46eSDavid Howells * @NL80211_ATTR_REKEY_DATA: nested attribute containing the information 1496607ca46eSDavid Howells * necessary for GTK rekeying in the device, see &enum nl80211_rekey_data. 1497607ca46eSDavid Howells * 1498607ca46eSDavid Howells * @NL80211_ATTR_SCAN_SUPP_RATES: rates per to be advertised as supported in scan, 1499607ca46eSDavid Howells * nested array attribute containing an entry for each band, with the entry 1500607ca46eSDavid Howells * being a list of supported rates as defined by IEEE 802.11 7.3.2.2 but 1501607ca46eSDavid Howells * without the length restriction (at most %NL80211_MAX_SUPP_RATES). 1502607ca46eSDavid Howells * 1503607ca46eSDavid Howells * @NL80211_ATTR_HIDDEN_SSID: indicates whether SSID is to be hidden from Beacon 1504607ca46eSDavid Howells * and Probe Response (when response to wildcard Probe Request); see 1505607ca46eSDavid Howells * &enum nl80211_hidden_ssid, represented as a u32 1506607ca46eSDavid Howells * 1507607ca46eSDavid Howells * @NL80211_ATTR_IE_PROBE_RESP: Information element(s) for Probe Response frame. 1508607ca46eSDavid Howells * This is used with %NL80211_CMD_NEW_BEACON and %NL80211_CMD_SET_BEACON to 1509607ca46eSDavid Howells * provide extra IEs (e.g., WPS/P2P IE) into Probe Response frames when the 1510607ca46eSDavid Howells * driver (or firmware) replies to Probe Request frames. 1511607ca46eSDavid Howells * @NL80211_ATTR_IE_ASSOC_RESP: Information element(s) for (Re)Association 1512607ca46eSDavid Howells * Response frames. This is used with %NL80211_CMD_NEW_BEACON and 1513607ca46eSDavid Howells * %NL80211_CMD_SET_BEACON to provide extra IEs (e.g., WPS/P2P IE) into 1514607ca46eSDavid Howells * (Re)Association Response frames when the driver (or firmware) replies to 1515607ca46eSDavid Howells * (Re)Association Request frames. 1516607ca46eSDavid Howells * 1517607ca46eSDavid Howells * @NL80211_ATTR_STA_WME: Nested attribute containing the wme configuration 1518607ca46eSDavid Howells * of the station, see &enum nl80211_sta_wme_attr. 1519607ca46eSDavid Howells * @NL80211_ATTR_SUPPORT_AP_UAPSD: the device supports uapsd when working 1520607ca46eSDavid Howells * as AP. 1521607ca46eSDavid Howells * 1522607ca46eSDavid Howells * @NL80211_ATTR_ROAM_SUPPORT: Indicates whether the firmware is capable of 1523607ca46eSDavid Howells * roaming to another AP in the same ESS if the signal lever is low. 1524607ca46eSDavid Howells * 1525607ca46eSDavid Howells * @NL80211_ATTR_PMKSA_CANDIDATE: Nested attribute containing the PMKSA caching 1526607ca46eSDavid Howells * candidate information, see &enum nl80211_pmksa_candidate_attr. 1527607ca46eSDavid Howells * 1528607ca46eSDavid Howells * @NL80211_ATTR_TX_NO_CCK_RATE: Indicates whether to use CCK rate or not 1529607ca46eSDavid Howells * for management frames transmission. In order to avoid p2p probe/action 1530607ca46eSDavid Howells * frames are being transmitted at CCK rate in 2GHz band, the user space 1531607ca46eSDavid Howells * applications use this attribute. 1532607ca46eSDavid Howells * This attribute is used with %NL80211_CMD_TRIGGER_SCAN and 1533607ca46eSDavid Howells * %NL80211_CMD_FRAME commands. 1534607ca46eSDavid Howells * 1535607ca46eSDavid Howells * @NL80211_ATTR_TDLS_ACTION: Low level TDLS action code (e.g. link setup 1536607ca46eSDavid Howells * request, link setup confirm, link teardown, etc.). Values are 1537607ca46eSDavid Howells * described in the TDLS (802.11z) specification. 1538607ca46eSDavid Howells * @NL80211_ATTR_TDLS_DIALOG_TOKEN: Non-zero token for uniquely identifying a 1539607ca46eSDavid Howells * TDLS conversation between two devices. 1540607ca46eSDavid Howells * @NL80211_ATTR_TDLS_OPERATION: High level TDLS operation; see 1541607ca46eSDavid Howells * &enum nl80211_tdls_operation, represented as a u8. 1542607ca46eSDavid Howells * @NL80211_ATTR_TDLS_SUPPORT: A flag indicating the device can operate 1543607ca46eSDavid Howells * as a TDLS peer sta. 1544607ca46eSDavid Howells * @NL80211_ATTR_TDLS_EXTERNAL_SETUP: The TDLS discovery/setup and teardown 1545607ca46eSDavid Howells * procedures should be performed by sending TDLS packets via 1546607ca46eSDavid Howells * %NL80211_CMD_TDLS_MGMT. Otherwise %NL80211_CMD_TDLS_OPER should be 1547607ca46eSDavid Howells * used for asking the driver to perform a TDLS operation. 1548607ca46eSDavid Howells * 1549607ca46eSDavid Howells * @NL80211_ATTR_DEVICE_AP_SME: This u32 attribute may be listed for devices 1550607ca46eSDavid Howells * that have AP support to indicate that they have the AP SME integrated 1551607ca46eSDavid Howells * with support for the features listed in this attribute, see 1552607ca46eSDavid Howells * &enum nl80211_ap_sme_features. 1553607ca46eSDavid Howells * 1554607ca46eSDavid Howells * @NL80211_ATTR_DONT_WAIT_FOR_ACK: Used with %NL80211_CMD_FRAME, this tells 1555607ca46eSDavid Howells * the driver to not wait for an acknowledgement. Note that due to this, 1556607ca46eSDavid Howells * it will also not give a status callback nor return a cookie. This is 1557607ca46eSDavid Howells * mostly useful for probe responses to save airtime. 1558607ca46eSDavid Howells * 1559607ca46eSDavid Howells * @NL80211_ATTR_FEATURE_FLAGS: This u32 attribute contains flags from 1560607ca46eSDavid Howells * &enum nl80211_feature_flags and is advertised in wiphy information. 1561607ca46eSDavid Howells * @NL80211_ATTR_PROBE_RESP_OFFLOAD: Indicates that the HW responds to probe 1562607ca46eSDavid Howells * requests while operating in AP-mode. 1563607ca46eSDavid Howells * This attribute holds a bitmap of the supported protocols for 1564607ca46eSDavid Howells * offloading (see &enum nl80211_probe_resp_offload_support_attr). 1565607ca46eSDavid Howells * 1566607ca46eSDavid Howells * @NL80211_ATTR_PROBE_RESP: Probe Response template data. Contains the entire 1567607ca46eSDavid Howells * probe-response frame. The DA field in the 802.11 header is zero-ed out, 1568607ca46eSDavid Howells * to be filled by the FW. 1569607ca46eSDavid Howells * @NL80211_ATTR_DISABLE_HT: Force HT capable interfaces to disable 1570607ca46eSDavid Howells * this feature. Currently, only supported in mac80211 drivers. 1571607ca46eSDavid Howells * @NL80211_ATTR_HT_CAPABILITY_MASK: Specify which bits of the 1572607ca46eSDavid Howells * ATTR_HT_CAPABILITY to which attention should be paid. 1573607ca46eSDavid Howells * Currently, only mac80211 NICs support this feature. 1574607ca46eSDavid Howells * The values that may be configured are: 1575607ca46eSDavid Howells * MCS rates, MAX-AMSDU, HT-20-40 and HT_CAP_SGI_40 1576607ca46eSDavid Howells * AMPDU density and AMPDU factor. 1577607ca46eSDavid Howells * All values are treated as suggestions and may be ignored 1578607ca46eSDavid Howells * by the driver as required. The actual values may be seen in 1579607ca46eSDavid Howells * the station debugfs ht_caps file. 1580607ca46eSDavid Howells * 1581607ca46eSDavid Howells * @NL80211_ATTR_DFS_REGION: region for regulatory rules which this country 1582607ca46eSDavid Howells * abides to when initiating radiation on DFS channels. A country maps 1583607ca46eSDavid Howells * to one DFS region. 1584607ca46eSDavid Howells * 1585607ca46eSDavid Howells * @NL80211_ATTR_NOACK_MAP: This u16 bitmap contains the No Ack Policy of 1586607ca46eSDavid Howells * up to 16 TIDs. 1587607ca46eSDavid Howells * 1588607ca46eSDavid Howells * @NL80211_ATTR_INACTIVITY_TIMEOUT: timeout value in seconds, this can be 1589607ca46eSDavid Howells * used by the drivers which has MLME in firmware and does not have support 1590607ca46eSDavid Howells * to report per station tx/rx activity to free up the staion entry from 1591607ca46eSDavid Howells * the list. This needs to be used when the driver advertises the 1592607ca46eSDavid Howells * capability to timeout the stations. 1593607ca46eSDavid Howells * 1594607ca46eSDavid Howells * @NL80211_ATTR_RX_SIGNAL_DBM: signal strength in dBm (as a 32-bit int); 1595607ca46eSDavid Howells * this attribute is (depending on the driver capabilities) added to 1596607ca46eSDavid Howells * received frames indicated with %NL80211_CMD_FRAME. 1597607ca46eSDavid Howells * 1598607ca46eSDavid Howells * @NL80211_ATTR_BG_SCAN_PERIOD: Background scan period in seconds 1599607ca46eSDavid Howells * or 0 to disable background scan. 1600607ca46eSDavid Howells * 1601607ca46eSDavid Howells * @NL80211_ATTR_USER_REG_HINT_TYPE: type of regulatory hint passed from 1602607ca46eSDavid Howells * userspace. If unset it is assumed the hint comes directly from 1603607ca46eSDavid Howells * a user. If set code could specify exactly what type of source 1604607ca46eSDavid Howells * was used to provide the hint. For the different types of 1605607ca46eSDavid Howells * allowed user regulatory hints see nl80211_user_reg_hint_type. 1606607ca46eSDavid Howells * 1607607ca46eSDavid Howells * @NL80211_ATTR_CONN_FAILED_REASON: The reason for which AP has rejected 1608607ca46eSDavid Howells * the connection request from a station. nl80211_connect_failed_reason 1609607ca46eSDavid Howells * enum has different reasons of connection failure. 1610607ca46eSDavid Howells * 1611e39e5b5eSJouni Malinen * @NL80211_ATTR_SAE_DATA: SAE elements in Authentication frames. This starts 1612e39e5b5eSJouni Malinen * with the Authentication transaction sequence number field. 1613e39e5b5eSJouni Malinen * 1614f461be3eSMahesh Palivela * @NL80211_ATTR_VHT_CAPABILITY: VHT Capability information element (from 1615f461be3eSMahesh Palivela * association request when used with NL80211_CMD_NEW_STATION) 1616f461be3eSMahesh Palivela * 1617ed473771SSam Leffler * @NL80211_ATTR_SCAN_FLAGS: scan request control flags (u32) 1618ed473771SSam Leffler * 161953cabad7SJohannes Berg * @NL80211_ATTR_P2P_CTWINDOW: P2P GO Client Traffic Window (u8), used with 162053cabad7SJohannes Berg * the START_AP and SET_BSS commands 162153cabad7SJohannes Berg * @NL80211_ATTR_P2P_OPPPS: P2P GO opportunistic PS (u8), used with the 162253cabad7SJohannes Berg * START_AP and SET_BSS commands. This can have the values 0 or 1; 162353cabad7SJohannes Berg * if not given in START_AP 0 is assumed, if not given in SET_BSS 162453cabad7SJohannes Berg * no change is made. 162553cabad7SJohannes Berg * 16263b1c5a53SMarco Porsch * @NL80211_ATTR_LOCAL_MESH_POWER_MODE: local mesh STA link-specific power mode 16273b1c5a53SMarco Porsch * defined in &enum nl80211_mesh_power_mode. 16283b1c5a53SMarco Porsch * 162977765eafSVasanthakumar Thiagarajan * @NL80211_ATTR_ACL_POLICY: ACL policy, see &enum nl80211_acl_policy, 163077765eafSVasanthakumar Thiagarajan * carried in a u32 attribute 163177765eafSVasanthakumar Thiagarajan * 163277765eafSVasanthakumar Thiagarajan * @NL80211_ATTR_MAC_ADDRS: Array of nested MAC addresses, used for 163377765eafSVasanthakumar Thiagarajan * MAC ACL. 163477765eafSVasanthakumar Thiagarajan * 163577765eafSVasanthakumar Thiagarajan * @NL80211_ATTR_MAC_ACL_MAX: u32 attribute to advertise the maximum 163677765eafSVasanthakumar Thiagarajan * number of MAC addresses that a device can support for MAC 163777765eafSVasanthakumar Thiagarajan * ACL. 163877765eafSVasanthakumar Thiagarajan * 163904f39047SSimon Wunderlich * @NL80211_ATTR_RADAR_EVENT: Type of radar event for notification to userspace, 164004f39047SSimon Wunderlich * contains a value of enum nl80211_radar_event (u32). 164104f39047SSimon Wunderlich * 1642a50df0c4SJohannes Berg * @NL80211_ATTR_EXT_CAPA: 802.11 extended capabilities that the kernel driver 1643a50df0c4SJohannes Berg * has and handles. The format is the same as the IE contents. See 1644a50df0c4SJohannes Berg * 802.11-2012 8.4.2.29 for more information. 1645a50df0c4SJohannes Berg * @NL80211_ATTR_EXT_CAPA_MASK: Extended capabilities that the kernel driver 1646a50df0c4SJohannes Berg * has set in the %NL80211_ATTR_EXT_CAPA value, for multibit fields. 1647a50df0c4SJohannes Berg * 16489d62a986SJouni Malinen * @NL80211_ATTR_STA_CAPABILITY: Station capabilities (u16) are advertised to 16499d62a986SJouni Malinen * the driver, e.g., to enable TDLS power save (PU-APSD). 16509d62a986SJouni Malinen * 16519d62a986SJouni Malinen * @NL80211_ATTR_STA_EXT_CAPABILITY: Station extended capabilities are 16529d62a986SJouni Malinen * advertised to the driver, e.g., to enable TDLS off channel operations 16539d62a986SJouni Malinen * and PU-APSD. 16549d62a986SJouni Malinen * 16553713b4e3SJohannes Berg * @NL80211_ATTR_PROTOCOL_FEATURES: global nl80211 feature flags, see 16563713b4e3SJohannes Berg * &enum nl80211_protocol_features, the attribute is a u32. 16573713b4e3SJohannes Berg * 16583713b4e3SJohannes Berg * @NL80211_ATTR_SPLIT_WIPHY_DUMP: flag attribute, userspace supports 16593713b4e3SJohannes Berg * receiving the data for a single wiphy split across multiple 16603713b4e3SJohannes Berg * messages, given with wiphy dump message 16613713b4e3SJohannes Berg * 1662355199e0SJouni Malinen * @NL80211_ATTR_MDID: Mobility Domain Identifier 1663355199e0SJouni Malinen * 1664355199e0SJouni Malinen * @NL80211_ATTR_IE_RIC: Resource Information Container Information 1665355199e0SJouni Malinen * Element 1666355199e0SJouni Malinen * 16675de17984SArend van Spriel * @NL80211_ATTR_CRIT_PROT_ID: critical protocol identifier requiring increased 16685de17984SArend van Spriel * reliability, see &enum nl80211_crit_proto_id (u16). 16695de17984SArend van Spriel * @NL80211_ATTR_MAX_CRIT_PROT_DURATION: duration in milliseconds in which 16705de17984SArend van Spriel * the connection should have increased reliability (u16). 16715de17984SArend van Spriel * 16725e4b6f56SJouni Malinen * @NL80211_ATTR_PEER_AID: Association ID for the peer TDLS station (u16). 16735e4b6f56SJouni Malinen * This is similar to @NL80211_ATTR_STA_AID but with a difference of being 16745e4b6f56SJouni Malinen * allowed to be used with the first @NL80211_CMD_SET_STATION command to 16755e4b6f56SJouni Malinen * update a TDLS peer STA entry. 16765e4b6f56SJouni Malinen * 1677be29b99aSAmitkumar Karwar * @NL80211_ATTR_COALESCE_RULE: Coalesce rule information. 1678be29b99aSAmitkumar Karwar * 167916ef1fe2SSimon Wunderlich * @NL80211_ATTR_CH_SWITCH_COUNT: u32 attribute specifying the number of TBTT's 168016ef1fe2SSimon Wunderlich * until the channel switch event. 168116ef1fe2SSimon Wunderlich * @NL80211_ATTR_CH_SWITCH_BLOCK_TX: flag attribute specifying that transmission 168216ef1fe2SSimon Wunderlich * must be blocked on the current channel (before the channel switch 168316ef1fe2SSimon Wunderlich * operation). 168416ef1fe2SSimon Wunderlich * @NL80211_ATTR_CSA_IES: Nested set of attributes containing the IE information 168516ef1fe2SSimon Wunderlich * for the time while performing a channel switch. 16869a774c78SAndrei Otcheretianski * @NL80211_ATTR_CSA_C_OFF_BEACON: An array of offsets (u16) to the channel 16879a774c78SAndrei Otcheretianski * switch counters in the beacons tail (%NL80211_ATTR_BEACON_TAIL). 16889a774c78SAndrei Otcheretianski * @NL80211_ATTR_CSA_C_OFF_PRESP: An array of offsets (u16) to the channel 16899a774c78SAndrei Otcheretianski * switch counters in the probe response (%NL80211_ATTR_PROBE_RESP). 169016ef1fe2SSimon Wunderlich * 169119504cf5SVladimir Kondratiev * @NL80211_ATTR_RXMGMT_FLAGS: flags for nl80211_send_mgmt(), u32. 169219504cf5SVladimir Kondratiev * As specified in the &enum nl80211_rxmgmt_flags. 169319504cf5SVladimir Kondratiev * 1694c01fc9adSSunil Dutt * @NL80211_ATTR_STA_SUPPORTED_CHANNELS: array of supported channels. 1695c01fc9adSSunil Dutt * 1696c01fc9adSSunil Dutt * @NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES: array of supported 1697c01fc9adSSunil Dutt * supported operating classes. 1698c01fc9adSSunil Dutt * 16995336fa88SSimon Wunderlich * @NL80211_ATTR_HANDLE_DFS: A flag indicating whether user space 17005336fa88SSimon Wunderlich * controls DFS operation in IBSS mode. If the flag is included in 17015336fa88SSimon Wunderlich * %NL80211_CMD_JOIN_IBSS request, the driver will allow use of DFS 17025336fa88SSimon Wunderlich * channels and reports radar events to userspace. Userspace is required 17035336fa88SSimon Wunderlich * to react to radar events, e.g. initiate a channel switch or leave the 17045336fa88SSimon Wunderlich * IBSS network. 17055336fa88SSimon Wunderlich * 170601e0daa4SFelix Fietkau * @NL80211_ATTR_SUPPORT_5_MHZ: A flag indicating that the device supports 170701e0daa4SFelix Fietkau * 5 MHz channel bandwidth. 170801e0daa4SFelix Fietkau * @NL80211_ATTR_SUPPORT_10_MHZ: A flag indicating that the device supports 170901e0daa4SFelix Fietkau * 10 MHz channel bandwidth. 171001e0daa4SFelix Fietkau * 171160f4a7b1SMarek Kwaczynski * @NL80211_ATTR_OPMODE_NOTIF: Operating mode field from Operating Mode 171260f4a7b1SMarek Kwaczynski * Notification Element based on association request when used with 171360f4a7b1SMarek Kwaczynski * %NL80211_CMD_NEW_STATION; u8 attribute. 171460f4a7b1SMarek Kwaczynski * 1715ad7e718cSJohannes Berg * @NL80211_ATTR_VENDOR_ID: The vendor ID, either a 24-bit OUI or, if 1716ad7e718cSJohannes Berg * %NL80211_VENDOR_ID_IS_LINUX is set, a special Linux ID (not used yet) 1717ad7e718cSJohannes Berg * @NL80211_ATTR_VENDOR_SUBCMD: vendor sub-command 1718ad7e718cSJohannes Berg * @NL80211_ATTR_VENDOR_DATA: data for the vendor command, if any; this 1719ad7e718cSJohannes Berg * attribute is also used for vendor command feature advertisement 1720567ffc35SJohannes Berg * @NL80211_ATTR_VENDOR_EVENTS: used for event list advertising in the wiphy 1721567ffc35SJohannes Berg * info, containing a nested array of possible events 1722ad7e718cSJohannes Berg * 1723fa9ffc74SKyeyoon Park * @NL80211_ATTR_QOS_MAP: IP DSCP mapping for Interworking QoS mapping. This 1724fa9ffc74SKyeyoon Park * data is in the format defined for the payload of the QoS Map Set element 1725fa9ffc74SKyeyoon Park * in IEEE Std 802.11-2012, 8.4.2.97. 1726fa9ffc74SKyeyoon Park * 17271df4a510SJouni Malinen * @NL80211_ATTR_MAC_HINT: MAC address recommendation as initial BSS 17281df4a510SJouni Malinen * @NL80211_ATTR_WIPHY_FREQ_HINT: frequency of the recommended initial BSS 17291df4a510SJouni Malinen * 1730b43504cfSJouni Malinen * @NL80211_ATTR_MAX_AP_ASSOC_STA: Device attribute that indicates how many 1731b43504cfSJouni Malinen * associated stations are supported in AP mode (including P2P GO); u32. 1732b43504cfSJouni Malinen * Since drivers may not have a fixed limit on the maximum number (e.g., 1733b43504cfSJouni Malinen * other concurrent operations may affect this), drivers are allowed to 1734b43504cfSJouni Malinen * advertise values that cannot always be met. In such cases, an attempt 1735b43504cfSJouni Malinen * to add a new station entry with @NL80211_CMD_NEW_STATION may fail. 1736b43504cfSJouni Malinen * 173734d22ce2SAndrei Otcheretianski * @NL80211_ATTR_CSA_C_OFFSETS_TX: An array of csa counter offsets (u16) which 173834d22ce2SAndrei Otcheretianski * should be updated when the frame is transmitted. 17399a774c78SAndrei Otcheretianski * @NL80211_ATTR_MAX_CSA_COUNTERS: U8 attribute used to advertise the maximum 17409a774c78SAndrei Otcheretianski * supported number of csa counters. 174134d22ce2SAndrei Otcheretianski * 1742df942e7bSSunil Dutt Undekari * @NL80211_ATTR_TDLS_PEER_CAPABILITY: flags for TDLS peer capabilities, u32. 1743df942e7bSSunil Dutt Undekari * As specified in the &enum nl80211_tdls_peer_capability. 1744df942e7bSSunil Dutt Undekari * 174518e5ca65SJukka Rissanen * @NL80211_ATTR_SOCKET_OWNER: Flag attribute, if set during interface 174678f22b6aSJohannes Berg * creation then the new interface will be owned by the netlink socket 174718e5ca65SJukka Rissanen * that created it and will be destroyed when the socket is closed. 174893a1e86cSJukka Rissanen * If set during scheduled scan start then the new scan req will be 174993a1e86cSJukka Rissanen * owned by the netlink socket that created it and the scheduled scan will 175093a1e86cSJukka Rissanen * be stopped when the socket is closed. 175105050753SIlan peer * If set during configuration of regulatory indoor operation then the 175205050753SIlan peer * regulatory indoor configuration would be owned by the netlink socket 175305050753SIlan peer * that configured the indoor setting, and the indoor operation would be 175405050753SIlan peer * cleared when the socket is closed. 1755cb3b7d87SAyala Beker * If set during NAN interface creation, the interface will be destroyed 1756cb3b7d87SAyala Beker * if the socket is closed just like any other interface. Moreover, only 1757cb3b7d87SAyala Beker * the netlink socket that created the interface will be allowed to add 1758cb3b7d87SAyala Beker * and remove functions. NAN notifications will be sent in unicast to that 1759cb3b7d87SAyala Beker * socket. Without this attribute, any socket can add functions and the 1760cb3b7d87SAyala Beker * notifications will be sent to the %NL80211_MCGRP_NAN multicast group. 176178f22b6aSJohannes Berg * 176231fa97c5SArik Nemtsov * @NL80211_ATTR_TDLS_INITIATOR: flag attribute indicating the current end is 176331fa97c5SArik Nemtsov * the TDLS link initiator. 176431fa97c5SArik Nemtsov * 1765bab5ab7dSAssaf Krauss * @NL80211_ATTR_USE_RRM: flag for indicating whether the current connection 1766bab5ab7dSAssaf Krauss * shall support Radio Resource Measurements (11k). This attribute can be 1767bab5ab7dSAssaf Krauss * used with %NL80211_CMD_ASSOCIATE and %NL80211_CMD_CONNECT requests. 1768bab5ab7dSAssaf Krauss * User space applications are expected to use this flag only if the 1769bab5ab7dSAssaf Krauss * underlying device supports these minimal RRM features: 1770bab5ab7dSAssaf Krauss * %NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES, 1771bab5ab7dSAssaf Krauss * %NL80211_FEATURE_QUIET, 17720c9ca11bSBeni Lev * Or, if global RRM is supported, see: 17730c9ca11bSBeni Lev * %NL80211_EXT_FEATURE_RRM 1774bab5ab7dSAssaf Krauss * If this flag is used, driver must add the Power Capabilities IE to the 1775bab5ab7dSAssaf Krauss * association request. In addition, it must also set the RRM capability 1776bab5ab7dSAssaf Krauss * flag in the association request's Capability Info field. 1777bab5ab7dSAssaf Krauss * 17783057dbfdSLorenzo Bianconi * @NL80211_ATTR_WIPHY_DYN_ACK: flag attribute used to enable ACK timeout 17793057dbfdSLorenzo Bianconi * estimation algorithm (dynack). In order to activate dynack 17803057dbfdSLorenzo Bianconi * %NL80211_FEATURE_ACKTO_ESTIMATION feature flag must be set by lower 17813057dbfdSLorenzo Bianconi * drivers to indicate dynack capability. Dynack is automatically disabled 17823057dbfdSLorenzo Bianconi * setting valid value for coverage class. 17833057dbfdSLorenzo Bianconi * 1784960d01acSJohannes Berg * @NL80211_ATTR_TSID: a TSID value (u8 attribute) 1785960d01acSJohannes Berg * @NL80211_ATTR_USER_PRIO: user priority value (u8 attribute) 1786960d01acSJohannes Berg * @NL80211_ATTR_ADMITTED_TIME: admitted time in units of 32 microseconds 1787960d01acSJohannes Berg * (per second) (u16 attribute) 1788960d01acSJohannes Berg * 178918998c38SEliad Peller * @NL80211_ATTR_SMPS_MODE: SMPS mode to use (ap mode). see 179018998c38SEliad Peller * &enum nl80211_smps_mode. 179118998c38SEliad Peller * 17921057d35eSArik Nemtsov * @NL80211_ATTR_OPER_CLASS: operating class 17931057d35eSArik Nemtsov * 1794ad2b26abSJohannes Berg * @NL80211_ATTR_MAC_MASK: MAC address mask 1795ad2b26abSJohannes Berg * 17961bdd716cSArik Nemtsov * @NL80211_ATTR_WIPHY_SELF_MANAGED_REG: flag attribute indicating this device 17971bdd716cSArik Nemtsov * is self-managing its regulatory information and any regulatory domain 17981bdd716cSArik Nemtsov * obtained from it is coming from the device's wiphy and not the global 17991bdd716cSArik Nemtsov * cfg80211 regdomain. 18001bdd716cSArik Nemtsov * 1801d75bb06bSGautam Kumar Shukla * @NL80211_ATTR_EXT_FEATURES: extended feature flags contained in a byte 1802d75bb06bSGautam Kumar Shukla * array. The feature flags are identified by their bit index (see &enum 1803d75bb06bSGautam Kumar Shukla * nl80211_ext_feature_index). The bit index is ordered starting at the 1804d75bb06bSGautam Kumar Shukla * least-significant bit of the first byte in the array, ie. bit index 0 1805d75bb06bSGautam Kumar Shukla * is located at bit 0 of byte 0. bit index 25 would be located at bit 1 1806d75bb06bSGautam Kumar Shukla * of byte 3 (u8 array). 1807d75bb06bSGautam Kumar Shukla * 180811f78ac3SJohannes Berg * @NL80211_ATTR_SURVEY_RADIO_STATS: Request overall radio statistics to be 180911f78ac3SJohannes Berg * returned along with other survey data. If set, @NL80211_CMD_GET_SURVEY 181011f78ac3SJohannes Berg * may return a survey entry without a channel indicating global radio 181111f78ac3SJohannes Berg * statistics (only some values are valid and make sense.) 181211f78ac3SJohannes Berg * For devices that don't return such an entry even then, the information 181311f78ac3SJohannes Berg * should be contained in the result as the sum of the respective counters 181411f78ac3SJohannes Berg * over all channels. 181511f78ac3SJohannes Berg * 18163a323d4eSLuciano Coelho * @NL80211_ATTR_SCHED_SCAN_DELAY: delay before the first cycle of a 1817cf595922SLuca Coelho * scheduled scan is started. Or the delay before a WoWLAN 1818cf595922SLuca Coelho * net-detect scan is started, counting from the moment the 1819cf595922SLuca Coelho * system is suspended. This value is a u32, in seconds. 182005050753SIlan peer 182105050753SIlan peer * @NL80211_ATTR_REG_INDOOR: flag attribute, if set indicates that the device 182205050753SIlan peer * is operating in an indoor environment. 18239c748934SLuciano Coelho * 18243b06d277SAvraham Stern * @NL80211_ATTR_MAX_NUM_SCHED_SCAN_PLANS: maximum number of scan plans for 18253b06d277SAvraham Stern * scheduled scan supported by the device (u32), a wiphy attribute. 18263b06d277SAvraham Stern * @NL80211_ATTR_MAX_SCAN_PLAN_INTERVAL: maximum interval (in seconds) for 18273b06d277SAvraham Stern * a scan plan (u32), a wiphy attribute. 18283b06d277SAvraham Stern * @NL80211_ATTR_MAX_SCAN_PLAN_ITERATIONS: maximum number of iterations in 18293b06d277SAvraham Stern * a scan plan (u32), a wiphy attribute. 18303b06d277SAvraham Stern * @NL80211_ATTR_SCHED_SCAN_PLANS: a list of scan plans for scheduled scan. 18313b06d277SAvraham Stern * Each scan plan defines the number of scan iterations and the interval 18323b06d277SAvraham Stern * between scans. The last scan plan will always run infinitely, 18333b06d277SAvraham Stern * thus it must not specify the number of iterations, only the interval 18343b06d277SAvraham Stern * between scans. The scan plans are executed sequentially. 18353b06d277SAvraham Stern * Each scan plan is a nested attribute of &enum nl80211_sched_scan_plan. 183634d50519SLior David * @NL80211_ATTR_PBSS: flag attribute. If set it means operate 183734d50519SLior David * in a PBSS. Specified in %NL80211_CMD_CONNECT to request 183834d50519SLior David * connecting to a PCP, and in %NL80211_CMD_START_AP to start 183934d50519SLior David * a PCP instead of AP. Relevant for DMG networks only. 184038de03d2SArend van Spriel * @NL80211_ATTR_BSS_SELECT: nested attribute for driver supporting the 184138de03d2SArend van Spriel * BSS selection feature. When used with %NL80211_CMD_GET_WIPHY it contains 184238de03d2SArend van Spriel * attributes according &enum nl80211_bss_select_attr to indicate what 184338de03d2SArend van Spriel * BSS selection behaviours are supported. When used with %NL80211_CMD_CONNECT 184438de03d2SArend van Spriel * it contains the behaviour-specific attribute containing the parameters for 184538de03d2SArend van Spriel * BSS selection to be done by driver and/or firmware. 18463b06d277SAvraham Stern * 184717b94247SAyala Beker * @NL80211_ATTR_STA_SUPPORT_P2P_PS: whether P2P PS mechanism supported 184817b94247SAyala Beker * or not. u8, one of the values of &enum nl80211_sta_p2p_ps_status 184917b94247SAyala Beker * 18509b95fe59SJohannes Berg * @NL80211_ATTR_PAD: attribute used for padding for 64-bit alignment 18519b95fe59SJohannes Berg * 1852019ae3a9SKanchanapally, Vidyullatha * @NL80211_ATTR_IFTYPE_EXT_CAPA: Nested attribute of the following attributes: 1853019ae3a9SKanchanapally, Vidyullatha * %NL80211_ATTR_IFTYPE, %NL80211_ATTR_EXT_CAPA, 1854019ae3a9SKanchanapally, Vidyullatha * %NL80211_ATTR_EXT_CAPA_MASK, to specify the extended capabilities per 1855019ae3a9SKanchanapally, Vidyullatha * interface type. 1856019ae3a9SKanchanapally, Vidyullatha * 1857c6e6a0c8SAviya Erenfeld * @NL80211_ATTR_MU_MIMO_GROUP_DATA: array of 24 bytes that defines a MU-MIMO 1858c6e6a0c8SAviya Erenfeld * groupID for monitor mode. 1859c6e6a0c8SAviya Erenfeld * The first 8 bytes are a mask that defines the membership in each 1860c6e6a0c8SAviya Erenfeld * group (there are 64 groups, group 0 and 63 are reserved), 1861c6e6a0c8SAviya Erenfeld * each bit represents a group and set to 1 for being a member in 1862c6e6a0c8SAviya Erenfeld * that group and 0 for not being a member. 1863c6e6a0c8SAviya Erenfeld * The remaining 16 bytes define the position in each group: 2 bits for 1864c6e6a0c8SAviya Erenfeld * each group. 1865c6e6a0c8SAviya Erenfeld * (smaller group numbers represented on most significant bits and bigger 1866c6e6a0c8SAviya Erenfeld * group numbers on least significant bits.) 1867c6e6a0c8SAviya Erenfeld * This attribute is used only if all interfaces are in monitor mode. 1868c6e6a0c8SAviya Erenfeld * Set this attribute in order to monitor packets using the given MU-MIMO 1869c6e6a0c8SAviya Erenfeld * groupID data. 1870c6e6a0c8SAviya Erenfeld * to turn off that feature set all the bits of the groupID to zero. 1871c6e6a0c8SAviya Erenfeld * @NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR: mac address for the sniffer to follow 1872c6e6a0c8SAviya Erenfeld * when using MU-MIMO air sniffer. 1873c6e6a0c8SAviya Erenfeld * to turn that feature off set an invalid mac address 1874c6e6a0c8SAviya Erenfeld * (e.g. FF:FF:FF:FF:FF:FF) 1875c6e6a0c8SAviya Erenfeld * 18761d76250bSAvraham Stern * @NL80211_ATTR_SCAN_START_TIME_TSF: The time at which the scan was actually 18771d76250bSAvraham Stern * started (u64). The time is the TSF of the BSS the interface that 18781d76250bSAvraham Stern * requested the scan is connected to (if available, otherwise this 18791d76250bSAvraham Stern * attribute must not be included). 18801d76250bSAvraham Stern * @NL80211_ATTR_SCAN_START_TIME_TSF_BSSID: The BSS according to which 18811d76250bSAvraham Stern * %NL80211_ATTR_SCAN_START_TIME_TSF is set. 18821d76250bSAvraham Stern * @NL80211_ATTR_MEASUREMENT_DURATION: measurement duration in TUs (u16). If 18831d76250bSAvraham Stern * %NL80211_ATTR_MEASUREMENT_DURATION_MANDATORY is not set, this is the 18841d76250bSAvraham Stern * maximum measurement duration allowed. This attribute is used with 18851d76250bSAvraham Stern * measurement requests. It can also be used with %NL80211_CMD_TRIGGER_SCAN 18861d76250bSAvraham Stern * if the scan is used for beacon report radio measurement. 18871d76250bSAvraham Stern * @NL80211_ATTR_MEASUREMENT_DURATION_MANDATORY: flag attribute that indicates 18881d76250bSAvraham Stern * that the duration specified with %NL80211_ATTR_MEASUREMENT_DURATION is 18891d76250bSAvraham Stern * mandatory. If this flag is not set, the duration is the maximum duration 18901d76250bSAvraham Stern * and the actual measurement duration may be shorter. 18911d76250bSAvraham Stern * 18927d27a0baSMasashi Honma * @NL80211_ATTR_MESH_PEER_AID: Association ID for the mesh peer (u16). This is 18937d27a0baSMasashi Honma * used to pull the stored data for mesh peer in power save state. 18947d27a0baSMasashi Honma * 1895cb3b7d87SAyala Beker * @NL80211_ATTR_NAN_MASTER_PREF: the master preference to be used by 1896cb3b7d87SAyala Beker * %NL80211_CMD_START_NAN. Its type is u8 and it can't be 0. 1897cb3b7d87SAyala Beker * Also, values 1 and 255 are reserved for certification purposes and 1898cb3b7d87SAyala Beker * should not be used during a normal device operation. 1899cb3b7d87SAyala Beker * @NL80211_ATTR_NAN_DUAL: NAN dual band operation config (see 1900cb3b7d87SAyala Beker * &enum nl80211_nan_dual_band_conf). This attribute is used with 1901cb3b7d87SAyala Beker * %NL80211_CMD_START_NAN. 1902cb3b7d87SAyala Beker * 19038cd4d456SLuciano Coelho * @NUM_NL80211_ATTR: total number of nl80211_attrs available 1904607ca46eSDavid Howells * @NL80211_ATTR_MAX: highest attribute number currently defined 1905607ca46eSDavid Howells * @__NL80211_ATTR_AFTER_LAST: internal use 1906607ca46eSDavid Howells */ 1907607ca46eSDavid Howells enum nl80211_attrs { 1908607ca46eSDavid Howells /* don't change the order or add anything between, this is ABI! */ 1909607ca46eSDavid Howells NL80211_ATTR_UNSPEC, 1910607ca46eSDavid Howells 1911607ca46eSDavid Howells NL80211_ATTR_WIPHY, 1912607ca46eSDavid Howells NL80211_ATTR_WIPHY_NAME, 1913607ca46eSDavid Howells 1914607ca46eSDavid Howells NL80211_ATTR_IFINDEX, 1915607ca46eSDavid Howells NL80211_ATTR_IFNAME, 1916607ca46eSDavid Howells NL80211_ATTR_IFTYPE, 1917607ca46eSDavid Howells 1918607ca46eSDavid Howells NL80211_ATTR_MAC, 1919607ca46eSDavid Howells 1920607ca46eSDavid Howells NL80211_ATTR_KEY_DATA, 1921607ca46eSDavid Howells NL80211_ATTR_KEY_IDX, 1922607ca46eSDavid Howells NL80211_ATTR_KEY_CIPHER, 1923607ca46eSDavid Howells NL80211_ATTR_KEY_SEQ, 1924607ca46eSDavid Howells NL80211_ATTR_KEY_DEFAULT, 1925607ca46eSDavid Howells 1926607ca46eSDavid Howells NL80211_ATTR_BEACON_INTERVAL, 1927607ca46eSDavid Howells NL80211_ATTR_DTIM_PERIOD, 1928607ca46eSDavid Howells NL80211_ATTR_BEACON_HEAD, 1929607ca46eSDavid Howells NL80211_ATTR_BEACON_TAIL, 1930607ca46eSDavid Howells 1931607ca46eSDavid Howells NL80211_ATTR_STA_AID, 1932607ca46eSDavid Howells NL80211_ATTR_STA_FLAGS, 1933607ca46eSDavid Howells NL80211_ATTR_STA_LISTEN_INTERVAL, 1934607ca46eSDavid Howells NL80211_ATTR_STA_SUPPORTED_RATES, 1935607ca46eSDavid Howells NL80211_ATTR_STA_VLAN, 1936607ca46eSDavid Howells NL80211_ATTR_STA_INFO, 1937607ca46eSDavid Howells 1938607ca46eSDavid Howells NL80211_ATTR_WIPHY_BANDS, 1939607ca46eSDavid Howells 1940607ca46eSDavid Howells NL80211_ATTR_MNTR_FLAGS, 1941607ca46eSDavid Howells 1942607ca46eSDavid Howells NL80211_ATTR_MESH_ID, 1943607ca46eSDavid Howells NL80211_ATTR_STA_PLINK_ACTION, 1944607ca46eSDavid Howells NL80211_ATTR_MPATH_NEXT_HOP, 1945607ca46eSDavid Howells NL80211_ATTR_MPATH_INFO, 1946607ca46eSDavid Howells 1947607ca46eSDavid Howells NL80211_ATTR_BSS_CTS_PROT, 1948607ca46eSDavid Howells NL80211_ATTR_BSS_SHORT_PREAMBLE, 1949607ca46eSDavid Howells NL80211_ATTR_BSS_SHORT_SLOT_TIME, 1950607ca46eSDavid Howells 1951607ca46eSDavid Howells NL80211_ATTR_HT_CAPABILITY, 1952607ca46eSDavid Howells 1953607ca46eSDavid Howells NL80211_ATTR_SUPPORTED_IFTYPES, 1954607ca46eSDavid Howells 1955607ca46eSDavid Howells NL80211_ATTR_REG_ALPHA2, 1956607ca46eSDavid Howells NL80211_ATTR_REG_RULES, 1957607ca46eSDavid Howells 1958607ca46eSDavid Howells NL80211_ATTR_MESH_CONFIG, 1959607ca46eSDavid Howells 1960607ca46eSDavid Howells NL80211_ATTR_BSS_BASIC_RATES, 1961607ca46eSDavid Howells 1962607ca46eSDavid Howells NL80211_ATTR_WIPHY_TXQ_PARAMS, 1963607ca46eSDavid Howells NL80211_ATTR_WIPHY_FREQ, 1964607ca46eSDavid Howells NL80211_ATTR_WIPHY_CHANNEL_TYPE, 1965607ca46eSDavid Howells 1966607ca46eSDavid Howells NL80211_ATTR_KEY_DEFAULT_MGMT, 1967607ca46eSDavid Howells 1968607ca46eSDavid Howells NL80211_ATTR_MGMT_SUBTYPE, 1969607ca46eSDavid Howells NL80211_ATTR_IE, 1970607ca46eSDavid Howells 1971607ca46eSDavid Howells NL80211_ATTR_MAX_NUM_SCAN_SSIDS, 1972607ca46eSDavid Howells 1973607ca46eSDavid Howells NL80211_ATTR_SCAN_FREQUENCIES, 1974607ca46eSDavid Howells NL80211_ATTR_SCAN_SSIDS, 1975607ca46eSDavid Howells NL80211_ATTR_GENERATION, /* replaces old SCAN_GENERATION */ 1976607ca46eSDavid Howells NL80211_ATTR_BSS, 1977607ca46eSDavid Howells 1978607ca46eSDavid Howells NL80211_ATTR_REG_INITIATOR, 1979607ca46eSDavid Howells NL80211_ATTR_REG_TYPE, 1980607ca46eSDavid Howells 1981607ca46eSDavid Howells NL80211_ATTR_SUPPORTED_COMMANDS, 1982607ca46eSDavid Howells 1983607ca46eSDavid Howells NL80211_ATTR_FRAME, 1984607ca46eSDavid Howells NL80211_ATTR_SSID, 1985607ca46eSDavid Howells NL80211_ATTR_AUTH_TYPE, 1986607ca46eSDavid Howells NL80211_ATTR_REASON_CODE, 1987607ca46eSDavid Howells 1988607ca46eSDavid Howells NL80211_ATTR_KEY_TYPE, 1989607ca46eSDavid Howells 1990607ca46eSDavid Howells NL80211_ATTR_MAX_SCAN_IE_LEN, 1991607ca46eSDavid Howells NL80211_ATTR_CIPHER_SUITES, 1992607ca46eSDavid Howells 1993607ca46eSDavid Howells NL80211_ATTR_FREQ_BEFORE, 1994607ca46eSDavid Howells NL80211_ATTR_FREQ_AFTER, 1995607ca46eSDavid Howells 1996607ca46eSDavid Howells NL80211_ATTR_FREQ_FIXED, 1997607ca46eSDavid Howells 1998607ca46eSDavid Howells 1999607ca46eSDavid Howells NL80211_ATTR_WIPHY_RETRY_SHORT, 2000607ca46eSDavid Howells NL80211_ATTR_WIPHY_RETRY_LONG, 2001607ca46eSDavid Howells NL80211_ATTR_WIPHY_FRAG_THRESHOLD, 2002607ca46eSDavid Howells NL80211_ATTR_WIPHY_RTS_THRESHOLD, 2003607ca46eSDavid Howells 2004607ca46eSDavid Howells NL80211_ATTR_TIMED_OUT, 2005607ca46eSDavid Howells 2006607ca46eSDavid Howells NL80211_ATTR_USE_MFP, 2007607ca46eSDavid Howells 2008607ca46eSDavid Howells NL80211_ATTR_STA_FLAGS2, 2009607ca46eSDavid Howells 2010607ca46eSDavid Howells NL80211_ATTR_CONTROL_PORT, 2011607ca46eSDavid Howells 2012607ca46eSDavid Howells NL80211_ATTR_TESTDATA, 2013607ca46eSDavid Howells 2014607ca46eSDavid Howells NL80211_ATTR_PRIVACY, 2015607ca46eSDavid Howells 2016607ca46eSDavid Howells NL80211_ATTR_DISCONNECTED_BY_AP, 2017607ca46eSDavid Howells NL80211_ATTR_STATUS_CODE, 2018607ca46eSDavid Howells 2019607ca46eSDavid Howells NL80211_ATTR_CIPHER_SUITES_PAIRWISE, 2020607ca46eSDavid Howells NL80211_ATTR_CIPHER_SUITE_GROUP, 2021607ca46eSDavid Howells NL80211_ATTR_WPA_VERSIONS, 2022607ca46eSDavid Howells NL80211_ATTR_AKM_SUITES, 2023607ca46eSDavid Howells 2024607ca46eSDavid Howells NL80211_ATTR_REQ_IE, 2025607ca46eSDavid Howells NL80211_ATTR_RESP_IE, 2026607ca46eSDavid Howells 2027607ca46eSDavid Howells NL80211_ATTR_PREV_BSSID, 2028607ca46eSDavid Howells 2029607ca46eSDavid Howells NL80211_ATTR_KEY, 2030607ca46eSDavid Howells NL80211_ATTR_KEYS, 2031607ca46eSDavid Howells 2032607ca46eSDavid Howells NL80211_ATTR_PID, 2033607ca46eSDavid Howells 2034607ca46eSDavid Howells NL80211_ATTR_4ADDR, 2035607ca46eSDavid Howells 2036607ca46eSDavid Howells NL80211_ATTR_SURVEY_INFO, 2037607ca46eSDavid Howells 2038607ca46eSDavid Howells NL80211_ATTR_PMKID, 2039607ca46eSDavid Howells NL80211_ATTR_MAX_NUM_PMKIDS, 2040607ca46eSDavid Howells 2041607ca46eSDavid Howells NL80211_ATTR_DURATION, 2042607ca46eSDavid Howells 2043607ca46eSDavid Howells NL80211_ATTR_COOKIE, 2044607ca46eSDavid Howells 2045607ca46eSDavid Howells NL80211_ATTR_WIPHY_COVERAGE_CLASS, 2046607ca46eSDavid Howells 2047607ca46eSDavid Howells NL80211_ATTR_TX_RATES, 2048607ca46eSDavid Howells 2049607ca46eSDavid Howells NL80211_ATTR_FRAME_MATCH, 2050607ca46eSDavid Howells 2051607ca46eSDavid Howells NL80211_ATTR_ACK, 2052607ca46eSDavid Howells 2053607ca46eSDavid Howells NL80211_ATTR_PS_STATE, 2054607ca46eSDavid Howells 2055607ca46eSDavid Howells NL80211_ATTR_CQM, 2056607ca46eSDavid Howells 2057607ca46eSDavid Howells NL80211_ATTR_LOCAL_STATE_CHANGE, 2058607ca46eSDavid Howells 2059607ca46eSDavid Howells NL80211_ATTR_AP_ISOLATE, 2060607ca46eSDavid Howells 2061607ca46eSDavid Howells NL80211_ATTR_WIPHY_TX_POWER_SETTING, 2062607ca46eSDavid Howells NL80211_ATTR_WIPHY_TX_POWER_LEVEL, 2063607ca46eSDavid Howells 2064607ca46eSDavid Howells NL80211_ATTR_TX_FRAME_TYPES, 2065607ca46eSDavid Howells NL80211_ATTR_RX_FRAME_TYPES, 2066607ca46eSDavid Howells NL80211_ATTR_FRAME_TYPE, 2067607ca46eSDavid Howells 2068607ca46eSDavid Howells NL80211_ATTR_CONTROL_PORT_ETHERTYPE, 2069607ca46eSDavid Howells NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT, 2070607ca46eSDavid Howells 2071607ca46eSDavid Howells NL80211_ATTR_SUPPORT_IBSS_RSN, 2072607ca46eSDavid Howells 2073607ca46eSDavid Howells NL80211_ATTR_WIPHY_ANTENNA_TX, 2074607ca46eSDavid Howells NL80211_ATTR_WIPHY_ANTENNA_RX, 2075607ca46eSDavid Howells 2076607ca46eSDavid Howells NL80211_ATTR_MCAST_RATE, 2077607ca46eSDavid Howells 2078607ca46eSDavid Howells NL80211_ATTR_OFFCHANNEL_TX_OK, 2079607ca46eSDavid Howells 2080607ca46eSDavid Howells NL80211_ATTR_BSS_HT_OPMODE, 2081607ca46eSDavid Howells 2082607ca46eSDavid Howells NL80211_ATTR_KEY_DEFAULT_TYPES, 2083607ca46eSDavid Howells 2084607ca46eSDavid Howells NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION, 2085607ca46eSDavid Howells 2086607ca46eSDavid Howells NL80211_ATTR_MESH_SETUP, 2087607ca46eSDavid Howells 2088607ca46eSDavid Howells NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX, 2089607ca46eSDavid Howells NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX, 2090607ca46eSDavid Howells 2091607ca46eSDavid Howells NL80211_ATTR_SUPPORT_MESH_AUTH, 2092607ca46eSDavid Howells NL80211_ATTR_STA_PLINK_STATE, 2093607ca46eSDavid Howells 2094607ca46eSDavid Howells NL80211_ATTR_WOWLAN_TRIGGERS, 2095607ca46eSDavid Howells NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED, 2096607ca46eSDavid Howells 2097607ca46eSDavid Howells NL80211_ATTR_SCHED_SCAN_INTERVAL, 2098607ca46eSDavid Howells 2099607ca46eSDavid Howells NL80211_ATTR_INTERFACE_COMBINATIONS, 2100607ca46eSDavid Howells NL80211_ATTR_SOFTWARE_IFTYPES, 2101607ca46eSDavid Howells 2102607ca46eSDavid Howells NL80211_ATTR_REKEY_DATA, 2103607ca46eSDavid Howells 2104607ca46eSDavid Howells NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS, 2105607ca46eSDavid Howells NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN, 2106607ca46eSDavid Howells 2107607ca46eSDavid Howells NL80211_ATTR_SCAN_SUPP_RATES, 2108607ca46eSDavid Howells 2109607ca46eSDavid Howells NL80211_ATTR_HIDDEN_SSID, 2110607ca46eSDavid Howells 2111607ca46eSDavid Howells NL80211_ATTR_IE_PROBE_RESP, 2112607ca46eSDavid Howells NL80211_ATTR_IE_ASSOC_RESP, 2113607ca46eSDavid Howells 2114607ca46eSDavid Howells NL80211_ATTR_STA_WME, 2115607ca46eSDavid Howells NL80211_ATTR_SUPPORT_AP_UAPSD, 2116607ca46eSDavid Howells 2117607ca46eSDavid Howells NL80211_ATTR_ROAM_SUPPORT, 2118607ca46eSDavid Howells 2119607ca46eSDavid Howells NL80211_ATTR_SCHED_SCAN_MATCH, 2120607ca46eSDavid Howells NL80211_ATTR_MAX_MATCH_SETS, 2121607ca46eSDavid Howells 2122607ca46eSDavid Howells NL80211_ATTR_PMKSA_CANDIDATE, 2123607ca46eSDavid Howells 2124607ca46eSDavid Howells NL80211_ATTR_TX_NO_CCK_RATE, 2125607ca46eSDavid Howells 2126607ca46eSDavid Howells NL80211_ATTR_TDLS_ACTION, 2127607ca46eSDavid Howells NL80211_ATTR_TDLS_DIALOG_TOKEN, 2128607ca46eSDavid Howells NL80211_ATTR_TDLS_OPERATION, 2129607ca46eSDavid Howells NL80211_ATTR_TDLS_SUPPORT, 2130607ca46eSDavid Howells NL80211_ATTR_TDLS_EXTERNAL_SETUP, 2131607ca46eSDavid Howells 2132607ca46eSDavid Howells NL80211_ATTR_DEVICE_AP_SME, 2133607ca46eSDavid Howells 2134607ca46eSDavid Howells NL80211_ATTR_DONT_WAIT_FOR_ACK, 2135607ca46eSDavid Howells 2136607ca46eSDavid Howells NL80211_ATTR_FEATURE_FLAGS, 2137607ca46eSDavid Howells 2138607ca46eSDavid Howells NL80211_ATTR_PROBE_RESP_OFFLOAD, 2139607ca46eSDavid Howells 2140607ca46eSDavid Howells NL80211_ATTR_PROBE_RESP, 2141607ca46eSDavid Howells 2142607ca46eSDavid Howells NL80211_ATTR_DFS_REGION, 2143607ca46eSDavid Howells 2144607ca46eSDavid Howells NL80211_ATTR_DISABLE_HT, 2145607ca46eSDavid Howells NL80211_ATTR_HT_CAPABILITY_MASK, 2146607ca46eSDavid Howells 2147607ca46eSDavid Howells NL80211_ATTR_NOACK_MAP, 2148607ca46eSDavid Howells 2149607ca46eSDavid Howells NL80211_ATTR_INACTIVITY_TIMEOUT, 2150607ca46eSDavid Howells 2151607ca46eSDavid Howells NL80211_ATTR_RX_SIGNAL_DBM, 2152607ca46eSDavid Howells 2153607ca46eSDavid Howells NL80211_ATTR_BG_SCAN_PERIOD, 2154607ca46eSDavid Howells 2155607ca46eSDavid Howells NL80211_ATTR_WDEV, 2156607ca46eSDavid Howells 2157607ca46eSDavid Howells NL80211_ATTR_USER_REG_HINT_TYPE, 2158607ca46eSDavid Howells 2159607ca46eSDavid Howells NL80211_ATTR_CONN_FAILED_REASON, 2160607ca46eSDavid Howells 2161e39e5b5eSJouni Malinen NL80211_ATTR_SAE_DATA, 2162e39e5b5eSJouni Malinen 2163f461be3eSMahesh Palivela NL80211_ATTR_VHT_CAPABILITY, 2164f461be3eSMahesh Palivela 2165ed473771SSam Leffler NL80211_ATTR_SCAN_FLAGS, 2166ed473771SSam Leffler 21673d9d1d66SJohannes Berg NL80211_ATTR_CHANNEL_WIDTH, 21683d9d1d66SJohannes Berg NL80211_ATTR_CENTER_FREQ1, 21693d9d1d66SJohannes Berg NL80211_ATTR_CENTER_FREQ2, 21703d9d1d66SJohannes Berg 217153cabad7SJohannes Berg NL80211_ATTR_P2P_CTWINDOW, 217253cabad7SJohannes Berg NL80211_ATTR_P2P_OPPPS, 217353cabad7SJohannes Berg 21743b1c5a53SMarco Porsch NL80211_ATTR_LOCAL_MESH_POWER_MODE, 21753b1c5a53SMarco Porsch 217677765eafSVasanthakumar Thiagarajan NL80211_ATTR_ACL_POLICY, 217777765eafSVasanthakumar Thiagarajan 217877765eafSVasanthakumar Thiagarajan NL80211_ATTR_MAC_ADDRS, 217977765eafSVasanthakumar Thiagarajan 218077765eafSVasanthakumar Thiagarajan NL80211_ATTR_MAC_ACL_MAX, 218177765eafSVasanthakumar Thiagarajan 218204f39047SSimon Wunderlich NL80211_ATTR_RADAR_EVENT, 218304f39047SSimon Wunderlich 2184a50df0c4SJohannes Berg NL80211_ATTR_EXT_CAPA, 2185a50df0c4SJohannes Berg NL80211_ATTR_EXT_CAPA_MASK, 2186a50df0c4SJohannes Berg 21879d62a986SJouni Malinen NL80211_ATTR_STA_CAPABILITY, 21889d62a986SJouni Malinen NL80211_ATTR_STA_EXT_CAPABILITY, 21899d62a986SJouni Malinen 21903713b4e3SJohannes Berg NL80211_ATTR_PROTOCOL_FEATURES, 21913713b4e3SJohannes Berg NL80211_ATTR_SPLIT_WIPHY_DUMP, 21923713b4e3SJohannes Berg 2193ee2aca34SJohannes Berg NL80211_ATTR_DISABLE_VHT, 2194ee2aca34SJohannes Berg NL80211_ATTR_VHT_CAPABILITY_MASK, 2195ee2aca34SJohannes Berg 2196355199e0SJouni Malinen NL80211_ATTR_MDID, 2197355199e0SJouni Malinen NL80211_ATTR_IE_RIC, 2198355199e0SJouni Malinen 21995de17984SArend van Spriel NL80211_ATTR_CRIT_PROT_ID, 22005de17984SArend van Spriel NL80211_ATTR_MAX_CRIT_PROT_DURATION, 22015de17984SArend van Spriel 22025e4b6f56SJouni Malinen NL80211_ATTR_PEER_AID, 22035e4b6f56SJouni Malinen 2204be29b99aSAmitkumar Karwar NL80211_ATTR_COALESCE_RULE, 2205be29b99aSAmitkumar Karwar 220616ef1fe2SSimon Wunderlich NL80211_ATTR_CH_SWITCH_COUNT, 220716ef1fe2SSimon Wunderlich NL80211_ATTR_CH_SWITCH_BLOCK_TX, 220816ef1fe2SSimon Wunderlich NL80211_ATTR_CSA_IES, 220916ef1fe2SSimon Wunderlich NL80211_ATTR_CSA_C_OFF_BEACON, 221016ef1fe2SSimon Wunderlich NL80211_ATTR_CSA_C_OFF_PRESP, 221116ef1fe2SSimon Wunderlich 221219504cf5SVladimir Kondratiev NL80211_ATTR_RXMGMT_FLAGS, 221319504cf5SVladimir Kondratiev 2214c01fc9adSSunil Dutt NL80211_ATTR_STA_SUPPORTED_CHANNELS, 2215c01fc9adSSunil Dutt 2216c01fc9adSSunil Dutt NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES, 2217c01fc9adSSunil Dutt 22185336fa88SSimon Wunderlich NL80211_ATTR_HANDLE_DFS, 22195336fa88SSimon Wunderlich 222001e0daa4SFelix Fietkau NL80211_ATTR_SUPPORT_5_MHZ, 222101e0daa4SFelix Fietkau NL80211_ATTR_SUPPORT_10_MHZ, 222201e0daa4SFelix Fietkau 222360f4a7b1SMarek Kwaczynski NL80211_ATTR_OPMODE_NOTIF, 222460f4a7b1SMarek Kwaczynski 2225ad7e718cSJohannes Berg NL80211_ATTR_VENDOR_ID, 2226ad7e718cSJohannes Berg NL80211_ATTR_VENDOR_SUBCMD, 2227ad7e718cSJohannes Berg NL80211_ATTR_VENDOR_DATA, 2228567ffc35SJohannes Berg NL80211_ATTR_VENDOR_EVENTS, 2229ad7e718cSJohannes Berg 2230fa9ffc74SKyeyoon Park NL80211_ATTR_QOS_MAP, 2231fa9ffc74SKyeyoon Park 22321df4a510SJouni Malinen NL80211_ATTR_MAC_HINT, 22331df4a510SJouni Malinen NL80211_ATTR_WIPHY_FREQ_HINT, 22341df4a510SJouni Malinen 2235b43504cfSJouni Malinen NL80211_ATTR_MAX_AP_ASSOC_STA, 2236b43504cfSJouni Malinen 2237df942e7bSSunil Dutt Undekari NL80211_ATTR_TDLS_PEER_CAPABILITY, 2238df942e7bSSunil Dutt Undekari 223918e5ca65SJukka Rissanen NL80211_ATTR_SOCKET_OWNER, 224078f22b6aSJohannes Berg 224134d22ce2SAndrei Otcheretianski NL80211_ATTR_CSA_C_OFFSETS_TX, 22429a774c78SAndrei Otcheretianski NL80211_ATTR_MAX_CSA_COUNTERS, 224334d22ce2SAndrei Otcheretianski 224431fa97c5SArik Nemtsov NL80211_ATTR_TDLS_INITIATOR, 224531fa97c5SArik Nemtsov 2246bab5ab7dSAssaf Krauss NL80211_ATTR_USE_RRM, 2247bab5ab7dSAssaf Krauss 22483057dbfdSLorenzo Bianconi NL80211_ATTR_WIPHY_DYN_ACK, 22493057dbfdSLorenzo Bianconi 2250960d01acSJohannes Berg NL80211_ATTR_TSID, 2251960d01acSJohannes Berg NL80211_ATTR_USER_PRIO, 2252960d01acSJohannes Berg NL80211_ATTR_ADMITTED_TIME, 2253960d01acSJohannes Berg 225418998c38SEliad Peller NL80211_ATTR_SMPS_MODE, 225518998c38SEliad Peller 22561057d35eSArik Nemtsov NL80211_ATTR_OPER_CLASS, 22571057d35eSArik Nemtsov 2258ad2b26abSJohannes Berg NL80211_ATTR_MAC_MASK, 2259ad2b26abSJohannes Berg 22601bdd716cSArik Nemtsov NL80211_ATTR_WIPHY_SELF_MANAGED_REG, 22611bdd716cSArik Nemtsov 2262d75bb06bSGautam Kumar Shukla NL80211_ATTR_EXT_FEATURES, 2263d75bb06bSGautam Kumar Shukla 226411f78ac3SJohannes Berg NL80211_ATTR_SURVEY_RADIO_STATS, 226511f78ac3SJohannes Berg 22664b681c82SVadim Kochan NL80211_ATTR_NETNS_FD, 22674b681c82SVadim Kochan 22689c748934SLuciano Coelho NL80211_ATTR_SCHED_SCAN_DELAY, 22699c748934SLuciano Coelho 227005050753SIlan peer NL80211_ATTR_REG_INDOOR, 227105050753SIlan peer 22723b06d277SAvraham Stern NL80211_ATTR_MAX_NUM_SCHED_SCAN_PLANS, 22733b06d277SAvraham Stern NL80211_ATTR_MAX_SCAN_PLAN_INTERVAL, 22743b06d277SAvraham Stern NL80211_ATTR_MAX_SCAN_PLAN_ITERATIONS, 22753b06d277SAvraham Stern NL80211_ATTR_SCHED_SCAN_PLANS, 22763b06d277SAvraham Stern 227734d50519SLior David NL80211_ATTR_PBSS, 227834d50519SLior David 227938de03d2SArend van Spriel NL80211_ATTR_BSS_SELECT, 228038de03d2SArend van Spriel 228117b94247SAyala Beker NL80211_ATTR_STA_SUPPORT_P2P_PS, 228217b94247SAyala Beker 22832dad624eSNicolas Dichtel NL80211_ATTR_PAD, 22842dad624eSNicolas Dichtel 2285019ae3a9SKanchanapally, Vidyullatha NL80211_ATTR_IFTYPE_EXT_CAPA, 2286019ae3a9SKanchanapally, Vidyullatha 2287c6e6a0c8SAviya Erenfeld NL80211_ATTR_MU_MIMO_GROUP_DATA, 2288c6e6a0c8SAviya Erenfeld NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR, 2289c6e6a0c8SAviya Erenfeld 22901d76250bSAvraham Stern NL80211_ATTR_SCAN_START_TIME_TSF, 22911d76250bSAvraham Stern NL80211_ATTR_SCAN_START_TIME_TSF_BSSID, 22921d76250bSAvraham Stern NL80211_ATTR_MEASUREMENT_DURATION, 22931d76250bSAvraham Stern NL80211_ATTR_MEASUREMENT_DURATION_MANDATORY, 22941d76250bSAvraham Stern 22957d27a0baSMasashi Honma NL80211_ATTR_MESH_PEER_AID, 22967d27a0baSMasashi Honma 2297cb3b7d87SAyala Beker NL80211_ATTR_NAN_MASTER_PREF, 2298cb3b7d87SAyala Beker NL80211_ATTR_NAN_DUAL, 2299cb3b7d87SAyala Beker 2300607ca46eSDavid Howells /* add attributes here, update the policy in nl80211.c */ 2301607ca46eSDavid Howells 2302607ca46eSDavid Howells __NL80211_ATTR_AFTER_LAST, 23038cd4d456SLuciano Coelho NUM_NL80211_ATTR = __NL80211_ATTR_AFTER_LAST, 2304607ca46eSDavid Howells NL80211_ATTR_MAX = __NL80211_ATTR_AFTER_LAST - 1 2305607ca46eSDavid Howells }; 2306607ca46eSDavid Howells 2307607ca46eSDavid Howells /* source-level API compatibility */ 2308607ca46eSDavid Howells #define NL80211_ATTR_SCAN_GENERATION NL80211_ATTR_GENERATION 2309607ca46eSDavid Howells #define NL80211_ATTR_MESH_PARAMS NL80211_ATTR_MESH_CONFIG 231018e5ca65SJukka Rissanen #define NL80211_ATTR_IFACE_SOCKET_OWNER NL80211_ATTR_SOCKET_OWNER 2311607ca46eSDavid Howells 2312607ca46eSDavid Howells /* 2313607ca46eSDavid Howells * Allow user space programs to use #ifdef on new attributes by defining them 2314607ca46eSDavid Howells * here 2315607ca46eSDavid Howells */ 2316607ca46eSDavid Howells #define NL80211_CMD_CONNECT NL80211_CMD_CONNECT 2317607ca46eSDavid Howells #define NL80211_ATTR_HT_CAPABILITY NL80211_ATTR_HT_CAPABILITY 2318607ca46eSDavid Howells #define NL80211_ATTR_BSS_BASIC_RATES NL80211_ATTR_BSS_BASIC_RATES 2319607ca46eSDavid Howells #define NL80211_ATTR_WIPHY_TXQ_PARAMS NL80211_ATTR_WIPHY_TXQ_PARAMS 2320607ca46eSDavid Howells #define NL80211_ATTR_WIPHY_FREQ NL80211_ATTR_WIPHY_FREQ 2321607ca46eSDavid Howells #define NL80211_ATTR_WIPHY_CHANNEL_TYPE NL80211_ATTR_WIPHY_CHANNEL_TYPE 2322607ca46eSDavid Howells #define NL80211_ATTR_MGMT_SUBTYPE NL80211_ATTR_MGMT_SUBTYPE 2323607ca46eSDavid Howells #define NL80211_ATTR_IE NL80211_ATTR_IE 2324607ca46eSDavid Howells #define NL80211_ATTR_REG_INITIATOR NL80211_ATTR_REG_INITIATOR 2325607ca46eSDavid Howells #define NL80211_ATTR_REG_TYPE NL80211_ATTR_REG_TYPE 2326607ca46eSDavid Howells #define NL80211_ATTR_FRAME NL80211_ATTR_FRAME 2327607ca46eSDavid Howells #define NL80211_ATTR_SSID NL80211_ATTR_SSID 2328607ca46eSDavid Howells #define NL80211_ATTR_AUTH_TYPE NL80211_ATTR_AUTH_TYPE 2329607ca46eSDavid Howells #define NL80211_ATTR_REASON_CODE NL80211_ATTR_REASON_CODE 2330607ca46eSDavid Howells #define NL80211_ATTR_CIPHER_SUITES_PAIRWISE NL80211_ATTR_CIPHER_SUITES_PAIRWISE 2331607ca46eSDavid Howells #define NL80211_ATTR_CIPHER_SUITE_GROUP NL80211_ATTR_CIPHER_SUITE_GROUP 2332607ca46eSDavid Howells #define NL80211_ATTR_WPA_VERSIONS NL80211_ATTR_WPA_VERSIONS 2333607ca46eSDavid Howells #define NL80211_ATTR_AKM_SUITES NL80211_ATTR_AKM_SUITES 2334607ca46eSDavid Howells #define NL80211_ATTR_KEY NL80211_ATTR_KEY 2335607ca46eSDavid Howells #define NL80211_ATTR_KEYS NL80211_ATTR_KEYS 2336607ca46eSDavid Howells #define NL80211_ATTR_FEATURE_FLAGS NL80211_ATTR_FEATURE_FLAGS 2337607ca46eSDavid Howells 2338607ca46eSDavid Howells #define NL80211_MAX_SUPP_RATES 32 2339607ca46eSDavid Howells #define NL80211_MAX_SUPP_HT_RATES 77 234079f241b4SArik Nemtsov #define NL80211_MAX_SUPP_REG_RULES 64 2341607ca46eSDavid Howells #define NL80211_TKIP_DATA_OFFSET_ENCR_KEY 0 2342607ca46eSDavid Howells #define NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY 16 2343607ca46eSDavid Howells #define NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY 24 2344607ca46eSDavid Howells #define NL80211_HT_CAPABILITY_LEN 26 2345f461be3eSMahesh Palivela #define NL80211_VHT_CAPABILITY_LEN 12 2346607ca46eSDavid Howells 2347607ca46eSDavid Howells #define NL80211_MAX_NR_CIPHER_SUITES 5 2348607ca46eSDavid Howells #define NL80211_MAX_NR_AKM_SUITES 2 2349607ca46eSDavid Howells 2350607ca46eSDavid Howells #define NL80211_MIN_REMAIN_ON_CHANNEL_TIME 10 2351607ca46eSDavid Howells 2352607ca46eSDavid Howells /* default RSSI threshold for scan results if none specified. */ 2353607ca46eSDavid Howells #define NL80211_SCAN_RSSI_THOLD_OFF -300 2354607ca46eSDavid Howells 2355607ca46eSDavid Howells #define NL80211_CQM_TXE_MAX_INTVL 1800 2356607ca46eSDavid Howells 2357607ca46eSDavid Howells /** 2358607ca46eSDavid Howells * enum nl80211_iftype - (virtual) interface types 2359607ca46eSDavid Howells * 2360607ca46eSDavid Howells * @NL80211_IFTYPE_UNSPECIFIED: unspecified type, driver decides 2361607ca46eSDavid Howells * @NL80211_IFTYPE_ADHOC: independent BSS member 2362607ca46eSDavid Howells * @NL80211_IFTYPE_STATION: managed BSS member 2363607ca46eSDavid Howells * @NL80211_IFTYPE_AP: access point 2364607ca46eSDavid Howells * @NL80211_IFTYPE_AP_VLAN: VLAN interface for access points; VLAN interfaces 2365607ca46eSDavid Howells * are a bit special in that they must always be tied to a pre-existing 2366607ca46eSDavid Howells * AP type interface. 2367607ca46eSDavid Howells * @NL80211_IFTYPE_WDS: wireless distribution interface 2368607ca46eSDavid Howells * @NL80211_IFTYPE_MONITOR: monitor interface receiving all frames 2369607ca46eSDavid Howells * @NL80211_IFTYPE_MESH_POINT: mesh point 2370607ca46eSDavid Howells * @NL80211_IFTYPE_P2P_CLIENT: P2P client 2371607ca46eSDavid Howells * @NL80211_IFTYPE_P2P_GO: P2P group owner 2372607ca46eSDavid Howells * @NL80211_IFTYPE_P2P_DEVICE: P2P device interface type, this is not a netdev 2373607ca46eSDavid Howells * and therefore can't be created in the normal ways, use the 2374607ca46eSDavid Howells * %NL80211_CMD_START_P2P_DEVICE and %NL80211_CMD_STOP_P2P_DEVICE 2375607ca46eSDavid Howells * commands to create and destroy one 23766e0bd6c3SRostislav Lisovy * @NL80211_IF_TYPE_OCB: Outside Context of a BSS 23776e0bd6c3SRostislav Lisovy * This mode corresponds to the MIB variable dot11OCBActivated=true 2378cb3b7d87SAyala Beker * @NL80211_IFTYPE_NAN: NAN device interface type (not a netdev) 2379607ca46eSDavid Howells * @NL80211_IFTYPE_MAX: highest interface type number currently defined 2380607ca46eSDavid Howells * @NUM_NL80211_IFTYPES: number of defined interface types 2381607ca46eSDavid Howells * 2382607ca46eSDavid Howells * These values are used with the %NL80211_ATTR_IFTYPE 2383607ca46eSDavid Howells * to set the type of an interface. 2384607ca46eSDavid Howells * 2385607ca46eSDavid Howells */ 2386607ca46eSDavid Howells enum nl80211_iftype { 2387607ca46eSDavid Howells NL80211_IFTYPE_UNSPECIFIED, 2388607ca46eSDavid Howells NL80211_IFTYPE_ADHOC, 2389607ca46eSDavid Howells NL80211_IFTYPE_STATION, 2390607ca46eSDavid Howells NL80211_IFTYPE_AP, 2391607ca46eSDavid Howells NL80211_IFTYPE_AP_VLAN, 2392607ca46eSDavid Howells NL80211_IFTYPE_WDS, 2393607ca46eSDavid Howells NL80211_IFTYPE_MONITOR, 2394607ca46eSDavid Howells NL80211_IFTYPE_MESH_POINT, 2395607ca46eSDavid Howells NL80211_IFTYPE_P2P_CLIENT, 2396607ca46eSDavid Howells NL80211_IFTYPE_P2P_GO, 2397607ca46eSDavid Howells NL80211_IFTYPE_P2P_DEVICE, 23986e0bd6c3SRostislav Lisovy NL80211_IFTYPE_OCB, 2399cb3b7d87SAyala Beker NL80211_IFTYPE_NAN, 2400607ca46eSDavid Howells 2401607ca46eSDavid Howells /* keep last */ 2402607ca46eSDavid Howells NUM_NL80211_IFTYPES, 2403607ca46eSDavid Howells NL80211_IFTYPE_MAX = NUM_NL80211_IFTYPES - 1 2404607ca46eSDavid Howells }; 2405607ca46eSDavid Howells 2406607ca46eSDavid Howells /** 2407607ca46eSDavid Howells * enum nl80211_sta_flags - station flags 2408607ca46eSDavid Howells * 2409607ca46eSDavid Howells * Station flags. When a station is added to an AP interface, it is 2410607ca46eSDavid Howells * assumed to be already associated (and hence authenticated.) 2411607ca46eSDavid Howells * 2412607ca46eSDavid Howells * @__NL80211_STA_FLAG_INVALID: attribute number 0 is reserved 2413607ca46eSDavid Howells * @NL80211_STA_FLAG_AUTHORIZED: station is authorized (802.1X) 2414607ca46eSDavid Howells * @NL80211_STA_FLAG_SHORT_PREAMBLE: station is capable of receiving frames 2415607ca46eSDavid Howells * with short barker preamble 2416607ca46eSDavid Howells * @NL80211_STA_FLAG_WME: station is WME/QoS capable 2417607ca46eSDavid Howells * @NL80211_STA_FLAG_MFP: station uses management frame protection 2418607ca46eSDavid Howells * @NL80211_STA_FLAG_AUTHENTICATED: station is authenticated 2419607ca46eSDavid Howells * @NL80211_STA_FLAG_TDLS_PEER: station is a TDLS peer -- this flag should 2420607ca46eSDavid Howells * only be used in managed mode (even in the flags mask). Note that the 2421607ca46eSDavid Howells * flag can't be changed, it is only valid while adding a station, and 2422607ca46eSDavid Howells * attempts to change it will silently be ignored (rather than rejected 2423607ca46eSDavid Howells * as errors.) 2424d582cffbSJohannes Berg * @NL80211_STA_FLAG_ASSOCIATED: station is associated; used with drivers 2425d582cffbSJohannes Berg * that support %NL80211_FEATURE_FULL_AP_CLIENT_STATE to transition a 2426d582cffbSJohannes Berg * previously added station into associated state 2427607ca46eSDavid Howells * @NL80211_STA_FLAG_MAX: highest station flag number currently defined 2428607ca46eSDavid Howells * @__NL80211_STA_FLAG_AFTER_LAST: internal use 2429607ca46eSDavid Howells */ 2430607ca46eSDavid Howells enum nl80211_sta_flags { 2431607ca46eSDavid Howells __NL80211_STA_FLAG_INVALID, 2432607ca46eSDavid Howells NL80211_STA_FLAG_AUTHORIZED, 2433607ca46eSDavid Howells NL80211_STA_FLAG_SHORT_PREAMBLE, 2434607ca46eSDavid Howells NL80211_STA_FLAG_WME, 2435607ca46eSDavid Howells NL80211_STA_FLAG_MFP, 2436607ca46eSDavid Howells NL80211_STA_FLAG_AUTHENTICATED, 2437607ca46eSDavid Howells NL80211_STA_FLAG_TDLS_PEER, 2438d582cffbSJohannes Berg NL80211_STA_FLAG_ASSOCIATED, 2439607ca46eSDavid Howells 2440607ca46eSDavid Howells /* keep last */ 2441607ca46eSDavid Howells __NL80211_STA_FLAG_AFTER_LAST, 2442607ca46eSDavid Howells NL80211_STA_FLAG_MAX = __NL80211_STA_FLAG_AFTER_LAST - 1 2443607ca46eSDavid Howells }; 2444607ca46eSDavid Howells 244517b94247SAyala Beker /** 244617b94247SAyala Beker * enum nl80211_sta_p2p_ps_status - station support of P2P PS 244717b94247SAyala Beker * 244817b94247SAyala Beker * @NL80211_P2P_PS_UNSUPPORTED: station doesn't support P2P PS mechanism 244917b94247SAyala Beker * @@NL80211_P2P_PS_SUPPORTED: station supports P2P PS mechanism 245017b94247SAyala Beker * @NUM_NL80211_P2P_PS_STATUS: number of values 245117b94247SAyala Beker */ 245217b94247SAyala Beker enum nl80211_sta_p2p_ps_status { 245317b94247SAyala Beker NL80211_P2P_PS_UNSUPPORTED = 0, 245417b94247SAyala Beker NL80211_P2P_PS_SUPPORTED, 245517b94247SAyala Beker 245617b94247SAyala Beker NUM_NL80211_P2P_PS_STATUS, 245717b94247SAyala Beker }; 245817b94247SAyala Beker 2459607ca46eSDavid Howells #define NL80211_STA_FLAG_MAX_OLD_API NL80211_STA_FLAG_TDLS_PEER 2460607ca46eSDavid Howells 2461607ca46eSDavid Howells /** 2462607ca46eSDavid Howells * struct nl80211_sta_flag_update - station flags mask/set 2463607ca46eSDavid Howells * @mask: mask of station flags to set 2464607ca46eSDavid Howells * @set: which values to set them to 2465607ca46eSDavid Howells * 2466607ca46eSDavid Howells * Both mask and set contain bits as per &enum nl80211_sta_flags. 2467607ca46eSDavid Howells */ 2468607ca46eSDavid Howells struct nl80211_sta_flag_update { 2469607ca46eSDavid Howells __u32 mask; 2470607ca46eSDavid Howells __u32 set; 2471607ca46eSDavid Howells } __attribute__((packed)); 2472607ca46eSDavid Howells 2473607ca46eSDavid Howells /** 2474607ca46eSDavid Howells * enum nl80211_rate_info - bitrate information 2475607ca46eSDavid Howells * 2476607ca46eSDavid Howells * These attribute types are used with %NL80211_STA_INFO_TXRATE 2477607ca46eSDavid Howells * when getting information about the bitrate of a station. 2478607ca46eSDavid Howells * There are 2 attributes for bitrate, a legacy one that represents 2479607ca46eSDavid Howells * a 16-bit value, and new one that represents a 32-bit value. 2480607ca46eSDavid Howells * If the rate value fits into 16 bit, both attributes are reported 2481607ca46eSDavid Howells * with the same value. If the rate is too high to fit into 16 bits 2482607ca46eSDavid Howells * (>6.5535Gbps) only 32-bit attribute is included. 2483607ca46eSDavid Howells * User space tools encouraged to use the 32-bit attribute and fall 2484607ca46eSDavid Howells * back to the 16-bit one for compatibility with older kernels. 2485607ca46eSDavid Howells * 2486607ca46eSDavid Howells * @__NL80211_RATE_INFO_INVALID: attribute number 0 is reserved 2487607ca46eSDavid Howells * @NL80211_RATE_INFO_BITRATE: total bitrate (u16, 100kbit/s) 2488607ca46eSDavid Howells * @NL80211_RATE_INFO_MCS: mcs index for 802.11n (u8) 2489db9c64cfSJohannes Berg * @NL80211_RATE_INFO_40_MHZ_WIDTH: 40 MHz dualchannel bitrate 2490607ca46eSDavid Howells * @NL80211_RATE_INFO_SHORT_GI: 400ns guard interval 2491607ca46eSDavid Howells * @NL80211_RATE_INFO_BITRATE32: total bitrate (u32, 100kbit/s) 2492607ca46eSDavid Howells * @NL80211_RATE_INFO_MAX: highest rate_info number currently defined 2493db9c64cfSJohannes Berg * @NL80211_RATE_INFO_VHT_MCS: MCS index for VHT (u8) 2494db9c64cfSJohannes Berg * @NL80211_RATE_INFO_VHT_NSS: number of streams in VHT (u8) 2495db9c64cfSJohannes Berg * @NL80211_RATE_INFO_80_MHZ_WIDTH: 80 MHz VHT rate 249697d910d0SJohannes Berg * @NL80211_RATE_INFO_80P80_MHZ_WIDTH: unused - 80+80 is treated the 249797d910d0SJohannes Berg * same as 160 for purposes of the bitrates 2498db9c64cfSJohannes Berg * @NL80211_RATE_INFO_160_MHZ_WIDTH: 160 MHz VHT rate 2499b51f3beeSJohannes Berg * @NL80211_RATE_INFO_10_MHZ_WIDTH: 10 MHz width - note that this is 2500b51f3beeSJohannes Berg * a legacy rate and will be reported as the actual bitrate, i.e. 2501b51f3beeSJohannes Berg * half the base (20 MHz) rate 2502b51f3beeSJohannes Berg * @NL80211_RATE_INFO_5_MHZ_WIDTH: 5 MHz width - note that this is 2503b51f3beeSJohannes Berg * a legacy rate and will be reported as the actual bitrate, i.e. 2504b51f3beeSJohannes Berg * a quarter of the base (20 MHz) rate 2505607ca46eSDavid Howells * @__NL80211_RATE_INFO_AFTER_LAST: internal use 2506607ca46eSDavid Howells */ 2507607ca46eSDavid Howells enum nl80211_rate_info { 2508607ca46eSDavid Howells __NL80211_RATE_INFO_INVALID, 2509607ca46eSDavid Howells NL80211_RATE_INFO_BITRATE, 2510607ca46eSDavid Howells NL80211_RATE_INFO_MCS, 2511607ca46eSDavid Howells NL80211_RATE_INFO_40_MHZ_WIDTH, 2512607ca46eSDavid Howells NL80211_RATE_INFO_SHORT_GI, 2513607ca46eSDavid Howells NL80211_RATE_INFO_BITRATE32, 2514db9c64cfSJohannes Berg NL80211_RATE_INFO_VHT_MCS, 2515db9c64cfSJohannes Berg NL80211_RATE_INFO_VHT_NSS, 2516db9c64cfSJohannes Berg NL80211_RATE_INFO_80_MHZ_WIDTH, 2517db9c64cfSJohannes Berg NL80211_RATE_INFO_80P80_MHZ_WIDTH, 2518db9c64cfSJohannes Berg NL80211_RATE_INFO_160_MHZ_WIDTH, 2519b51f3beeSJohannes Berg NL80211_RATE_INFO_10_MHZ_WIDTH, 2520b51f3beeSJohannes Berg NL80211_RATE_INFO_5_MHZ_WIDTH, 2521607ca46eSDavid Howells 2522607ca46eSDavid Howells /* keep last */ 2523607ca46eSDavid Howells __NL80211_RATE_INFO_AFTER_LAST, 2524607ca46eSDavid Howells NL80211_RATE_INFO_MAX = __NL80211_RATE_INFO_AFTER_LAST - 1 2525607ca46eSDavid Howells }; 2526607ca46eSDavid Howells 2527607ca46eSDavid Howells /** 2528607ca46eSDavid Howells * enum nl80211_sta_bss_param - BSS information collected by STA 2529607ca46eSDavid Howells * 2530607ca46eSDavid Howells * These attribute types are used with %NL80211_STA_INFO_BSS_PARAM 2531607ca46eSDavid Howells * when getting information about the bitrate of a station. 2532607ca46eSDavid Howells * 2533607ca46eSDavid Howells * @__NL80211_STA_BSS_PARAM_INVALID: attribute number 0 is reserved 2534607ca46eSDavid Howells * @NL80211_STA_BSS_PARAM_CTS_PROT: whether CTS protection is enabled (flag) 2535607ca46eSDavid Howells * @NL80211_STA_BSS_PARAM_SHORT_PREAMBLE: whether short preamble is enabled 2536607ca46eSDavid Howells * (flag) 2537607ca46eSDavid Howells * @NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME: whether short slot time is enabled 2538607ca46eSDavid Howells * (flag) 2539607ca46eSDavid Howells * @NL80211_STA_BSS_PARAM_DTIM_PERIOD: DTIM period for beaconing (u8) 2540607ca46eSDavid Howells * @NL80211_STA_BSS_PARAM_BEACON_INTERVAL: Beacon interval (u16) 2541607ca46eSDavid Howells * @NL80211_STA_BSS_PARAM_MAX: highest sta_bss_param number currently defined 2542607ca46eSDavid Howells * @__NL80211_STA_BSS_PARAM_AFTER_LAST: internal use 2543607ca46eSDavid Howells */ 2544607ca46eSDavid Howells enum nl80211_sta_bss_param { 2545607ca46eSDavid Howells __NL80211_STA_BSS_PARAM_INVALID, 2546607ca46eSDavid Howells NL80211_STA_BSS_PARAM_CTS_PROT, 2547607ca46eSDavid Howells NL80211_STA_BSS_PARAM_SHORT_PREAMBLE, 2548607ca46eSDavid Howells NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME, 2549607ca46eSDavid Howells NL80211_STA_BSS_PARAM_DTIM_PERIOD, 2550607ca46eSDavid Howells NL80211_STA_BSS_PARAM_BEACON_INTERVAL, 2551607ca46eSDavid Howells 2552607ca46eSDavid Howells /* keep last */ 2553607ca46eSDavid Howells __NL80211_STA_BSS_PARAM_AFTER_LAST, 2554607ca46eSDavid Howells NL80211_STA_BSS_PARAM_MAX = __NL80211_STA_BSS_PARAM_AFTER_LAST - 1 2555607ca46eSDavid Howells }; 2556607ca46eSDavid Howells 2557607ca46eSDavid Howells /** 2558607ca46eSDavid Howells * enum nl80211_sta_info - station information 2559607ca46eSDavid Howells * 2560607ca46eSDavid Howells * These attribute types are used with %NL80211_ATTR_STA_INFO 2561607ca46eSDavid Howells * when getting information about a station. 2562607ca46eSDavid Howells * 2563607ca46eSDavid Howells * @__NL80211_STA_INFO_INVALID: attribute number 0 is reserved 2564607ca46eSDavid Howells * @NL80211_STA_INFO_INACTIVE_TIME: time since last activity (u32, msecs) 25658d791361SJohannes Berg * @NL80211_STA_INFO_RX_BYTES: total received bytes (MPDU length) 25668d791361SJohannes Berg * (u32, from this station) 25678d791361SJohannes Berg * @NL80211_STA_INFO_TX_BYTES: total transmitted bytes (MPDU length) 25688d791361SJohannes Berg * (u32, to this station) 25698d791361SJohannes Berg * @NL80211_STA_INFO_RX_BYTES64: total received bytes (MPDU length) 25708d791361SJohannes Berg * (u64, from this station) 25718d791361SJohannes Berg * @NL80211_STA_INFO_TX_BYTES64: total transmitted bytes (MPDU length) 25728d791361SJohannes Berg * (u64, to this station) 2573607ca46eSDavid Howells * @NL80211_STA_INFO_SIGNAL: signal strength of last received PPDU (u8, dBm) 2574607ca46eSDavid Howells * @NL80211_STA_INFO_TX_BITRATE: current unicast tx rate, nested attribute 2575607ca46eSDavid Howells * containing info as possible, see &enum nl80211_rate_info 25768d791361SJohannes Berg * @NL80211_STA_INFO_RX_PACKETS: total received packet (MSDUs and MMPDUs) 25778d791361SJohannes Berg * (u32, from this station) 25788d791361SJohannes Berg * @NL80211_STA_INFO_TX_PACKETS: total transmitted packets (MSDUs and MMPDUs) 25798d791361SJohannes Berg * (u32, to this station) 25808d791361SJohannes Berg * @NL80211_STA_INFO_TX_RETRIES: total retries (MPDUs) (u32, to this station) 25818d791361SJohannes Berg * @NL80211_STA_INFO_TX_FAILED: total failed packets (MPDUs) 25828d791361SJohannes Berg * (u32, to this station) 2583607ca46eSDavid Howells * @NL80211_STA_INFO_SIGNAL_AVG: signal strength average (u8, dBm) 2584607ca46eSDavid Howells * @NL80211_STA_INFO_LLID: the station's mesh LLID 2585607ca46eSDavid Howells * @NL80211_STA_INFO_PLID: the station's mesh PLID 2586607ca46eSDavid Howells * @NL80211_STA_INFO_PLINK_STATE: peer link state for the station 2587607ca46eSDavid Howells * (see %enum nl80211_plink_state) 2588607ca46eSDavid Howells * @NL80211_STA_INFO_RX_BITRATE: last unicast data frame rx rate, nested 2589607ca46eSDavid Howells * attribute, like NL80211_STA_INFO_TX_BITRATE. 2590607ca46eSDavid Howells * @NL80211_STA_INFO_BSS_PARAM: current station's view of BSS, nested attribute 2591607ca46eSDavid Howells * containing info as possible, see &enum nl80211_sta_bss_param 2592607ca46eSDavid Howells * @NL80211_STA_INFO_CONNECTED_TIME: time since the station is last connected 2593607ca46eSDavid Howells * @NL80211_STA_INFO_STA_FLAGS: Contains a struct nl80211_sta_flag_update. 2594607ca46eSDavid Howells * @NL80211_STA_INFO_BEACON_LOSS: count of times beacon loss was detected (u32) 2595607ca46eSDavid Howells * @NL80211_STA_INFO_T_OFFSET: timing offset with respect to this STA (s64) 25963b1c5a53SMarco Porsch * @NL80211_STA_INFO_LOCAL_PM: local mesh STA link-specific power mode 25973b1c5a53SMarco Porsch * @NL80211_STA_INFO_PEER_PM: peer mesh STA link-specific power mode 25983b1c5a53SMarco Porsch * @NL80211_STA_INFO_NONPEER_PM: neighbor mesh STA power save mode towards 25993b1c5a53SMarco Porsch * non-peer STA 2600119363c7SFelix Fietkau * @NL80211_STA_INFO_CHAIN_SIGNAL: per-chain signal strength of last PPDU 2601119363c7SFelix Fietkau * Contains a nested array of signal strength attributes (u8, dBm) 2602119363c7SFelix Fietkau * @NL80211_STA_INFO_CHAIN_SIGNAL_AVG: per-chain signal strength average 2603119363c7SFelix Fietkau * Same format as NL80211_STA_INFO_CHAIN_SIGNAL. 2604867d849fSAntonio Quartulli * @NL80211_STA_EXPECTED_THROUGHPUT: expected throughput considering also the 2605867d849fSAntonio Quartulli * 802.11 header (u32, kbps) 2606319090bfSJohannes Berg * @NL80211_STA_INFO_RX_DROP_MISC: RX packets dropped for unspecified reasons 2607319090bfSJohannes Berg * (u64) 2608a76b1942SJohannes Berg * @NL80211_STA_INFO_BEACON_RX: number of beacons received from this peer (u64) 2609a76b1942SJohannes Berg * @NL80211_STA_INFO_BEACON_SIGNAL_AVG: signal strength average 2610a76b1942SJohannes Berg * for beacons only (u8, dBm) 26116de39808SJohannes Berg * @NL80211_STA_INFO_TID_STATS: per-TID statistics (see &enum nl80211_tid_stats) 26126de39808SJohannes Berg * This is a nested attribute where each the inner attribute number is the 26136de39808SJohannes Berg * TID+1 and the special TID 16 (i.e. value 17) is used for non-QoS frames; 26146de39808SJohannes Berg * each one of those is again nested with &enum nl80211_tid_stats 26156de39808SJohannes Berg * attributes carrying the actual values. 2616739960f1SMohammed Shafi Shajakhan * @NL80211_STA_INFO_RX_DURATION: aggregate PPDU duration for all frames 2617739960f1SMohammed Shafi Shajakhan * received from the station (u64, usec) 2618d686b920SJohannes Berg * @NL80211_STA_INFO_PAD: attribute used for padding for 64-bit alignment 2619607ca46eSDavid Howells * @__NL80211_STA_INFO_AFTER_LAST: internal 2620607ca46eSDavid Howells * @NL80211_STA_INFO_MAX: highest possible station info attribute 2621607ca46eSDavid Howells */ 2622607ca46eSDavid Howells enum nl80211_sta_info { 2623607ca46eSDavid Howells __NL80211_STA_INFO_INVALID, 2624607ca46eSDavid Howells NL80211_STA_INFO_INACTIVE_TIME, 2625607ca46eSDavid Howells NL80211_STA_INFO_RX_BYTES, 2626607ca46eSDavid Howells NL80211_STA_INFO_TX_BYTES, 2627607ca46eSDavid Howells NL80211_STA_INFO_LLID, 2628607ca46eSDavid Howells NL80211_STA_INFO_PLID, 2629607ca46eSDavid Howells NL80211_STA_INFO_PLINK_STATE, 2630607ca46eSDavid Howells NL80211_STA_INFO_SIGNAL, 2631607ca46eSDavid Howells NL80211_STA_INFO_TX_BITRATE, 2632607ca46eSDavid Howells NL80211_STA_INFO_RX_PACKETS, 2633607ca46eSDavid Howells NL80211_STA_INFO_TX_PACKETS, 2634607ca46eSDavid Howells NL80211_STA_INFO_TX_RETRIES, 2635607ca46eSDavid Howells NL80211_STA_INFO_TX_FAILED, 2636607ca46eSDavid Howells NL80211_STA_INFO_SIGNAL_AVG, 2637607ca46eSDavid Howells NL80211_STA_INFO_RX_BITRATE, 2638607ca46eSDavid Howells NL80211_STA_INFO_BSS_PARAM, 2639607ca46eSDavid Howells NL80211_STA_INFO_CONNECTED_TIME, 2640607ca46eSDavid Howells NL80211_STA_INFO_STA_FLAGS, 2641607ca46eSDavid Howells NL80211_STA_INFO_BEACON_LOSS, 2642607ca46eSDavid Howells NL80211_STA_INFO_T_OFFSET, 26433b1c5a53SMarco Porsch NL80211_STA_INFO_LOCAL_PM, 26443b1c5a53SMarco Porsch NL80211_STA_INFO_PEER_PM, 26453b1c5a53SMarco Porsch NL80211_STA_INFO_NONPEER_PM, 264642745e03SVladimir Kondratiev NL80211_STA_INFO_RX_BYTES64, 264742745e03SVladimir Kondratiev NL80211_STA_INFO_TX_BYTES64, 2648119363c7SFelix Fietkau NL80211_STA_INFO_CHAIN_SIGNAL, 2649119363c7SFelix Fietkau NL80211_STA_INFO_CHAIN_SIGNAL_AVG, 2650867d849fSAntonio Quartulli NL80211_STA_INFO_EXPECTED_THROUGHPUT, 2651319090bfSJohannes Berg NL80211_STA_INFO_RX_DROP_MISC, 2652a76b1942SJohannes Berg NL80211_STA_INFO_BEACON_RX, 2653a76b1942SJohannes Berg NL80211_STA_INFO_BEACON_SIGNAL_AVG, 26546de39808SJohannes Berg NL80211_STA_INFO_TID_STATS, 2655739960f1SMohammed Shafi Shajakhan NL80211_STA_INFO_RX_DURATION, 2656d686b920SJohannes Berg NL80211_STA_INFO_PAD, 2657607ca46eSDavid Howells 2658607ca46eSDavid Howells /* keep last */ 2659607ca46eSDavid Howells __NL80211_STA_INFO_AFTER_LAST, 2660607ca46eSDavid Howells NL80211_STA_INFO_MAX = __NL80211_STA_INFO_AFTER_LAST - 1 2661607ca46eSDavid Howells }; 2662607ca46eSDavid Howells 2663607ca46eSDavid Howells /** 26646de39808SJohannes Berg * enum nl80211_tid_stats - per TID statistics attributes 26656de39808SJohannes Berg * @__NL80211_TID_STATS_INVALID: attribute number 0 is reserved 26666de39808SJohannes Berg * @NL80211_TID_STATS_RX_MSDU: number of MSDUs received (u64) 26676de39808SJohannes Berg * @NL80211_TID_STATS_TX_MSDU: number of MSDUs transmitted (or 26686de39808SJohannes Berg * attempted to transmit; u64) 26696de39808SJohannes Berg * @NL80211_TID_STATS_TX_MSDU_RETRIES: number of retries for 26706de39808SJohannes Berg * transmitted MSDUs (not counting the first attempt; u64) 26716de39808SJohannes Berg * @NL80211_TID_STATS_TX_MSDU_FAILED: number of failed transmitted 26726de39808SJohannes Berg * MSDUs (u64) 2673d686b920SJohannes Berg * @NL80211_TID_STATS_PAD: attribute used for padding for 64-bit alignment 26746de39808SJohannes Berg * @NUM_NL80211_TID_STATS: number of attributes here 26756de39808SJohannes Berg * @NL80211_TID_STATS_MAX: highest numbered attribute here 26766de39808SJohannes Berg */ 26776de39808SJohannes Berg enum nl80211_tid_stats { 26786de39808SJohannes Berg __NL80211_TID_STATS_INVALID, 26796de39808SJohannes Berg NL80211_TID_STATS_RX_MSDU, 26806de39808SJohannes Berg NL80211_TID_STATS_TX_MSDU, 26816de39808SJohannes Berg NL80211_TID_STATS_TX_MSDU_RETRIES, 26826de39808SJohannes Berg NL80211_TID_STATS_TX_MSDU_FAILED, 2683d686b920SJohannes Berg NL80211_TID_STATS_PAD, 26846de39808SJohannes Berg 26856de39808SJohannes Berg /* keep last */ 26866de39808SJohannes Berg NUM_NL80211_TID_STATS, 26876de39808SJohannes Berg NL80211_TID_STATS_MAX = NUM_NL80211_TID_STATS - 1 26886de39808SJohannes Berg }; 26896de39808SJohannes Berg 26906de39808SJohannes Berg /** 2691607ca46eSDavid Howells * enum nl80211_mpath_flags - nl80211 mesh path flags 2692607ca46eSDavid Howells * 2693607ca46eSDavid Howells * @NL80211_MPATH_FLAG_ACTIVE: the mesh path is active 2694607ca46eSDavid Howells * @NL80211_MPATH_FLAG_RESOLVING: the mesh path discovery process is running 2695607ca46eSDavid Howells * @NL80211_MPATH_FLAG_SN_VALID: the mesh path contains a valid SN 2696607ca46eSDavid Howells * @NL80211_MPATH_FLAG_FIXED: the mesh path has been manually set 2697607ca46eSDavid Howells * @NL80211_MPATH_FLAG_RESOLVED: the mesh path discovery process succeeded 2698607ca46eSDavid Howells */ 2699607ca46eSDavid Howells enum nl80211_mpath_flags { 2700607ca46eSDavid Howells NL80211_MPATH_FLAG_ACTIVE = 1<<0, 2701607ca46eSDavid Howells NL80211_MPATH_FLAG_RESOLVING = 1<<1, 2702607ca46eSDavid Howells NL80211_MPATH_FLAG_SN_VALID = 1<<2, 2703607ca46eSDavid Howells NL80211_MPATH_FLAG_FIXED = 1<<3, 2704607ca46eSDavid Howells NL80211_MPATH_FLAG_RESOLVED = 1<<4, 2705607ca46eSDavid Howells }; 2706607ca46eSDavid Howells 2707607ca46eSDavid Howells /** 2708607ca46eSDavid Howells * enum nl80211_mpath_info - mesh path information 2709607ca46eSDavid Howells * 2710607ca46eSDavid Howells * These attribute types are used with %NL80211_ATTR_MPATH_INFO when getting 2711607ca46eSDavid Howells * information about a mesh path. 2712607ca46eSDavid Howells * 2713607ca46eSDavid Howells * @__NL80211_MPATH_INFO_INVALID: attribute number 0 is reserved 2714607ca46eSDavid Howells * @NL80211_MPATH_INFO_FRAME_QLEN: number of queued frames for this destination 2715607ca46eSDavid Howells * @NL80211_MPATH_INFO_SN: destination sequence number 2716607ca46eSDavid Howells * @NL80211_MPATH_INFO_METRIC: metric (cost) of this mesh path 2717607ca46eSDavid Howells * @NL80211_MPATH_INFO_EXPTIME: expiration time for the path, in msec from now 2718607ca46eSDavid Howells * @NL80211_MPATH_INFO_FLAGS: mesh path flags, enumerated in 2719607ca46eSDavid Howells * &enum nl80211_mpath_flags; 2720607ca46eSDavid Howells * @NL80211_MPATH_INFO_DISCOVERY_TIMEOUT: total path discovery timeout, in msec 2721607ca46eSDavid Howells * @NL80211_MPATH_INFO_DISCOVERY_RETRIES: mesh path discovery retries 2722607ca46eSDavid Howells * @NL80211_MPATH_INFO_MAX: highest mesh path information attribute number 2723607ca46eSDavid Howells * currently defind 2724607ca46eSDavid Howells * @__NL80211_MPATH_INFO_AFTER_LAST: internal use 2725607ca46eSDavid Howells */ 2726607ca46eSDavid Howells enum nl80211_mpath_info { 2727607ca46eSDavid Howells __NL80211_MPATH_INFO_INVALID, 2728607ca46eSDavid Howells NL80211_MPATH_INFO_FRAME_QLEN, 2729607ca46eSDavid Howells NL80211_MPATH_INFO_SN, 2730607ca46eSDavid Howells NL80211_MPATH_INFO_METRIC, 2731607ca46eSDavid Howells NL80211_MPATH_INFO_EXPTIME, 2732607ca46eSDavid Howells NL80211_MPATH_INFO_FLAGS, 2733607ca46eSDavid Howells NL80211_MPATH_INFO_DISCOVERY_TIMEOUT, 2734607ca46eSDavid Howells NL80211_MPATH_INFO_DISCOVERY_RETRIES, 2735607ca46eSDavid Howells 2736607ca46eSDavid Howells /* keep last */ 2737607ca46eSDavid Howells __NL80211_MPATH_INFO_AFTER_LAST, 2738607ca46eSDavid Howells NL80211_MPATH_INFO_MAX = __NL80211_MPATH_INFO_AFTER_LAST - 1 2739607ca46eSDavid Howells }; 2740607ca46eSDavid Howells 2741607ca46eSDavid Howells /** 2742607ca46eSDavid Howells * enum nl80211_band_attr - band attributes 2743607ca46eSDavid Howells * @__NL80211_BAND_ATTR_INVALID: attribute number 0 is reserved 2744607ca46eSDavid Howells * @NL80211_BAND_ATTR_FREQS: supported frequencies in this band, 2745607ca46eSDavid Howells * an array of nested frequency attributes 2746607ca46eSDavid Howells * @NL80211_BAND_ATTR_RATES: supported bitrates in this band, 2747607ca46eSDavid Howells * an array of nested bitrate attributes 2748607ca46eSDavid Howells * @NL80211_BAND_ATTR_HT_MCS_SET: 16-byte attribute containing the MCS set as 2749607ca46eSDavid Howells * defined in 802.11n 2750607ca46eSDavid Howells * @NL80211_BAND_ATTR_HT_CAPA: HT capabilities, as in the HT information IE 2751607ca46eSDavid Howells * @NL80211_BAND_ATTR_HT_AMPDU_FACTOR: A-MPDU factor, as in 11n 2752607ca46eSDavid Howells * @NL80211_BAND_ATTR_HT_AMPDU_DENSITY: A-MPDU density, as in 11n 2753607ca46eSDavid Howells * @NL80211_BAND_ATTR_VHT_MCS_SET: 32-byte attribute containing the MCS set as 2754607ca46eSDavid Howells * defined in 802.11ac 2755607ca46eSDavid Howells * @NL80211_BAND_ATTR_VHT_CAPA: VHT capabilities, as in the HT information IE 2756607ca46eSDavid Howells * @NL80211_BAND_ATTR_MAX: highest band attribute currently defined 2757607ca46eSDavid Howells * @__NL80211_BAND_ATTR_AFTER_LAST: internal use 2758607ca46eSDavid Howells */ 2759607ca46eSDavid Howells enum nl80211_band_attr { 2760607ca46eSDavid Howells __NL80211_BAND_ATTR_INVALID, 2761607ca46eSDavid Howells NL80211_BAND_ATTR_FREQS, 2762607ca46eSDavid Howells NL80211_BAND_ATTR_RATES, 2763607ca46eSDavid Howells 2764607ca46eSDavid Howells NL80211_BAND_ATTR_HT_MCS_SET, 2765607ca46eSDavid Howells NL80211_BAND_ATTR_HT_CAPA, 2766607ca46eSDavid Howells NL80211_BAND_ATTR_HT_AMPDU_FACTOR, 2767607ca46eSDavid Howells NL80211_BAND_ATTR_HT_AMPDU_DENSITY, 2768607ca46eSDavid Howells 2769607ca46eSDavid Howells NL80211_BAND_ATTR_VHT_MCS_SET, 2770607ca46eSDavid Howells NL80211_BAND_ATTR_VHT_CAPA, 2771607ca46eSDavid Howells 2772607ca46eSDavid Howells /* keep last */ 2773607ca46eSDavid Howells __NL80211_BAND_ATTR_AFTER_LAST, 2774607ca46eSDavid Howells NL80211_BAND_ATTR_MAX = __NL80211_BAND_ATTR_AFTER_LAST - 1 2775607ca46eSDavid Howells }; 2776607ca46eSDavid Howells 2777607ca46eSDavid Howells #define NL80211_BAND_ATTR_HT_CAPA NL80211_BAND_ATTR_HT_CAPA 2778607ca46eSDavid Howells 2779607ca46eSDavid Howells /** 2780607ca46eSDavid Howells * enum nl80211_frequency_attr - frequency attributes 2781607ca46eSDavid Howells * @__NL80211_FREQUENCY_ATTR_INVALID: attribute number 0 is reserved 2782607ca46eSDavid Howells * @NL80211_FREQUENCY_ATTR_FREQ: Frequency in MHz 2783607ca46eSDavid Howells * @NL80211_FREQUENCY_ATTR_DISABLED: Channel is disabled in current 2784607ca46eSDavid Howells * regulatory domain. 27858fe02e16SLuis R. Rodriguez * @NL80211_FREQUENCY_ATTR_NO_IR: no mechanisms that initiate radiation 27868fe02e16SLuis R. Rodriguez * are permitted on this channel, this includes sending probe 27878fe02e16SLuis R. Rodriguez * requests, or modes of operation that require beaconing. 2788607ca46eSDavid Howells * @NL80211_FREQUENCY_ATTR_RADAR: Radar detection is mandatory 2789607ca46eSDavid Howells * on this channel in current regulatory domain. 2790607ca46eSDavid Howells * @NL80211_FREQUENCY_ATTR_MAX_TX_POWER: Maximum transmission power in mBm 2791607ca46eSDavid Howells * (100 * dBm). 279204f39047SSimon Wunderlich * @NL80211_FREQUENCY_ATTR_DFS_STATE: current state for DFS 279304f39047SSimon Wunderlich * (enum nl80211_dfs_state) 279404f39047SSimon Wunderlich * @NL80211_FREQUENCY_ATTR_DFS_TIME: time in miliseconds for how long 279504f39047SSimon Wunderlich * this channel is in this DFS state. 279650640f16SJohannes Berg * @NL80211_FREQUENCY_ATTR_NO_HT40_MINUS: HT40- isn't possible with this 279750640f16SJohannes Berg * channel as the control channel 279850640f16SJohannes Berg * @NL80211_FREQUENCY_ATTR_NO_HT40_PLUS: HT40+ isn't possible with this 279950640f16SJohannes Berg * channel as the control channel 280050640f16SJohannes Berg * @NL80211_FREQUENCY_ATTR_NO_80MHZ: any 80 MHz channel using this channel 280150640f16SJohannes Berg * as the primary or any of the secondary channels isn't possible, 280250640f16SJohannes Berg * this includes 80+80 channels 280350640f16SJohannes Berg * @NL80211_FREQUENCY_ATTR_NO_160MHZ: any 160 MHz (but not 80+80) channel 280450640f16SJohannes Berg * using this channel as the primary or any of the secondary channels 280550640f16SJohannes Berg * isn't possible 2806089027e5SJanusz Dziedzic * @NL80211_FREQUENCY_ATTR_DFS_CAC_TIME: DFS CAC time in milliseconds. 2807570dbde1SDavid Spinadel * @NL80211_FREQUENCY_ATTR_INDOOR_ONLY: Only indoor use is permitted on this 2808570dbde1SDavid Spinadel * channel. A channel that has the INDOOR_ONLY attribute can only be 2809570dbde1SDavid Spinadel * used when there is a clear assessment that the device is operating in 2810570dbde1SDavid Spinadel * an indoor surroundings, i.e., it is connected to AC power (and not 2811570dbde1SDavid Spinadel * through portable DC inverters) or is under the control of a master 2812570dbde1SDavid Spinadel * that is acting as an AP and is connected to AC power. 281306f207fcSArik Nemtsov * @NL80211_FREQUENCY_ATTR_IR_CONCURRENT: IR operation is allowed on this 2814570dbde1SDavid Spinadel * channel if it's connected concurrently to a BSS on the same channel on 2815570dbde1SDavid Spinadel * the 2 GHz band or to a channel in the same UNII band (on the 5 GHz 281606f207fcSArik Nemtsov * band), and IEEE80211_CHAN_RADAR is not set. Instantiating a GO or TDLS 281706f207fcSArik Nemtsov * off-channel on a channel that has the IR_CONCURRENT attribute set can be 281806f207fcSArik Nemtsov * done when there is a clear assessment that the device is operating under 281906f207fcSArik Nemtsov * the guidance of an authorized master, i.e., setting up a GO or TDLS 282006f207fcSArik Nemtsov * off-channel while the device is also connected to an AP with DFS and 282106f207fcSArik Nemtsov * radar detection on the UNII band (it is up to user-space, i.e., 282206f207fcSArik Nemtsov * wpa_supplicant to perform the required verifications). Using this 282306f207fcSArik Nemtsov * attribute for IR is disallowed for master interfaces (IBSS, AP). 2824ea077c1cSRostislav Lisovy * @NL80211_FREQUENCY_ATTR_NO_20MHZ: 20 MHz operation is not allowed 2825ea077c1cSRostislav Lisovy * on this channel in current regulatory domain. 2826ea077c1cSRostislav Lisovy * @NL80211_FREQUENCY_ATTR_NO_10MHZ: 10 MHz operation is not allowed 2827ea077c1cSRostislav Lisovy * on this channel in current regulatory domain. 2828607ca46eSDavid Howells * @NL80211_FREQUENCY_ATTR_MAX: highest frequency attribute number 2829607ca46eSDavid Howells * currently defined 2830607ca46eSDavid Howells * @__NL80211_FREQUENCY_ATTR_AFTER_LAST: internal use 2831570dbde1SDavid Spinadel * 2832570dbde1SDavid Spinadel * See https://apps.fcc.gov/eas/comments/GetPublishedDocument.html?id=327&tn=528122 2833570dbde1SDavid Spinadel * for more information on the FCC description of the relaxations allowed 2834570dbde1SDavid Spinadel * by NL80211_FREQUENCY_ATTR_INDOOR_ONLY and 283506f207fcSArik Nemtsov * NL80211_FREQUENCY_ATTR_IR_CONCURRENT. 2836607ca46eSDavid Howells */ 2837607ca46eSDavid Howells enum nl80211_frequency_attr { 2838607ca46eSDavid Howells __NL80211_FREQUENCY_ATTR_INVALID, 2839607ca46eSDavid Howells NL80211_FREQUENCY_ATTR_FREQ, 2840607ca46eSDavid Howells NL80211_FREQUENCY_ATTR_DISABLED, 28418fe02e16SLuis R. Rodriguez NL80211_FREQUENCY_ATTR_NO_IR, 28428fe02e16SLuis R. Rodriguez __NL80211_FREQUENCY_ATTR_NO_IBSS, 2843607ca46eSDavid Howells NL80211_FREQUENCY_ATTR_RADAR, 2844607ca46eSDavid Howells NL80211_FREQUENCY_ATTR_MAX_TX_POWER, 284504f39047SSimon Wunderlich NL80211_FREQUENCY_ATTR_DFS_STATE, 284604f39047SSimon Wunderlich NL80211_FREQUENCY_ATTR_DFS_TIME, 284750640f16SJohannes Berg NL80211_FREQUENCY_ATTR_NO_HT40_MINUS, 284850640f16SJohannes Berg NL80211_FREQUENCY_ATTR_NO_HT40_PLUS, 284950640f16SJohannes Berg NL80211_FREQUENCY_ATTR_NO_80MHZ, 285050640f16SJohannes Berg NL80211_FREQUENCY_ATTR_NO_160MHZ, 2851089027e5SJanusz Dziedzic NL80211_FREQUENCY_ATTR_DFS_CAC_TIME, 2852570dbde1SDavid Spinadel NL80211_FREQUENCY_ATTR_INDOOR_ONLY, 285306f207fcSArik Nemtsov NL80211_FREQUENCY_ATTR_IR_CONCURRENT, 2854ea077c1cSRostislav Lisovy NL80211_FREQUENCY_ATTR_NO_20MHZ, 2855ea077c1cSRostislav Lisovy NL80211_FREQUENCY_ATTR_NO_10MHZ, 2856607ca46eSDavid Howells 2857607ca46eSDavid Howells /* keep last */ 2858607ca46eSDavid Howells __NL80211_FREQUENCY_ATTR_AFTER_LAST, 2859607ca46eSDavid Howells NL80211_FREQUENCY_ATTR_MAX = __NL80211_FREQUENCY_ATTR_AFTER_LAST - 1 2860607ca46eSDavid Howells }; 2861607ca46eSDavid Howells 2862607ca46eSDavid Howells #define NL80211_FREQUENCY_ATTR_MAX_TX_POWER NL80211_FREQUENCY_ATTR_MAX_TX_POWER 28638fe02e16SLuis R. Rodriguez #define NL80211_FREQUENCY_ATTR_PASSIVE_SCAN NL80211_FREQUENCY_ATTR_NO_IR 28648fe02e16SLuis R. Rodriguez #define NL80211_FREQUENCY_ATTR_NO_IBSS NL80211_FREQUENCY_ATTR_NO_IR 28658fe02e16SLuis R. Rodriguez #define NL80211_FREQUENCY_ATTR_NO_IR NL80211_FREQUENCY_ATTR_NO_IR 286606f207fcSArik Nemtsov #define NL80211_FREQUENCY_ATTR_GO_CONCURRENT \ 286706f207fcSArik Nemtsov NL80211_FREQUENCY_ATTR_IR_CONCURRENT 2868607ca46eSDavid Howells 2869607ca46eSDavid Howells /** 2870607ca46eSDavid Howells * enum nl80211_bitrate_attr - bitrate attributes 2871607ca46eSDavid Howells * @__NL80211_BITRATE_ATTR_INVALID: attribute number 0 is reserved 2872607ca46eSDavid Howells * @NL80211_BITRATE_ATTR_RATE: Bitrate in units of 100 kbps 2873607ca46eSDavid Howells * @NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE: Short preamble supported 2874607ca46eSDavid Howells * in 2.4 GHz band. 2875607ca46eSDavid Howells * @NL80211_BITRATE_ATTR_MAX: highest bitrate attribute number 2876607ca46eSDavid Howells * currently defined 2877607ca46eSDavid Howells * @__NL80211_BITRATE_ATTR_AFTER_LAST: internal use 2878607ca46eSDavid Howells */ 2879607ca46eSDavid Howells enum nl80211_bitrate_attr { 2880607ca46eSDavid Howells __NL80211_BITRATE_ATTR_INVALID, 2881607ca46eSDavid Howells NL80211_BITRATE_ATTR_RATE, 2882607ca46eSDavid Howells NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE, 2883607ca46eSDavid Howells 2884607ca46eSDavid Howells /* keep last */ 2885607ca46eSDavid Howells __NL80211_BITRATE_ATTR_AFTER_LAST, 2886607ca46eSDavid Howells NL80211_BITRATE_ATTR_MAX = __NL80211_BITRATE_ATTR_AFTER_LAST - 1 2887607ca46eSDavid Howells }; 2888607ca46eSDavid Howells 2889607ca46eSDavid Howells /** 2890607ca46eSDavid Howells * enum nl80211_initiator - Indicates the initiator of a reg domain request 2891607ca46eSDavid Howells * @NL80211_REGDOM_SET_BY_CORE: Core queried CRDA for a dynamic world 2892607ca46eSDavid Howells * regulatory domain. 2893607ca46eSDavid Howells * @NL80211_REGDOM_SET_BY_USER: User asked the wireless core to set the 2894607ca46eSDavid Howells * regulatory domain. 2895607ca46eSDavid Howells * @NL80211_REGDOM_SET_BY_DRIVER: a wireless drivers has hinted to the 2896607ca46eSDavid Howells * wireless core it thinks its knows the regulatory domain we should be in. 2897607ca46eSDavid Howells * @NL80211_REGDOM_SET_BY_COUNTRY_IE: the wireless core has received an 2898607ca46eSDavid Howells * 802.11 country information element with regulatory information it 2899607ca46eSDavid Howells * thinks we should consider. cfg80211 only processes the country 2900607ca46eSDavid Howells * code from the IE, and relies on the regulatory domain information 2901607ca46eSDavid Howells * structure passed by userspace (CRDA) from our wireless-regdb. 2902607ca46eSDavid Howells * If a channel is enabled but the country code indicates it should 2903607ca46eSDavid Howells * be disabled we disable the channel and re-enable it upon disassociation. 2904607ca46eSDavid Howells */ 2905607ca46eSDavid Howells enum nl80211_reg_initiator { 2906607ca46eSDavid Howells NL80211_REGDOM_SET_BY_CORE, 2907607ca46eSDavid Howells NL80211_REGDOM_SET_BY_USER, 2908607ca46eSDavid Howells NL80211_REGDOM_SET_BY_DRIVER, 2909607ca46eSDavid Howells NL80211_REGDOM_SET_BY_COUNTRY_IE, 2910607ca46eSDavid Howells }; 2911607ca46eSDavid Howells 2912607ca46eSDavid Howells /** 2913607ca46eSDavid Howells * enum nl80211_reg_type - specifies the type of regulatory domain 2914607ca46eSDavid Howells * @NL80211_REGDOM_TYPE_COUNTRY: the regulatory domain set is one that pertains 2915607ca46eSDavid Howells * to a specific country. When this is set you can count on the 2916607ca46eSDavid Howells * ISO / IEC 3166 alpha2 country code being valid. 2917607ca46eSDavid Howells * @NL80211_REGDOM_TYPE_WORLD: the regulatory set domain is the world regulatory 2918607ca46eSDavid Howells * domain. 2919607ca46eSDavid Howells * @NL80211_REGDOM_TYPE_CUSTOM_WORLD: the regulatory domain set is a custom 2920607ca46eSDavid Howells * driver specific world regulatory domain. These do not apply system-wide 2921607ca46eSDavid Howells * and are only applicable to the individual devices which have requested 2922607ca46eSDavid Howells * them to be applied. 2923607ca46eSDavid Howells * @NL80211_REGDOM_TYPE_INTERSECTION: the regulatory domain set is the product 2924607ca46eSDavid Howells * of an intersection between two regulatory domains -- the previously 2925607ca46eSDavid Howells * set regulatory domain on the system and the last accepted regulatory 2926607ca46eSDavid Howells * domain request to be processed. 2927607ca46eSDavid Howells */ 2928607ca46eSDavid Howells enum nl80211_reg_type { 2929607ca46eSDavid Howells NL80211_REGDOM_TYPE_COUNTRY, 2930607ca46eSDavid Howells NL80211_REGDOM_TYPE_WORLD, 2931607ca46eSDavid Howells NL80211_REGDOM_TYPE_CUSTOM_WORLD, 2932607ca46eSDavid Howells NL80211_REGDOM_TYPE_INTERSECTION, 2933607ca46eSDavid Howells }; 2934607ca46eSDavid Howells 2935607ca46eSDavid Howells /** 2936607ca46eSDavid Howells * enum nl80211_reg_rule_attr - regulatory rule attributes 2937607ca46eSDavid Howells * @__NL80211_REG_RULE_ATTR_INVALID: attribute number 0 is reserved 2938607ca46eSDavid Howells * @NL80211_ATTR_REG_RULE_FLAGS: a set of flags which specify additional 2939607ca46eSDavid Howells * considerations for a given frequency range. These are the 2940607ca46eSDavid Howells * &enum nl80211_reg_rule_flags. 2941607ca46eSDavid Howells * @NL80211_ATTR_FREQ_RANGE_START: starting frequencry for the regulatory 2942607ca46eSDavid Howells * rule in KHz. This is not a center of frequency but an actual regulatory 2943607ca46eSDavid Howells * band edge. 2944607ca46eSDavid Howells * @NL80211_ATTR_FREQ_RANGE_END: ending frequency for the regulatory rule 2945607ca46eSDavid Howells * in KHz. This is not a center a frequency but an actual regulatory 2946607ca46eSDavid Howells * band edge. 2947607ca46eSDavid Howells * @NL80211_ATTR_FREQ_RANGE_MAX_BW: maximum allowed bandwidth for this 2948b0dfd2eaSJanusz Dziedzic * frequency range, in KHz. 2949607ca46eSDavid Howells * @NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN: the maximum allowed antenna gain 2950607ca46eSDavid Howells * for a given frequency range. The value is in mBi (100 * dBi). 2951607ca46eSDavid Howells * If you don't have one then don't send this. 2952607ca46eSDavid Howells * @NL80211_ATTR_POWER_RULE_MAX_EIRP: the maximum allowed EIRP for 2953607ca46eSDavid Howells * a given frequency range. The value is in mBm (100 * dBm). 2954089027e5SJanusz Dziedzic * @NL80211_ATTR_DFS_CAC_TIME: DFS CAC time in milliseconds. 2955089027e5SJanusz Dziedzic * If not present or 0 default CAC time will be used. 2956607ca46eSDavid Howells * @NL80211_REG_RULE_ATTR_MAX: highest regulatory rule attribute number 2957607ca46eSDavid Howells * currently defined 2958607ca46eSDavid Howells * @__NL80211_REG_RULE_ATTR_AFTER_LAST: internal use 2959607ca46eSDavid Howells */ 2960607ca46eSDavid Howells enum nl80211_reg_rule_attr { 2961607ca46eSDavid Howells __NL80211_REG_RULE_ATTR_INVALID, 2962607ca46eSDavid Howells NL80211_ATTR_REG_RULE_FLAGS, 2963607ca46eSDavid Howells 2964607ca46eSDavid Howells NL80211_ATTR_FREQ_RANGE_START, 2965607ca46eSDavid Howells NL80211_ATTR_FREQ_RANGE_END, 2966607ca46eSDavid Howells NL80211_ATTR_FREQ_RANGE_MAX_BW, 2967607ca46eSDavid Howells 2968607ca46eSDavid Howells NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN, 2969607ca46eSDavid Howells NL80211_ATTR_POWER_RULE_MAX_EIRP, 2970607ca46eSDavid Howells 2971089027e5SJanusz Dziedzic NL80211_ATTR_DFS_CAC_TIME, 2972089027e5SJanusz Dziedzic 2973607ca46eSDavid Howells /* keep last */ 2974607ca46eSDavid Howells __NL80211_REG_RULE_ATTR_AFTER_LAST, 2975607ca46eSDavid Howells NL80211_REG_RULE_ATTR_MAX = __NL80211_REG_RULE_ATTR_AFTER_LAST - 1 2976607ca46eSDavid Howells }; 2977607ca46eSDavid Howells 2978607ca46eSDavid Howells /** 2979607ca46eSDavid Howells * enum nl80211_sched_scan_match_attr - scheduled scan match attributes 2980607ca46eSDavid Howells * @__NL80211_SCHED_SCAN_MATCH_ATTR_INVALID: attribute number 0 is reserved 2981607ca46eSDavid Howells * @NL80211_SCHED_SCAN_MATCH_ATTR_SSID: SSID to be used for matching, 2982607ca46eSDavid Howells * only report BSS with matching SSID. 2983607ca46eSDavid Howells * @NL80211_SCHED_SCAN_MATCH_ATTR_RSSI: RSSI threshold (in dBm) for reporting a 2984ea73cbceSJohannes Berg * BSS in scan results. Filtering is turned off if not specified. Note that 2985ea73cbceSJohannes Berg * if this attribute is in a match set of its own, then it is treated as 2986ea73cbceSJohannes Berg * the default value for all matchsets with an SSID, rather than being a 2987ea73cbceSJohannes Berg * matchset of its own without an RSSI filter. This is due to problems with 2988ea73cbceSJohannes Berg * how this API was implemented in the past. Also, due to the same problem, 2989ea73cbceSJohannes Berg * the only way to create a matchset with only an RSSI filter (with this 2990ea73cbceSJohannes Berg * attribute) is if there's only a single matchset with the RSSI attribute. 2991607ca46eSDavid Howells * @NL80211_SCHED_SCAN_MATCH_ATTR_MAX: highest scheduled scan filter 2992607ca46eSDavid Howells * attribute number currently defined 2993607ca46eSDavid Howells * @__NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST: internal use 2994607ca46eSDavid Howells */ 2995607ca46eSDavid Howells enum nl80211_sched_scan_match_attr { 2996607ca46eSDavid Howells __NL80211_SCHED_SCAN_MATCH_ATTR_INVALID, 2997607ca46eSDavid Howells 2998607ca46eSDavid Howells NL80211_SCHED_SCAN_MATCH_ATTR_SSID, 2999607ca46eSDavid Howells NL80211_SCHED_SCAN_MATCH_ATTR_RSSI, 3000607ca46eSDavid Howells 3001607ca46eSDavid Howells /* keep last */ 3002607ca46eSDavid Howells __NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST, 3003607ca46eSDavid Howells NL80211_SCHED_SCAN_MATCH_ATTR_MAX = 3004607ca46eSDavid Howells __NL80211_SCHED_SCAN_MATCH_ATTR_AFTER_LAST - 1 3005607ca46eSDavid Howells }; 3006607ca46eSDavid Howells 3007607ca46eSDavid Howells /* only for backward compatibility */ 3008607ca46eSDavid Howells #define NL80211_ATTR_SCHED_SCAN_MATCH_SSID NL80211_SCHED_SCAN_MATCH_ATTR_SSID 3009607ca46eSDavid Howells 3010607ca46eSDavid Howells /** 3011607ca46eSDavid Howells * enum nl80211_reg_rule_flags - regulatory rule flags 3012607ca46eSDavid Howells * 3013607ca46eSDavid Howells * @NL80211_RRF_NO_OFDM: OFDM modulation not allowed 3014607ca46eSDavid Howells * @NL80211_RRF_NO_CCK: CCK modulation not allowed 3015607ca46eSDavid Howells * @NL80211_RRF_NO_INDOOR: indoor operation not allowed 3016607ca46eSDavid Howells * @NL80211_RRF_NO_OUTDOOR: outdoor operation not allowed 3017607ca46eSDavid Howells * @NL80211_RRF_DFS: DFS support is required to be used 3018607ca46eSDavid Howells * @NL80211_RRF_PTP_ONLY: this is only for Point To Point links 3019607ca46eSDavid Howells * @NL80211_RRF_PTMP_ONLY: this is only for Point To Multi Point links 30208fe02e16SLuis R. Rodriguez * @NL80211_RRF_NO_IR: no mechanisms that initiate radiation are allowed, 30218fe02e16SLuis R. Rodriguez * this includes probe requests or modes of operation that require 30228fe02e16SLuis R. Rodriguez * beaconing. 3023b0dfd2eaSJanusz Dziedzic * @NL80211_RRF_AUTO_BW: maximum available bandwidth should be calculated 3024b0dfd2eaSJanusz Dziedzic * base on contiguous rules and wider channels will be allowed to cross 3025b0dfd2eaSJanusz Dziedzic * multiple contiguous/overlapping frequency ranges. 302606f207fcSArik Nemtsov * @NL80211_RRF_IR_CONCURRENT: See &NL80211_FREQUENCY_ATTR_IR_CONCURRENT 3027a6d4a534SArik Nemtsov * @NL80211_RRF_NO_HT40MINUS: channels can't be used in HT40- operation 3028a6d4a534SArik Nemtsov * @NL80211_RRF_NO_HT40PLUS: channels can't be used in HT40+ operation 3029a6d4a534SArik Nemtsov * @NL80211_RRF_NO_80MHZ: 80MHz operation not allowed 3030a6d4a534SArik Nemtsov * @NL80211_RRF_NO_160MHZ: 160MHz operation not allowed 3031607ca46eSDavid Howells */ 3032607ca46eSDavid Howells enum nl80211_reg_rule_flags { 3033607ca46eSDavid Howells NL80211_RRF_NO_OFDM = 1<<0, 3034607ca46eSDavid Howells NL80211_RRF_NO_CCK = 1<<1, 3035607ca46eSDavid Howells NL80211_RRF_NO_INDOOR = 1<<2, 3036607ca46eSDavid Howells NL80211_RRF_NO_OUTDOOR = 1<<3, 3037607ca46eSDavid Howells NL80211_RRF_DFS = 1<<4, 3038607ca46eSDavid Howells NL80211_RRF_PTP_ONLY = 1<<5, 3039607ca46eSDavid Howells NL80211_RRF_PTMP_ONLY = 1<<6, 30408fe02e16SLuis R. Rodriguez NL80211_RRF_NO_IR = 1<<7, 30418fe02e16SLuis R. Rodriguez __NL80211_RRF_NO_IBSS = 1<<8, 3042b0dfd2eaSJanusz Dziedzic NL80211_RRF_AUTO_BW = 1<<11, 304306f207fcSArik Nemtsov NL80211_RRF_IR_CONCURRENT = 1<<12, 3044a6d4a534SArik Nemtsov NL80211_RRF_NO_HT40MINUS = 1<<13, 3045a6d4a534SArik Nemtsov NL80211_RRF_NO_HT40PLUS = 1<<14, 3046a6d4a534SArik Nemtsov NL80211_RRF_NO_80MHZ = 1<<15, 3047a6d4a534SArik Nemtsov NL80211_RRF_NO_160MHZ = 1<<16, 3048607ca46eSDavid Howells }; 3049607ca46eSDavid Howells 30508fe02e16SLuis R. Rodriguez #define NL80211_RRF_PASSIVE_SCAN NL80211_RRF_NO_IR 30518fe02e16SLuis R. Rodriguez #define NL80211_RRF_NO_IBSS NL80211_RRF_NO_IR 30528fe02e16SLuis R. Rodriguez #define NL80211_RRF_NO_IR NL80211_RRF_NO_IR 3053a6d4a534SArik Nemtsov #define NL80211_RRF_NO_HT40 (NL80211_RRF_NO_HT40MINUS |\ 3054a6d4a534SArik Nemtsov NL80211_RRF_NO_HT40PLUS) 305506f207fcSArik Nemtsov #define NL80211_RRF_GO_CONCURRENT NL80211_RRF_IR_CONCURRENT 30568fe02e16SLuis R. Rodriguez 30578fe02e16SLuis R. Rodriguez /* For backport compatibility with older userspace */ 30588fe02e16SLuis R. Rodriguez #define NL80211_RRF_NO_IR_ALL (NL80211_RRF_NO_IR | __NL80211_RRF_NO_IBSS) 30598fe02e16SLuis R. Rodriguez 3060607ca46eSDavid Howells /** 3061607ca46eSDavid Howells * enum nl80211_dfs_regions - regulatory DFS regions 3062607ca46eSDavid Howells * 3063607ca46eSDavid Howells * @NL80211_DFS_UNSET: Country has no DFS master region specified 3064607ca46eSDavid Howells * @NL80211_DFS_FCC: Country follows DFS master rules from FCC 3065607ca46eSDavid Howells * @NL80211_DFS_ETSI: Country follows DFS master rules from ETSI 3066607ca46eSDavid Howells * @NL80211_DFS_JP: Country follows DFS master rules from JP/MKK/Telec 3067607ca46eSDavid Howells */ 3068607ca46eSDavid Howells enum nl80211_dfs_regions { 3069607ca46eSDavid Howells NL80211_DFS_UNSET = 0, 3070607ca46eSDavid Howells NL80211_DFS_FCC = 1, 3071607ca46eSDavid Howells NL80211_DFS_ETSI = 2, 3072607ca46eSDavid Howells NL80211_DFS_JP = 3, 3073607ca46eSDavid Howells }; 3074607ca46eSDavid Howells 3075607ca46eSDavid Howells /** 3076607ca46eSDavid Howells * enum nl80211_user_reg_hint_type - type of user regulatory hint 3077607ca46eSDavid Howells * 3078607ca46eSDavid Howells * @NL80211_USER_REG_HINT_USER: a user sent the hint. This is always 3079607ca46eSDavid Howells * assumed if the attribute is not set. 3080607ca46eSDavid Howells * @NL80211_USER_REG_HINT_CELL_BASE: the hint comes from a cellular 3081607ca46eSDavid Howells * base station. Device drivers that have been tested to work 3082607ca46eSDavid Howells * properly to support this type of hint can enable these hints 3083607ca46eSDavid Howells * by setting the NL80211_FEATURE_CELL_BASE_REG_HINTS feature 3084607ca46eSDavid Howells * capability on the struct wiphy. The wireless core will 3085607ca46eSDavid Howells * ignore all cell base station hints until at least one device 3086607ca46eSDavid Howells * present has been registered with the wireless core that 3087607ca46eSDavid Howells * has listed NL80211_FEATURE_CELL_BASE_REG_HINTS as a 3088607ca46eSDavid Howells * supported feature. 308952616f2bSIlan Peer * @NL80211_USER_REG_HINT_INDOOR: a user sent an hint indicating that the 309052616f2bSIlan Peer * platform is operating in an indoor environment. 3091607ca46eSDavid Howells */ 3092607ca46eSDavid Howells enum nl80211_user_reg_hint_type { 3093607ca46eSDavid Howells NL80211_USER_REG_HINT_USER = 0, 3094607ca46eSDavid Howells NL80211_USER_REG_HINT_CELL_BASE = 1, 309552616f2bSIlan Peer NL80211_USER_REG_HINT_INDOOR = 2, 3096607ca46eSDavid Howells }; 3097607ca46eSDavid Howells 3098607ca46eSDavid Howells /** 3099607ca46eSDavid Howells * enum nl80211_survey_info - survey information 3100607ca46eSDavid Howells * 3101607ca46eSDavid Howells * These attribute types are used with %NL80211_ATTR_SURVEY_INFO 3102607ca46eSDavid Howells * when getting information about a survey. 3103607ca46eSDavid Howells * 3104607ca46eSDavid Howells * @__NL80211_SURVEY_INFO_INVALID: attribute number 0 is reserved 3105607ca46eSDavid Howells * @NL80211_SURVEY_INFO_FREQUENCY: center frequency of channel 3106607ca46eSDavid Howells * @NL80211_SURVEY_INFO_NOISE: noise level of channel (u8, dBm) 3107607ca46eSDavid Howells * @NL80211_SURVEY_INFO_IN_USE: channel is currently being used 31084ed20bebSJohannes Berg * @NL80211_SURVEY_INFO_TIME: amount of time (in ms) that the radio 310911f78ac3SJohannes Berg * was turned on (on channel or globally) 31104ed20bebSJohannes Berg * @NL80211_SURVEY_INFO_TIME_BUSY: amount of the time the primary 3111607ca46eSDavid Howells * channel was sensed busy (either due to activity or energy detect) 31124ed20bebSJohannes Berg * @NL80211_SURVEY_INFO_TIME_EXT_BUSY: amount of time the extension 3113607ca46eSDavid Howells * channel was sensed busy 31144ed20bebSJohannes Berg * @NL80211_SURVEY_INFO_TIME_RX: amount of time the radio spent 311511f78ac3SJohannes Berg * receiving data (on channel or globally) 31164ed20bebSJohannes Berg * @NL80211_SURVEY_INFO_TIME_TX: amount of time the radio spent 311711f78ac3SJohannes Berg * transmitting data (on channel or globally) 3118052536abSJohannes Berg * @NL80211_SURVEY_INFO_TIME_SCAN: time the radio spent for scan 3119052536abSJohannes Berg * (on this channel or globally) 31209b95fe59SJohannes Berg * @NL80211_SURVEY_INFO_PAD: attribute used for padding for 64-bit alignment 3121607ca46eSDavid Howells * @NL80211_SURVEY_INFO_MAX: highest survey info attribute number 3122607ca46eSDavid Howells * currently defined 3123607ca46eSDavid Howells * @__NL80211_SURVEY_INFO_AFTER_LAST: internal use 3124607ca46eSDavid Howells */ 3125607ca46eSDavid Howells enum nl80211_survey_info { 3126607ca46eSDavid Howells __NL80211_SURVEY_INFO_INVALID, 3127607ca46eSDavid Howells NL80211_SURVEY_INFO_FREQUENCY, 3128607ca46eSDavid Howells NL80211_SURVEY_INFO_NOISE, 3129607ca46eSDavid Howells NL80211_SURVEY_INFO_IN_USE, 31304ed20bebSJohannes Berg NL80211_SURVEY_INFO_TIME, 31314ed20bebSJohannes Berg NL80211_SURVEY_INFO_TIME_BUSY, 31324ed20bebSJohannes Berg NL80211_SURVEY_INFO_TIME_EXT_BUSY, 31334ed20bebSJohannes Berg NL80211_SURVEY_INFO_TIME_RX, 31344ed20bebSJohannes Berg NL80211_SURVEY_INFO_TIME_TX, 3135052536abSJohannes Berg NL80211_SURVEY_INFO_TIME_SCAN, 31362dad624eSNicolas Dichtel NL80211_SURVEY_INFO_PAD, 3137607ca46eSDavid Howells 3138607ca46eSDavid Howells /* keep last */ 3139607ca46eSDavid Howells __NL80211_SURVEY_INFO_AFTER_LAST, 3140607ca46eSDavid Howells NL80211_SURVEY_INFO_MAX = __NL80211_SURVEY_INFO_AFTER_LAST - 1 3141607ca46eSDavid Howells }; 3142607ca46eSDavid Howells 31434ed20bebSJohannes Berg /* keep old names for compatibility */ 31444ed20bebSJohannes Berg #define NL80211_SURVEY_INFO_CHANNEL_TIME NL80211_SURVEY_INFO_TIME 31454ed20bebSJohannes Berg #define NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY NL80211_SURVEY_INFO_TIME_BUSY 31464ed20bebSJohannes Berg #define NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY NL80211_SURVEY_INFO_TIME_EXT_BUSY 31474ed20bebSJohannes Berg #define NL80211_SURVEY_INFO_CHANNEL_TIME_RX NL80211_SURVEY_INFO_TIME_RX 31484ed20bebSJohannes Berg #define NL80211_SURVEY_INFO_CHANNEL_TIME_TX NL80211_SURVEY_INFO_TIME_TX 31494ed20bebSJohannes Berg 3150607ca46eSDavid Howells /** 3151607ca46eSDavid Howells * enum nl80211_mntr_flags - monitor configuration flags 3152607ca46eSDavid Howells * 3153607ca46eSDavid Howells * Monitor configuration flags. 3154607ca46eSDavid Howells * 3155607ca46eSDavid Howells * @__NL80211_MNTR_FLAG_INVALID: reserved 3156607ca46eSDavid Howells * 3157607ca46eSDavid Howells * @NL80211_MNTR_FLAG_FCSFAIL: pass frames with bad FCS 3158607ca46eSDavid Howells * @NL80211_MNTR_FLAG_PLCPFAIL: pass frames with bad PLCP 3159607ca46eSDavid Howells * @NL80211_MNTR_FLAG_CONTROL: pass control frames 3160607ca46eSDavid Howells * @NL80211_MNTR_FLAG_OTHER_BSS: disable BSSID filtering 3161607ca46eSDavid Howells * @NL80211_MNTR_FLAG_COOK_FRAMES: report frames after processing. 3162607ca46eSDavid Howells * overrides all other flags. 3163e057d3c3SFelix Fietkau * @NL80211_MNTR_FLAG_ACTIVE: use the configured MAC address 3164e057d3c3SFelix Fietkau * and ACK incoming unicast packets. 3165607ca46eSDavid Howells * 3166607ca46eSDavid Howells * @__NL80211_MNTR_FLAG_AFTER_LAST: internal use 3167607ca46eSDavid Howells * @NL80211_MNTR_FLAG_MAX: highest possible monitor flag 3168607ca46eSDavid Howells */ 3169607ca46eSDavid Howells enum nl80211_mntr_flags { 3170607ca46eSDavid Howells __NL80211_MNTR_FLAG_INVALID, 3171607ca46eSDavid Howells NL80211_MNTR_FLAG_FCSFAIL, 3172607ca46eSDavid Howells NL80211_MNTR_FLAG_PLCPFAIL, 3173607ca46eSDavid Howells NL80211_MNTR_FLAG_CONTROL, 3174607ca46eSDavid Howells NL80211_MNTR_FLAG_OTHER_BSS, 3175607ca46eSDavid Howells NL80211_MNTR_FLAG_COOK_FRAMES, 3176e057d3c3SFelix Fietkau NL80211_MNTR_FLAG_ACTIVE, 3177607ca46eSDavid Howells 3178607ca46eSDavid Howells /* keep last */ 3179607ca46eSDavid Howells __NL80211_MNTR_FLAG_AFTER_LAST, 3180607ca46eSDavid Howells NL80211_MNTR_FLAG_MAX = __NL80211_MNTR_FLAG_AFTER_LAST - 1 3181607ca46eSDavid Howells }; 3182607ca46eSDavid Howells 3183607ca46eSDavid Howells /** 31843b1c5a53SMarco Porsch * enum nl80211_mesh_power_mode - mesh power save modes 31853b1c5a53SMarco Porsch * 31863b1c5a53SMarco Porsch * @NL80211_MESH_POWER_UNKNOWN: The mesh power mode of the mesh STA is 31873b1c5a53SMarco Porsch * not known or has not been set yet. 31883b1c5a53SMarco Porsch * @NL80211_MESH_POWER_ACTIVE: Active mesh power mode. The mesh STA is 31893b1c5a53SMarco Porsch * in Awake state all the time. 31903b1c5a53SMarco Porsch * @NL80211_MESH_POWER_LIGHT_SLEEP: Light sleep mode. The mesh STA will 31913b1c5a53SMarco Porsch * alternate between Active and Doze states, but will wake up for 31923b1c5a53SMarco Porsch * neighbor's beacons. 31933b1c5a53SMarco Porsch * @NL80211_MESH_POWER_DEEP_SLEEP: Deep sleep mode. The mesh STA will 31943b1c5a53SMarco Porsch * alternate between Active and Doze states, but may not wake up 31953b1c5a53SMarco Porsch * for neighbor's beacons. 31963b1c5a53SMarco Porsch * 31973b1c5a53SMarco Porsch * @__NL80211_MESH_POWER_AFTER_LAST - internal use 31983b1c5a53SMarco Porsch * @NL80211_MESH_POWER_MAX - highest possible power save level 31993b1c5a53SMarco Porsch */ 32003b1c5a53SMarco Porsch 32013b1c5a53SMarco Porsch enum nl80211_mesh_power_mode { 32023b1c5a53SMarco Porsch NL80211_MESH_POWER_UNKNOWN, 32033b1c5a53SMarco Porsch NL80211_MESH_POWER_ACTIVE, 32043b1c5a53SMarco Porsch NL80211_MESH_POWER_LIGHT_SLEEP, 32053b1c5a53SMarco Porsch NL80211_MESH_POWER_DEEP_SLEEP, 32063b1c5a53SMarco Porsch 32073b1c5a53SMarco Porsch __NL80211_MESH_POWER_AFTER_LAST, 32083b1c5a53SMarco Porsch NL80211_MESH_POWER_MAX = __NL80211_MESH_POWER_AFTER_LAST - 1 32093b1c5a53SMarco Porsch }; 32103b1c5a53SMarco Porsch 32113b1c5a53SMarco Porsch /** 3212607ca46eSDavid Howells * enum nl80211_meshconf_params - mesh configuration parameters 3213607ca46eSDavid Howells * 3214607ca46eSDavid Howells * Mesh configuration parameters. These can be changed while the mesh is 3215607ca46eSDavid Howells * active. 3216607ca46eSDavid Howells * 3217607ca46eSDavid Howells * @__NL80211_MESHCONF_INVALID: internal use 3218607ca46eSDavid Howells * 3219607ca46eSDavid Howells * @NL80211_MESHCONF_RETRY_TIMEOUT: specifies the initial retry timeout in 3220607ca46eSDavid Howells * millisecond units, used by the Peer Link Open message 3221607ca46eSDavid Howells * 3222607ca46eSDavid Howells * @NL80211_MESHCONF_CONFIRM_TIMEOUT: specifies the initial confirm timeout, in 3223607ca46eSDavid Howells * millisecond units, used by the peer link management to close a peer link 3224607ca46eSDavid Howells * 3225607ca46eSDavid Howells * @NL80211_MESHCONF_HOLDING_TIMEOUT: specifies the holding timeout, in 3226607ca46eSDavid Howells * millisecond units 3227607ca46eSDavid Howells * 3228607ca46eSDavid Howells * @NL80211_MESHCONF_MAX_PEER_LINKS: maximum number of peer links allowed 3229607ca46eSDavid Howells * on this mesh interface 3230607ca46eSDavid Howells * 3231607ca46eSDavid Howells * @NL80211_MESHCONF_MAX_RETRIES: specifies the maximum number of peer link 3232607ca46eSDavid Howells * open retries that can be sent to establish a new peer link instance in a 3233607ca46eSDavid Howells * mesh 3234607ca46eSDavid Howells * 3235607ca46eSDavid Howells * @NL80211_MESHCONF_TTL: specifies the value of TTL field set at a source mesh 3236607ca46eSDavid Howells * point. 3237607ca46eSDavid Howells * 3238d37bb18aSThomas Pedersen * @NL80211_MESHCONF_AUTO_OPEN_PLINKS: whether we should automatically open 3239d37bb18aSThomas Pedersen * peer links when we detect compatible mesh peers. Disabled if 3240d37bb18aSThomas Pedersen * @NL80211_MESH_SETUP_USERSPACE_MPM or @NL80211_MESH_SETUP_USERSPACE_AMPE are 3241d37bb18aSThomas Pedersen * set. 3242607ca46eSDavid Howells * 3243607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES: the number of action frames 3244607ca46eSDavid Howells * containing a PREQ that an MP can send to a particular destination (path 3245607ca46eSDavid Howells * target) 3246607ca46eSDavid Howells * 3247607ca46eSDavid Howells * @NL80211_MESHCONF_PATH_REFRESH_TIME: how frequently to refresh mesh paths 3248607ca46eSDavid Howells * (in milliseconds) 3249607ca46eSDavid Howells * 3250607ca46eSDavid Howells * @NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT: minimum length of time to wait 3251607ca46eSDavid Howells * until giving up on a path discovery (in milliseconds) 3252607ca46eSDavid Howells * 3253607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT: The time (in TUs) for which mesh 3254607ca46eSDavid Howells * points receiving a PREQ shall consider the forwarding information from 3255607ca46eSDavid Howells * the root to be valid. (TU = time unit) 3256607ca46eSDavid Howells * 3257607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL: The minimum interval of time (in 3258607ca46eSDavid Howells * TUs) during which an MP can send only one action frame containing a PREQ 3259607ca46eSDavid Howells * reference element 3260607ca46eSDavid Howells * 3261607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME: The interval of time (in TUs) 3262607ca46eSDavid Howells * that it takes for an HWMP information element to propagate across the 3263607ca46eSDavid Howells * mesh 3264607ca46eSDavid Howells * 3265607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_ROOTMODE: whether root mode is enabled or not 3266607ca46eSDavid Howells * 3267607ca46eSDavid Howells * @NL80211_MESHCONF_ELEMENT_TTL: specifies the value of TTL field set at a 3268607ca46eSDavid Howells * source mesh point for path selection elements. 3269607ca46eSDavid Howells * 3270607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_RANN_INTERVAL: The interval of time (in TUs) between 3271607ca46eSDavid Howells * root announcements are transmitted. 3272607ca46eSDavid Howells * 3273607ca46eSDavid Howells * @NL80211_MESHCONF_GATE_ANNOUNCEMENTS: Advertise that this mesh station has 3274607ca46eSDavid Howells * access to a broader network beyond the MBSS. This is done via Root 3275607ca46eSDavid Howells * Announcement frames. 3276607ca46eSDavid Howells * 3277607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL: The minimum interval of time (in 3278607ca46eSDavid Howells * TUs) during which a mesh STA can send only one Action frame containing a 3279607ca46eSDavid Howells * PERR element. 3280607ca46eSDavid Howells * 3281607ca46eSDavid Howells * @NL80211_MESHCONF_FORWARDING: set Mesh STA as forwarding or non-forwarding 3282607ca46eSDavid Howells * or forwarding entity (default is TRUE - forwarding entity) 3283607ca46eSDavid Howells * 3284607ca46eSDavid Howells * @NL80211_MESHCONF_RSSI_THRESHOLD: RSSI threshold in dBm. This specifies the 3285607ca46eSDavid Howells * threshold for average signal strength of candidate station to establish 3286607ca46eSDavid Howells * a peer link. 3287607ca46eSDavid Howells * 3288607ca46eSDavid Howells * @NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR: maximum number of neighbors 3289607ca46eSDavid Howells * to synchronize to for 11s default synchronization method 3290607ca46eSDavid Howells * (see 11C.12.2.2) 3291607ca46eSDavid Howells * 3292607ca46eSDavid Howells * @NL80211_MESHCONF_HT_OPMODE: set mesh HT protection mode. 3293607ca46eSDavid Howells * 3294607ca46eSDavid Howells * @NL80211_MESHCONF_ATTR_MAX: highest possible mesh configuration attribute 3295607ca46eSDavid Howells * 3296607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT: The time (in TUs) for 3297607ca46eSDavid Howells * which mesh STAs receiving a proactive PREQ shall consider the forwarding 3298607ca46eSDavid Howells * information to the root mesh STA to be valid. 3299607ca46eSDavid Howells * 3300607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_ROOT_INTERVAL: The interval of time (in TUs) between 3301607ca46eSDavid Howells * proactive PREQs are transmitted. 3302607ca46eSDavid Howells * 3303607ca46eSDavid Howells * @NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL: The minimum interval of time 3304607ca46eSDavid Howells * (in TUs) during which a mesh STA can send only one Action frame 3305607ca46eSDavid Howells * containing a PREQ element for root path confirmation. 3306607ca46eSDavid Howells * 33073b1c5a53SMarco Porsch * @NL80211_MESHCONF_POWER_MODE: Default mesh power mode for new peer links. 33083b1c5a53SMarco Porsch * type &enum nl80211_mesh_power_mode (u32) 33093b1c5a53SMarco Porsch * 33103b1c5a53SMarco Porsch * @NL80211_MESHCONF_AWAKE_WINDOW: awake window duration (in TUs) 33113b1c5a53SMarco Porsch * 33128e7c0538SColleen Twitty * @NL80211_MESHCONF_PLINK_TIMEOUT: If no tx activity is seen from a STA we've 33138e7c0538SColleen Twitty * established peering with for longer than this time (in seconds), then 331431f909a2SMasashi Honma * remove it from the STA's list of peers. You may set this to 0 to disable 331531f909a2SMasashi Honma * the removal of the STA. Default is 30 minutes. 33168e7c0538SColleen Twitty * 3317607ca46eSDavid Howells * @__NL80211_MESHCONF_ATTR_AFTER_LAST: internal use 3318607ca46eSDavid Howells */ 3319607ca46eSDavid Howells enum nl80211_meshconf_params { 3320607ca46eSDavid Howells __NL80211_MESHCONF_INVALID, 3321607ca46eSDavid Howells NL80211_MESHCONF_RETRY_TIMEOUT, 3322607ca46eSDavid Howells NL80211_MESHCONF_CONFIRM_TIMEOUT, 3323607ca46eSDavid Howells NL80211_MESHCONF_HOLDING_TIMEOUT, 3324607ca46eSDavid Howells NL80211_MESHCONF_MAX_PEER_LINKS, 3325607ca46eSDavid Howells NL80211_MESHCONF_MAX_RETRIES, 3326607ca46eSDavid Howells NL80211_MESHCONF_TTL, 3327607ca46eSDavid Howells NL80211_MESHCONF_AUTO_OPEN_PLINKS, 3328607ca46eSDavid Howells NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, 3329607ca46eSDavid Howells NL80211_MESHCONF_PATH_REFRESH_TIME, 3330607ca46eSDavid Howells NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, 3331607ca46eSDavid Howells NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, 3332607ca46eSDavid Howells NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, 3333607ca46eSDavid Howells NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, 3334607ca46eSDavid Howells NL80211_MESHCONF_HWMP_ROOTMODE, 3335607ca46eSDavid Howells NL80211_MESHCONF_ELEMENT_TTL, 3336607ca46eSDavid Howells NL80211_MESHCONF_HWMP_RANN_INTERVAL, 3337607ca46eSDavid Howells NL80211_MESHCONF_GATE_ANNOUNCEMENTS, 3338607ca46eSDavid Howells NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, 3339607ca46eSDavid Howells NL80211_MESHCONF_FORWARDING, 3340607ca46eSDavid Howells NL80211_MESHCONF_RSSI_THRESHOLD, 3341607ca46eSDavid Howells NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, 3342607ca46eSDavid Howells NL80211_MESHCONF_HT_OPMODE, 3343607ca46eSDavid Howells NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, 3344607ca46eSDavid Howells NL80211_MESHCONF_HWMP_ROOT_INTERVAL, 3345607ca46eSDavid Howells NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, 33463b1c5a53SMarco Porsch NL80211_MESHCONF_POWER_MODE, 33473b1c5a53SMarco Porsch NL80211_MESHCONF_AWAKE_WINDOW, 33488e7c0538SColleen Twitty NL80211_MESHCONF_PLINK_TIMEOUT, 3349607ca46eSDavid Howells 3350607ca46eSDavid Howells /* keep last */ 3351607ca46eSDavid Howells __NL80211_MESHCONF_ATTR_AFTER_LAST, 3352607ca46eSDavid Howells NL80211_MESHCONF_ATTR_MAX = __NL80211_MESHCONF_ATTR_AFTER_LAST - 1 3353607ca46eSDavid Howells }; 3354607ca46eSDavid Howells 3355607ca46eSDavid Howells /** 3356607ca46eSDavid Howells * enum nl80211_mesh_setup_params - mesh setup parameters 3357607ca46eSDavid Howells * 3358607ca46eSDavid Howells * Mesh setup parameters. These are used to start/join a mesh and cannot be 3359607ca46eSDavid Howells * changed while the mesh is active. 3360607ca46eSDavid Howells * 3361607ca46eSDavid Howells * @__NL80211_MESH_SETUP_INVALID: Internal use 3362607ca46eSDavid Howells * 3363607ca46eSDavid Howells * @NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL: Enable this option to use a 3364607ca46eSDavid Howells * vendor specific path selection algorithm or disable it to use the 3365607ca46eSDavid Howells * default HWMP. 3366607ca46eSDavid Howells * 3367607ca46eSDavid Howells * @NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC: Enable this option to use a 3368607ca46eSDavid Howells * vendor specific path metric or disable it to use the default Airtime 3369607ca46eSDavid Howells * metric. 3370607ca46eSDavid Howells * 3371607ca46eSDavid Howells * @NL80211_MESH_SETUP_IE: Information elements for this mesh, for instance, a 3372607ca46eSDavid Howells * robust security network ie, or a vendor specific information element 3373607ca46eSDavid Howells * that vendors will use to identify the path selection methods and 3374607ca46eSDavid Howells * metrics in use. 3375607ca46eSDavid Howells * 3376607ca46eSDavid Howells * @NL80211_MESH_SETUP_USERSPACE_AUTH: Enable this option if an authentication 3377607ca46eSDavid Howells * daemon will be authenticating mesh candidates. 3378607ca46eSDavid Howells * 3379607ca46eSDavid Howells * @NL80211_MESH_SETUP_USERSPACE_AMPE: Enable this option if an authentication 3380607ca46eSDavid Howells * daemon will be securing peer link frames. AMPE is a secured version of 3381607ca46eSDavid Howells * Mesh Peering Management (MPM) and is implemented with the assistance of 3382607ca46eSDavid Howells * a userspace daemon. When this flag is set, the kernel will send peer 3383607ca46eSDavid Howells * management frames to a userspace daemon that will implement AMPE 3384607ca46eSDavid Howells * functionality (security capabilities selection, key confirmation, and 3385607ca46eSDavid Howells * key management). When the flag is unset (default), the kernel can 3386607ca46eSDavid Howells * autonomously complete (unsecured) mesh peering without the need of a 3387607ca46eSDavid Howells * userspace daemon. 3388607ca46eSDavid Howells * 3389607ca46eSDavid Howells * @NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC: Enable this option to use a 3390607ca46eSDavid Howells * vendor specific synchronization method or disable it to use the default 3391607ca46eSDavid Howells * neighbor offset synchronization 3392607ca46eSDavid Howells * 3393bb2798d4SThomas Pedersen * @NL80211_MESH_SETUP_USERSPACE_MPM: Enable this option if userspace will 3394bb2798d4SThomas Pedersen * implement an MPM which handles peer allocation and state. 3395bb2798d4SThomas Pedersen * 33966e16d90bSColleen Twitty * @NL80211_MESH_SETUP_AUTH_PROTOCOL: Inform the kernel of the authentication 33976e16d90bSColleen Twitty * method (u8, as defined in IEEE 8.4.2.100.6, e.g. 0x1 for SAE). 33986e16d90bSColleen Twitty * Default is no authentication method required. 33996e16d90bSColleen Twitty * 3400607ca46eSDavid Howells * @NL80211_MESH_SETUP_ATTR_MAX: highest possible mesh setup attribute number 3401607ca46eSDavid Howells * 3402607ca46eSDavid Howells * @__NL80211_MESH_SETUP_ATTR_AFTER_LAST: Internal use 3403607ca46eSDavid Howells */ 3404607ca46eSDavid Howells enum nl80211_mesh_setup_params { 3405607ca46eSDavid Howells __NL80211_MESH_SETUP_INVALID, 3406607ca46eSDavid Howells NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL, 3407607ca46eSDavid Howells NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC, 3408607ca46eSDavid Howells NL80211_MESH_SETUP_IE, 3409607ca46eSDavid Howells NL80211_MESH_SETUP_USERSPACE_AUTH, 3410607ca46eSDavid Howells NL80211_MESH_SETUP_USERSPACE_AMPE, 3411607ca46eSDavid Howells NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC, 3412bb2798d4SThomas Pedersen NL80211_MESH_SETUP_USERSPACE_MPM, 34136e16d90bSColleen Twitty NL80211_MESH_SETUP_AUTH_PROTOCOL, 3414607ca46eSDavid Howells 3415607ca46eSDavid Howells /* keep last */ 3416607ca46eSDavid Howells __NL80211_MESH_SETUP_ATTR_AFTER_LAST, 3417607ca46eSDavid Howells NL80211_MESH_SETUP_ATTR_MAX = __NL80211_MESH_SETUP_ATTR_AFTER_LAST - 1 3418607ca46eSDavid Howells }; 3419607ca46eSDavid Howells 3420607ca46eSDavid Howells /** 3421607ca46eSDavid Howells * enum nl80211_txq_attr - TX queue parameter attributes 3422607ca46eSDavid Howells * @__NL80211_TXQ_ATTR_INVALID: Attribute number 0 is reserved 3423607ca46eSDavid Howells * @NL80211_TXQ_ATTR_AC: AC identifier (NL80211_AC_*) 3424607ca46eSDavid Howells * @NL80211_TXQ_ATTR_TXOP: Maximum burst time in units of 32 usecs, 0 meaning 3425607ca46eSDavid Howells * disabled 3426607ca46eSDavid Howells * @NL80211_TXQ_ATTR_CWMIN: Minimum contention window [a value of the form 3427607ca46eSDavid Howells * 2^n-1 in the range 1..32767] 3428607ca46eSDavid Howells * @NL80211_TXQ_ATTR_CWMAX: Maximum contention window [a value of the form 3429607ca46eSDavid Howells * 2^n-1 in the range 1..32767] 3430607ca46eSDavid Howells * @NL80211_TXQ_ATTR_AIFS: Arbitration interframe space [0..255] 3431607ca46eSDavid Howells * @__NL80211_TXQ_ATTR_AFTER_LAST: Internal 3432607ca46eSDavid Howells * @NL80211_TXQ_ATTR_MAX: Maximum TXQ attribute number 3433607ca46eSDavid Howells */ 3434607ca46eSDavid Howells enum nl80211_txq_attr { 3435607ca46eSDavid Howells __NL80211_TXQ_ATTR_INVALID, 3436607ca46eSDavid Howells NL80211_TXQ_ATTR_AC, 3437607ca46eSDavid Howells NL80211_TXQ_ATTR_TXOP, 3438607ca46eSDavid Howells NL80211_TXQ_ATTR_CWMIN, 3439607ca46eSDavid Howells NL80211_TXQ_ATTR_CWMAX, 3440607ca46eSDavid Howells NL80211_TXQ_ATTR_AIFS, 3441607ca46eSDavid Howells 3442607ca46eSDavid Howells /* keep last */ 3443607ca46eSDavid Howells __NL80211_TXQ_ATTR_AFTER_LAST, 3444607ca46eSDavid Howells NL80211_TXQ_ATTR_MAX = __NL80211_TXQ_ATTR_AFTER_LAST - 1 3445607ca46eSDavid Howells }; 3446607ca46eSDavid Howells 3447607ca46eSDavid Howells enum nl80211_ac { 3448607ca46eSDavid Howells NL80211_AC_VO, 3449607ca46eSDavid Howells NL80211_AC_VI, 3450607ca46eSDavid Howells NL80211_AC_BE, 3451607ca46eSDavid Howells NL80211_AC_BK, 3452607ca46eSDavid Howells NL80211_NUM_ACS 3453607ca46eSDavid Howells }; 3454607ca46eSDavid Howells 3455607ca46eSDavid Howells /* backward compat */ 3456607ca46eSDavid Howells #define NL80211_TXQ_ATTR_QUEUE NL80211_TXQ_ATTR_AC 3457607ca46eSDavid Howells #define NL80211_TXQ_Q_VO NL80211_AC_VO 3458607ca46eSDavid Howells #define NL80211_TXQ_Q_VI NL80211_AC_VI 3459607ca46eSDavid Howells #define NL80211_TXQ_Q_BE NL80211_AC_BE 3460607ca46eSDavid Howells #define NL80211_TXQ_Q_BK NL80211_AC_BK 3461607ca46eSDavid Howells 3462fe4b3181SJohannes Berg /** 3463fe4b3181SJohannes Berg * enum nl80211_channel_type - channel type 3464fe4b3181SJohannes Berg * @NL80211_CHAN_NO_HT: 20 MHz, non-HT channel 3465fe4b3181SJohannes Berg * @NL80211_CHAN_HT20: 20 MHz HT channel 3466fe4b3181SJohannes Berg * @NL80211_CHAN_HT40MINUS: HT40 channel, secondary channel 3467fe4b3181SJohannes Berg * below the control channel 3468fe4b3181SJohannes Berg * @NL80211_CHAN_HT40PLUS: HT40 channel, secondary channel 3469fe4b3181SJohannes Berg * above the control channel 3470fe4b3181SJohannes Berg */ 3471607ca46eSDavid Howells enum nl80211_channel_type { 3472607ca46eSDavid Howells NL80211_CHAN_NO_HT, 3473607ca46eSDavid Howells NL80211_CHAN_HT20, 3474607ca46eSDavid Howells NL80211_CHAN_HT40MINUS, 3475607ca46eSDavid Howells NL80211_CHAN_HT40PLUS 3476607ca46eSDavid Howells }; 3477607ca46eSDavid Howells 3478607ca46eSDavid Howells /** 34793d9d1d66SJohannes Berg * enum nl80211_chan_width - channel width definitions 34803d9d1d66SJohannes Berg * 34813d9d1d66SJohannes Berg * These values are used with the %NL80211_ATTR_CHANNEL_WIDTH 34823d9d1d66SJohannes Berg * attribute. 34833d9d1d66SJohannes Berg * 34843d9d1d66SJohannes Berg * @NL80211_CHAN_WIDTH_20_NOHT: 20 MHz, non-HT channel 34853d9d1d66SJohannes Berg * @NL80211_CHAN_WIDTH_20: 20 MHz HT channel 34863d9d1d66SJohannes Berg * @NL80211_CHAN_WIDTH_40: 40 MHz channel, the %NL80211_ATTR_CENTER_FREQ1 34873d9d1d66SJohannes Berg * attribute must be provided as well 34883d9d1d66SJohannes Berg * @NL80211_CHAN_WIDTH_80: 80 MHz channel, the %NL80211_ATTR_CENTER_FREQ1 34893d9d1d66SJohannes Berg * attribute must be provided as well 34903d9d1d66SJohannes Berg * @NL80211_CHAN_WIDTH_80P80: 80+80 MHz channel, the %NL80211_ATTR_CENTER_FREQ1 34913d9d1d66SJohannes Berg * and %NL80211_ATTR_CENTER_FREQ2 attributes must be provided as well 34923d9d1d66SJohannes Berg * @NL80211_CHAN_WIDTH_160: 160 MHz channel, the %NL80211_ATTR_CENTER_FREQ1 34933d9d1d66SJohannes Berg * attribute must be provided as well 34942f301ab2SSimon Wunderlich * @NL80211_CHAN_WIDTH_5: 5 MHz OFDM channel 34952f301ab2SSimon Wunderlich * @NL80211_CHAN_WIDTH_10: 10 MHz OFDM channel 34963d9d1d66SJohannes Berg */ 34973d9d1d66SJohannes Berg enum nl80211_chan_width { 34983d9d1d66SJohannes Berg NL80211_CHAN_WIDTH_20_NOHT, 34993d9d1d66SJohannes Berg NL80211_CHAN_WIDTH_20, 35003d9d1d66SJohannes Berg NL80211_CHAN_WIDTH_40, 35013d9d1d66SJohannes Berg NL80211_CHAN_WIDTH_80, 35023d9d1d66SJohannes Berg NL80211_CHAN_WIDTH_80P80, 35033d9d1d66SJohannes Berg NL80211_CHAN_WIDTH_160, 35042f301ab2SSimon Wunderlich NL80211_CHAN_WIDTH_5, 35052f301ab2SSimon Wunderlich NL80211_CHAN_WIDTH_10, 35063d9d1d66SJohannes Berg }; 35073d9d1d66SJohannes Berg 35083d9d1d66SJohannes Berg /** 3509dcd6eac1SSimon Wunderlich * enum nl80211_bss_scan_width - control channel width for a BSS 3510dcd6eac1SSimon Wunderlich * 3511dcd6eac1SSimon Wunderlich * These values are used with the %NL80211_BSS_CHAN_WIDTH attribute. 3512dcd6eac1SSimon Wunderlich * 3513dcd6eac1SSimon Wunderlich * @NL80211_BSS_CHAN_WIDTH_20: control channel is 20 MHz wide or compatible 3514dcd6eac1SSimon Wunderlich * @NL80211_BSS_CHAN_WIDTH_10: control channel is 10 MHz wide 3515dcd6eac1SSimon Wunderlich * @NL80211_BSS_CHAN_WIDTH_5: control channel is 5 MHz wide 3516dcd6eac1SSimon Wunderlich */ 3517dcd6eac1SSimon Wunderlich enum nl80211_bss_scan_width { 3518dcd6eac1SSimon Wunderlich NL80211_BSS_CHAN_WIDTH_20, 3519dcd6eac1SSimon Wunderlich NL80211_BSS_CHAN_WIDTH_10, 3520dcd6eac1SSimon Wunderlich NL80211_BSS_CHAN_WIDTH_5, 3521dcd6eac1SSimon Wunderlich }; 3522dcd6eac1SSimon Wunderlich 3523dcd6eac1SSimon Wunderlich /** 3524607ca46eSDavid Howells * enum nl80211_bss - netlink attributes for a BSS 3525607ca46eSDavid Howells * 3526607ca46eSDavid Howells * @__NL80211_BSS_INVALID: invalid 3527607ca46eSDavid Howells * @NL80211_BSS_BSSID: BSSID of the BSS (6 octets) 3528607ca46eSDavid Howells * @NL80211_BSS_FREQUENCY: frequency in MHz (u32) 3529607ca46eSDavid Howells * @NL80211_BSS_TSF: TSF of the received probe response/beacon (u64) 35300e227084SJohannes Berg * (if @NL80211_BSS_PRESP_DATA is present then this is known to be 35310e227084SJohannes Berg * from a probe response, otherwise it may be from the same beacon 35320e227084SJohannes Berg * that the NL80211_BSS_BEACON_TSF will be from) 3533607ca46eSDavid Howells * @NL80211_BSS_BEACON_INTERVAL: beacon interval of the (I)BSS (u16) 3534607ca46eSDavid Howells * @NL80211_BSS_CAPABILITY: capability field (CPU order, u16) 3535607ca46eSDavid Howells * @NL80211_BSS_INFORMATION_ELEMENTS: binary attribute containing the 3536607ca46eSDavid Howells * raw information elements from the probe response/beacon (bin); 35370e227084SJohannes Berg * if the %NL80211_BSS_BEACON_IES attribute is present and the data is 35380e227084SJohannes Berg * different then the IEs here are from a Probe Response frame; otherwise 35390e227084SJohannes Berg * they are from a Beacon frame. 3540607ca46eSDavid Howells * However, if the driver does not indicate the source of the IEs, these 3541607ca46eSDavid Howells * IEs may be from either frame subtype. 35420e227084SJohannes Berg * If present, the @NL80211_BSS_PRESP_DATA attribute indicates that the 35430e227084SJohannes Berg * data here is known to be from a probe response, without any heuristics. 3544607ca46eSDavid Howells * @NL80211_BSS_SIGNAL_MBM: signal strength of probe response/beacon 3545607ca46eSDavid Howells * in mBm (100 * dBm) (s32) 3546607ca46eSDavid Howells * @NL80211_BSS_SIGNAL_UNSPEC: signal strength of the probe response/beacon 3547607ca46eSDavid Howells * in unspecified units, scaled to 0..100 (u8) 3548607ca46eSDavid Howells * @NL80211_BSS_STATUS: status, if this BSS is "used" 3549607ca46eSDavid Howells * @NL80211_BSS_SEEN_MS_AGO: age of this BSS entry in ms 3550607ca46eSDavid Howells * @NL80211_BSS_BEACON_IES: binary attribute containing the raw information 3551607ca46eSDavid Howells * elements from a Beacon frame (bin); not present if no Beacon frame has 3552607ca46eSDavid Howells * yet been received 3553dcd6eac1SSimon Wunderlich * @NL80211_BSS_CHAN_WIDTH: channel width of the control channel 3554dcd6eac1SSimon Wunderlich * (u32, enum nl80211_bss_scan_width) 35550e227084SJohannes Berg * @NL80211_BSS_BEACON_TSF: TSF of the last received beacon (u64) 35560e227084SJohannes Berg * (not present if no beacon frame has been received yet) 35570e227084SJohannes Berg * @NL80211_BSS_PRESP_DATA: the data in @NL80211_BSS_INFORMATION_ELEMENTS and 35580e227084SJohannes Berg * @NL80211_BSS_TSF is known to be from a probe response (flag attribute) 35596e19bc4bSDmitry Shmidt * @NL80211_BSS_LAST_SEEN_BOOTTIME: CLOCK_BOOTTIME timestamp when this entry 35606e19bc4bSDmitry Shmidt * was last updated by a received frame. The value is expected to be 35616e19bc4bSDmitry Shmidt * accurate to about 10ms. (u64, nanoseconds) 35629b95fe59SJohannes Berg * @NL80211_BSS_PAD: attribute used for padding for 64-bit alignment 35631d76250bSAvraham Stern * @NL80211_BSS_PARENT_TSF: the time at the start of reception of the first 35641d76250bSAvraham Stern * octet of the timestamp field of the last beacon/probe received for 35651d76250bSAvraham Stern * this BSS. The time is the TSF of the BSS specified by 35661d76250bSAvraham Stern * @NL80211_BSS_PARENT_BSSID. (u64). 35671d76250bSAvraham Stern * @NL80211_BSS_PARENT_BSSID: the BSS according to which @NL80211_BSS_PARENT_TSF 35681d76250bSAvraham Stern * is set. 3569607ca46eSDavid Howells * @__NL80211_BSS_AFTER_LAST: internal 3570607ca46eSDavid Howells * @NL80211_BSS_MAX: highest BSS attribute 3571607ca46eSDavid Howells */ 3572607ca46eSDavid Howells enum nl80211_bss { 3573607ca46eSDavid Howells __NL80211_BSS_INVALID, 3574607ca46eSDavid Howells NL80211_BSS_BSSID, 3575607ca46eSDavid Howells NL80211_BSS_FREQUENCY, 3576607ca46eSDavid Howells NL80211_BSS_TSF, 3577607ca46eSDavid Howells NL80211_BSS_BEACON_INTERVAL, 3578607ca46eSDavid Howells NL80211_BSS_CAPABILITY, 3579607ca46eSDavid Howells NL80211_BSS_INFORMATION_ELEMENTS, 3580607ca46eSDavid Howells NL80211_BSS_SIGNAL_MBM, 3581607ca46eSDavid Howells NL80211_BSS_SIGNAL_UNSPEC, 3582607ca46eSDavid Howells NL80211_BSS_STATUS, 3583607ca46eSDavid Howells NL80211_BSS_SEEN_MS_AGO, 3584607ca46eSDavid Howells NL80211_BSS_BEACON_IES, 3585dcd6eac1SSimon Wunderlich NL80211_BSS_CHAN_WIDTH, 35860e227084SJohannes Berg NL80211_BSS_BEACON_TSF, 35870e227084SJohannes Berg NL80211_BSS_PRESP_DATA, 35886e19bc4bSDmitry Shmidt NL80211_BSS_LAST_SEEN_BOOTTIME, 35892dad624eSNicolas Dichtel NL80211_BSS_PAD, 35901d76250bSAvraham Stern NL80211_BSS_PARENT_TSF, 35911d76250bSAvraham Stern NL80211_BSS_PARENT_BSSID, 3592607ca46eSDavid Howells 3593607ca46eSDavid Howells /* keep last */ 3594607ca46eSDavid Howells __NL80211_BSS_AFTER_LAST, 3595607ca46eSDavid Howells NL80211_BSS_MAX = __NL80211_BSS_AFTER_LAST - 1 3596607ca46eSDavid Howells }; 3597607ca46eSDavid Howells 3598607ca46eSDavid Howells /** 3599607ca46eSDavid Howells * enum nl80211_bss_status - BSS "status" 3600607ca46eSDavid Howells * @NL80211_BSS_STATUS_AUTHENTICATED: Authenticated with this BSS. 36011803f594SJohannes Berg * Note that this is no longer used since cfg80211 no longer 36021803f594SJohannes Berg * keeps track of whether or not authentication was done with 36031803f594SJohannes Berg * a given BSS. 3604607ca46eSDavid Howells * @NL80211_BSS_STATUS_ASSOCIATED: Associated with this BSS. 3605607ca46eSDavid Howells * @NL80211_BSS_STATUS_IBSS_JOINED: Joined to this IBSS. 3606607ca46eSDavid Howells * 3607607ca46eSDavid Howells * The BSS status is a BSS attribute in scan dumps, which 3608607ca46eSDavid Howells * indicates the status the interface has wrt. this BSS. 3609607ca46eSDavid Howells */ 3610607ca46eSDavid Howells enum nl80211_bss_status { 3611607ca46eSDavid Howells NL80211_BSS_STATUS_AUTHENTICATED, 3612607ca46eSDavid Howells NL80211_BSS_STATUS_ASSOCIATED, 3613607ca46eSDavid Howells NL80211_BSS_STATUS_IBSS_JOINED, 3614607ca46eSDavid Howells }; 3615607ca46eSDavid Howells 3616607ca46eSDavid Howells /** 3617607ca46eSDavid Howells * enum nl80211_auth_type - AuthenticationType 3618607ca46eSDavid Howells * 3619607ca46eSDavid Howells * @NL80211_AUTHTYPE_OPEN_SYSTEM: Open System authentication 3620607ca46eSDavid Howells * @NL80211_AUTHTYPE_SHARED_KEY: Shared Key authentication (WEP only) 3621607ca46eSDavid Howells * @NL80211_AUTHTYPE_FT: Fast BSS Transition (IEEE 802.11r) 3622607ca46eSDavid Howells * @NL80211_AUTHTYPE_NETWORK_EAP: Network EAP (some Cisco APs and mainly LEAP) 3623e39e5b5eSJouni Malinen * @NL80211_AUTHTYPE_SAE: Simultaneous authentication of equals 3624607ca46eSDavid Howells * @__NL80211_AUTHTYPE_NUM: internal 3625607ca46eSDavid Howells * @NL80211_AUTHTYPE_MAX: maximum valid auth algorithm 3626607ca46eSDavid Howells * @NL80211_AUTHTYPE_AUTOMATIC: determine automatically (if necessary by 3627607ca46eSDavid Howells * trying multiple times); this is invalid in netlink -- leave out 3628607ca46eSDavid Howells * the attribute for this on CONNECT commands. 3629607ca46eSDavid Howells */ 3630607ca46eSDavid Howells enum nl80211_auth_type { 3631607ca46eSDavid Howells NL80211_AUTHTYPE_OPEN_SYSTEM, 3632607ca46eSDavid Howells NL80211_AUTHTYPE_SHARED_KEY, 3633607ca46eSDavid Howells NL80211_AUTHTYPE_FT, 3634607ca46eSDavid Howells NL80211_AUTHTYPE_NETWORK_EAP, 3635e39e5b5eSJouni Malinen NL80211_AUTHTYPE_SAE, 3636607ca46eSDavid Howells 3637607ca46eSDavid Howells /* keep last */ 3638607ca46eSDavid Howells __NL80211_AUTHTYPE_NUM, 3639607ca46eSDavid Howells NL80211_AUTHTYPE_MAX = __NL80211_AUTHTYPE_NUM - 1, 3640607ca46eSDavid Howells NL80211_AUTHTYPE_AUTOMATIC 3641607ca46eSDavid Howells }; 3642607ca46eSDavid Howells 3643607ca46eSDavid Howells /** 3644607ca46eSDavid Howells * enum nl80211_key_type - Key Type 3645607ca46eSDavid Howells * @NL80211_KEYTYPE_GROUP: Group (broadcast/multicast) key 3646607ca46eSDavid Howells * @NL80211_KEYTYPE_PAIRWISE: Pairwise (unicast/individual) key 3647607ca46eSDavid Howells * @NL80211_KEYTYPE_PEERKEY: PeerKey (DLS) 3648607ca46eSDavid Howells * @NUM_NL80211_KEYTYPES: number of defined key types 3649607ca46eSDavid Howells */ 3650607ca46eSDavid Howells enum nl80211_key_type { 3651607ca46eSDavid Howells NL80211_KEYTYPE_GROUP, 3652607ca46eSDavid Howells NL80211_KEYTYPE_PAIRWISE, 3653607ca46eSDavid Howells NL80211_KEYTYPE_PEERKEY, 3654607ca46eSDavid Howells 3655607ca46eSDavid Howells NUM_NL80211_KEYTYPES 3656607ca46eSDavid Howells }; 3657607ca46eSDavid Howells 3658607ca46eSDavid Howells /** 3659607ca46eSDavid Howells * enum nl80211_mfp - Management frame protection state 3660607ca46eSDavid Howells * @NL80211_MFP_NO: Management frame protection not used 3661607ca46eSDavid Howells * @NL80211_MFP_REQUIRED: Management frame protection required 3662607ca46eSDavid Howells */ 3663607ca46eSDavid Howells enum nl80211_mfp { 3664607ca46eSDavid Howells NL80211_MFP_NO, 3665607ca46eSDavid Howells NL80211_MFP_REQUIRED, 3666607ca46eSDavid Howells }; 3667607ca46eSDavid Howells 3668607ca46eSDavid Howells enum nl80211_wpa_versions { 3669607ca46eSDavid Howells NL80211_WPA_VERSION_1 = 1 << 0, 3670607ca46eSDavid Howells NL80211_WPA_VERSION_2 = 1 << 1, 3671607ca46eSDavid Howells }; 3672607ca46eSDavid Howells 3673607ca46eSDavid Howells /** 3674607ca46eSDavid Howells * enum nl80211_key_default_types - key default types 3675607ca46eSDavid Howells * @__NL80211_KEY_DEFAULT_TYPE_INVALID: invalid 3676607ca46eSDavid Howells * @NL80211_KEY_DEFAULT_TYPE_UNICAST: key should be used as default 3677607ca46eSDavid Howells * unicast key 3678607ca46eSDavid Howells * @NL80211_KEY_DEFAULT_TYPE_MULTICAST: key should be used as default 3679607ca46eSDavid Howells * multicast key 3680607ca46eSDavid Howells * @NUM_NL80211_KEY_DEFAULT_TYPES: number of default types 3681607ca46eSDavid Howells */ 3682607ca46eSDavid Howells enum nl80211_key_default_types { 3683607ca46eSDavid Howells __NL80211_KEY_DEFAULT_TYPE_INVALID, 3684607ca46eSDavid Howells NL80211_KEY_DEFAULT_TYPE_UNICAST, 3685607ca46eSDavid Howells NL80211_KEY_DEFAULT_TYPE_MULTICAST, 3686607ca46eSDavid Howells 3687607ca46eSDavid Howells NUM_NL80211_KEY_DEFAULT_TYPES 3688607ca46eSDavid Howells }; 3689607ca46eSDavid Howells 3690607ca46eSDavid Howells /** 3691607ca46eSDavid Howells * enum nl80211_key_attributes - key attributes 3692607ca46eSDavid Howells * @__NL80211_KEY_INVALID: invalid 3693607ca46eSDavid Howells * @NL80211_KEY_DATA: (temporal) key data; for TKIP this consists of 3694607ca46eSDavid Howells * 16 bytes encryption key followed by 8 bytes each for TX and RX MIC 3695607ca46eSDavid Howells * keys 3696607ca46eSDavid Howells * @NL80211_KEY_IDX: key ID (u8, 0-3) 3697607ca46eSDavid Howells * @NL80211_KEY_CIPHER: key cipher suite (u32, as defined by IEEE 802.11 3698607ca46eSDavid Howells * section 7.3.2.25.1, e.g. 0x000FAC04) 3699607ca46eSDavid Howells * @NL80211_KEY_SEQ: transmit key sequence number (IV/PN) for TKIP and 3700607ca46eSDavid Howells * CCMP keys, each six bytes in little endian 3701607ca46eSDavid Howells * @NL80211_KEY_DEFAULT: flag indicating default key 3702607ca46eSDavid Howells * @NL80211_KEY_DEFAULT_MGMT: flag indicating default management key 3703607ca46eSDavid Howells * @NL80211_KEY_TYPE: the key type from enum nl80211_key_type, if not 3704607ca46eSDavid Howells * specified the default depends on whether a MAC address was 3705607ca46eSDavid Howells * given with the command using the key or not (u32) 3706607ca46eSDavid Howells * @NL80211_KEY_DEFAULT_TYPES: A nested attribute containing flags 3707607ca46eSDavid Howells * attributes, specifying what a key should be set as default as. 3708607ca46eSDavid Howells * See &enum nl80211_key_default_types. 3709607ca46eSDavid Howells * @__NL80211_KEY_AFTER_LAST: internal 3710607ca46eSDavid Howells * @NL80211_KEY_MAX: highest key attribute 3711607ca46eSDavid Howells */ 3712607ca46eSDavid Howells enum nl80211_key_attributes { 3713607ca46eSDavid Howells __NL80211_KEY_INVALID, 3714607ca46eSDavid Howells NL80211_KEY_DATA, 3715607ca46eSDavid Howells NL80211_KEY_IDX, 3716607ca46eSDavid Howells NL80211_KEY_CIPHER, 3717607ca46eSDavid Howells NL80211_KEY_SEQ, 3718607ca46eSDavid Howells NL80211_KEY_DEFAULT, 3719607ca46eSDavid Howells NL80211_KEY_DEFAULT_MGMT, 3720607ca46eSDavid Howells NL80211_KEY_TYPE, 3721607ca46eSDavid Howells NL80211_KEY_DEFAULT_TYPES, 3722607ca46eSDavid Howells 3723607ca46eSDavid Howells /* keep last */ 3724607ca46eSDavid Howells __NL80211_KEY_AFTER_LAST, 3725607ca46eSDavid Howells NL80211_KEY_MAX = __NL80211_KEY_AFTER_LAST - 1 3726607ca46eSDavid Howells }; 3727607ca46eSDavid Howells 3728607ca46eSDavid Howells /** 3729607ca46eSDavid Howells * enum nl80211_tx_rate_attributes - TX rate set attributes 3730607ca46eSDavid Howells * @__NL80211_TXRATE_INVALID: invalid 3731607ca46eSDavid Howells * @NL80211_TXRATE_LEGACY: Legacy (non-MCS) rates allowed for TX rate selection 3732607ca46eSDavid Howells * in an array of rates as defined in IEEE 802.11 7.3.2.2 (u8 values with 3733607ca46eSDavid Howells * 1 = 500 kbps) but without the IE length restriction (at most 3734607ca46eSDavid Howells * %NL80211_MAX_SUPP_RATES in a single array). 3735d1e33e65SJanusz Dziedzic * @NL80211_TXRATE_HT: HT (MCS) rates allowed for TX rate selection 3736607ca46eSDavid Howells * in an array of MCS numbers. 3737204e35a9SJanusz Dziedzic * @NL80211_TXRATE_VHT: VHT rates allowed for TX rate selection, 3738204e35a9SJanusz Dziedzic * see &struct nl80211_txrate_vht 37390b9323f6SJanusz Dziedzic * @NL80211_TXRATE_GI: configure GI, see &enum nl80211_txrate_gi 3740607ca46eSDavid Howells * @__NL80211_TXRATE_AFTER_LAST: internal 3741607ca46eSDavid Howells * @NL80211_TXRATE_MAX: highest TX rate attribute 3742607ca46eSDavid Howells */ 3743607ca46eSDavid Howells enum nl80211_tx_rate_attributes { 3744607ca46eSDavid Howells __NL80211_TXRATE_INVALID, 3745607ca46eSDavid Howells NL80211_TXRATE_LEGACY, 3746d1e33e65SJanusz Dziedzic NL80211_TXRATE_HT, 3747204e35a9SJanusz Dziedzic NL80211_TXRATE_VHT, 37480b9323f6SJanusz Dziedzic NL80211_TXRATE_GI, 3749607ca46eSDavid Howells 3750607ca46eSDavid Howells /* keep last */ 3751607ca46eSDavid Howells __NL80211_TXRATE_AFTER_LAST, 3752607ca46eSDavid Howells NL80211_TXRATE_MAX = __NL80211_TXRATE_AFTER_LAST - 1 3753607ca46eSDavid Howells }; 3754607ca46eSDavid Howells 3755d1e33e65SJanusz Dziedzic #define NL80211_TXRATE_MCS NL80211_TXRATE_HT 3756204e35a9SJanusz Dziedzic #define NL80211_VHT_NSS_MAX 8 3757204e35a9SJanusz Dziedzic 3758204e35a9SJanusz Dziedzic /** 3759204e35a9SJanusz Dziedzic * struct nl80211_txrate_vht - VHT MCS/NSS txrate bitmap 3760204e35a9SJanusz Dziedzic * @mcs: MCS bitmap table for each NSS (array index 0 for 1 stream, etc.) 3761204e35a9SJanusz Dziedzic */ 3762204e35a9SJanusz Dziedzic struct nl80211_txrate_vht { 3763204e35a9SJanusz Dziedzic __u16 mcs[NL80211_VHT_NSS_MAX]; 3764204e35a9SJanusz Dziedzic }; 3765d1e33e65SJanusz Dziedzic 37660b9323f6SJanusz Dziedzic enum nl80211_txrate_gi { 37670b9323f6SJanusz Dziedzic NL80211_TXRATE_DEFAULT_GI, 37680b9323f6SJanusz Dziedzic NL80211_TXRATE_FORCE_SGI, 37690b9323f6SJanusz Dziedzic NL80211_TXRATE_FORCE_LGI, 37700b9323f6SJanusz Dziedzic }; 37710b9323f6SJanusz Dziedzic 3772607ca46eSDavid Howells /** 3773607ca46eSDavid Howells * enum nl80211_band - Frequency band 3774607ca46eSDavid Howells * @NL80211_BAND_2GHZ: 2.4 GHz ISM band 3775607ca46eSDavid Howells * @NL80211_BAND_5GHZ: around 5 GHz band (4.9 - 5.7 GHz) 3776607ca46eSDavid Howells * @NL80211_BAND_60GHZ: around 60 GHz band (58.32 - 64.80 GHz) 377757fbcce3SJohannes Berg * @NUM_NL80211_BANDS: number of bands, avoid using this in userspace 377857fbcce3SJohannes Berg * since newer kernel versions may support more bands 3779607ca46eSDavid Howells */ 3780607ca46eSDavid Howells enum nl80211_band { 3781607ca46eSDavid Howells NL80211_BAND_2GHZ, 3782607ca46eSDavid Howells NL80211_BAND_5GHZ, 3783607ca46eSDavid Howells NL80211_BAND_60GHZ, 378457fbcce3SJohannes Berg 378557fbcce3SJohannes Berg NUM_NL80211_BANDS, 3786607ca46eSDavid Howells }; 3787607ca46eSDavid Howells 3788607ca46eSDavid Howells /** 3789607ca46eSDavid Howells * enum nl80211_ps_state - powersave state 3790607ca46eSDavid Howells * @NL80211_PS_DISABLED: powersave is disabled 3791607ca46eSDavid Howells * @NL80211_PS_ENABLED: powersave is enabled 3792607ca46eSDavid Howells */ 3793607ca46eSDavid Howells enum nl80211_ps_state { 3794607ca46eSDavid Howells NL80211_PS_DISABLED, 3795607ca46eSDavid Howells NL80211_PS_ENABLED, 3796607ca46eSDavid Howells }; 3797607ca46eSDavid Howells 3798607ca46eSDavid Howells /** 3799607ca46eSDavid Howells * enum nl80211_attr_cqm - connection quality monitor attributes 3800607ca46eSDavid Howells * @__NL80211_ATTR_CQM_INVALID: invalid 3801607ca46eSDavid Howells * @NL80211_ATTR_CQM_RSSI_THOLD: RSSI threshold in dBm. This value specifies 3802607ca46eSDavid Howells * the threshold for the RSSI level at which an event will be sent. Zero 3803607ca46eSDavid Howells * to disable. 3804607ca46eSDavid Howells * @NL80211_ATTR_CQM_RSSI_HYST: RSSI hysteresis in dBm. This value specifies 3805607ca46eSDavid Howells * the minimum amount the RSSI level must change after an event before a 3806607ca46eSDavid Howells * new event may be issued (to reduce effects of RSSI oscillation). 3807607ca46eSDavid Howells * @NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT: RSSI threshold event 3808607ca46eSDavid Howells * @NL80211_ATTR_CQM_PKT_LOSS_EVENT: a u32 value indicating that this many 3809607ca46eSDavid Howells * consecutive packets were not acknowledged by the peer 3810607ca46eSDavid Howells * @NL80211_ATTR_CQM_TXE_RATE: TX error rate in %. Minimum % of TX failures 3811607ca46eSDavid Howells * during the given %NL80211_ATTR_CQM_TXE_INTVL before an 3812607ca46eSDavid Howells * %NL80211_CMD_NOTIFY_CQM with reported %NL80211_ATTR_CQM_TXE_RATE and 3813607ca46eSDavid Howells * %NL80211_ATTR_CQM_TXE_PKTS is generated. 3814607ca46eSDavid Howells * @NL80211_ATTR_CQM_TXE_PKTS: number of attempted packets in a given 3815607ca46eSDavid Howells * %NL80211_ATTR_CQM_TXE_INTVL before %NL80211_ATTR_CQM_TXE_RATE is 3816607ca46eSDavid Howells * checked. 3817607ca46eSDavid Howells * @NL80211_ATTR_CQM_TXE_INTVL: interval in seconds. Specifies the periodic 3818607ca46eSDavid Howells * interval in which %NL80211_ATTR_CQM_TXE_PKTS and 3819607ca46eSDavid Howells * %NL80211_ATTR_CQM_TXE_RATE must be satisfied before generating an 3820607ca46eSDavid Howells * %NL80211_CMD_NOTIFY_CQM. Set to 0 to turn off TX error reporting. 382198f03342SJohannes Berg * @NL80211_ATTR_CQM_BEACON_LOSS_EVENT: flag attribute that's set in a beacon 382298f03342SJohannes Berg * loss event 3823607ca46eSDavid Howells * @__NL80211_ATTR_CQM_AFTER_LAST: internal 3824607ca46eSDavid Howells * @NL80211_ATTR_CQM_MAX: highest key attribute 3825607ca46eSDavid Howells */ 3826607ca46eSDavid Howells enum nl80211_attr_cqm { 3827607ca46eSDavid Howells __NL80211_ATTR_CQM_INVALID, 3828607ca46eSDavid Howells NL80211_ATTR_CQM_RSSI_THOLD, 3829607ca46eSDavid Howells NL80211_ATTR_CQM_RSSI_HYST, 3830607ca46eSDavid Howells NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT, 3831607ca46eSDavid Howells NL80211_ATTR_CQM_PKT_LOSS_EVENT, 3832607ca46eSDavid Howells NL80211_ATTR_CQM_TXE_RATE, 3833607ca46eSDavid Howells NL80211_ATTR_CQM_TXE_PKTS, 3834607ca46eSDavid Howells NL80211_ATTR_CQM_TXE_INTVL, 383598f03342SJohannes Berg NL80211_ATTR_CQM_BEACON_LOSS_EVENT, 3836607ca46eSDavid Howells 3837607ca46eSDavid Howells /* keep last */ 3838607ca46eSDavid Howells __NL80211_ATTR_CQM_AFTER_LAST, 3839607ca46eSDavid Howells NL80211_ATTR_CQM_MAX = __NL80211_ATTR_CQM_AFTER_LAST - 1 3840607ca46eSDavid Howells }; 3841607ca46eSDavid Howells 3842607ca46eSDavid Howells /** 3843607ca46eSDavid Howells * enum nl80211_cqm_rssi_threshold_event - RSSI threshold event 3844607ca46eSDavid Howells * @NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW: The RSSI level is lower than the 3845607ca46eSDavid Howells * configured threshold 3846607ca46eSDavid Howells * @NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH: The RSSI is higher than the 3847607ca46eSDavid Howells * configured threshold 384898f03342SJohannes Berg * @NL80211_CQM_RSSI_BEACON_LOSS_EVENT: (reserved, never sent) 3849607ca46eSDavid Howells */ 3850607ca46eSDavid Howells enum nl80211_cqm_rssi_threshold_event { 3851607ca46eSDavid Howells NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW, 3852607ca46eSDavid Howells NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH, 3853607ca46eSDavid Howells NL80211_CQM_RSSI_BEACON_LOSS_EVENT, 3854607ca46eSDavid Howells }; 3855607ca46eSDavid Howells 3856607ca46eSDavid Howells 3857607ca46eSDavid Howells /** 3858607ca46eSDavid Howells * enum nl80211_tx_power_setting - TX power adjustment 3859607ca46eSDavid Howells * @NL80211_TX_POWER_AUTOMATIC: automatically determine transmit power 3860607ca46eSDavid Howells * @NL80211_TX_POWER_LIMITED: limit TX power by the mBm parameter 3861607ca46eSDavid Howells * @NL80211_TX_POWER_FIXED: fix TX power to the mBm parameter 3862607ca46eSDavid Howells */ 3863607ca46eSDavid Howells enum nl80211_tx_power_setting { 3864607ca46eSDavid Howells NL80211_TX_POWER_AUTOMATIC, 3865607ca46eSDavid Howells NL80211_TX_POWER_LIMITED, 3866607ca46eSDavid Howells NL80211_TX_POWER_FIXED, 3867607ca46eSDavid Howells }; 3868607ca46eSDavid Howells 3869607ca46eSDavid Howells /** 387050ac6607SAmitkumar Karwar * enum nl80211_packet_pattern_attr - packet pattern attribute 387150ac6607SAmitkumar Karwar * @__NL80211_PKTPAT_INVALID: invalid number for nested attribute 387250ac6607SAmitkumar Karwar * @NL80211_PKTPAT_PATTERN: the pattern, values where the mask has 3873607ca46eSDavid Howells * a zero bit are ignored 387450ac6607SAmitkumar Karwar * @NL80211_PKTPAT_MASK: pattern mask, must be long enough to have 3875607ca46eSDavid Howells * a bit for each byte in the pattern. The lowest-order bit corresponds 3876607ca46eSDavid Howells * to the first byte of the pattern, but the bytes of the pattern are 3877607ca46eSDavid Howells * in a little-endian-like format, i.e. the 9th byte of the pattern 3878607ca46eSDavid Howells * corresponds to the lowest-order bit in the second byte of the mask. 3879607ca46eSDavid Howells * For example: The match 00:xx:00:00:xx:00:00:00:00:xx:xx:xx (where 3880607ca46eSDavid Howells * xx indicates "don't care") would be represented by a pattern of 3881b6a7bcebSAmitkumar Karwar * twelve zero bytes, and a mask of "0xed,0x01". 3882607ca46eSDavid Howells * Note that the pattern matching is done as though frames were not 3883607ca46eSDavid Howells * 802.11 frames but 802.3 frames, i.e. the frame is fully unpacked 3884607ca46eSDavid Howells * first (including SNAP header unpacking) and then matched. 388550ac6607SAmitkumar Karwar * @NL80211_PKTPAT_OFFSET: packet offset, pattern is matched after 3886bb92d199SAmitkumar Karwar * these fixed number of bytes of received packet 388750ac6607SAmitkumar Karwar * @NUM_NL80211_PKTPAT: number of attributes 388850ac6607SAmitkumar Karwar * @MAX_NL80211_PKTPAT: max attribute number 3889607ca46eSDavid Howells */ 389050ac6607SAmitkumar Karwar enum nl80211_packet_pattern_attr { 389150ac6607SAmitkumar Karwar __NL80211_PKTPAT_INVALID, 389250ac6607SAmitkumar Karwar NL80211_PKTPAT_MASK, 389350ac6607SAmitkumar Karwar NL80211_PKTPAT_PATTERN, 389450ac6607SAmitkumar Karwar NL80211_PKTPAT_OFFSET, 3895607ca46eSDavid Howells 389650ac6607SAmitkumar Karwar NUM_NL80211_PKTPAT, 389750ac6607SAmitkumar Karwar MAX_NL80211_PKTPAT = NUM_NL80211_PKTPAT - 1, 3898607ca46eSDavid Howells }; 3899607ca46eSDavid Howells 3900607ca46eSDavid Howells /** 390150ac6607SAmitkumar Karwar * struct nl80211_pattern_support - packet pattern support information 3902607ca46eSDavid Howells * @max_patterns: maximum number of patterns supported 3903607ca46eSDavid Howells * @min_pattern_len: minimum length of each pattern 3904607ca46eSDavid Howells * @max_pattern_len: maximum length of each pattern 3905bb92d199SAmitkumar Karwar * @max_pkt_offset: maximum Rx packet offset 3906607ca46eSDavid Howells * 3907607ca46eSDavid Howells * This struct is carried in %NL80211_WOWLAN_TRIG_PKT_PATTERN when 3908be29b99aSAmitkumar Karwar * that is part of %NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED or in 3909be29b99aSAmitkumar Karwar * %NL80211_ATTR_COALESCE_RULE_PKT_PATTERN when that is part of 3910be29b99aSAmitkumar Karwar * %NL80211_ATTR_COALESCE_RULE in the capability information given 3911be29b99aSAmitkumar Karwar * by the kernel to userspace. 3912607ca46eSDavid Howells */ 391350ac6607SAmitkumar Karwar struct nl80211_pattern_support { 3914607ca46eSDavid Howells __u32 max_patterns; 3915607ca46eSDavid Howells __u32 min_pattern_len; 3916607ca46eSDavid Howells __u32 max_pattern_len; 3917bb92d199SAmitkumar Karwar __u32 max_pkt_offset; 3918607ca46eSDavid Howells } __attribute__((packed)); 3919607ca46eSDavid Howells 392050ac6607SAmitkumar Karwar /* only for backward compatibility */ 392150ac6607SAmitkumar Karwar #define __NL80211_WOWLAN_PKTPAT_INVALID __NL80211_PKTPAT_INVALID 392250ac6607SAmitkumar Karwar #define NL80211_WOWLAN_PKTPAT_MASK NL80211_PKTPAT_MASK 392350ac6607SAmitkumar Karwar #define NL80211_WOWLAN_PKTPAT_PATTERN NL80211_PKTPAT_PATTERN 392450ac6607SAmitkumar Karwar #define NL80211_WOWLAN_PKTPAT_OFFSET NL80211_PKTPAT_OFFSET 392550ac6607SAmitkumar Karwar #define NUM_NL80211_WOWLAN_PKTPAT NUM_NL80211_PKTPAT 392650ac6607SAmitkumar Karwar #define MAX_NL80211_WOWLAN_PKTPAT MAX_NL80211_PKTPAT 392750ac6607SAmitkumar Karwar #define nl80211_wowlan_pattern_support nl80211_pattern_support 392850ac6607SAmitkumar Karwar 3929607ca46eSDavid Howells /** 3930607ca46eSDavid Howells * enum nl80211_wowlan_triggers - WoWLAN trigger definitions 3931607ca46eSDavid Howells * @__NL80211_WOWLAN_TRIG_INVALID: invalid number for nested attributes 3932607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_ANY: wake up on any activity, do not really put 3933607ca46eSDavid Howells * the chip into a special state -- works best with chips that have 3934607ca46eSDavid Howells * support for low-power operation already (flag) 393598fc4386SJohannes Berg * Note that this mode is incompatible with all of the others, if 393698fc4386SJohannes Berg * any others are even supported by the device. 3937607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_DISCONNECT: wake up on disconnect, the way disconnect 3938607ca46eSDavid Howells * is detected is implementation-specific (flag) 3939607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_MAGIC_PKT: wake up on magic packet (6x 0xff, followed 3940607ca46eSDavid Howells * by 16 repetitions of MAC addr, anywhere in payload) (flag) 3941607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_PKT_PATTERN: wake up on the specified packet patterns 3942607ca46eSDavid Howells * which are passed in an array of nested attributes, each nested attribute 3943607ca46eSDavid Howells * defining a with attributes from &struct nl80211_wowlan_trig_pkt_pattern. 3944bb92d199SAmitkumar Karwar * Each pattern defines a wakeup packet. Packet offset is associated with 3945bb92d199SAmitkumar Karwar * each pattern which is used while matching the pattern. The matching is 3946bb92d199SAmitkumar Karwar * done on the MSDU, i.e. as though the packet was an 802.3 packet, so the 3947bb92d199SAmitkumar Karwar * pattern matching is done after the packet is converted to the MSDU. 3948607ca46eSDavid Howells * 3949607ca46eSDavid Howells * In %NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED, it is a binary attribute 395050ac6607SAmitkumar Karwar * carrying a &struct nl80211_pattern_support. 3951cd8f7cb4SJohannes Berg * 3952cd8f7cb4SJohannes Berg * When reporting wakeup. it is a u32 attribute containing the 0-based 3953cd8f7cb4SJohannes Berg * index of the pattern that caused the wakeup, in the patterns passed 3954cd8f7cb4SJohannes Berg * to the kernel when configuring. 3955607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED: Not a real trigger, and cannot be 3956607ca46eSDavid Howells * used when setting, used only to indicate that GTK rekeying is supported 3957607ca46eSDavid Howells * by the device (flag) 3958607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE: wake up on GTK rekey failure (if 3959607ca46eSDavid Howells * done by the device) (flag) 3960607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST: wake up on EAP Identity Request 3961607ca46eSDavid Howells * packet (flag) 3962607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE: wake up on 4-way handshake (flag) 3963607ca46eSDavid Howells * @NL80211_WOWLAN_TRIG_RFKILL_RELEASE: wake up when rfkill is released 3964607ca46eSDavid Howells * (on devices that have rfkill in the device) (flag) 3965cd8f7cb4SJohannes Berg * @NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211: For wakeup reporting only, contains 3966cd8f7cb4SJohannes Berg * the 802.11 packet that caused the wakeup, e.g. a deauth frame. The frame 3967cd8f7cb4SJohannes Berg * may be truncated, the @NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN 3968cd8f7cb4SJohannes Berg * attribute contains the original length. 3969cd8f7cb4SJohannes Berg * @NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN: Original length of the 802.11 3970cd8f7cb4SJohannes Berg * packet, may be bigger than the @NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211 3971cd8f7cb4SJohannes Berg * attribute if the packet was truncated somewhere. 3972cd8f7cb4SJohannes Berg * @NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023: For wakeup reporting only, contains the 3973cd8f7cb4SJohannes Berg * 802.11 packet that caused the wakeup, e.g. a magic packet. The frame may 3974cd8f7cb4SJohannes Berg * be truncated, the @NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN attribute 3975cd8f7cb4SJohannes Berg * contains the original length. 3976cd8f7cb4SJohannes Berg * @NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN: Original length of the 802.3 3977cd8f7cb4SJohannes Berg * packet, may be bigger than the @NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023 3978cd8f7cb4SJohannes Berg * attribute if the packet was truncated somewhere. 39792a0e047eSJohannes Berg * @NL80211_WOWLAN_TRIG_TCP_CONNECTION: TCP connection wake, see DOC section 39802a0e047eSJohannes Berg * "TCP connection wakeup" for more details. This is a nested attribute 39812a0e047eSJohannes Berg * containing the exact information for establishing and keeping alive 39822a0e047eSJohannes Berg * the TCP connection. 39832a0e047eSJohannes Berg * @NL80211_WOWLAN_TRIG_TCP_WAKEUP_MATCH: For wakeup reporting only, the 39842a0e047eSJohannes Berg * wakeup packet was received on the TCP connection 39852a0e047eSJohannes Berg * @NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST: For wakeup reporting only, the 39862a0e047eSJohannes Berg * TCP connection was lost or failed to be established 39872a0e047eSJohannes Berg * @NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS: For wakeup reporting only, 39882a0e047eSJohannes Berg * the TCP connection ran out of tokens to use for data to send to the 39892a0e047eSJohannes Berg * service 39908cd4d456SLuciano Coelho * @NL80211_WOWLAN_TRIG_NET_DETECT: wake up when a configured network 39918cd4d456SLuciano Coelho * is detected. This is a nested attribute that contains the 39928cd4d456SLuciano Coelho * same attributes used with @NL80211_CMD_START_SCHED_SCAN. It 39939c748934SLuciano Coelho * specifies how the scan is performed (e.g. the interval, the 39949c748934SLuciano Coelho * channels to scan and the initial delay) as well as the scan 39959c748934SLuciano Coelho * results that will trigger a wake (i.e. the matchsets). This 39969c748934SLuciano Coelho * attribute is also sent in a response to 39979c748934SLuciano Coelho * @NL80211_CMD_GET_WIPHY, indicating the number of match sets 39989c748934SLuciano Coelho * supported by the driver (u32). 39998cd4d456SLuciano Coelho * @NL80211_WOWLAN_TRIG_NET_DETECT_RESULTS: nested attribute 40008cd4d456SLuciano Coelho * containing an array with information about what triggered the 40018cd4d456SLuciano Coelho * wake up. If no elements are present in the array, it means 40028cd4d456SLuciano Coelho * that the information is not available. If more than one 40038cd4d456SLuciano Coelho * element is present, it means that more than one match 40048cd4d456SLuciano Coelho * occurred. 40058cd4d456SLuciano Coelho * Each element in the array is a nested attribute that contains 40068cd4d456SLuciano Coelho * one optional %NL80211_ATTR_SSID attribute and one optional 40078cd4d456SLuciano Coelho * %NL80211_ATTR_SCAN_FREQUENCIES attribute. At least one of 40088cd4d456SLuciano Coelho * these attributes must be present. If 40098cd4d456SLuciano Coelho * %NL80211_ATTR_SCAN_FREQUENCIES contains more than one 40108cd4d456SLuciano Coelho * frequency, it means that the match occurred in more than one 40118cd4d456SLuciano Coelho * channel. 4012607ca46eSDavid Howells * @NUM_NL80211_WOWLAN_TRIG: number of wake on wireless triggers 4013607ca46eSDavid Howells * @MAX_NL80211_WOWLAN_TRIG: highest wowlan trigger attribute number 4014cd8f7cb4SJohannes Berg * 4015cd8f7cb4SJohannes Berg * These nested attributes are used to configure the wakeup triggers and 4016cd8f7cb4SJohannes Berg * to report the wakeup reason(s). 4017607ca46eSDavid Howells */ 4018607ca46eSDavid Howells enum nl80211_wowlan_triggers { 4019607ca46eSDavid Howells __NL80211_WOWLAN_TRIG_INVALID, 4020607ca46eSDavid Howells NL80211_WOWLAN_TRIG_ANY, 4021607ca46eSDavid Howells NL80211_WOWLAN_TRIG_DISCONNECT, 4022607ca46eSDavid Howells NL80211_WOWLAN_TRIG_MAGIC_PKT, 4023607ca46eSDavid Howells NL80211_WOWLAN_TRIG_PKT_PATTERN, 4024607ca46eSDavid Howells NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED, 4025607ca46eSDavid Howells NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE, 4026607ca46eSDavid Howells NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST, 4027607ca46eSDavid Howells NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE, 4028607ca46eSDavid Howells NL80211_WOWLAN_TRIG_RFKILL_RELEASE, 4029cd8f7cb4SJohannes Berg NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211, 4030cd8f7cb4SJohannes Berg NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN, 4031cd8f7cb4SJohannes Berg NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023, 4032cd8f7cb4SJohannes Berg NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN, 40332a0e047eSJohannes Berg NL80211_WOWLAN_TRIG_TCP_CONNECTION, 40342a0e047eSJohannes Berg NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH, 40352a0e047eSJohannes Berg NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST, 40362a0e047eSJohannes Berg NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS, 40378cd4d456SLuciano Coelho NL80211_WOWLAN_TRIG_NET_DETECT, 40388cd4d456SLuciano Coelho NL80211_WOWLAN_TRIG_NET_DETECT_RESULTS, 4039607ca46eSDavid Howells 4040607ca46eSDavid Howells /* keep last */ 4041607ca46eSDavid Howells NUM_NL80211_WOWLAN_TRIG, 4042607ca46eSDavid Howells MAX_NL80211_WOWLAN_TRIG = NUM_NL80211_WOWLAN_TRIG - 1 4043607ca46eSDavid Howells }; 4044607ca46eSDavid Howells 4045607ca46eSDavid Howells /** 40462a0e047eSJohannes Berg * DOC: TCP connection wakeup 40472a0e047eSJohannes Berg * 40482a0e047eSJohannes Berg * Some devices can establish a TCP connection in order to be woken up by a 40492a0e047eSJohannes Berg * packet coming in from outside their network segment, or behind NAT. If 40502a0e047eSJohannes Berg * configured, the device will establish a TCP connection to the given 40512a0e047eSJohannes Berg * service, and periodically send data to that service. The first data 40522a0e047eSJohannes Berg * packet is usually transmitted after SYN/ACK, also ACKing the SYN/ACK. 40532a0e047eSJohannes Berg * The data packets can optionally include a (little endian) sequence 40542a0e047eSJohannes Berg * number (in the TCP payload!) that is generated by the device, and, also 40552a0e047eSJohannes Berg * optionally, a token from a list of tokens. This serves as a keep-alive 40562a0e047eSJohannes Berg * with the service, and for NATed connections, etc. 40572a0e047eSJohannes Berg * 40582a0e047eSJohannes Berg * During this keep-alive period, the server doesn't send any data to the 40592a0e047eSJohannes Berg * client. When receiving data, it is compared against the wakeup pattern 40602a0e047eSJohannes Berg * (and mask) and if it matches, the host is woken up. Similarly, if the 40612a0e047eSJohannes Berg * connection breaks or cannot be established to start with, the host is 40622a0e047eSJohannes Berg * also woken up. 40632a0e047eSJohannes Berg * 40642a0e047eSJohannes Berg * Developer's note: ARP offload is required for this, otherwise TCP 40652a0e047eSJohannes Berg * response packets might not go through correctly. 40662a0e047eSJohannes Berg */ 40672a0e047eSJohannes Berg 40682a0e047eSJohannes Berg /** 40692a0e047eSJohannes Berg * struct nl80211_wowlan_tcp_data_seq - WoWLAN TCP data sequence 40702a0e047eSJohannes Berg * @start: starting value 40712a0e047eSJohannes Berg * @offset: offset of sequence number in packet 40722a0e047eSJohannes Berg * @len: length of the sequence value to write, 1 through 4 40732a0e047eSJohannes Berg * 40742a0e047eSJohannes Berg * Note: don't confuse with the TCP sequence number(s), this is for the 40752a0e047eSJohannes Berg * keepalive packet payload. The actual value is written into the packet 40762a0e047eSJohannes Berg * in little endian. 40772a0e047eSJohannes Berg */ 40782a0e047eSJohannes Berg struct nl80211_wowlan_tcp_data_seq { 40792a0e047eSJohannes Berg __u32 start, offset, len; 40802a0e047eSJohannes Berg }; 40812a0e047eSJohannes Berg 40822a0e047eSJohannes Berg /** 40832a0e047eSJohannes Berg * struct nl80211_wowlan_tcp_data_token - WoWLAN TCP data token config 40842a0e047eSJohannes Berg * @offset: offset of token in packet 40852a0e047eSJohannes Berg * @len: length of each token 40862a0e047eSJohannes Berg * @token_stream: stream of data to be used for the tokens, the length must 40872a0e047eSJohannes Berg * be a multiple of @len for this to make sense 40882a0e047eSJohannes Berg */ 40892a0e047eSJohannes Berg struct nl80211_wowlan_tcp_data_token { 40902a0e047eSJohannes Berg __u32 offset, len; 40912a0e047eSJohannes Berg __u8 token_stream[]; 40922a0e047eSJohannes Berg }; 40932a0e047eSJohannes Berg 40942a0e047eSJohannes Berg /** 40952a0e047eSJohannes Berg * struct nl80211_wowlan_tcp_data_token_feature - data token features 40962a0e047eSJohannes Berg * @min_len: minimum token length 40972a0e047eSJohannes Berg * @max_len: maximum token length 40982a0e047eSJohannes Berg * @bufsize: total available token buffer size (max size of @token_stream) 40992a0e047eSJohannes Berg */ 41002a0e047eSJohannes Berg struct nl80211_wowlan_tcp_data_token_feature { 41012a0e047eSJohannes Berg __u32 min_len, max_len, bufsize; 41022a0e047eSJohannes Berg }; 41032a0e047eSJohannes Berg 41042a0e047eSJohannes Berg /** 41052a0e047eSJohannes Berg * enum nl80211_wowlan_tcp_attrs - WoWLAN TCP connection parameters 41062a0e047eSJohannes Berg * @__NL80211_WOWLAN_TCP_INVALID: invalid number for nested attributes 41072a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_SRC_IPV4: source IPv4 address (in network byte order) 41082a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_DST_IPV4: destination IPv4 address 41092a0e047eSJohannes Berg * (in network byte order) 41102a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_DST_MAC: destination MAC address, this is given because 41112a0e047eSJohannes Berg * route lookup when configured might be invalid by the time we suspend, 41122a0e047eSJohannes Berg * and doing a route lookup when suspending is no longer possible as it 41132a0e047eSJohannes Berg * might require ARP querying. 41142a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_SRC_PORT: source port (u16); optional, if not given a 41152a0e047eSJohannes Berg * socket and port will be allocated 41162a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_DST_PORT: destination port (u16) 41172a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_DATA_PAYLOAD: data packet payload, at least one byte. 41182a0e047eSJohannes Berg * For feature advertising, a u32 attribute holding the maximum length 41192a0e047eSJohannes Berg * of the data payload. 41202a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ: data packet sequence configuration 41212a0e047eSJohannes Berg * (if desired), a &struct nl80211_wowlan_tcp_data_seq. For feature 41222a0e047eSJohannes Berg * advertising it is just a flag 41232a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN: data packet token configuration, 41242a0e047eSJohannes Berg * see &struct nl80211_wowlan_tcp_data_token and for advertising see 41252a0e047eSJohannes Berg * &struct nl80211_wowlan_tcp_data_token_feature. 41262a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_DATA_INTERVAL: data interval in seconds, maximum 41272a0e047eSJohannes Berg * interval in feature advertising (u32) 41282a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_WAKE_PAYLOAD: wake packet payload, for advertising a 41292a0e047eSJohannes Berg * u32 attribute holding the maximum length 41302a0e047eSJohannes Berg * @NL80211_WOWLAN_TCP_WAKE_MASK: Wake packet payload mask, not used for 413150ac6607SAmitkumar Karwar * feature advertising. The mask works like @NL80211_PKTPAT_MASK 41322a0e047eSJohannes Berg * but on the TCP payload only. 41332a0e047eSJohannes Berg * @NUM_NL80211_WOWLAN_TCP: number of TCP attributes 41342a0e047eSJohannes Berg * @MAX_NL80211_WOWLAN_TCP: highest attribute number 41352a0e047eSJohannes Berg */ 41362a0e047eSJohannes Berg enum nl80211_wowlan_tcp_attrs { 41372a0e047eSJohannes Berg __NL80211_WOWLAN_TCP_INVALID, 41382a0e047eSJohannes Berg NL80211_WOWLAN_TCP_SRC_IPV4, 41392a0e047eSJohannes Berg NL80211_WOWLAN_TCP_DST_IPV4, 41402a0e047eSJohannes Berg NL80211_WOWLAN_TCP_DST_MAC, 41412a0e047eSJohannes Berg NL80211_WOWLAN_TCP_SRC_PORT, 41422a0e047eSJohannes Berg NL80211_WOWLAN_TCP_DST_PORT, 41432a0e047eSJohannes Berg NL80211_WOWLAN_TCP_DATA_PAYLOAD, 41442a0e047eSJohannes Berg NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ, 41452a0e047eSJohannes Berg NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN, 41462a0e047eSJohannes Berg NL80211_WOWLAN_TCP_DATA_INTERVAL, 41472a0e047eSJohannes Berg NL80211_WOWLAN_TCP_WAKE_PAYLOAD, 41482a0e047eSJohannes Berg NL80211_WOWLAN_TCP_WAKE_MASK, 41492a0e047eSJohannes Berg 41502a0e047eSJohannes Berg /* keep last */ 41512a0e047eSJohannes Berg NUM_NL80211_WOWLAN_TCP, 41522a0e047eSJohannes Berg MAX_NL80211_WOWLAN_TCP = NUM_NL80211_WOWLAN_TCP - 1 41532a0e047eSJohannes Berg }; 41542a0e047eSJohannes Berg 41552a0e047eSJohannes Berg /** 4156be29b99aSAmitkumar Karwar * struct nl80211_coalesce_rule_support - coalesce rule support information 4157be29b99aSAmitkumar Karwar * @max_rules: maximum number of rules supported 4158be29b99aSAmitkumar Karwar * @pat: packet pattern support information 4159be29b99aSAmitkumar Karwar * @max_delay: maximum supported coalescing delay in msecs 4160be29b99aSAmitkumar Karwar * 4161be29b99aSAmitkumar Karwar * This struct is carried in %NL80211_ATTR_COALESCE_RULE in the 4162be29b99aSAmitkumar Karwar * capability information given by the kernel to userspace. 4163be29b99aSAmitkumar Karwar */ 4164be29b99aSAmitkumar Karwar struct nl80211_coalesce_rule_support { 4165be29b99aSAmitkumar Karwar __u32 max_rules; 4166be29b99aSAmitkumar Karwar struct nl80211_pattern_support pat; 4167be29b99aSAmitkumar Karwar __u32 max_delay; 4168be29b99aSAmitkumar Karwar } __attribute__((packed)); 4169be29b99aSAmitkumar Karwar 4170be29b99aSAmitkumar Karwar /** 4171be29b99aSAmitkumar Karwar * enum nl80211_attr_coalesce_rule - coalesce rule attribute 4172be29b99aSAmitkumar Karwar * @__NL80211_COALESCE_RULE_INVALID: invalid number for nested attribute 4173be29b99aSAmitkumar Karwar * @NL80211_ATTR_COALESCE_RULE_DELAY: delay in msecs used for packet coalescing 4174be29b99aSAmitkumar Karwar * @NL80211_ATTR_COALESCE_RULE_CONDITION: condition for packet coalescence, 4175be29b99aSAmitkumar Karwar * see &enum nl80211_coalesce_condition. 4176be29b99aSAmitkumar Karwar * @NL80211_ATTR_COALESCE_RULE_PKT_PATTERN: packet offset, pattern is matched 4177be29b99aSAmitkumar Karwar * after these fixed number of bytes of received packet 4178be29b99aSAmitkumar Karwar * @NUM_NL80211_ATTR_COALESCE_RULE: number of attributes 4179be29b99aSAmitkumar Karwar * @NL80211_ATTR_COALESCE_RULE_MAX: max attribute number 4180be29b99aSAmitkumar Karwar */ 4181be29b99aSAmitkumar Karwar enum nl80211_attr_coalesce_rule { 4182be29b99aSAmitkumar Karwar __NL80211_COALESCE_RULE_INVALID, 4183be29b99aSAmitkumar Karwar NL80211_ATTR_COALESCE_RULE_DELAY, 4184be29b99aSAmitkumar Karwar NL80211_ATTR_COALESCE_RULE_CONDITION, 4185be29b99aSAmitkumar Karwar NL80211_ATTR_COALESCE_RULE_PKT_PATTERN, 4186be29b99aSAmitkumar Karwar 4187be29b99aSAmitkumar Karwar /* keep last */ 4188be29b99aSAmitkumar Karwar NUM_NL80211_ATTR_COALESCE_RULE, 4189be29b99aSAmitkumar Karwar NL80211_ATTR_COALESCE_RULE_MAX = NUM_NL80211_ATTR_COALESCE_RULE - 1 4190be29b99aSAmitkumar Karwar }; 4191be29b99aSAmitkumar Karwar 4192be29b99aSAmitkumar Karwar /** 4193be29b99aSAmitkumar Karwar * enum nl80211_coalesce_condition - coalesce rule conditions 4194be29b99aSAmitkumar Karwar * @NL80211_COALESCE_CONDITION_MATCH: coalaesce Rx packets when patterns 4195be29b99aSAmitkumar Karwar * in a rule are matched. 4196be29b99aSAmitkumar Karwar * @NL80211_COALESCE_CONDITION_NO_MATCH: coalesce Rx packets when patterns 4197be29b99aSAmitkumar Karwar * in a rule are not matched. 4198be29b99aSAmitkumar Karwar */ 4199be29b99aSAmitkumar Karwar enum nl80211_coalesce_condition { 4200be29b99aSAmitkumar Karwar NL80211_COALESCE_CONDITION_MATCH, 4201be29b99aSAmitkumar Karwar NL80211_COALESCE_CONDITION_NO_MATCH 4202be29b99aSAmitkumar Karwar }; 4203be29b99aSAmitkumar Karwar 4204be29b99aSAmitkumar Karwar /** 4205607ca46eSDavid Howells * enum nl80211_iface_limit_attrs - limit attributes 4206607ca46eSDavid Howells * @NL80211_IFACE_LIMIT_UNSPEC: (reserved) 4207607ca46eSDavid Howells * @NL80211_IFACE_LIMIT_MAX: maximum number of interfaces that 4208607ca46eSDavid Howells * can be chosen from this set of interface types (u32) 4209607ca46eSDavid Howells * @NL80211_IFACE_LIMIT_TYPES: nested attribute containing a 4210607ca46eSDavid Howells * flag attribute for each interface type in this set 4211607ca46eSDavid Howells * @NUM_NL80211_IFACE_LIMIT: number of attributes 4212607ca46eSDavid Howells * @MAX_NL80211_IFACE_LIMIT: highest attribute number 4213607ca46eSDavid Howells */ 4214607ca46eSDavid Howells enum nl80211_iface_limit_attrs { 4215607ca46eSDavid Howells NL80211_IFACE_LIMIT_UNSPEC, 4216607ca46eSDavid Howells NL80211_IFACE_LIMIT_MAX, 4217607ca46eSDavid Howells NL80211_IFACE_LIMIT_TYPES, 4218607ca46eSDavid Howells 4219607ca46eSDavid Howells /* keep last */ 4220607ca46eSDavid Howells NUM_NL80211_IFACE_LIMIT, 4221607ca46eSDavid Howells MAX_NL80211_IFACE_LIMIT = NUM_NL80211_IFACE_LIMIT - 1 4222607ca46eSDavid Howells }; 4223607ca46eSDavid Howells 4224607ca46eSDavid Howells /** 4225607ca46eSDavid Howells * enum nl80211_if_combination_attrs -- interface combination attributes 4226607ca46eSDavid Howells * 4227607ca46eSDavid Howells * @NL80211_IFACE_COMB_UNSPEC: (reserved) 4228607ca46eSDavid Howells * @NL80211_IFACE_COMB_LIMITS: Nested attributes containing the limits 4229607ca46eSDavid Howells * for given interface types, see &enum nl80211_iface_limit_attrs. 4230607ca46eSDavid Howells * @NL80211_IFACE_COMB_MAXNUM: u32 attribute giving the total number of 4231607ca46eSDavid Howells * interfaces that can be created in this group. This number doesn't 4232607ca46eSDavid Howells * apply to interfaces purely managed in software, which are listed 4233607ca46eSDavid Howells * in a separate attribute %NL80211_ATTR_INTERFACES_SOFTWARE. 4234607ca46eSDavid Howells * @NL80211_IFACE_COMB_STA_AP_BI_MATCH: flag attribute specifying that 4235607ca46eSDavid Howells * beacon intervals within this group must be all the same even for 4236607ca46eSDavid Howells * infrastructure and AP/GO combinations, i.e. the GO(s) must adopt 4237607ca46eSDavid Howells * the infrastructure network's beacon interval. 4238607ca46eSDavid Howells * @NL80211_IFACE_COMB_NUM_CHANNELS: u32 attribute specifying how many 4239607ca46eSDavid Howells * different channels may be used within this group. 424011c4a075SSimon Wunderlich * @NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS: u32 attribute containing the bitmap 424111c4a075SSimon Wunderlich * of supported channel widths for radar detection. 42428c48b50aSFelix Fietkau * @NL80211_IFACE_COMB_RADAR_DETECT_REGIONS: u32 attribute containing the bitmap 42438c48b50aSFelix Fietkau * of supported regulatory regions for radar detection. 4244607ca46eSDavid Howells * @NUM_NL80211_IFACE_COMB: number of attributes 4245607ca46eSDavid Howells * @MAX_NL80211_IFACE_COMB: highest attribute number 4246607ca46eSDavid Howells * 4247607ca46eSDavid Howells * Examples: 4248607ca46eSDavid Howells * limits = [ #{STA} <= 1, #{AP} <= 1 ], matching BI, channels = 1, max = 2 4249607ca46eSDavid Howells * => allows an AP and a STA that must match BIs 4250607ca46eSDavid Howells * 4251607ca46eSDavid Howells * numbers = [ #{AP, P2P-GO} <= 8 ], channels = 1, max = 8 4252607ca46eSDavid Howells * => allows 8 of AP/GO 4253607ca46eSDavid Howells * 4254607ca46eSDavid Howells * numbers = [ #{STA} <= 2 ], channels = 2, max = 2 4255607ca46eSDavid Howells * => allows two STAs on different channels 4256607ca46eSDavid Howells * 4257607ca46eSDavid Howells * numbers = [ #{STA} <= 1, #{P2P-client,P2P-GO} <= 3 ], max = 4 4258607ca46eSDavid Howells * => allows a STA plus three P2P interfaces 4259607ca46eSDavid Howells * 4260607ca46eSDavid Howells * The list of these four possiblities could completely be contained 4261607ca46eSDavid Howells * within the %NL80211_ATTR_INTERFACE_COMBINATIONS attribute to indicate 4262607ca46eSDavid Howells * that any of these groups must match. 4263607ca46eSDavid Howells * 4264607ca46eSDavid Howells * "Combinations" of just a single interface will not be listed here, 4265607ca46eSDavid Howells * a single interface of any valid interface type is assumed to always 4266607ca46eSDavid Howells * be possible by itself. This means that implicitly, for each valid 4267607ca46eSDavid Howells * interface type, the following group always exists: 4268607ca46eSDavid Howells * numbers = [ #{<type>} <= 1 ], channels = 1, max = 1 4269607ca46eSDavid Howells */ 4270607ca46eSDavid Howells enum nl80211_if_combination_attrs { 4271607ca46eSDavid Howells NL80211_IFACE_COMB_UNSPEC, 4272607ca46eSDavid Howells NL80211_IFACE_COMB_LIMITS, 4273607ca46eSDavid Howells NL80211_IFACE_COMB_MAXNUM, 4274607ca46eSDavid Howells NL80211_IFACE_COMB_STA_AP_BI_MATCH, 4275607ca46eSDavid Howells NL80211_IFACE_COMB_NUM_CHANNELS, 427611c4a075SSimon Wunderlich NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS, 42778c48b50aSFelix Fietkau NL80211_IFACE_COMB_RADAR_DETECT_REGIONS, 4278607ca46eSDavid Howells 4279607ca46eSDavid Howells /* keep last */ 4280607ca46eSDavid Howells NUM_NL80211_IFACE_COMB, 4281607ca46eSDavid Howells MAX_NL80211_IFACE_COMB = NUM_NL80211_IFACE_COMB - 1 4282607ca46eSDavid Howells }; 4283607ca46eSDavid Howells 4284607ca46eSDavid Howells 4285607ca46eSDavid Howells /** 4286607ca46eSDavid Howells * enum nl80211_plink_state - state of a mesh peer link finite state machine 4287607ca46eSDavid Howells * 4288607ca46eSDavid Howells * @NL80211_PLINK_LISTEN: initial state, considered the implicit 4289607ca46eSDavid Howells * state of non existant mesh peer links 4290607ca46eSDavid Howells * @NL80211_PLINK_OPN_SNT: mesh plink open frame has been sent to 4291607ca46eSDavid Howells * this mesh peer 4292607ca46eSDavid Howells * @NL80211_PLINK_OPN_RCVD: mesh plink open frame has been received 4293607ca46eSDavid Howells * from this mesh peer 4294607ca46eSDavid Howells * @NL80211_PLINK_CNF_RCVD: mesh plink confirm frame has been 4295607ca46eSDavid Howells * received from this mesh peer 4296607ca46eSDavid Howells * @NL80211_PLINK_ESTAB: mesh peer link is established 4297607ca46eSDavid Howells * @NL80211_PLINK_HOLDING: mesh peer link is being closed or cancelled 4298607ca46eSDavid Howells * @NL80211_PLINK_BLOCKED: all frames transmitted from this mesh 4299607ca46eSDavid Howells * plink are discarded 4300607ca46eSDavid Howells * @NUM_NL80211_PLINK_STATES: number of peer link states 4301607ca46eSDavid Howells * @MAX_NL80211_PLINK_STATES: highest numerical value of plink states 4302607ca46eSDavid Howells */ 4303607ca46eSDavid Howells enum nl80211_plink_state { 4304607ca46eSDavid Howells NL80211_PLINK_LISTEN, 4305607ca46eSDavid Howells NL80211_PLINK_OPN_SNT, 4306607ca46eSDavid Howells NL80211_PLINK_OPN_RCVD, 4307607ca46eSDavid Howells NL80211_PLINK_CNF_RCVD, 4308607ca46eSDavid Howells NL80211_PLINK_ESTAB, 4309607ca46eSDavid Howells NL80211_PLINK_HOLDING, 4310607ca46eSDavid Howells NL80211_PLINK_BLOCKED, 4311607ca46eSDavid Howells 4312607ca46eSDavid Howells /* keep last */ 4313607ca46eSDavid Howells NUM_NL80211_PLINK_STATES, 4314607ca46eSDavid Howells MAX_NL80211_PLINK_STATES = NUM_NL80211_PLINK_STATES - 1 4315607ca46eSDavid Howells }; 4316607ca46eSDavid Howells 4317f8bacc21SJohannes Berg /** 4318f8bacc21SJohannes Berg * enum nl80211_plink_action - actions to perform in mesh peers 4319f8bacc21SJohannes Berg * 4320f8bacc21SJohannes Berg * @NL80211_PLINK_ACTION_NO_ACTION: perform no action 4321f8bacc21SJohannes Berg * @NL80211_PLINK_ACTION_OPEN: start mesh peer link establishment 4322f8bacc21SJohannes Berg * @NL80211_PLINK_ACTION_BLOCK: block traffic from this mesh peer 4323f8bacc21SJohannes Berg * @NUM_NL80211_PLINK_ACTIONS: number of possible actions 4324f8bacc21SJohannes Berg */ 4325f8bacc21SJohannes Berg enum plink_actions { 4326f8bacc21SJohannes Berg NL80211_PLINK_ACTION_NO_ACTION, 4327f8bacc21SJohannes Berg NL80211_PLINK_ACTION_OPEN, 4328f8bacc21SJohannes Berg NL80211_PLINK_ACTION_BLOCK, 4329f8bacc21SJohannes Berg 4330f8bacc21SJohannes Berg NUM_NL80211_PLINK_ACTIONS, 4331f8bacc21SJohannes Berg }; 4332f8bacc21SJohannes Berg 4333f8bacc21SJohannes Berg 4334607ca46eSDavid Howells #define NL80211_KCK_LEN 16 4335607ca46eSDavid Howells #define NL80211_KEK_LEN 16 4336607ca46eSDavid Howells #define NL80211_REPLAY_CTR_LEN 8 4337607ca46eSDavid Howells 4338607ca46eSDavid Howells /** 4339607ca46eSDavid Howells * enum nl80211_rekey_data - attributes for GTK rekey offload 4340607ca46eSDavid Howells * @__NL80211_REKEY_DATA_INVALID: invalid number for nested attributes 4341607ca46eSDavid Howells * @NL80211_REKEY_DATA_KEK: key encryption key (binary) 4342607ca46eSDavid Howells * @NL80211_REKEY_DATA_KCK: key confirmation key (binary) 4343607ca46eSDavid Howells * @NL80211_REKEY_DATA_REPLAY_CTR: replay counter (binary) 4344607ca46eSDavid Howells * @NUM_NL80211_REKEY_DATA: number of rekey attributes (internal) 4345607ca46eSDavid Howells * @MAX_NL80211_REKEY_DATA: highest rekey attribute (internal) 4346607ca46eSDavid Howells */ 4347607ca46eSDavid Howells enum nl80211_rekey_data { 4348607ca46eSDavid Howells __NL80211_REKEY_DATA_INVALID, 4349607ca46eSDavid Howells NL80211_REKEY_DATA_KEK, 4350607ca46eSDavid Howells NL80211_REKEY_DATA_KCK, 4351607ca46eSDavid Howells NL80211_REKEY_DATA_REPLAY_CTR, 4352607ca46eSDavid Howells 4353607ca46eSDavid Howells /* keep last */ 4354607ca46eSDavid Howells NUM_NL80211_REKEY_DATA, 4355607ca46eSDavid Howells MAX_NL80211_REKEY_DATA = NUM_NL80211_REKEY_DATA - 1 4356607ca46eSDavid Howells }; 4357607ca46eSDavid Howells 4358607ca46eSDavid Howells /** 4359607ca46eSDavid Howells * enum nl80211_hidden_ssid - values for %NL80211_ATTR_HIDDEN_SSID 4360607ca46eSDavid Howells * @NL80211_HIDDEN_SSID_NOT_IN_USE: do not hide SSID (i.e., broadcast it in 4361607ca46eSDavid Howells * Beacon frames) 4362607ca46eSDavid Howells * @NL80211_HIDDEN_SSID_ZERO_LEN: hide SSID by using zero-length SSID element 4363607ca46eSDavid Howells * in Beacon frames 4364607ca46eSDavid Howells * @NL80211_HIDDEN_SSID_ZERO_CONTENTS: hide SSID by using correct length of SSID 4365607ca46eSDavid Howells * element in Beacon frames but zero out each byte in the SSID 4366607ca46eSDavid Howells */ 4367607ca46eSDavid Howells enum nl80211_hidden_ssid { 4368607ca46eSDavid Howells NL80211_HIDDEN_SSID_NOT_IN_USE, 4369607ca46eSDavid Howells NL80211_HIDDEN_SSID_ZERO_LEN, 4370607ca46eSDavid Howells NL80211_HIDDEN_SSID_ZERO_CONTENTS 4371607ca46eSDavid Howells }; 4372607ca46eSDavid Howells 4373607ca46eSDavid Howells /** 4374607ca46eSDavid Howells * enum nl80211_sta_wme_attr - station WME attributes 4375607ca46eSDavid Howells * @__NL80211_STA_WME_INVALID: invalid number for nested attribute 4376607ca46eSDavid Howells * @NL80211_STA_WME_UAPSD_QUEUES: bitmap of uapsd queues. the format 4377607ca46eSDavid Howells * is the same as the AC bitmap in the QoS info field. 4378607ca46eSDavid Howells * @NL80211_STA_WME_MAX_SP: max service period. the format is the same 4379607ca46eSDavid Howells * as the MAX_SP field in the QoS info field (but already shifted down). 4380607ca46eSDavid Howells * @__NL80211_STA_WME_AFTER_LAST: internal 4381607ca46eSDavid Howells * @NL80211_STA_WME_MAX: highest station WME attribute 4382607ca46eSDavid Howells */ 4383607ca46eSDavid Howells enum nl80211_sta_wme_attr { 4384607ca46eSDavid Howells __NL80211_STA_WME_INVALID, 4385607ca46eSDavid Howells NL80211_STA_WME_UAPSD_QUEUES, 4386607ca46eSDavid Howells NL80211_STA_WME_MAX_SP, 4387607ca46eSDavid Howells 4388607ca46eSDavid Howells /* keep last */ 4389607ca46eSDavid Howells __NL80211_STA_WME_AFTER_LAST, 4390607ca46eSDavid Howells NL80211_STA_WME_MAX = __NL80211_STA_WME_AFTER_LAST - 1 4391607ca46eSDavid Howells }; 4392607ca46eSDavid Howells 4393607ca46eSDavid Howells /** 4394607ca46eSDavid Howells * enum nl80211_pmksa_candidate_attr - attributes for PMKSA caching candidates 4395607ca46eSDavid Howells * @__NL80211_PMKSA_CANDIDATE_INVALID: invalid number for nested attributes 4396607ca46eSDavid Howells * @NL80211_PMKSA_CANDIDATE_INDEX: candidate index (u32; the smaller, the higher 4397607ca46eSDavid Howells * priority) 4398607ca46eSDavid Howells * @NL80211_PMKSA_CANDIDATE_BSSID: candidate BSSID (6 octets) 4399607ca46eSDavid Howells * @NL80211_PMKSA_CANDIDATE_PREAUTH: RSN pre-authentication supported (flag) 4400607ca46eSDavid Howells * @NUM_NL80211_PMKSA_CANDIDATE: number of PMKSA caching candidate attributes 4401607ca46eSDavid Howells * (internal) 4402607ca46eSDavid Howells * @MAX_NL80211_PMKSA_CANDIDATE: highest PMKSA caching candidate attribute 4403607ca46eSDavid Howells * (internal) 4404607ca46eSDavid Howells */ 4405607ca46eSDavid Howells enum nl80211_pmksa_candidate_attr { 4406607ca46eSDavid Howells __NL80211_PMKSA_CANDIDATE_INVALID, 4407607ca46eSDavid Howells NL80211_PMKSA_CANDIDATE_INDEX, 4408607ca46eSDavid Howells NL80211_PMKSA_CANDIDATE_BSSID, 4409607ca46eSDavid Howells NL80211_PMKSA_CANDIDATE_PREAUTH, 4410607ca46eSDavid Howells 4411607ca46eSDavid Howells /* keep last */ 4412607ca46eSDavid Howells NUM_NL80211_PMKSA_CANDIDATE, 4413607ca46eSDavid Howells MAX_NL80211_PMKSA_CANDIDATE = NUM_NL80211_PMKSA_CANDIDATE - 1 4414607ca46eSDavid Howells }; 4415607ca46eSDavid Howells 4416607ca46eSDavid Howells /** 4417607ca46eSDavid Howells * enum nl80211_tdls_operation - values for %NL80211_ATTR_TDLS_OPERATION 4418607ca46eSDavid Howells * @NL80211_TDLS_DISCOVERY_REQ: Send a TDLS discovery request 4419607ca46eSDavid Howells * @NL80211_TDLS_SETUP: Setup TDLS link 4420607ca46eSDavid Howells * @NL80211_TDLS_TEARDOWN: Teardown a TDLS link which is already established 4421607ca46eSDavid Howells * @NL80211_TDLS_ENABLE_LINK: Enable TDLS link 4422607ca46eSDavid Howells * @NL80211_TDLS_DISABLE_LINK: Disable TDLS link 4423607ca46eSDavid Howells */ 4424607ca46eSDavid Howells enum nl80211_tdls_operation { 4425607ca46eSDavid Howells NL80211_TDLS_DISCOVERY_REQ, 4426607ca46eSDavid Howells NL80211_TDLS_SETUP, 4427607ca46eSDavid Howells NL80211_TDLS_TEARDOWN, 4428607ca46eSDavid Howells NL80211_TDLS_ENABLE_LINK, 4429607ca46eSDavid Howells NL80211_TDLS_DISABLE_LINK, 4430607ca46eSDavid Howells }; 4431607ca46eSDavid Howells 4432607ca46eSDavid Howells /* 4433607ca46eSDavid Howells * enum nl80211_ap_sme_features - device-integrated AP features 4434607ca46eSDavid Howells * Reserved for future use, no bits are defined in 4435607ca46eSDavid Howells * NL80211_ATTR_DEVICE_AP_SME yet. 4436607ca46eSDavid Howells enum nl80211_ap_sme_features { 4437607ca46eSDavid Howells }; 4438607ca46eSDavid Howells */ 4439607ca46eSDavid Howells 4440607ca46eSDavid Howells /** 4441607ca46eSDavid Howells * enum nl80211_feature_flags - device/driver features 4442607ca46eSDavid Howells * @NL80211_FEATURE_SK_TX_STATUS: This driver supports reflecting back 4443607ca46eSDavid Howells * TX status to the socket error queue when requested with the 4444607ca46eSDavid Howells * socket option. 4445607ca46eSDavid Howells * @NL80211_FEATURE_HT_IBSS: This driver supports IBSS with HT datarates. 4446607ca46eSDavid Howells * @NL80211_FEATURE_INACTIVITY_TIMER: This driver takes care of freeing up 4447607ca46eSDavid Howells * the connected inactive stations in AP mode. 4448607ca46eSDavid Howells * @NL80211_FEATURE_CELL_BASE_REG_HINTS: This driver has been tested 4449607ca46eSDavid Howells * to work properly to suppport receiving regulatory hints from 4450607ca46eSDavid Howells * cellular base stations. 4451f5651986SJohannes Berg * @NL80211_FEATURE_P2P_DEVICE_NEEDS_CHANNEL: (no longer available, only 4452f5651986SJohannes Berg * here to reserve the value for API/ABI compatibility) 4453e39e5b5eSJouni Malinen * @NL80211_FEATURE_SAE: This driver supports simultaneous authentication of 4454e39e5b5eSJouni Malinen * equals (SAE) with user space SME (NL80211_CMD_AUTHENTICATE) in station 4455e39e5b5eSJouni Malinen * mode 445646856bbfSSam Leffler * @NL80211_FEATURE_LOW_PRIORITY_SCAN: This driver supports low priority scan 445715d6030bSSam Leffler * @NL80211_FEATURE_SCAN_FLUSH: Scan flush is supported 44585c95b940SAntonio Quartulli * @NL80211_FEATURE_AP_SCAN: Support scanning using an AP vif 4459c8442118SJohannes Berg * @NL80211_FEATURE_VIF_TXPOWER: The driver supports per-vif TX power setting 44602a91c9f7SAmitkumar Karwar * @NL80211_FEATURE_NEED_OBSS_SCAN: The driver expects userspace to perform 44612a91c9f7SAmitkumar Karwar * OBSS scans and generate 20/40 BSS coex reports. This flag is used only 44622a91c9f7SAmitkumar Karwar * for drivers implementing the CONNECT API, for AUTH/ASSOC it is implied. 446353cabad7SJohannes Berg * @NL80211_FEATURE_P2P_GO_CTWIN: P2P GO implementation supports CT Window 446453cabad7SJohannes Berg * setting 446553cabad7SJohannes Berg * @NL80211_FEATURE_P2P_GO_OPPPS: P2P GO implementation supports opportunistic 446653cabad7SJohannes Berg * powersave 4467d582cffbSJohannes Berg * @NL80211_FEATURE_FULL_AP_CLIENT_STATE: The driver supports full state 4468d582cffbSJohannes Berg * transitions for AP clients. Without this flag (and if the driver 4469d582cffbSJohannes Berg * doesn't have the AP SME in the device) the driver supports adding 4470d582cffbSJohannes Berg * stations only when they're associated and adds them in associated 4471d582cffbSJohannes Berg * state (to later be transitioned into authorized), with this flag 4472d582cffbSJohannes Berg * they should be added before even sending the authentication reply 4473d582cffbSJohannes Berg * and then transitioned into authenticated, associated and authorized 4474d582cffbSJohannes Berg * states using station flags. 4475d582cffbSJohannes Berg * Note that even for drivers that support this, the default is to add 4476d582cffbSJohannes Berg * stations in authenticated/associated state, so to add unauthenticated 4477d582cffbSJohannes Berg * stations the authenticated/associated bits have to be set in the mask. 447850640f16SJohannes Berg * @NL80211_FEATURE_ADVERTISE_CHAN_LIMITS: cfg80211 advertises channel limits 447950640f16SJohannes Berg * (HT40, VHT 80/160 MHz) if this flag is set 4480bb2798d4SThomas Pedersen * @NL80211_FEATURE_USERSPACE_MPM: This driver supports a userspace Mesh 4481bb2798d4SThomas Pedersen * Peering Management entity which may be implemented by registering for 4482bb2798d4SThomas Pedersen * beacons or NL80211_CMD_NEW_PEER_CANDIDATE events. The mesh beacon is 4483bb2798d4SThomas Pedersen * still generated by the driver. 4484a0a2af76SFelix Fietkau * @NL80211_FEATURE_ACTIVE_MONITOR: This driver supports an active monitor 4485a0a2af76SFelix Fietkau * interface. An active monitor interface behaves like a normal monitor 4486a0a2af76SFelix Fietkau * interface, but gets added to the driver. It ensures that incoming 4487a0a2af76SFelix Fietkau * unicast packets directed at the configured interface address get ACKed. 4488e16821bcSJouni Malinen * @NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE: This driver supports dynamic 4489e16821bcSJouni Malinen * channel bandwidth change (e.g., HT 20 <-> 40 MHz channel) during the 4490e16821bcSJouni Malinen * lifetime of a BSS. 44911c7e23bfSAssaf Krauss * @NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES: This device adds a DS Parameter 44921c7e23bfSAssaf Krauss * Set IE to probe requests. 44931c7e23bfSAssaf Krauss * @NL80211_FEATURE_WFA_TPC_IE_IN_PROBES: This device adds a WFA TPC Report IE 44941c7e23bfSAssaf Krauss * to probe requests. 44951c7e23bfSAssaf Krauss * @NL80211_FEATURE_QUIET: This device, in client mode, supports Quiet Period 44961c7e23bfSAssaf Krauss * requests sent to it by an AP. 44971c7e23bfSAssaf Krauss * @NL80211_FEATURE_TX_POWER_INSERTION: This device is capable of inserting the 44981c7e23bfSAssaf Krauss * current tx power value into the TPC Report IE in the spectrum 44991c7e23bfSAssaf Krauss * management TPC Report action frame, and in the Radio Measurement Link 45001c7e23bfSAssaf Krauss * Measurement Report action frame. 45013057dbfdSLorenzo Bianconi * @NL80211_FEATURE_ACKTO_ESTIMATION: This driver supports dynamic ACK timeout 45023057dbfdSLorenzo Bianconi * estimation (dynack). %NL80211_ATTR_WIPHY_DYN_ACK flag attribute is used 45033057dbfdSLorenzo Bianconi * to enable dynack. 450418998c38SEliad Peller * @NL80211_FEATURE_STATIC_SMPS: Device supports static spatial 450518998c38SEliad Peller * multiplexing powersave, ie. can turn off all but one chain 450618998c38SEliad Peller * even on HT connections that should be using more chains. 450718998c38SEliad Peller * @NL80211_FEATURE_DYNAMIC_SMPS: Device supports dynamic spatial 450818998c38SEliad Peller * multiplexing powersave, ie. can turn off all but one chain 450918998c38SEliad Peller * and then wake the rest up as required after, for example, 451018998c38SEliad Peller * rts/cts handshake. 4511723e73acSJohannes Berg * @NL80211_FEATURE_SUPPORTS_WMM_ADMISSION: the device supports setting up WMM 4512723e73acSJohannes Berg * TSPEC sessions (TID aka TSID 0-7) with the %NL80211_CMD_ADD_TX_TS 4513723e73acSJohannes Berg * command. Standard IEEE 802.11 TSPEC setup is not yet supported, it 4514723e73acSJohannes Berg * needs to be able to handle Block-Ack agreements and other things. 4515e8f479b1SBen Greear * @NL80211_FEATURE_MAC_ON_CREATE: Device supports configuring 4516e8f479b1SBen Greear * the vif's MAC address upon creation. 4517e8f479b1SBen Greear * See 'macaddr' field in the vif_params (cfg80211.h). 451878632a17SArik Nemtsov * @NL80211_FEATURE_TDLS_CHANNEL_SWITCH: Driver supports channel switching when 451978632a17SArik Nemtsov * operating as a TDLS peer. 4520ad2b26abSJohannes Berg * @NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR: This device/driver supports using a 4521ad2b26abSJohannes Berg * random MAC address during scan (if the device is unassociated); the 4522ad2b26abSJohannes Berg * %NL80211_SCAN_FLAG_RANDOM_ADDR flag may be set for scans and the MAC 4523ad2b26abSJohannes Berg * address mask/value will be used. 4524ad2b26abSJohannes Berg * @NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR: This device/driver supports 4525ad2b26abSJohannes Berg * using a random MAC address for every scan iteration during scheduled 4526ad2b26abSJohannes Berg * scan (while not associated), the %NL80211_SCAN_FLAG_RANDOM_ADDR may 4527ad2b26abSJohannes Berg * be set for scheduled scan and the MAC address mask/value will be used. 4528ad2b26abSJohannes Berg * @NL80211_FEATURE_ND_RANDOM_MAC_ADDR: This device/driver supports using a 4529ad2b26abSJohannes Berg * random MAC address for every scan iteration during "net detect", i.e. 4530ad2b26abSJohannes Berg * scan in unassociated WoWLAN, the %NL80211_SCAN_FLAG_RANDOM_ADDR may 4531ad2b26abSJohannes Berg * be set for scheduled scan and the MAC address mask/value will be used. 4532607ca46eSDavid Howells */ 4533607ca46eSDavid Howells enum nl80211_feature_flags { 4534607ca46eSDavid Howells NL80211_FEATURE_SK_TX_STATUS = 1 << 0, 4535607ca46eSDavid Howells NL80211_FEATURE_HT_IBSS = 1 << 1, 4536607ca46eSDavid Howells NL80211_FEATURE_INACTIVITY_TIMER = 1 << 2, 4537607ca46eSDavid Howells NL80211_FEATURE_CELL_BASE_REG_HINTS = 1 << 3, 4538f5651986SJohannes Berg NL80211_FEATURE_P2P_DEVICE_NEEDS_CHANNEL = 1 << 4, 4539e39e5b5eSJouni Malinen NL80211_FEATURE_SAE = 1 << 5, 454046856bbfSSam Leffler NL80211_FEATURE_LOW_PRIORITY_SCAN = 1 << 6, 454115d6030bSSam Leffler NL80211_FEATURE_SCAN_FLUSH = 1 << 7, 45425c95b940SAntonio Quartulli NL80211_FEATURE_AP_SCAN = 1 << 8, 4543c8442118SJohannes Berg NL80211_FEATURE_VIF_TXPOWER = 1 << 9, 45442a91c9f7SAmitkumar Karwar NL80211_FEATURE_NEED_OBSS_SCAN = 1 << 10, 454553cabad7SJohannes Berg NL80211_FEATURE_P2P_GO_CTWIN = 1 << 11, 454653cabad7SJohannes Berg NL80211_FEATURE_P2P_GO_OPPPS = 1 << 12, 4547932dd97cSJohannes Berg /* bit 13 is reserved */ 454850640f16SJohannes Berg NL80211_FEATURE_ADVERTISE_CHAN_LIMITS = 1 << 14, 4549932dd97cSJohannes Berg NL80211_FEATURE_FULL_AP_CLIENT_STATE = 1 << 15, 4550bb2798d4SThomas Pedersen NL80211_FEATURE_USERSPACE_MPM = 1 << 16, 4551e057d3c3SFelix Fietkau NL80211_FEATURE_ACTIVE_MONITOR = 1 << 17, 4552e16821bcSJouni Malinen NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE = 1 << 18, 45531c7e23bfSAssaf Krauss NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES = 1 << 19, 45541c7e23bfSAssaf Krauss NL80211_FEATURE_WFA_TPC_IE_IN_PROBES = 1 << 20, 45551c7e23bfSAssaf Krauss NL80211_FEATURE_QUIET = 1 << 21, 45561c7e23bfSAssaf Krauss NL80211_FEATURE_TX_POWER_INSERTION = 1 << 22, 45573057dbfdSLorenzo Bianconi NL80211_FEATURE_ACKTO_ESTIMATION = 1 << 23, 455818998c38SEliad Peller NL80211_FEATURE_STATIC_SMPS = 1 << 24, 455918998c38SEliad Peller NL80211_FEATURE_DYNAMIC_SMPS = 1 << 25, 4560723e73acSJohannes Berg NL80211_FEATURE_SUPPORTS_WMM_ADMISSION = 1 << 26, 4561e8f479b1SBen Greear NL80211_FEATURE_MAC_ON_CREATE = 1 << 27, 456278632a17SArik Nemtsov NL80211_FEATURE_TDLS_CHANNEL_SWITCH = 1 << 28, 4563ad2b26abSJohannes Berg NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR = 1 << 29, 4564ad2b26abSJohannes Berg NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR = 1 << 30, 4565ad2b26abSJohannes Berg NL80211_FEATURE_ND_RANDOM_MAC_ADDR = 1 << 31, 4566607ca46eSDavid Howells }; 4567607ca46eSDavid Howells 4568607ca46eSDavid Howells /** 4569d75bb06bSGautam Kumar Shukla * enum nl80211_ext_feature_index - bit index of extended features. 4570ffc11991SJanusz.Dziedzic@tieto.com * @NL80211_EXT_FEATURE_VHT_IBSS: This driver supports IBSS with VHT datarates. 45710c9ca11bSBeni Lev * @NL80211_EXT_FEATURE_RRM: This driver supports RRM. When featured, user can 45720c9ca11bSBeni Lev * can request to use RRM (see %NL80211_ATTR_USE_RRM) with 45730c9ca11bSBeni Lev * %NL80211_CMD_ASSOCIATE and %NL80211_CMD_CONNECT requests, which will set 45740c9ca11bSBeni Lev * the ASSOC_REQ_USE_RRM flag in the association request even if 45750c9ca11bSBeni Lev * NL80211_FEATURE_QUIET is not advertized. 4576c6e6a0c8SAviya Erenfeld * @NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER: This device supports MU-MIMO air 4577c6e6a0c8SAviya Erenfeld * sniffer which means that it can be configured to hear packets from 4578c6e6a0c8SAviya Erenfeld * certain groups which can be configured by the 4579c6e6a0c8SAviya Erenfeld * %NL80211_ATTR_MU_MIMO_GROUP_DATA attribute, 4580c6e6a0c8SAviya Erenfeld * or can be configured to follow a station by configuring the 4581c6e6a0c8SAviya Erenfeld * %NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR attribute. 45821d76250bSAvraham Stern * @NL80211_EXT_FEATURE_SCAN_START_TIME: This driver includes the actual 45831d76250bSAvraham Stern * time the scan started in scan results event. The time is the TSF of 45841d76250bSAvraham Stern * the BSS that the interface that requested the scan is connected to 45851d76250bSAvraham Stern * (if available). 45861d76250bSAvraham Stern * @NL80211_EXT_FEATURE_BSS_PARENT_TSF: Per BSS, this driver reports the 45871d76250bSAvraham Stern * time the last beacon/probe was received. The time is the TSF of the 45881d76250bSAvraham Stern * BSS that the interface that requested the scan is connected to 45891d76250bSAvraham Stern * (if available). 45901d76250bSAvraham Stern * @NL80211_EXT_FEATURE_SET_SCAN_DWELL: This driver supports configuration of 45911d76250bSAvraham Stern * channel dwell time. 45928564e382SJohannes Berg * @NL80211_EXT_FEATURE_BEACON_RATE_LEGACY: Driver supports beacon rate 45938564e382SJohannes Berg * configuration (AP/mesh), supporting a legacy (non HT/VHT) rate. 45948564e382SJohannes Berg * @NL80211_EXT_FEATURE_BEACON_RATE_HT: Driver supports beacon rate 45958564e382SJohannes Berg * configuration (AP/mesh) with HT rates. 45968564e382SJohannes Berg * @NL80211_EXT_FEATURE_BEACON_RATE_VHT: Driver supports beacon rate 45978564e382SJohannes Berg * configuration (AP/mesh) with VHT rates. 4598d75bb06bSGautam Kumar Shukla * 4599d75bb06bSGautam Kumar Shukla * @NUM_NL80211_EXT_FEATURES: number of extended features. 4600d75bb06bSGautam Kumar Shukla * @MAX_NL80211_EXT_FEATURES: highest extended feature index. 4601d75bb06bSGautam Kumar Shukla */ 4602d75bb06bSGautam Kumar Shukla enum nl80211_ext_feature_index { 4603ffc11991SJanusz.Dziedzic@tieto.com NL80211_EXT_FEATURE_VHT_IBSS, 46040c9ca11bSBeni Lev NL80211_EXT_FEATURE_RRM, 4605c6e6a0c8SAviya Erenfeld NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER, 46061d76250bSAvraham Stern NL80211_EXT_FEATURE_SCAN_START_TIME, 46071d76250bSAvraham Stern NL80211_EXT_FEATURE_BSS_PARENT_TSF, 46081d76250bSAvraham Stern NL80211_EXT_FEATURE_SET_SCAN_DWELL, 46098564e382SJohannes Berg NL80211_EXT_FEATURE_BEACON_RATE_LEGACY, 46108564e382SJohannes Berg NL80211_EXT_FEATURE_BEACON_RATE_HT, 46118564e382SJohannes Berg NL80211_EXT_FEATURE_BEACON_RATE_VHT, 4612d75bb06bSGautam Kumar Shukla 4613d75bb06bSGautam Kumar Shukla /* add new features before the definition below */ 4614d75bb06bSGautam Kumar Shukla NUM_NL80211_EXT_FEATURES, 4615d75bb06bSGautam Kumar Shukla MAX_NL80211_EXT_FEATURES = NUM_NL80211_EXT_FEATURES - 1 4616d75bb06bSGautam Kumar Shukla }; 4617d75bb06bSGautam Kumar Shukla 4618d75bb06bSGautam Kumar Shukla /** 4619607ca46eSDavid Howells * enum nl80211_probe_resp_offload_support_attr - optional supported 4620607ca46eSDavid Howells * protocols for probe-response offloading by the driver/FW. 4621607ca46eSDavid Howells * To be used with the %NL80211_ATTR_PROBE_RESP_OFFLOAD attribute. 4622607ca46eSDavid Howells * Each enum value represents a bit in the bitmap of supported 4623607ca46eSDavid Howells * protocols. Typically a subset of probe-requests belonging to a 4624607ca46eSDavid Howells * supported protocol will be excluded from offload and uploaded 4625607ca46eSDavid Howells * to the host. 4626607ca46eSDavid Howells * 4627607ca46eSDavid Howells * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS: Support for WPS ver. 1 4628607ca46eSDavid Howells * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2: Support for WPS ver. 2 4629607ca46eSDavid Howells * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P: Support for P2P 4630607ca46eSDavid Howells * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U: Support for 802.11u 4631607ca46eSDavid Howells */ 4632607ca46eSDavid Howells enum nl80211_probe_resp_offload_support_attr { 4633607ca46eSDavid Howells NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS = 1<<0, 4634607ca46eSDavid Howells NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2 = 1<<1, 4635607ca46eSDavid Howells NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P = 1<<2, 4636607ca46eSDavid Howells NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U = 1<<3, 4637607ca46eSDavid Howells }; 4638607ca46eSDavid Howells 4639607ca46eSDavid Howells /** 4640607ca46eSDavid Howells * enum nl80211_connect_failed_reason - connection request failed reasons 4641607ca46eSDavid Howells * @NL80211_CONN_FAIL_MAX_CLIENTS: Maximum number of clients that can be 4642607ca46eSDavid Howells * handled by the AP is reached. 464377765eafSVasanthakumar Thiagarajan * @NL80211_CONN_FAIL_BLOCKED_CLIENT: Connection request is rejected due to ACL. 4644607ca46eSDavid Howells */ 4645607ca46eSDavid Howells enum nl80211_connect_failed_reason { 4646607ca46eSDavid Howells NL80211_CONN_FAIL_MAX_CLIENTS, 4647607ca46eSDavid Howells NL80211_CONN_FAIL_BLOCKED_CLIENT, 4648607ca46eSDavid Howells }; 4649607ca46eSDavid Howells 4650ed473771SSam Leffler /** 4651ed473771SSam Leffler * enum nl80211_scan_flags - scan request control flags 4652ed473771SSam Leffler * 4653ed473771SSam Leffler * Scan request control flags are used to control the handling 4654ed473771SSam Leffler * of NL80211_CMD_TRIGGER_SCAN and NL80211_CMD_START_SCHED_SCAN 4655ed473771SSam Leffler * requests. 465646856bbfSSam Leffler * 465746856bbfSSam Leffler * @NL80211_SCAN_FLAG_LOW_PRIORITY: scan request has low priority 465815d6030bSSam Leffler * @NL80211_SCAN_FLAG_FLUSH: flush cache before scanning 46595c95b940SAntonio Quartulli * @NL80211_SCAN_FLAG_AP: force a scan even if the interface is configured 46605c95b940SAntonio Quartulli * as AP and the beaconing has already been configured. This attribute is 46615c95b940SAntonio Quartulli * dangerous because will destroy stations performance as a lot of frames 46625c95b940SAntonio Quartulli * will be lost while scanning off-channel, therefore it must be used only 46635c95b940SAntonio Quartulli * when really needed 4664ad2b26abSJohannes Berg * @NL80211_SCAN_FLAG_RANDOM_ADDR: use a random MAC address for this scan (or 4665ad2b26abSJohannes Berg * for scheduled scan: a different one for every scan iteration). When the 4666ad2b26abSJohannes Berg * flag is set, depending on device capabilities the @NL80211_ATTR_MAC and 4667ad2b26abSJohannes Berg * @NL80211_ATTR_MAC_MASK attributes may also be given in which case only 4668ad2b26abSJohannes Berg * the masked bits will be preserved from the MAC address and the remainder 4669ad2b26abSJohannes Berg * randomised. If the attributes are not given full randomisation (46 bits, 4670ad2b26abSJohannes Berg * locally administered 1, multicast 0) is assumed. 4671ad2b26abSJohannes Berg * This flag must not be requested when the feature isn't supported, check 4672ad2b26abSJohannes Berg * the nl80211 feature flags for the device. 4673ed473771SSam Leffler */ 467446856bbfSSam Leffler enum nl80211_scan_flags { 467546856bbfSSam Leffler NL80211_SCAN_FLAG_LOW_PRIORITY = 1<<0, 467615d6030bSSam Leffler NL80211_SCAN_FLAG_FLUSH = 1<<1, 46775c95b940SAntonio Quartulli NL80211_SCAN_FLAG_AP = 1<<2, 4678ad2b26abSJohannes Berg NL80211_SCAN_FLAG_RANDOM_ADDR = 1<<3, 467946856bbfSSam Leffler }; 4680ed473771SSam Leffler 468177765eafSVasanthakumar Thiagarajan /** 468277765eafSVasanthakumar Thiagarajan * enum nl80211_acl_policy - access control policy 468377765eafSVasanthakumar Thiagarajan * 468477765eafSVasanthakumar Thiagarajan * Access control policy is applied on a MAC list set by 468577765eafSVasanthakumar Thiagarajan * %NL80211_CMD_START_AP and %NL80211_CMD_SET_MAC_ACL, to 468677765eafSVasanthakumar Thiagarajan * be used with %NL80211_ATTR_ACL_POLICY. 468777765eafSVasanthakumar Thiagarajan * 468877765eafSVasanthakumar Thiagarajan * @NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED: Deny stations which are 468977765eafSVasanthakumar Thiagarajan * listed in ACL, i.e. allow all the stations which are not listed 469077765eafSVasanthakumar Thiagarajan * in ACL to authenticate. 469177765eafSVasanthakumar Thiagarajan * @NL80211_ACL_POLICY_DENY_UNLESS_LISTED: Allow the stations which are listed 469277765eafSVasanthakumar Thiagarajan * in ACL, i.e. deny all the stations which are not listed in ACL. 469377765eafSVasanthakumar Thiagarajan */ 469477765eafSVasanthakumar Thiagarajan enum nl80211_acl_policy { 469577765eafSVasanthakumar Thiagarajan NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED, 469677765eafSVasanthakumar Thiagarajan NL80211_ACL_POLICY_DENY_UNLESS_LISTED, 469777765eafSVasanthakumar Thiagarajan }; 469877765eafSVasanthakumar Thiagarajan 469904f39047SSimon Wunderlich /** 470018998c38SEliad Peller * enum nl80211_smps_mode - SMPS mode 470118998c38SEliad Peller * 470218998c38SEliad Peller * Requested SMPS mode (for AP mode) 470318998c38SEliad Peller * 470418998c38SEliad Peller * @NL80211_SMPS_OFF: SMPS off (use all antennas). 470518998c38SEliad Peller * @NL80211_SMPS_STATIC: static SMPS (use a single antenna) 470618998c38SEliad Peller * @NL80211_SMPS_DYNAMIC: dynamic smps (start with a single antenna and 470718998c38SEliad Peller * turn on other antennas after CTS/RTS). 470818998c38SEliad Peller */ 470918998c38SEliad Peller enum nl80211_smps_mode { 471018998c38SEliad Peller NL80211_SMPS_OFF, 471118998c38SEliad Peller NL80211_SMPS_STATIC, 471218998c38SEliad Peller NL80211_SMPS_DYNAMIC, 471318998c38SEliad Peller 471418998c38SEliad Peller __NL80211_SMPS_AFTER_LAST, 471518998c38SEliad Peller NL80211_SMPS_MAX = __NL80211_SMPS_AFTER_LAST - 1 471618998c38SEliad Peller }; 471718998c38SEliad Peller 471818998c38SEliad Peller /** 471904f39047SSimon Wunderlich * enum nl80211_radar_event - type of radar event for DFS operation 472004f39047SSimon Wunderlich * 472104f39047SSimon Wunderlich * Type of event to be used with NL80211_ATTR_RADAR_EVENT to inform userspace 472204f39047SSimon Wunderlich * about detected radars or success of the channel available check (CAC) 472304f39047SSimon Wunderlich * 472404f39047SSimon Wunderlich * @NL80211_RADAR_DETECTED: A radar pattern has been detected. The channel is 472504f39047SSimon Wunderlich * now unusable. 472604f39047SSimon Wunderlich * @NL80211_RADAR_CAC_FINISHED: Channel Availability Check has been finished, 472704f39047SSimon Wunderlich * the channel is now available. 472804f39047SSimon Wunderlich * @NL80211_RADAR_CAC_ABORTED: Channel Availability Check has been aborted, no 472904f39047SSimon Wunderlich * change to the channel status. 473004f39047SSimon Wunderlich * @NL80211_RADAR_NOP_FINISHED: The Non-Occupancy Period for this channel is 473104f39047SSimon Wunderlich * over, channel becomes usable. 473204f39047SSimon Wunderlich */ 473304f39047SSimon Wunderlich enum nl80211_radar_event { 473404f39047SSimon Wunderlich NL80211_RADAR_DETECTED, 473504f39047SSimon Wunderlich NL80211_RADAR_CAC_FINISHED, 473604f39047SSimon Wunderlich NL80211_RADAR_CAC_ABORTED, 473704f39047SSimon Wunderlich NL80211_RADAR_NOP_FINISHED, 473804f39047SSimon Wunderlich }; 473904f39047SSimon Wunderlich 474004f39047SSimon Wunderlich /** 474104f39047SSimon Wunderlich * enum nl80211_dfs_state - DFS states for channels 474204f39047SSimon Wunderlich * 474304f39047SSimon Wunderlich * Channel states used by the DFS code. 474404f39047SSimon Wunderlich * 4745fe181143SLuis R. Rodriguez * @NL80211_DFS_USABLE: The channel can be used, but channel availability 474604f39047SSimon Wunderlich * check (CAC) must be performed before using it for AP or IBSS. 4747fe181143SLuis R. Rodriguez * @NL80211_DFS_UNAVAILABLE: A radar has been detected on this channel, it 474804f39047SSimon Wunderlich * is therefore marked as not available. 4749fe181143SLuis R. Rodriguez * @NL80211_DFS_AVAILABLE: The channel has been CAC checked and is available. 475004f39047SSimon Wunderlich */ 475104f39047SSimon Wunderlich enum nl80211_dfs_state { 475204f39047SSimon Wunderlich NL80211_DFS_USABLE, 475304f39047SSimon Wunderlich NL80211_DFS_UNAVAILABLE, 475404f39047SSimon Wunderlich NL80211_DFS_AVAILABLE, 475504f39047SSimon Wunderlich }; 475604f39047SSimon Wunderlich 47573713b4e3SJohannes Berg /** 47583713b4e3SJohannes Berg * enum enum nl80211_protocol_features - nl80211 protocol features 47593713b4e3SJohannes Berg * @NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP: nl80211 supports splitting 47603713b4e3SJohannes Berg * wiphy dumps (if requested by the application with the attribute 47613713b4e3SJohannes Berg * %NL80211_ATTR_SPLIT_WIPHY_DUMP. Also supported is filtering the 47623713b4e3SJohannes Berg * wiphy dump by %NL80211_ATTR_WIPHY, %NL80211_ATTR_IFINDEX or 47633713b4e3SJohannes Berg * %NL80211_ATTR_WDEV. 47643713b4e3SJohannes Berg */ 47653713b4e3SJohannes Berg enum nl80211_protocol_features { 47663713b4e3SJohannes Berg NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP = 1 << 0, 47673713b4e3SJohannes Berg }; 47683713b4e3SJohannes Berg 47695de17984SArend van Spriel /** 47705de17984SArend van Spriel * enum nl80211_crit_proto_id - nl80211 critical protocol identifiers 47715de17984SArend van Spriel * 47725de17984SArend van Spriel * @NL80211_CRIT_PROTO_UNSPEC: protocol unspecified. 47735de17984SArend van Spriel * @NL80211_CRIT_PROTO_DHCP: BOOTP or DHCPv6 protocol. 47745de17984SArend van Spriel * @NL80211_CRIT_PROTO_EAPOL: EAPOL protocol. 47755de17984SArend van Spriel * @NL80211_CRIT_PROTO_APIPA: APIPA protocol. 47765de17984SArend van Spriel * @NUM_NL80211_CRIT_PROTO: must be kept last. 47775de17984SArend van Spriel */ 47785de17984SArend van Spriel enum nl80211_crit_proto_id { 47795de17984SArend van Spriel NL80211_CRIT_PROTO_UNSPEC, 47805de17984SArend van Spriel NL80211_CRIT_PROTO_DHCP, 47815de17984SArend van Spriel NL80211_CRIT_PROTO_EAPOL, 47825de17984SArend van Spriel NL80211_CRIT_PROTO_APIPA, 47835de17984SArend van Spriel /* add other protocols before this one */ 47845de17984SArend van Spriel NUM_NL80211_CRIT_PROTO 47855de17984SArend van Spriel }; 47865de17984SArend van Spriel 47875de17984SArend van Spriel /* maximum duration for critical protocol measures */ 47885de17984SArend van Spriel #define NL80211_CRIT_PROTO_MAX_DURATION 5000 /* msec */ 47895de17984SArend van Spriel 479019504cf5SVladimir Kondratiev /** 479119504cf5SVladimir Kondratiev * enum nl80211_rxmgmt_flags - flags for received management frame. 479219504cf5SVladimir Kondratiev * 479319504cf5SVladimir Kondratiev * Used by cfg80211_rx_mgmt() 479419504cf5SVladimir Kondratiev * 479519504cf5SVladimir Kondratiev * @NL80211_RXMGMT_FLAG_ANSWERED: frame was answered by device/driver. 479619504cf5SVladimir Kondratiev */ 479719504cf5SVladimir Kondratiev enum nl80211_rxmgmt_flags { 479819504cf5SVladimir Kondratiev NL80211_RXMGMT_FLAG_ANSWERED = 1 << 0, 479919504cf5SVladimir Kondratiev }; 480019504cf5SVladimir Kondratiev 4801ad7e718cSJohannes Berg /* 4802ad7e718cSJohannes Berg * If this flag is unset, the lower 24 bits are an OUI, if set 4803ad7e718cSJohannes Berg * a Linux nl80211 vendor ID is used (no such IDs are allocated 4804ad7e718cSJohannes Berg * yet, so that's not valid so far) 4805ad7e718cSJohannes Berg */ 4806ad7e718cSJohannes Berg #define NL80211_VENDOR_ID_IS_LINUX 0x80000000 4807ad7e718cSJohannes Berg 4808ad7e718cSJohannes Berg /** 4809ad7e718cSJohannes Berg * struct nl80211_vendor_cmd_info - vendor command data 4810ad7e718cSJohannes Berg * @vendor_id: If the %NL80211_VENDOR_ID_IS_LINUX flag is clear, then the 4811ad7e718cSJohannes Berg * value is a 24-bit OUI; if it is set then a separately allocated ID 4812ad7e718cSJohannes Berg * may be used, but no such IDs are allocated yet. New IDs should be 4813ad7e718cSJohannes Berg * added to this file when needed. 4814ad7e718cSJohannes Berg * @subcmd: sub-command ID for the command 4815ad7e718cSJohannes Berg */ 4816ad7e718cSJohannes Berg struct nl80211_vendor_cmd_info { 4817ad7e718cSJohannes Berg __u32 vendor_id; 4818ad7e718cSJohannes Berg __u32 subcmd; 4819ad7e718cSJohannes Berg }; 4820ad7e718cSJohannes Berg 4821df942e7bSSunil Dutt Undekari /** 4822df942e7bSSunil Dutt Undekari * enum nl80211_tdls_peer_capability - TDLS peer flags. 4823df942e7bSSunil Dutt Undekari * 4824df942e7bSSunil Dutt Undekari * Used by tdls_mgmt() to determine which conditional elements need 4825df942e7bSSunil Dutt Undekari * to be added to TDLS Setup frames. 4826df942e7bSSunil Dutt Undekari * 4827df942e7bSSunil Dutt Undekari * @NL80211_TDLS_PEER_HT: TDLS peer is HT capable. 4828df942e7bSSunil Dutt Undekari * @NL80211_TDLS_PEER_VHT: TDLS peer is VHT capable. 4829df942e7bSSunil Dutt Undekari * @NL80211_TDLS_PEER_WMM: TDLS peer is WMM capable. 4830df942e7bSSunil Dutt Undekari */ 4831df942e7bSSunil Dutt Undekari enum nl80211_tdls_peer_capability { 4832df942e7bSSunil Dutt Undekari NL80211_TDLS_PEER_HT = 1<<0, 4833df942e7bSSunil Dutt Undekari NL80211_TDLS_PEER_VHT = 1<<1, 4834df942e7bSSunil Dutt Undekari NL80211_TDLS_PEER_WMM = 1<<2, 4835df942e7bSSunil Dutt Undekari }; 4836df942e7bSSunil Dutt Undekari 48373b06d277SAvraham Stern /** 48383b06d277SAvraham Stern * enum nl80211_sched_scan_plan - scanning plan for scheduled scan 48393b06d277SAvraham Stern * @__NL80211_SCHED_SCAN_PLAN_INVALID: attribute number 0 is reserved 48403b06d277SAvraham Stern * @NL80211_SCHED_SCAN_PLAN_INTERVAL: interval between scan iterations. In 48413b06d277SAvraham Stern * seconds (u32). 48423b06d277SAvraham Stern * @NL80211_SCHED_SCAN_PLAN_ITERATIONS: number of scan iterations in this 48433b06d277SAvraham Stern * scan plan (u32). The last scan plan must not specify this attribute 48443b06d277SAvraham Stern * because it will run infinitely. A value of zero is invalid as it will 48453b06d277SAvraham Stern * make the scan plan meaningless. 48463b06d277SAvraham Stern * @NL80211_SCHED_SCAN_PLAN_MAX: highest scheduled scan plan attribute number 48473b06d277SAvraham Stern * currently defined 48483b06d277SAvraham Stern * @__NL80211_SCHED_SCAN_PLAN_AFTER_LAST: internal use 48493b06d277SAvraham Stern */ 48503b06d277SAvraham Stern enum nl80211_sched_scan_plan { 48513b06d277SAvraham Stern __NL80211_SCHED_SCAN_PLAN_INVALID, 48523b06d277SAvraham Stern NL80211_SCHED_SCAN_PLAN_INTERVAL, 48533b06d277SAvraham Stern NL80211_SCHED_SCAN_PLAN_ITERATIONS, 48543b06d277SAvraham Stern 48553b06d277SAvraham Stern /* keep last */ 48563b06d277SAvraham Stern __NL80211_SCHED_SCAN_PLAN_AFTER_LAST, 48573b06d277SAvraham Stern NL80211_SCHED_SCAN_PLAN_MAX = 48583b06d277SAvraham Stern __NL80211_SCHED_SCAN_PLAN_AFTER_LAST - 1 48593b06d277SAvraham Stern }; 48603b06d277SAvraham Stern 486138de03d2SArend van Spriel /** 486238de03d2SArend van Spriel * struct nl80211_bss_select_rssi_adjust - RSSI adjustment parameters. 486338de03d2SArend van Spriel * 486438de03d2SArend van Spriel * @band: band of BSS that must match for RSSI value adjustment. 486538de03d2SArend van Spriel * @delta: value used to adjust the RSSI value of matching BSS. 486638de03d2SArend van Spriel */ 486738de03d2SArend van Spriel struct nl80211_bss_select_rssi_adjust { 486838de03d2SArend van Spriel __u8 band; 486938de03d2SArend van Spriel __s8 delta; 487038de03d2SArend van Spriel } __attribute__((packed)); 487138de03d2SArend van Spriel 487238de03d2SArend van Spriel /** 487338de03d2SArend van Spriel * enum nl80211_bss_select_attr - attributes for bss selection. 487438de03d2SArend van Spriel * 487538de03d2SArend van Spriel * @__NL80211_BSS_SELECT_ATTR_INVALID: reserved. 487638de03d2SArend van Spriel * @NL80211_BSS_SELECT_ATTR_RSSI: Flag indicating only RSSI-based BSS selection 487738de03d2SArend van Spriel * is requested. 487838de03d2SArend van Spriel * @NL80211_BSS_SELECT_ATTR_BAND_PREF: attribute indicating BSS 487938de03d2SArend van Spriel * selection should be done such that the specified band is preferred. 488038de03d2SArend van Spriel * When there are multiple BSS-es in the preferred band, the driver 488138de03d2SArend van Spriel * shall use RSSI-based BSS selection as a second step. The value of 488238de03d2SArend van Spriel * this attribute is according to &enum nl80211_band (u32). 488338de03d2SArend van Spriel * @NL80211_BSS_SELECT_ATTR_RSSI_ADJUST: When present the RSSI level for 488438de03d2SArend van Spriel * BSS-es in the specified band is to be adjusted before doing 488538de03d2SArend van Spriel * RSSI-based BSS selection. The attribute value is a packed structure 488638de03d2SArend van Spriel * value as specified by &struct nl80211_bss_select_rssi_adjust. 488738de03d2SArend van Spriel * @NL80211_BSS_SELECT_ATTR_MAX: highest bss select attribute number. 488838de03d2SArend van Spriel * @__NL80211_BSS_SELECT_ATTR_AFTER_LAST: internal use. 488938de03d2SArend van Spriel * 489038de03d2SArend van Spriel * One and only one of these attributes are found within %NL80211_ATTR_BSS_SELECT 489138de03d2SArend van Spriel * for %NL80211_CMD_CONNECT. It specifies the required BSS selection behaviour 489238de03d2SArend van Spriel * which the driver shall use. 489338de03d2SArend van Spriel */ 489438de03d2SArend van Spriel enum nl80211_bss_select_attr { 489538de03d2SArend van Spriel __NL80211_BSS_SELECT_ATTR_INVALID, 489638de03d2SArend van Spriel NL80211_BSS_SELECT_ATTR_RSSI, 489738de03d2SArend van Spriel NL80211_BSS_SELECT_ATTR_BAND_PREF, 489838de03d2SArend van Spriel NL80211_BSS_SELECT_ATTR_RSSI_ADJUST, 489938de03d2SArend van Spriel 490038de03d2SArend van Spriel /* keep last */ 490138de03d2SArend van Spriel __NL80211_BSS_SELECT_ATTR_AFTER_LAST, 490238de03d2SArend van Spriel NL80211_BSS_SELECT_ATTR_MAX = __NL80211_BSS_SELECT_ATTR_AFTER_LAST - 1 490338de03d2SArend van Spriel }; 490438de03d2SArend van Spriel 4905cb3b7d87SAyala Beker /** 4906cb3b7d87SAyala Beker * enum nl80211_nan_dual_band_conf - NAN dual band configuration 4907cb3b7d87SAyala Beker * 4908cb3b7d87SAyala Beker * Defines the NAN dual band mode of operation 4909cb3b7d87SAyala Beker * 4910cb3b7d87SAyala Beker * @NL80211_NAN_BAND_DEFAULT: device default mode 4911cb3b7d87SAyala Beker * @NL80211_NAN_BAND_2GHZ: 2.4GHz mode 4912cb3b7d87SAyala Beker * @NL80211_NAN_BAND_5GHZ: 5GHz mode 4913cb3b7d87SAyala Beker */ 4914cb3b7d87SAyala Beker enum nl80211_nan_dual_band_conf { 4915cb3b7d87SAyala Beker NL80211_NAN_BAND_DEFAULT = 1 << 0, 4916cb3b7d87SAyala Beker NL80211_NAN_BAND_2GHZ = 1 << 1, 4917cb3b7d87SAyala Beker NL80211_NAN_BAND_5GHZ = 1 << 2, 4918cb3b7d87SAyala Beker }; 4919cb3b7d87SAyala Beker 4920607ca46eSDavid Howells #endif /* __LINUX_NL80211_H */ 4921