cfg80211.h 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540
  1. #ifndef __NET_CFG80211_H
  2. #define __NET_CFG80211_H
  3. /*
  4. * 802.11 device and configuration interface
  5. *
  6. * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/netdevice.h>
  13. #include <linux/debugfs.h>
  14. #include <linux/list.h>
  15. #include <linux/bug.h>
  16. #include <linux/netlink.h>
  17. #include <linux/skbuff.h>
  18. #include <linux/nl80211.h>
  19. #include <linux/if_ether.h>
  20. #include <linux/ieee80211.h>
  21. #include <net/regulatory.h>
  22. /**
  23. * DOC: Introduction
  24. *
  25. * cfg80211 is the configuration API for 802.11 devices in Linux. It bridges
  26. * userspace and drivers, and offers some utility functionality associated
  27. * with 802.11. cfg80211 must, directly or indirectly via mac80211, be used
  28. * by all modern wireless drivers in Linux, so that they offer a consistent
  29. * API through nl80211. For backward compatibility, cfg80211 also offers
  30. * wireless extensions to userspace, but hides them from drivers completely.
  31. *
  32. * Additionally, cfg80211 contains code to help enforce regulatory spectrum
  33. * use restrictions.
  34. */
  35. /**
  36. * DOC: Device registration
  37. *
  38. * In order for a driver to use cfg80211, it must register the hardware device
  39. * with cfg80211. This happens through a number of hardware capability structs
  40. * described below.
  41. *
  42. * The fundamental structure for each device is the 'wiphy', of which each
  43. * instance describes a physical wireless device connected to the system. Each
  44. * such wiphy can have zero, one, or many virtual interfaces associated with
  45. * it, which need to be identified as such by pointing the network interface's
  46. * @ieee80211_ptr pointer to a &struct wireless_dev which further describes
  47. * the wireless part of the interface, normally this struct is embedded in the
  48. * network interface's private data area. Drivers can optionally allow creating
  49. * or destroying virtual interfaces on the fly, but without at least one or the
  50. * ability to create some the wireless device isn't useful.
  51. *
  52. * Each wiphy structure contains device capability information, and also has
  53. * a pointer to the various operations the driver offers. The definitions and
  54. * structures here describe these capabilities in detail.
  55. */
  56. /*
  57. * wireless hardware capability structures
  58. */
  59. /**
  60. * enum ieee80211_band - supported frequency bands
  61. *
  62. * The bands are assigned this way because the supported
  63. * bitrates differ in these bands.
  64. *
  65. * @IEEE80211_BAND_2GHZ: 2.4GHz ISM band
  66. * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7)
  67. * @IEEE80211_BAND_60GHZ: around 60 GHz band (58.32 - 64.80 GHz)
  68. * @IEEE80211_NUM_BANDS: number of defined bands
  69. */
  70. enum ieee80211_band {
  71. IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ,
  72. IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ,
  73. IEEE80211_BAND_60GHZ = NL80211_BAND_60GHZ,
  74. /* keep last */
  75. IEEE80211_NUM_BANDS
  76. };
  77. /**
  78. * enum ieee80211_channel_flags - channel flags
  79. *
  80. * Channel flags set by the regulatory control code.
  81. *
  82. * @IEEE80211_CHAN_DISABLED: This channel is disabled.
  83. * @IEEE80211_CHAN_PASSIVE_SCAN: Only passive scanning is permitted
  84. * on this channel.
  85. * @IEEE80211_CHAN_NO_IBSS: IBSS is not allowed on this channel.
  86. * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel.
  87. * @IEEE80211_CHAN_NO_HT40PLUS: extension channel above this channel
  88. * is not permitted.
  89. * @IEEE80211_CHAN_NO_HT40MINUS: extension channel below this channel
  90. * is not permitted.
  91. */
  92. enum ieee80211_channel_flags {
  93. IEEE80211_CHAN_DISABLED = 1<<0,
  94. IEEE80211_CHAN_PASSIVE_SCAN = 1<<1,
  95. IEEE80211_CHAN_NO_IBSS = 1<<2,
  96. IEEE80211_CHAN_RADAR = 1<<3,
  97. IEEE80211_CHAN_NO_HT40PLUS = 1<<4,
  98. IEEE80211_CHAN_NO_HT40MINUS = 1<<5,
  99. };
  100. #define IEEE80211_CHAN_NO_HT40 \
  101. (IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
  102. /**
  103. * struct ieee80211_channel - channel definition
  104. *
  105. * This structure describes a single channel for use
  106. * with cfg80211.
  107. *
  108. * @center_freq: center frequency in MHz
  109. * @hw_value: hardware-specific value for the channel
  110. * @flags: channel flags from &enum ieee80211_channel_flags.
  111. * @orig_flags: channel flags at registration time, used by regulatory
  112. * code to support devices with additional restrictions
  113. * @band: band this channel belongs to.
  114. * @max_antenna_gain: maximum antenna gain in dBi
  115. * @max_power: maximum transmission power (in dBm)
  116. * @max_reg_power: maximum regulatory transmission power (in dBm)
  117. * @beacon_found: helper to regulatory code to indicate when a beacon
  118. * has been found on this channel. Use regulatory_hint_found_beacon()
  119. * to enable this, this is useful only on 5 GHz band.
  120. * @orig_mag: internal use
  121. * @orig_mpwr: internal use
  122. */
  123. struct ieee80211_channel {
  124. enum ieee80211_band band;
  125. u16 center_freq;
  126. u16 hw_value;
  127. u32 flags;
  128. int max_antenna_gain;
  129. int max_power;
  130. int max_reg_power;
  131. bool beacon_found;
  132. u32 orig_flags;
  133. int orig_mag, orig_mpwr;
  134. };
  135. /**
  136. * enum ieee80211_rate_flags - rate flags
  137. *
  138. * Hardware/specification flags for rates. These are structured
  139. * in a way that allows using the same bitrate structure for
  140. * different bands/PHY modes.
  141. *
  142. * @IEEE80211_RATE_SHORT_PREAMBLE: Hardware can send with short
  143. * preamble on this bitrate; only relevant in 2.4GHz band and
  144. * with CCK rates.
  145. * @IEEE80211_RATE_MANDATORY_A: This bitrate is a mandatory rate
  146. * when used with 802.11a (on the 5 GHz band); filled by the
  147. * core code when registering the wiphy.
  148. * @IEEE80211_RATE_MANDATORY_B: This bitrate is a mandatory rate
  149. * when used with 802.11b (on the 2.4 GHz band); filled by the
  150. * core code when registering the wiphy.
  151. * @IEEE80211_RATE_MANDATORY_G: This bitrate is a mandatory rate
  152. * when used with 802.11g (on the 2.4 GHz band); filled by the
  153. * core code when registering the wiphy.
  154. * @IEEE80211_RATE_ERP_G: This is an ERP rate in 802.11g mode.
  155. */
  156. enum ieee80211_rate_flags {
  157. IEEE80211_RATE_SHORT_PREAMBLE = 1<<0,
  158. IEEE80211_RATE_MANDATORY_A = 1<<1,
  159. IEEE80211_RATE_MANDATORY_B = 1<<2,
  160. IEEE80211_RATE_MANDATORY_G = 1<<3,
  161. IEEE80211_RATE_ERP_G = 1<<4,
  162. };
  163. /**
  164. * struct ieee80211_rate - bitrate definition
  165. *
  166. * This structure describes a bitrate that an 802.11 PHY can
  167. * operate with. The two values @hw_value and @hw_value_short
  168. * are only for driver use when pointers to this structure are
  169. * passed around.
  170. *
  171. * @flags: rate-specific flags
  172. * @bitrate: bitrate in units of 100 Kbps
  173. * @hw_value: driver/hardware value for this rate
  174. * @hw_value_short: driver/hardware value for this rate when
  175. * short preamble is used
  176. */
  177. struct ieee80211_rate {
  178. u32 flags;
  179. u16 bitrate;
  180. u16 hw_value, hw_value_short;
  181. };
  182. /**
  183. * struct ieee80211_sta_ht_cap - STA's HT capabilities
  184. *
  185. * This structure describes most essential parameters needed
  186. * to describe 802.11n HT capabilities for an STA.
  187. *
  188. * @ht_supported: is HT supported by the STA
  189. * @cap: HT capabilities map as described in 802.11n spec
  190. * @ampdu_factor: Maximum A-MPDU length factor
  191. * @ampdu_density: Minimum A-MPDU spacing
  192. * @mcs: Supported MCS rates
  193. */
  194. struct ieee80211_sta_ht_cap {
  195. u16 cap; /* use IEEE80211_HT_CAP_ */
  196. bool ht_supported;
  197. u8 ampdu_factor;
  198. u8 ampdu_density;
  199. struct ieee80211_mcs_info mcs;
  200. };
  201. /**
  202. * struct ieee80211_sta_vht_cap - STA's VHT capabilities
  203. *
  204. * This structure describes most essential parameters needed
  205. * to describe 802.11ac VHT capabilities for an STA.
  206. *
  207. * @vht_supported: is VHT supported by the STA
  208. * @cap: VHT capabilities map as described in 802.11ac spec
  209. * @vht_mcs: Supported VHT MCS rates
  210. */
  211. struct ieee80211_sta_vht_cap {
  212. bool vht_supported;
  213. u32 cap; /* use IEEE80211_VHT_CAP_ */
  214. struct ieee80211_vht_mcs_info vht_mcs;
  215. };
  216. /**
  217. * struct ieee80211_supported_band - frequency band definition
  218. *
  219. * This structure describes a frequency band a wiphy
  220. * is able to operate in.
  221. *
  222. * @channels: Array of channels the hardware can operate in
  223. * in this band.
  224. * @band: the band this structure represents
  225. * @n_channels: Number of channels in @channels
  226. * @bitrates: Array of bitrates the hardware can operate with
  227. * in this band. Must be sorted to give a valid "supported
  228. * rates" IE, i.e. CCK rates first, then OFDM.
  229. * @n_bitrates: Number of bitrates in @bitrates
  230. * @ht_cap: HT capabilities in this band
  231. */
  232. struct ieee80211_supported_band {
  233. struct ieee80211_channel *channels;
  234. struct ieee80211_rate *bitrates;
  235. enum ieee80211_band band;
  236. int n_channels;
  237. int n_bitrates;
  238. struct ieee80211_sta_ht_cap ht_cap;
  239. struct ieee80211_sta_vht_cap vht_cap;
  240. };
  241. /*
  242. * Wireless hardware/device configuration structures and methods
  243. */
  244. /**
  245. * DOC: Actions and configuration
  246. *
  247. * Each wireless device and each virtual interface offer a set of configuration
  248. * operations and other actions that are invoked by userspace. Each of these
  249. * actions is described in the operations structure, and the parameters these
  250. * operations use are described separately.
  251. *
  252. * Additionally, some operations are asynchronous and expect to get status
  253. * information via some functions that drivers need to call.
  254. *
  255. * Scanning and BSS list handling with its associated functionality is described
  256. * in a separate chapter.
  257. */
  258. /**
  259. * struct vif_params - describes virtual interface parameters
  260. * @use_4addr: use 4-address frames
  261. */
  262. struct vif_params {
  263. int use_4addr;
  264. };
  265. /**
  266. * struct key_params - key information
  267. *
  268. * Information about a key
  269. *
  270. * @key: key material
  271. * @key_len: length of key material
  272. * @cipher: cipher suite selector
  273. * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
  274. * with the get_key() callback, must be in little endian,
  275. * length given by @seq_len.
  276. * @seq_len: length of @seq.
  277. */
  278. struct key_params {
  279. u8 *key;
  280. u8 *seq;
  281. int key_len;
  282. int seq_len;
  283. u32 cipher;
  284. };
  285. /**
  286. * enum survey_info_flags - survey information flags
  287. *
  288. * @SURVEY_INFO_NOISE_DBM: noise (in dBm) was filled in
  289. * @SURVEY_INFO_IN_USE: channel is currently being used
  290. * @SURVEY_INFO_CHANNEL_TIME: channel active time (in ms) was filled in
  291. * @SURVEY_INFO_CHANNEL_TIME_BUSY: channel busy time was filled in
  292. * @SURVEY_INFO_CHANNEL_TIME_EXT_BUSY: extension channel busy time was filled in
  293. * @SURVEY_INFO_CHANNEL_TIME_RX: channel receive time was filled in
  294. * @SURVEY_INFO_CHANNEL_TIME_TX: channel transmit time was filled in
  295. *
  296. * Used by the driver to indicate which info in &struct survey_info
  297. * it has filled in during the get_survey().
  298. */
  299. enum survey_info_flags {
  300. SURVEY_INFO_NOISE_DBM = 1<<0,
  301. SURVEY_INFO_IN_USE = 1<<1,
  302. SURVEY_INFO_CHANNEL_TIME = 1<<2,
  303. SURVEY_INFO_CHANNEL_TIME_BUSY = 1<<3,
  304. SURVEY_INFO_CHANNEL_TIME_EXT_BUSY = 1<<4,
  305. SURVEY_INFO_CHANNEL_TIME_RX = 1<<5,
  306. SURVEY_INFO_CHANNEL_TIME_TX = 1<<6,
  307. };
  308. /**
  309. * struct survey_info - channel survey response
  310. *
  311. * @channel: the channel this survey record reports, mandatory
  312. * @filled: bitflag of flags from &enum survey_info_flags
  313. * @noise: channel noise in dBm. This and all following fields are
  314. * optional
  315. * @channel_time: amount of time in ms the radio spent on the channel
  316. * @channel_time_busy: amount of time the primary channel was sensed busy
  317. * @channel_time_ext_busy: amount of time the extension channel was sensed busy
  318. * @channel_time_rx: amount of time the radio spent receiving data
  319. * @channel_time_tx: amount of time the radio spent transmitting data
  320. *
  321. * Used by dump_survey() to report back per-channel survey information.
  322. *
  323. * This structure can later be expanded with things like
  324. * channel duty cycle etc.
  325. */
  326. struct survey_info {
  327. struct ieee80211_channel *channel;
  328. u64 channel_time;
  329. u64 channel_time_busy;
  330. u64 channel_time_ext_busy;
  331. u64 channel_time_rx;
  332. u64 channel_time_tx;
  333. u32 filled;
  334. s8 noise;
  335. };
  336. /**
  337. * struct cfg80211_crypto_settings - Crypto settings
  338. * @wpa_versions: indicates which, if any, WPA versions are enabled
  339. * (from enum nl80211_wpa_versions)
  340. * @cipher_group: group key cipher suite (or 0 if unset)
  341. * @n_ciphers_pairwise: number of AP supported unicast ciphers
  342. * @ciphers_pairwise: unicast key cipher suites
  343. * @n_akm_suites: number of AKM suites
  344. * @akm_suites: AKM suites
  345. * @control_port: Whether user space controls IEEE 802.1X port, i.e.,
  346. * sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
  347. * required to assume that the port is unauthorized until authorized by
  348. * user space. Otherwise, port is marked authorized by default.
  349. * @control_port_ethertype: the control port protocol that should be
  350. * allowed through even on unauthorized ports
  351. * @control_port_no_encrypt: TRUE to prevent encryption of control port
  352. * protocol frames.
  353. */
  354. struct cfg80211_crypto_settings {
  355. u32 wpa_versions;
  356. u32 cipher_group;
  357. int n_ciphers_pairwise;
  358. u32 ciphers_pairwise[NL80211_MAX_NR_CIPHER_SUITES];
  359. int n_akm_suites;
  360. u32 akm_suites[NL80211_MAX_NR_AKM_SUITES];
  361. bool control_port;
  362. __be16 control_port_ethertype;
  363. bool control_port_no_encrypt;
  364. };
  365. /**
  366. * struct cfg80211_beacon_data - beacon data
  367. * @head: head portion of beacon (before TIM IE)
  368. * or %NULL if not changed
  369. * @tail: tail portion of beacon (after TIM IE)
  370. * or %NULL if not changed
  371. * @head_len: length of @head
  372. * @tail_len: length of @tail
  373. * @beacon_ies: extra information element(s) to add into Beacon frames or %NULL
  374. * @beacon_ies_len: length of beacon_ies in octets
  375. * @proberesp_ies: extra information element(s) to add into Probe Response
  376. * frames or %NULL
  377. * @proberesp_ies_len: length of proberesp_ies in octets
  378. * @assocresp_ies: extra information element(s) to add into (Re)Association
  379. * Response frames or %NULL
  380. * @assocresp_ies_len: length of assocresp_ies in octets
  381. * @probe_resp_len: length of probe response template (@probe_resp)
  382. * @probe_resp: probe response template (AP mode only)
  383. */
  384. struct cfg80211_beacon_data {
  385. const u8 *head, *tail;
  386. const u8 *beacon_ies;
  387. const u8 *proberesp_ies;
  388. const u8 *assocresp_ies;
  389. const u8 *probe_resp;
  390. size_t head_len, tail_len;
  391. size_t beacon_ies_len;
  392. size_t proberesp_ies_len;
  393. size_t assocresp_ies_len;
  394. size_t probe_resp_len;
  395. };
  396. /**
  397. * struct cfg80211_ap_settings - AP configuration
  398. *
  399. * Used to configure an AP interface.
  400. *
  401. * @channel: the channel to start the AP on
  402. * @channel_type: the channel type to use
  403. * @beacon: beacon data
  404. * @beacon_interval: beacon interval
  405. * @dtim_period: DTIM period
  406. * @ssid: SSID to be used in the BSS (note: may be %NULL if not provided from
  407. * user space)
  408. * @ssid_len: length of @ssid
  409. * @hidden_ssid: whether to hide the SSID in Beacon/Probe Response frames
  410. * @crypto: crypto settings
  411. * @privacy: the BSS uses privacy
  412. * @auth_type: Authentication type (algorithm)
  413. * @inactivity_timeout: time in seconds to determine station's inactivity.
  414. */
  415. struct cfg80211_ap_settings {
  416. struct ieee80211_channel *channel;
  417. enum nl80211_channel_type channel_type;
  418. struct cfg80211_beacon_data beacon;
  419. int beacon_interval, dtim_period;
  420. const u8 *ssid;
  421. size_t ssid_len;
  422. enum nl80211_hidden_ssid hidden_ssid;
  423. struct cfg80211_crypto_settings crypto;
  424. bool privacy;
  425. enum nl80211_auth_type auth_type;
  426. int inactivity_timeout;
  427. };
  428. /**
  429. * enum plink_action - actions to perform in mesh peers
  430. *
  431. * @PLINK_ACTION_INVALID: action 0 is reserved
  432. * @PLINK_ACTION_OPEN: start mesh peer link establishment
  433. * @PLINK_ACTION_BLOCK: block traffic from this mesh peer
  434. */
  435. enum plink_actions {
  436. PLINK_ACTION_INVALID,
  437. PLINK_ACTION_OPEN,
  438. PLINK_ACTION_BLOCK,
  439. };
  440. /**
  441. * enum station_parameters_apply_mask - station parameter values to apply
  442. * @STATION_PARAM_APPLY_UAPSD: apply new uAPSD parameters (uapsd_queues, max_sp)
  443. *
  444. * Not all station parameters have in-band "no change" signalling,
  445. * for those that don't these flags will are used.
  446. */
  447. enum station_parameters_apply_mask {
  448. STATION_PARAM_APPLY_UAPSD = BIT(0),
  449. };
  450. /**
  451. * struct station_parameters - station parameters
  452. *
  453. * Used to change and create a new station.
  454. *
  455. * @vlan: vlan interface station should belong to
  456. * @supported_rates: supported rates in IEEE 802.11 format
  457. * (or NULL for no change)
  458. * @supported_rates_len: number of supported rates
  459. * @sta_flags_mask: station flags that changed
  460. * (bitmask of BIT(NL80211_STA_FLAG_...))
  461. * @sta_flags_set: station flags values
  462. * (bitmask of BIT(NL80211_STA_FLAG_...))
  463. * @listen_interval: listen interval or -1 for no change
  464. * @aid: AID or zero for no change
  465. * @plink_action: plink action to take
  466. * @plink_state: set the peer link state for a station
  467. * @ht_capa: HT capabilities of station
  468. * @uapsd_queues: bitmap of queues configured for uapsd. same format
  469. * as the AC bitmap in the QoS info field
  470. * @max_sp: max Service Period. same format as the MAX_SP in the
  471. * QoS info field (but already shifted down)
  472. * @sta_modify_mask: bitmap indicating which parameters changed
  473. * (for those that don't have a natural "no change" value),
  474. * see &enum station_parameters_apply_mask
  475. */
  476. struct station_parameters {
  477. u8 *supported_rates;
  478. struct net_device *vlan;
  479. u32 sta_flags_mask, sta_flags_set;
  480. u32 sta_modify_mask;
  481. int listen_interval;
  482. u16 aid;
  483. u8 supported_rates_len;
  484. u8 plink_action;
  485. u8 plink_state;
  486. struct ieee80211_ht_cap *ht_capa;
  487. u8 uapsd_queues;
  488. u8 max_sp;
  489. };
  490. /**
  491. * enum station_info_flags - station information flags
  492. *
  493. * Used by the driver to indicate which info in &struct station_info
  494. * it has filled in during get_station() or dump_station().
  495. *
  496. * @STATION_INFO_INACTIVE_TIME: @inactive_time filled
  497. * @STATION_INFO_RX_BYTES: @rx_bytes filled
  498. * @STATION_INFO_TX_BYTES: @tx_bytes filled
  499. * @STATION_INFO_LLID: @llid filled
  500. * @STATION_INFO_PLID: @plid filled
  501. * @STATION_INFO_PLINK_STATE: @plink_state filled
  502. * @STATION_INFO_SIGNAL: @signal filled
  503. * @STATION_INFO_TX_BITRATE: @txrate fields are filled
  504. * (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs)
  505. * @STATION_INFO_RX_PACKETS: @rx_packets filled
  506. * @STATION_INFO_TX_PACKETS: @tx_packets filled
  507. * @STATION_INFO_TX_RETRIES: @tx_retries filled
  508. * @STATION_INFO_TX_FAILED: @tx_failed filled
  509. * @STATION_INFO_RX_DROP_MISC: @rx_dropped_misc filled
  510. * @STATION_INFO_SIGNAL_AVG: @signal_avg filled
  511. * @STATION_INFO_RX_BITRATE: @rxrate fields are filled
  512. * @STATION_INFO_BSS_PARAM: @bss_param filled
  513. * @STATION_INFO_CONNECTED_TIME: @connected_time filled
  514. * @STATION_INFO_ASSOC_REQ_IES: @assoc_req_ies filled
  515. * @STATION_INFO_STA_FLAGS: @sta_flags filled
  516. * @STATION_INFO_BEACON_LOSS_COUNT: @beacon_loss_count filled
  517. * @STATION_INFO_T_OFFSET: @t_offset filled
  518. */
  519. enum station_info_flags {
  520. STATION_INFO_INACTIVE_TIME = 1<<0,
  521. STATION_INFO_RX_BYTES = 1<<1,
  522. STATION_INFO_TX_BYTES = 1<<2,
  523. STATION_INFO_LLID = 1<<3,
  524. STATION_INFO_PLID = 1<<4,
  525. STATION_INFO_PLINK_STATE = 1<<5,
  526. STATION_INFO_SIGNAL = 1<<6,
  527. STATION_INFO_TX_BITRATE = 1<<7,
  528. STATION_INFO_RX_PACKETS = 1<<8,
  529. STATION_INFO_TX_PACKETS = 1<<9,
  530. STATION_INFO_TX_RETRIES = 1<<10,
  531. STATION_INFO_TX_FAILED = 1<<11,
  532. STATION_INFO_RX_DROP_MISC = 1<<12,
  533. STATION_INFO_SIGNAL_AVG = 1<<13,
  534. STATION_INFO_RX_BITRATE = 1<<14,
  535. STATION_INFO_BSS_PARAM = 1<<15,
  536. STATION_INFO_CONNECTED_TIME = 1<<16,
  537. STATION_INFO_ASSOC_REQ_IES = 1<<17,
  538. STATION_INFO_STA_FLAGS = 1<<18,
  539. STATION_INFO_BEACON_LOSS_COUNT = 1<<19,
  540. STATION_INFO_T_OFFSET = 1<<20,
  541. };
  542. /**
  543. * enum station_info_rate_flags - bitrate info flags
  544. *
  545. * Used by the driver to indicate the specific rate transmission
  546. * type for 802.11n transmissions.
  547. *
  548. * @RATE_INFO_FLAGS_MCS: @tx_bitrate_mcs filled
  549. * @RATE_INFO_FLAGS_40_MHZ_WIDTH: 40 Mhz width transmission
  550. * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
  551. * @RATE_INFO_FLAGS_60G: 60gHz MCS
  552. */
  553. enum rate_info_flags {
  554. RATE_INFO_FLAGS_MCS = 1<<0,
  555. RATE_INFO_FLAGS_40_MHZ_WIDTH = 1<<1,
  556. RATE_INFO_FLAGS_SHORT_GI = 1<<2,
  557. RATE_INFO_FLAGS_60G = 1<<3,
  558. };
  559. /**
  560. * struct rate_info - bitrate information
  561. *
  562. * Information about a receiving or transmitting bitrate
  563. *
  564. * @flags: bitflag of flags from &enum rate_info_flags
  565. * @mcs: mcs index if struct describes a 802.11n bitrate
  566. * @legacy: bitrate in 100kbit/s for 802.11abg
  567. */
  568. struct rate_info {
  569. u8 flags;
  570. u8 mcs;
  571. u16 legacy;
  572. };
  573. /**
  574. * enum station_info_rate_flags - bitrate info flags
  575. *
  576. * Used by the driver to indicate the specific rate transmission
  577. * type for 802.11n transmissions.
  578. *
  579. * @BSS_PARAM_FLAGS_CTS_PROT: whether CTS protection is enabled
  580. * @BSS_PARAM_FLAGS_SHORT_PREAMBLE: whether short preamble is enabled
  581. * @BSS_PARAM_FLAGS_SHORT_SLOT_TIME: whether short slot time is enabled
  582. */
  583. enum bss_param_flags {
  584. BSS_PARAM_FLAGS_CTS_PROT = 1<<0,
  585. BSS_PARAM_FLAGS_SHORT_PREAMBLE = 1<<1,
  586. BSS_PARAM_FLAGS_SHORT_SLOT_TIME = 1<<2,
  587. };
  588. /**
  589. * struct sta_bss_parameters - BSS parameters for the attached station
  590. *
  591. * Information about the currently associated BSS
  592. *
  593. * @flags: bitflag of flags from &enum bss_param_flags
  594. * @dtim_period: DTIM period for the BSS
  595. * @beacon_interval: beacon interval
  596. */
  597. struct sta_bss_parameters {
  598. u8 flags;
  599. u8 dtim_period;
  600. u16 beacon_interval;
  601. };
  602. /**
  603. * struct station_info - station information
  604. *
  605. * Station information filled by driver for get_station() and dump_station.
  606. *
  607. * @filled: bitflag of flags from &enum station_info_flags
  608. * @connected_time: time(in secs) since a station is last connected
  609. * @inactive_time: time since last station activity (tx/rx) in milliseconds
  610. * @rx_bytes: bytes received from this station
  611. * @tx_bytes: bytes transmitted to this station
  612. * @llid: mesh local link id
  613. * @plid: mesh peer link id
  614. * @plink_state: mesh peer link state
  615. * @signal: The signal strength, type depends on the wiphy's signal_type.
  616. * For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
  617. * @signal_avg: Average signal strength, type depends on the wiphy's signal_type.
  618. * For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
  619. * @txrate: current unicast bitrate from this station
  620. * @rxrate: current unicast bitrate to this station
  621. * @rx_packets: packets received from this station
  622. * @tx_packets: packets transmitted to this station
  623. * @tx_retries: cumulative retry counts
  624. * @tx_failed: number of failed transmissions (retries exceeded, no ACK)
  625. * @rx_dropped_misc: Dropped for un-specified reason.
  626. * @bss_param: current BSS parameters
  627. * @generation: generation number for nl80211 dumps.
  628. * This number should increase every time the list of stations
  629. * changes, i.e. when a station is added or removed, so that
  630. * userspace can tell whether it got a consistent snapshot.
  631. * @assoc_req_ies: IEs from (Re)Association Request.
  632. * This is used only when in AP mode with drivers that do not use
  633. * user space MLME/SME implementation. The information is provided for
  634. * the cfg80211_new_sta() calls to notify user space of the IEs.
  635. * @assoc_req_ies_len: Length of assoc_req_ies buffer in octets.
  636. * @sta_flags: station flags mask & values
  637. * @beacon_loss_count: Number of times beacon loss event has triggered.
  638. * @t_offset: Time offset of the station relative to this host.
  639. */
  640. struct station_info {
  641. u32 filled;
  642. u32 connected_time;
  643. u32 inactive_time;
  644. u32 rx_bytes;
  645. u32 tx_bytes;
  646. u16 llid;
  647. u16 plid;
  648. u8 plink_state;
  649. s8 signal;
  650. s8 signal_avg;
  651. struct rate_info txrate;
  652. struct rate_info rxrate;
  653. u32 rx_packets;
  654. u32 tx_packets;
  655. u32 tx_retries;
  656. u32 tx_failed;
  657. u32 rx_dropped_misc;
  658. struct sta_bss_parameters bss_param;
  659. struct nl80211_sta_flag_update sta_flags;
  660. int generation;
  661. const u8 *assoc_req_ies;
  662. size_t assoc_req_ies_len;
  663. u32 beacon_loss_count;
  664. s64 t_offset;
  665. /*
  666. * Note: Add a new enum station_info_flags value for each new field and
  667. * use it to check which fields are initialized.
  668. */
  669. };
  670. /**
  671. * enum monitor_flags - monitor flags
  672. *
  673. * Monitor interface configuration flags. Note that these must be the bits
  674. * according to the nl80211 flags.
  675. *
  676. * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
  677. * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
  678. * @MONITOR_FLAG_CONTROL: pass control frames
  679. * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
  680. * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
  681. */
  682. enum monitor_flags {
  683. MONITOR_FLAG_FCSFAIL = 1<<NL80211_MNTR_FLAG_FCSFAIL,
  684. MONITOR_FLAG_PLCPFAIL = 1<<NL80211_MNTR_FLAG_PLCPFAIL,
  685. MONITOR_FLAG_CONTROL = 1<<NL80211_MNTR_FLAG_CONTROL,
  686. MONITOR_FLAG_OTHER_BSS = 1<<NL80211_MNTR_FLAG_OTHER_BSS,
  687. MONITOR_FLAG_COOK_FRAMES = 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
  688. };
  689. /**
  690. * enum mpath_info_flags - mesh path information flags
  691. *
  692. * Used by the driver to indicate which info in &struct mpath_info it has filled
  693. * in during get_station() or dump_station().
  694. *
  695. * @MPATH_INFO_FRAME_QLEN: @frame_qlen filled
  696. * @MPATH_INFO_SN: @sn filled
  697. * @MPATH_INFO_METRIC: @metric filled
  698. * @MPATH_INFO_EXPTIME: @exptime filled
  699. * @MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
  700. * @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
  701. * @MPATH_INFO_FLAGS: @flags filled
  702. */
  703. enum mpath_info_flags {
  704. MPATH_INFO_FRAME_QLEN = BIT(0),
  705. MPATH_INFO_SN = BIT(1),
  706. MPATH_INFO_METRIC = BIT(2),
  707. MPATH_INFO_EXPTIME = BIT(3),
  708. MPATH_INFO_DISCOVERY_TIMEOUT = BIT(4),
  709. MPATH_INFO_DISCOVERY_RETRIES = BIT(5),
  710. MPATH_INFO_FLAGS = BIT(6),
  711. };
  712. /**
  713. * struct mpath_info - mesh path information
  714. *
  715. * Mesh path information filled by driver for get_mpath() and dump_mpath().
  716. *
  717. * @filled: bitfield of flags from &enum mpath_info_flags
  718. * @frame_qlen: number of queued frames for this destination
  719. * @sn: target sequence number
  720. * @metric: metric (cost) of this mesh path
  721. * @exptime: expiration time for the mesh path from now, in msecs
  722. * @flags: mesh path flags
  723. * @discovery_timeout: total mesh path discovery timeout, in msecs
  724. * @discovery_retries: mesh path discovery retries
  725. * @generation: generation number for nl80211 dumps.
  726. * This number should increase every time the list of mesh paths
  727. * changes, i.e. when a station is added or removed, so that
  728. * userspace can tell whether it got a consistent snapshot.
  729. */
  730. struct mpath_info {
  731. u32 filled;
  732. u32 frame_qlen;
  733. u32 sn;
  734. u32 metric;
  735. u32 exptime;
  736. u32 discovery_timeout;
  737. u8 discovery_retries;
  738. u8 flags;
  739. int generation;
  740. };
  741. /**
  742. * struct bss_parameters - BSS parameters
  743. *
  744. * Used to change BSS parameters (mainly for AP mode).
  745. *
  746. * @use_cts_prot: Whether to use CTS protection
  747. * (0 = no, 1 = yes, -1 = do not change)
  748. * @use_short_preamble: Whether the use of short preambles is allowed
  749. * (0 = no, 1 = yes, -1 = do not change)
  750. * @use_short_slot_time: Whether the use of short slot time is allowed
  751. * (0 = no, 1 = yes, -1 = do not change)
  752. * @basic_rates: basic rates in IEEE 802.11 format
  753. * (or NULL for no change)
  754. * @basic_rates_len: number of basic rates
  755. * @ap_isolate: do not forward packets between connected stations
  756. * @ht_opmode: HT Operation mode
  757. * (u16 = opmode, -1 = do not change)
  758. */
  759. struct bss_parameters {
  760. int use_cts_prot;
  761. int use_short_preamble;
  762. int use_short_slot_time;
  763. u8 *basic_rates;
  764. u8 basic_rates_len;
  765. int ap_isolate;
  766. int ht_opmode;
  767. };
  768. /**
  769. * struct mesh_config - 802.11s mesh configuration
  770. *
  771. * These parameters can be changed while the mesh is active.
  772. *
  773. * @dot11MeshRetryTimeout: the initial retry timeout in millisecond units used
  774. * by the Mesh Peering Open message
  775. * @dot11MeshConfirmTimeout: the initial retry timeout in millisecond units
  776. * used by the Mesh Peering Open message
  777. * @dot11MeshHoldingTimeout: the confirm timeout in millisecond units used by
  778. * the mesh peering management to close a mesh peering
  779. * @dot11MeshMaxPeerLinks: the maximum number of peer links allowed on this
  780. * mesh interface
  781. * @dot11MeshMaxRetries: the maximum number of peer link open retries that can
  782. * be sent to establish a new peer link instance in a mesh
  783. * @dot11MeshTTL: the value of TTL field set at a source mesh STA
  784. * @element_ttl: the value of TTL field set at a mesh STA for path selection
  785. * elements
  786. * @auto_open_plinks: whether we should automatically open peer links when we
  787. * detect compatible mesh peers
  788. * @dot11MeshNbrOffsetMaxNeighbor: the maximum number of neighbors to
  789. * synchronize to for 11s default synchronization method
  790. * @dot11MeshHWMPmaxPREQretries: the number of action frames containing a PREQ
  791. * that an originator mesh STA can send to a particular path target
  792. * @path_refresh_time: how frequently to refresh mesh paths in milliseconds
  793. * @min_discovery_timeout: the minimum length of time to wait until giving up on
  794. * a path discovery in milliseconds
  795. * @dot11MeshHWMPactivePathTimeout: the time (in TUs) for which mesh STAs
  796. * receiving a PREQ shall consider the forwarding information from the
  797. * root to be valid. (TU = time unit)
  798. * @dot11MeshHWMPpreqMinInterval: the minimum interval of time (in TUs) during
  799. * which a mesh STA can send only one action frame containing a PREQ
  800. * element
  801. * @dot11MeshHWMPperrMinInterval: the minimum interval of time (in TUs) during
  802. * which a mesh STA can send only one Action frame containing a PERR
  803. * element
  804. * @dot11MeshHWMPnetDiameterTraversalTime: the interval of time (in TUs) that
  805. * it takes for an HWMP information element to propagate across the mesh
  806. * @dot11MeshHWMPRootMode: the configuration of a mesh STA as root mesh STA
  807. * @dot11MeshHWMPRannInterval: the interval of time (in TUs) between root
  808. * announcements are transmitted
  809. * @dot11MeshGateAnnouncementProtocol: whether to advertise that this mesh
  810. * station has access to a broader network beyond the MBSS. (This is
  811. * missnamed in draft 12.0: dot11MeshGateAnnouncementProtocol set to true
  812. * only means that the station will announce others it's a mesh gate, but
  813. * not necessarily using the gate announcement protocol. Still keeping the
  814. * same nomenclature to be in sync with the spec)
  815. * @dot11MeshForwarding: whether the Mesh STA is forwarding or non-forwarding
  816. * entity (default is TRUE - forwarding entity)
  817. * @rssi_threshold: the threshold for average signal strength of candidate
  818. * station to establish a peer link
  819. * @ht_opmode: mesh HT protection mode
  820. *
  821. * @dot11MeshHWMPactivePathToRootTimeout: The time (in TUs) for which mesh STAs
  822. * receiving a proactive PREQ shall consider the forwarding information to
  823. * the root mesh STA to be valid.
  824. *
  825. * @dot11MeshHWMProotInterval: The interval of time (in TUs) between proactive
  826. * PREQs are transmitted.
  827. * @dot11MeshHWMPconfirmationInterval: The minimum interval of time (in TUs)
  828. * during which a mesh STA can send only one Action frame containing
  829. * a PREQ element for root path confirmation.
  830. */
  831. struct mesh_config {
  832. u16 dot11MeshRetryTimeout;
  833. u16 dot11MeshConfirmTimeout;
  834. u16 dot11MeshHoldingTimeout;
  835. u16 dot11MeshMaxPeerLinks;
  836. u8 dot11MeshMaxRetries;
  837. u8 dot11MeshTTL;
  838. u8 element_ttl;
  839. bool auto_open_plinks;
  840. u32 dot11MeshNbrOffsetMaxNeighbor;
  841. u8 dot11MeshHWMPmaxPREQretries;
  842. u32 path_refresh_time;
  843. u16 min_discovery_timeout;
  844. u32 dot11MeshHWMPactivePathTimeout;
  845. u16 dot11MeshHWMPpreqMinInterval;
  846. u16 dot11MeshHWMPperrMinInterval;
  847. u16 dot11MeshHWMPnetDiameterTraversalTime;
  848. u8 dot11MeshHWMPRootMode;
  849. u16 dot11MeshHWMPRannInterval;
  850. bool dot11MeshGateAnnouncementProtocol;
  851. bool dot11MeshForwarding;
  852. s32 rssi_threshold;
  853. u16 ht_opmode;
  854. u32 dot11MeshHWMPactivePathToRootTimeout;
  855. u16 dot11MeshHWMProotInterval;
  856. u16 dot11MeshHWMPconfirmationInterval;
  857. };
  858. /**
  859. * struct mesh_setup - 802.11s mesh setup configuration
  860. * @channel: the channel to start the mesh network on
  861. * @channel_type: the channel type to use
  862. * @mesh_id: the mesh ID
  863. * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes
  864. * @sync_method: which synchronization method to use
  865. * @path_sel_proto: which path selection protocol to use
  866. * @path_metric: which metric to use
  867. * @ie: vendor information elements (optional)
  868. * @ie_len: length of vendor information elements
  869. * @is_authenticated: this mesh requires authentication
  870. * @is_secure: this mesh uses security
  871. * @mcast_rate: multicat rate for Mesh Node [6Mbps is the default for 802.11a]
  872. *
  873. * These parameters are fixed when the mesh is created.
  874. */
  875. struct mesh_setup {
  876. struct ieee80211_channel *channel;
  877. enum nl80211_channel_type channel_type;
  878. const u8 *mesh_id;
  879. u8 mesh_id_len;
  880. u8 sync_method;
  881. u8 path_sel_proto;
  882. u8 path_metric;
  883. const u8 *ie;
  884. u8 ie_len;
  885. bool is_authenticated;
  886. bool is_secure;
  887. int mcast_rate[IEEE80211_NUM_BANDS];
  888. };
  889. /**
  890. * struct ieee80211_txq_params - TX queue parameters
  891. * @ac: AC identifier
  892. * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
  893. * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
  894. * 1..32767]
  895. * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
  896. * 1..32767]
  897. * @aifs: Arbitration interframe space [0..255]
  898. */
  899. struct ieee80211_txq_params {
  900. enum nl80211_ac ac;
  901. u16 txop;
  902. u16 cwmin;
  903. u16 cwmax;
  904. u8 aifs;
  905. };
  906. /* from net/wireless.h */
  907. struct wiphy;
  908. /**
  909. * DOC: Scanning and BSS list handling
  910. *
  911. * The scanning process itself is fairly simple, but cfg80211 offers quite
  912. * a bit of helper functionality. To start a scan, the scan operation will
  913. * be invoked with a scan definition. This scan definition contains the
  914. * channels to scan, and the SSIDs to send probe requests for (including the
  915. * wildcard, if desired). A passive scan is indicated by having no SSIDs to
  916. * probe. Additionally, a scan request may contain extra information elements
  917. * that should be added to the probe request. The IEs are guaranteed to be
  918. * well-formed, and will not exceed the maximum length the driver advertised
  919. * in the wiphy structure.
  920. *
  921. * When scanning finds a BSS, cfg80211 needs to be notified of that, because
  922. * it is responsible for maintaining the BSS list; the driver should not
  923. * maintain a list itself. For this notification, various functions exist.
  924. *
  925. * Since drivers do not maintain a BSS list, there are also a number of
  926. * functions to search for a BSS and obtain information about it from the
  927. * BSS structure cfg80211 maintains. The BSS list is also made available
  928. * to userspace.
  929. */
  930. /**
  931. * struct cfg80211_ssid - SSID description
  932. * @ssid: the SSID
  933. * @ssid_len: length of the ssid
  934. */
  935. struct cfg80211_ssid {
  936. u8 ssid[IEEE80211_MAX_SSID_LEN];
  937. u8 ssid_len;
  938. };
  939. /**
  940. * struct cfg80211_scan_request - scan request description
  941. *
  942. * @ssids: SSIDs to scan for (active scan only)
  943. * @n_ssids: number of SSIDs
  944. * @channels: channels to scan on.
  945. * @n_channels: total number of channels to scan
  946. * @ie: optional information element(s) to add into Probe Request or %NULL
  947. * @ie_len: length of ie in octets
  948. * @rates: bitmap of rates to advertise for each band
  949. * @wiphy: the wiphy this was for
  950. * @dev: the interface
  951. * @aborted: (internal) scan request was notified as aborted
  952. * @no_cck: used to send probe requests at non CCK rate in 2GHz band
  953. */
  954. struct cfg80211_scan_request {
  955. struct cfg80211_ssid *ssids;
  956. int n_ssids;
  957. u32 n_channels;
  958. const u8 *ie;
  959. size_t ie_len;
  960. u32 rates[IEEE80211_NUM_BANDS];
  961. /* internal */
  962. struct wiphy *wiphy;
  963. struct net_device *dev;
  964. bool aborted;
  965. bool no_cck;
  966. /* keep last */
  967. struct ieee80211_channel *channels[0];
  968. };
  969. /**
  970. * struct cfg80211_match_set - sets of attributes to match
  971. *
  972. * @ssid: SSID to be matched
  973. */
  974. struct cfg80211_match_set {
  975. struct cfg80211_ssid ssid;
  976. };
  977. /**
  978. * struct cfg80211_sched_scan_request - scheduled scan request description
  979. *
  980. * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans)
  981. * @n_ssids: number of SSIDs
  982. * @n_channels: total number of channels to scan
  983. * @interval: interval between each scheduled scan cycle
  984. * @ie: optional information element(s) to add into Probe Request or %NULL
  985. * @ie_len: length of ie in octets
  986. * @match_sets: sets of parameters to be matched for a scan result
  987. * entry to be considered valid and to be passed to the host
  988. * (others are filtered out).
  989. * If ommited, all results are passed.
  990. * @n_match_sets: number of match sets
  991. * @wiphy: the wiphy this was for
  992. * @dev: the interface
  993. * @channels: channels to scan
  994. * @rssi_thold: don't report scan results below this threshold (in s32 dBm)
  995. */
  996. struct cfg80211_sched_scan_request {
  997. struct cfg80211_ssid *ssids;
  998. int n_ssids;
  999. u32 n_channels;
  1000. u32 interval;
  1001. const u8 *ie;
  1002. size_t ie_len;
  1003. struct cfg80211_match_set *match_sets;
  1004. int n_match_sets;
  1005. s32 rssi_thold;
  1006. /* internal */
  1007. struct wiphy *wiphy;
  1008. struct net_device *dev;
  1009. /* keep last */
  1010. struct ieee80211_channel *channels[0];
  1011. };
  1012. /**
  1013. * enum cfg80211_signal_type - signal type
  1014. *
  1015. * @CFG80211_SIGNAL_TYPE_NONE: no signal strength information available
  1016. * @CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm)
  1017. * @CFG80211_SIGNAL_TYPE_UNSPEC: signal strength, increasing from 0 through 100
  1018. */
  1019. enum cfg80211_signal_type {
  1020. CFG80211_SIGNAL_TYPE_NONE,
  1021. CFG80211_SIGNAL_TYPE_MBM,
  1022. CFG80211_SIGNAL_TYPE_UNSPEC,
  1023. };
  1024. /**
  1025. * struct cfg80211_bss - BSS description
  1026. *
  1027. * This structure describes a BSS (which may also be a mesh network)
  1028. * for use in scan results and similar.
  1029. *
  1030. * @channel: channel this BSS is on
  1031. * @bssid: BSSID of the BSS
  1032. * @tsf: timestamp of last received update
  1033. * @beacon_interval: the beacon interval as from the frame
  1034. * @capability: the capability field in host byte order
  1035. * @information_elements: the information elements (Note that there
  1036. * is no guarantee that these are well-formed!); this is a pointer to
  1037. * either the beacon_ies or proberesp_ies depending on whether Probe
  1038. * Response frame has been received
  1039. * @len_information_elements: total length of the information elements
  1040. * @beacon_ies: the information elements from the last Beacon frame
  1041. * @len_beacon_ies: total length of the beacon_ies
  1042. * @proberesp_ies: the information elements from the last Probe Response frame
  1043. * @len_proberesp_ies: total length of the proberesp_ies
  1044. * @signal: signal strength value (type depends on the wiphy's signal_type)
  1045. * @free_priv: function pointer to free private data
  1046. * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
  1047. */
  1048. struct cfg80211_bss {
  1049. struct ieee80211_channel *channel;
  1050. u8 bssid[ETH_ALEN];
  1051. u64 tsf;
  1052. u16 beacon_interval;
  1053. u16 capability;
  1054. u8 *information_elements;
  1055. size_t len_information_elements;
  1056. u8 *beacon_ies;
  1057. size_t len_beacon_ies;
  1058. u8 *proberesp_ies;
  1059. size_t len_proberesp_ies;
  1060. s32 signal;
  1061. void (*free_priv)(struct cfg80211_bss *bss);
  1062. u8 priv[0] __attribute__((__aligned__(sizeof(void *))));
  1063. };
  1064. /**
  1065. * ieee80211_bss_get_ie - find IE with given ID
  1066. * @bss: the bss to search
  1067. * @ie: the IE ID
  1068. * Returns %NULL if not found.
  1069. */
  1070. const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie);
  1071. /**
  1072. * struct cfg80211_auth_request - Authentication request data
  1073. *
  1074. * This structure provides information needed to complete IEEE 802.11
  1075. * authentication.
  1076. *
  1077. * @bss: The BSS to authenticate with.
  1078. * @auth_type: Authentication type (algorithm)
  1079. * @ie: Extra IEs to add to Authentication frame or %NULL
  1080. * @ie_len: Length of ie buffer in octets
  1081. * @key_len: length of WEP key for shared key authentication
  1082. * @key_idx: index of WEP key for shared key authentication
  1083. * @key: WEP key for shared key authentication
  1084. */
  1085. struct cfg80211_auth_request {
  1086. struct cfg80211_bss *bss;
  1087. const u8 *ie;
  1088. size_t ie_len;
  1089. enum nl80211_auth_type auth_type;
  1090. const u8 *key;
  1091. u8 key_len, key_idx;
  1092. };
  1093. /**
  1094. * enum cfg80211_assoc_req_flags - Over-ride default behaviour in association.
  1095. *
  1096. * @ASSOC_REQ_DISABLE_HT: Disable HT (802.11n)
  1097. */
  1098. enum cfg80211_assoc_req_flags {
  1099. ASSOC_REQ_DISABLE_HT = BIT(0),
  1100. };
  1101. /**
  1102. * struct cfg80211_assoc_request - (Re)Association request data
  1103. *
  1104. * This structure provides information needed to complete IEEE 802.11
  1105. * (re)association.
  1106. * @bss: The BSS to associate with. If the call is successful the driver
  1107. * is given a reference that it must release, normally via a call to
  1108. * cfg80211_send_rx_assoc(), or, if association timed out, with a
  1109. * call to cfg80211_put_bss() (in addition to calling
  1110. * cfg80211_send_assoc_timeout())
  1111. * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
  1112. * @ie_len: Length of ie buffer in octets
  1113. * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
  1114. * @crypto: crypto settings
  1115. * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
  1116. * @flags: See &enum cfg80211_assoc_req_flags
  1117. * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
  1118. * will be used in ht_capa. Un-supported values will be ignored.
  1119. * @ht_capa_mask: The bits of ht_capa which are to be used.
  1120. */
  1121. struct cfg80211_assoc_request {
  1122. struct cfg80211_bss *bss;
  1123. const u8 *ie, *prev_bssid;
  1124. size_t ie_len;
  1125. struct cfg80211_crypto_settings crypto;
  1126. bool use_mfp;
  1127. u32 flags;
  1128. struct ieee80211_ht_cap ht_capa;
  1129. struct ieee80211_ht_cap ht_capa_mask;
  1130. };
  1131. /**
  1132. * struct cfg80211_deauth_request - Deauthentication request data
  1133. *
  1134. * This structure provides information needed to complete IEEE 802.11
  1135. * deauthentication.
  1136. *
  1137. * @bssid: the BSSID of the BSS to deauthenticate from
  1138. * @ie: Extra IEs to add to Deauthentication frame or %NULL
  1139. * @ie_len: Length of ie buffer in octets
  1140. * @reason_code: The reason code for the deauthentication
  1141. */
  1142. struct cfg80211_deauth_request {
  1143. const u8 *bssid;
  1144. const u8 *ie;
  1145. size_t ie_len;
  1146. u16 reason_code;
  1147. };
  1148. /**
  1149. * struct cfg80211_disassoc_request - Disassociation request data
  1150. *
  1151. * This structure provides information needed to complete IEEE 802.11
  1152. * disassocation.
  1153. *
  1154. * @bss: the BSS to disassociate from
  1155. * @ie: Extra IEs to add to Disassociation frame or %NULL
  1156. * @ie_len: Length of ie buffer in octets
  1157. * @reason_code: The reason code for the disassociation
  1158. * @local_state_change: This is a request for a local state only, i.e., no
  1159. * Disassociation frame is to be transmitted.
  1160. */
  1161. struct cfg80211_disassoc_request {
  1162. struct cfg80211_bss *bss;
  1163. const u8 *ie;
  1164. size_t ie_len;
  1165. u16 reason_code;
  1166. bool local_state_change;
  1167. };
  1168. /**
  1169. * struct cfg80211_ibss_params - IBSS parameters
  1170. *
  1171. * This structure defines the IBSS parameters for the join_ibss()
  1172. * method.
  1173. *
  1174. * @ssid: The SSID, will always be non-null.
  1175. * @ssid_len: The length of the SSID, will always be non-zero.
  1176. * @bssid: Fixed BSSID requested, maybe be %NULL, if set do not
  1177. * search for IBSSs with a different BSSID.
  1178. * @channel: The channel to use if no IBSS can be found to join.
  1179. * @channel_type: channel type (HT mode)
  1180. * @channel_fixed: The channel should be fixed -- do not search for
  1181. * IBSSs to join on other channels.
  1182. * @ie: information element(s) to include in the beacon
  1183. * @ie_len: length of that
  1184. * @beacon_interval: beacon interval to use
  1185. * @privacy: this is a protected network, keys will be configured
  1186. * after joining
  1187. * @control_port: whether user space controls IEEE 802.1X port, i.e.,
  1188. * sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
  1189. * required to assume that the port is unauthorized until authorized by
  1190. * user space. Otherwise, port is marked authorized by default.
  1191. * @basic_rates: bitmap of basic rates to use when creating the IBSS
  1192. * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
  1193. */
  1194. struct cfg80211_ibss_params {
  1195. u8 *ssid;
  1196. u8 *bssid;
  1197. struct ieee80211_channel *channel;
  1198. enum nl80211_channel_type channel_type;
  1199. u8 *ie;
  1200. u8 ssid_len, ie_len;
  1201. u16 beacon_interval;
  1202. u32 basic_rates;
  1203. bool channel_fixed;
  1204. bool privacy;
  1205. bool control_port;
  1206. int mcast_rate[IEEE80211_NUM_BANDS];
  1207. };
  1208. /**
  1209. * struct cfg80211_connect_params - Connection parameters
  1210. *
  1211. * This structure provides information needed to complete IEEE 802.11
  1212. * authentication and association.
  1213. *
  1214. * @channel: The channel to use or %NULL if not specified (auto-select based
  1215. * on scan results)
  1216. * @bssid: The AP BSSID or %NULL if not specified (auto-select based on scan
  1217. * results)
  1218. * @ssid: SSID
  1219. * @ssid_len: Length of ssid in octets
  1220. * @auth_type: Authentication type (algorithm)
  1221. * @ie: IEs for association request
  1222. * @ie_len: Length of assoc_ie in octets
  1223. * @privacy: indicates whether privacy-enabled APs should be used
  1224. * @crypto: crypto settings
  1225. * @key_len: length of WEP key for shared key authentication
  1226. * @key_idx: index of WEP key for shared key authentication
  1227. * @key: WEP key for shared key authentication
  1228. * @flags: See &enum cfg80211_assoc_req_flags
  1229. * @bg_scan_period: Background scan period in seconds
  1230. * or -1 to indicate that default value is to be used.
  1231. * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
  1232. * will be used in ht_capa. Un-supported values will be ignored.
  1233. * @ht_capa_mask: The bits of ht_capa which are to be used.
  1234. */
  1235. struct cfg80211_connect_params {
  1236. struct ieee80211_channel *channel;
  1237. u8 *bssid;
  1238. u8 *ssid;
  1239. size_t ssid_len;
  1240. enum nl80211_auth_type auth_type;
  1241. u8 *ie;
  1242. size_t ie_len;
  1243. bool privacy;
  1244. struct cfg80211_crypto_settings crypto;
  1245. const u8 *key;
  1246. u8 key_len, key_idx;
  1247. u32 flags;
  1248. int bg_scan_period;
  1249. struct ieee80211_ht_cap ht_capa;
  1250. struct ieee80211_ht_cap ht_capa_mask;
  1251. };
  1252. /**
  1253. * enum wiphy_params_flags - set_wiphy_params bitfield values
  1254. * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
  1255. * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
  1256. * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
  1257. * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed
  1258. * @WIPHY_PARAM_COVERAGE_CLASS: coverage class changed
  1259. */
  1260. enum wiphy_params_flags {
  1261. WIPHY_PARAM_RETRY_SHORT = 1 << 0,
  1262. WIPHY_PARAM_RETRY_LONG = 1 << 1,
  1263. WIPHY_PARAM_FRAG_THRESHOLD = 1 << 2,
  1264. WIPHY_PARAM_RTS_THRESHOLD = 1 << 3,
  1265. WIPHY_PARAM_COVERAGE_CLASS = 1 << 4,
  1266. };
  1267. /*
  1268. * cfg80211_bitrate_mask - masks for bitrate control
  1269. */
  1270. struct cfg80211_bitrate_mask {
  1271. struct {
  1272. u32 legacy;
  1273. u8 mcs[IEEE80211_HT_MCS_MASK_LEN];
  1274. } control[IEEE80211_NUM_BANDS];
  1275. };
  1276. /**
  1277. * struct cfg80211_pmksa - PMK Security Association
  1278. *
  1279. * This structure is passed to the set/del_pmksa() method for PMKSA
  1280. * caching.
  1281. *
  1282. * @bssid: The AP's BSSID.
  1283. * @pmkid: The PMK material itself.
  1284. */
  1285. struct cfg80211_pmksa {
  1286. u8 *bssid;
  1287. u8 *pmkid;
  1288. };
  1289. /**
  1290. * struct cfg80211_wowlan_trig_pkt_pattern - packet pattern
  1291. * @mask: bitmask where to match pattern and where to ignore bytes,
  1292. * one bit per byte, in same format as nl80211
  1293. * @pattern: bytes to match where bitmask is 1
  1294. * @pattern_len: length of pattern (in bytes)
  1295. *
  1296. * Internal note: @mask and @pattern are allocated in one chunk of
  1297. * memory, free @mask only!
  1298. */
  1299. struct cfg80211_wowlan_trig_pkt_pattern {
  1300. u8 *mask, *pattern;
  1301. int pattern_len;
  1302. };
  1303. /**
  1304. * struct cfg80211_wowlan - Wake on Wireless-LAN support info
  1305. *
  1306. * This structure defines the enabled WoWLAN triggers for the device.
  1307. * @any: wake up on any activity -- special trigger if device continues
  1308. * operating as normal during suspend
  1309. * @disconnect: wake up if getting disconnected
  1310. * @magic_pkt: wake up on receiving magic packet
  1311. * @patterns: wake up on receiving packet matching a pattern
  1312. * @n_patterns: number of patterns
  1313. * @gtk_rekey_failure: wake up on GTK rekey failure
  1314. * @eap_identity_req: wake up on EAP identity request packet
  1315. * @four_way_handshake: wake up on 4-way handshake
  1316. * @rfkill_release: wake up when rfkill is released
  1317. */
  1318. struct cfg80211_wowlan {
  1319. bool any, disconnect, magic_pkt, gtk_rekey_failure,
  1320. eap_identity_req, four_way_handshake,
  1321. rfkill_release;
  1322. struct cfg80211_wowlan_trig_pkt_pattern *patterns;
  1323. int n_patterns;
  1324. };
  1325. /**
  1326. * struct cfg80211_gtk_rekey_data - rekey data
  1327. * @kek: key encryption key
  1328. * @kck: key confirmation key
  1329. * @replay_ctr: replay counter
  1330. */
  1331. struct cfg80211_gtk_rekey_data {
  1332. u8 kek[NL80211_KEK_LEN];
  1333. u8 kck[NL80211_KCK_LEN];
  1334. u8 replay_ctr[NL80211_REPLAY_CTR_LEN];
  1335. };
  1336. /**
  1337. * struct cfg80211_ops - backend description for wireless configuration
  1338. *
  1339. * This struct is registered by fullmac card drivers and/or wireless stacks
  1340. * in order to handle configuration requests on their interfaces.
  1341. *
  1342. * All callbacks except where otherwise noted should return 0
  1343. * on success or a negative error code.
  1344. *
  1345. * All operations are currently invoked under rtnl for consistency with the
  1346. * wireless extensions but this is subject to reevaluation as soon as this
  1347. * code is used more widely and we have a first user without wext.
  1348. *
  1349. * @suspend: wiphy device needs to be suspended. The variable @wow will
  1350. * be %NULL or contain the enabled Wake-on-Wireless triggers that are
  1351. * configured for the device.
  1352. * @resume: wiphy device needs to be resumed
  1353. * @set_wakeup: Called when WoWLAN is enabled/disabled, use this callback
  1354. * to call device_set_wakeup_enable() to enable/disable wakeup from
  1355. * the device.
  1356. *
  1357. * @add_virtual_intf: create a new virtual interface with the given name,
  1358. * must set the struct wireless_dev's iftype. Beware: You must create
  1359. * the new netdev in the wiphy's network namespace! Returns the netdev,
  1360. * or an ERR_PTR.
  1361. *
  1362. * @del_virtual_intf: remove the virtual interface determined by ifindex.
  1363. *
  1364. * @change_virtual_intf: change type/configuration of virtual interface,
  1365. * keep the struct wireless_dev's iftype updated.
  1366. *
  1367. * @add_key: add a key with the given parameters. @mac_addr will be %NULL
  1368. * when adding a group key.
  1369. *
  1370. * @get_key: get information about the key with the given parameters.
  1371. * @mac_addr will be %NULL when requesting information for a group
  1372. * key. All pointers given to the @callback function need not be valid
  1373. * after it returns. This function should return an error if it is
  1374. * not possible to retrieve the key, -ENOENT if it doesn't exist.
  1375. *
  1376. * @del_key: remove a key given the @mac_addr (%NULL for a group key)
  1377. * and @key_index, return -ENOENT if the key doesn't exist.
  1378. *
  1379. * @set_default_key: set the default key on an interface
  1380. *
  1381. * @set_default_mgmt_key: set the default management frame key on an interface
  1382. *
  1383. * @set_rekey_data: give the data necessary for GTK rekeying to the driver
  1384. *
  1385. * @start_ap: Start acting in AP mode defined by the parameters.
  1386. * @change_beacon: Change the beacon parameters for an access point mode
  1387. * interface. This should reject the call when AP mode wasn't started.
  1388. * @stop_ap: Stop being an AP, including stopping beaconing.
  1389. *
  1390. * @add_station: Add a new station.
  1391. * @del_station: Remove a station; @mac may be NULL to remove all stations.
  1392. * @change_station: Modify a given station. Note that flags changes are not much
  1393. * validated in cfg80211, in particular the auth/assoc/authorized flags
  1394. * might come to the driver in invalid combinations -- make sure to check
  1395. * them, also against the existing state! Also, supported_rates changes are
  1396. * not checked in station mode -- drivers need to reject (or ignore) them
  1397. * for anything but TDLS peers.
  1398. * @get_station: get station information for the station identified by @mac
  1399. * @dump_station: dump station callback -- resume dump at index @idx
  1400. *
  1401. * @add_mpath: add a fixed mesh path
  1402. * @del_mpath: delete a given mesh path
  1403. * @change_mpath: change a given mesh path
  1404. * @get_mpath: get a mesh path for the given parameters
  1405. * @dump_mpath: dump mesh path callback -- resume dump at index @idx
  1406. * @join_mesh: join the mesh network with the specified parameters
  1407. * @leave_mesh: leave the current mesh network
  1408. *
  1409. * @get_mesh_config: Get the current mesh configuration
  1410. *
  1411. * @update_mesh_config: Update mesh parameters on a running mesh.
  1412. * The mask is a bitfield which tells us which parameters to
  1413. * set, and which to leave alone.
  1414. *
  1415. * @change_bss: Modify parameters for a given BSS.
  1416. *
  1417. * @set_txq_params: Set TX queue parameters
  1418. *
  1419. * @libertas_set_mesh_channel: Only for backward compatibility for libertas,
  1420. * as it doesn't implement join_mesh and needs to set the channel to
  1421. * join the mesh instead.
  1422. *
  1423. * @set_monitor_channel: Set the monitor mode channel for the device. If other
  1424. * interfaces are active this callback should reject the configuration.
  1425. * If no interfaces are active or the device is down, the channel should
  1426. * be stored for when a monitor interface becomes active.
  1427. * @set_monitor_enabled: Notify driver that there are only monitor
  1428. * interfaces running.
  1429. *
  1430. * @scan: Request to do a scan. If returning zero, the scan request is given
  1431. * the driver, and will be valid until passed to cfg80211_scan_done().
  1432. * For scan results, call cfg80211_inform_bss(); you can call this outside
  1433. * the scan/scan_done bracket too.
  1434. *
  1435. * @auth: Request to authenticate with the specified peer
  1436. * @assoc: Request to (re)associate with the specified peer
  1437. * @deauth: Request to deauthenticate from the specified peer
  1438. * @disassoc: Request to disassociate from the specified peer
  1439. *
  1440. * @connect: Connect to the ESS with the specified parameters. When connected,
  1441. * call cfg80211_connect_result() with status code %WLAN_STATUS_SUCCESS.
  1442. * If the connection fails for some reason, call cfg80211_connect_result()
  1443. * with the status from the AP.
  1444. * @disconnect: Disconnect from the BSS/ESS.
  1445. *
  1446. * @join_ibss: Join the specified IBSS (or create if necessary). Once done, call
  1447. * cfg80211_ibss_joined(), also call that function when changing BSSID due
  1448. * to a merge.
  1449. * @leave_ibss: Leave the IBSS.
  1450. *
  1451. * @set_wiphy_params: Notify that wiphy parameters have changed;
  1452. * @changed bitfield (see &enum wiphy_params_flags) describes which values
  1453. * have changed. The actual parameter values are available in
  1454. * struct wiphy. If returning an error, no value should be changed.
  1455. *
  1456. * @set_tx_power: set the transmit power according to the parameters,
  1457. * the power passed is in mBm, to get dBm use MBM_TO_DBM().
  1458. * @get_tx_power: store the current TX power into the dbm variable;
  1459. * return 0 if successful
  1460. *
  1461. * @set_wds_peer: set the WDS peer for a WDS interface
  1462. *
  1463. * @rfkill_poll: polls the hw rfkill line, use cfg80211 reporting
  1464. * functions to adjust rfkill hw state
  1465. *
  1466. * @dump_survey: get site survey information.
  1467. *
  1468. * @remain_on_channel: Request the driver to remain awake on the specified
  1469. * channel for the specified duration to complete an off-channel
  1470. * operation (e.g., public action frame exchange). When the driver is
  1471. * ready on the requested channel, it must indicate this with an event
  1472. * notification by calling cfg80211_ready_on_channel().
  1473. * @cancel_remain_on_channel: Cancel an on-going remain-on-channel operation.
  1474. * This allows the operation to be terminated prior to timeout based on
  1475. * the duration value.
  1476. * @mgmt_tx: Transmit a management frame.
  1477. * @mgmt_tx_cancel_wait: Cancel the wait time from transmitting a management
  1478. * frame on another channel
  1479. *
  1480. * @testmode_cmd: run a test mode command
  1481. * @testmode_dump: Implement a test mode dump. The cb->args[2] and up may be
  1482. * used by the function, but 0 and 1 must not be touched. Additionally,
  1483. * return error codes other than -ENOBUFS and -ENOENT will terminate the
  1484. * dump and return to userspace with an error, so be careful. If any data
  1485. * was passed in from userspace then the data/len arguments will be present
  1486. * and point to the data contained in %NL80211_ATTR_TESTDATA.
  1487. *
  1488. * @set_bitrate_mask: set the bitrate mask configuration
  1489. *
  1490. * @set_pmksa: Cache a PMKID for a BSSID. This is mostly useful for fullmac
  1491. * devices running firmwares capable of generating the (re) association
  1492. * RSN IE. It allows for faster roaming between WPA2 BSSIDs.
  1493. * @del_pmksa: Delete a cached PMKID.
  1494. * @flush_pmksa: Flush all cached PMKIDs.
  1495. * @set_power_mgmt: Configure WLAN power management. A timeout value of -1
  1496. * allows the driver to adjust the dynamic ps timeout value.
  1497. * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold.
  1498. * @sched_scan_start: Tell the driver to start a scheduled scan.
  1499. * @sched_scan_stop: Tell the driver to stop an ongoing scheduled
  1500. * scan. The driver_initiated flag specifies whether the driver
  1501. * itself has informed that the scan has stopped.
  1502. *
  1503. * @mgmt_frame_register: Notify driver that a management frame type was
  1504. * registered. Note that this callback may not sleep, and cannot run
  1505. * concurrently with itself.
  1506. *
  1507. * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
  1508. * Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
  1509. * reject TX/RX mask combinations they cannot support by returning -EINVAL
  1510. * (also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
  1511. *
  1512. * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
  1513. *
  1514. * @set_ringparam: Set tx and rx ring sizes.
  1515. *
  1516. * @get_ringparam: Get tx and rx ring current and maximum sizes.
  1517. *
  1518. * @tdls_mgmt: Transmit a TDLS management frame.
  1519. * @tdls_oper: Perform a high-level TDLS operation (e.g. TDLS link setup).
  1520. *
  1521. * @probe_client: probe an associated client, must return a cookie that it
  1522. * later passes to cfg80211_probe_status().
  1523. *
  1524. * @set_noack_map: Set the NoAck Map for the TIDs.
  1525. *
  1526. * @get_et_sset_count: Ethtool API to get string-set count.
  1527. * See @ethtool_ops.get_sset_count
  1528. *
  1529. * @get_et_stats: Ethtool API to get a set of u64 stats.
  1530. * See @ethtool_ops.get_ethtool_stats
  1531. *
  1532. * @get_et_strings: Ethtool API to get a set of strings to describe stats
  1533. * and perhaps other supported types of ethtool data-sets.
  1534. * See @ethtool_ops.get_strings
  1535. */
  1536. struct cfg80211_ops {
  1537. int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
  1538. int (*resume)(struct wiphy *wiphy);
  1539. void (*set_wakeup)(struct wiphy *wiphy, bool enabled);
  1540. struct net_device * (*add_virtual_intf)(struct wiphy *wiphy,
  1541. char *name,
  1542. enum nl80211_iftype type,
  1543. u32 *flags,
  1544. struct vif_params *params);
  1545. int (*del_virtual_intf)(struct wiphy *wiphy, struct net_device *dev);
  1546. int (*change_virtual_intf)(struct wiphy *wiphy,
  1547. struct net_device *dev,
  1548. enum nl80211_iftype type, u32 *flags,
  1549. struct vif_params *params);
  1550. int (*add_key)(struct wiphy *wiphy, struct net_device *netdev,
  1551. u8 key_index, bool pairwise, const u8 *mac_addr,
  1552. struct key_params *params);
  1553. int (*get_key)(struct wiphy *wiphy, struct net_device *netdev,
  1554. u8 key_index, bool pairwise, const u8 *mac_addr,
  1555. void *cookie,
  1556. void (*callback)(void *cookie, struct key_params*));
  1557. int (*del_key)(struct wiphy *wiphy, struct net_device *netdev,
  1558. u8 key_index, bool pairwise, const u8 *mac_addr);
  1559. int (*set_default_key)(struct wiphy *wiphy,
  1560. struct net_device *netdev,
  1561. u8 key_index, bool unicast, bool multicast);
  1562. int (*set_default_mgmt_key)(struct wiphy *wiphy,
  1563. struct net_device *netdev,
  1564. u8 key_index);
  1565. int (*start_ap)(struct wiphy *wiphy, struct net_device *dev,
  1566. struct cfg80211_ap_settings *settings);
  1567. int (*change_beacon)(struct wiphy *wiphy, struct net_device *dev,
  1568. struct cfg80211_beacon_data *info);
  1569. int (*stop_ap)(struct wiphy *wiphy, struct net_device *dev);
  1570. int (*add_station)(struct wiphy *wiphy, struct net_device *dev,
  1571. u8 *mac, struct station_parameters *params);
  1572. int (*del_station)(struct wiphy *wiphy, struct net_device *dev,
  1573. u8 *mac);
  1574. int (*change_station)(struct wiphy *wiphy, struct net_device *dev,
  1575. u8 *mac, struct station_parameters *params);
  1576. int (*get_station)(struct wiphy *wiphy, struct net_device *dev,
  1577. u8 *mac, struct station_info *sinfo);
  1578. int (*dump_station)(struct wiphy *wiphy, struct net_device *dev,
  1579. int idx, u8 *mac, struct station_info *sinfo);
  1580. int (*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
  1581. u8 *dst, u8 *next_hop);
  1582. int (*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
  1583. u8 *dst);
  1584. int (*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
  1585. u8 *dst, u8 *next_hop);
  1586. int (*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
  1587. u8 *dst, u8 *next_hop,
  1588. struct mpath_info *pinfo);
  1589. int (*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
  1590. int idx, u8 *dst, u8 *next_hop,
  1591. struct mpath_info *pinfo);
  1592. int (*get_mesh_config)(struct wiphy *wiphy,
  1593. struct net_device *dev,
  1594. struct mesh_config *conf);
  1595. int (*update_mesh_config)(struct wiphy *wiphy,
  1596. struct net_device *dev, u32 mask,
  1597. const struct mesh_config *nconf);
  1598. int (*join_mesh)(struct wiphy *wiphy, struct net_device *dev,
  1599. const struct mesh_config *conf,
  1600. const struct mesh_setup *setup);
  1601. int (*leave_mesh)(struct wiphy *wiphy, struct net_device *dev);
  1602. int (*change_bss)(struct wiphy *wiphy, struct net_device *dev,
  1603. struct bss_parameters *params);
  1604. int (*set_txq_params)(struct wiphy *wiphy, struct net_device *dev,
  1605. struct ieee80211_txq_params *params);
  1606. int (*libertas_set_mesh_channel)(struct wiphy *wiphy,
  1607. struct net_device *dev,
  1608. struct ieee80211_channel *chan);
  1609. int (*set_monitor_channel)(struct wiphy *wiphy,
  1610. struct ieee80211_channel *chan,
  1611. enum nl80211_channel_type channel_type);
  1612. int (*scan)(struct wiphy *wiphy, struct net_device *dev,
  1613. struct cfg80211_scan_request *request);
  1614. int (*auth)(struct wiphy *wiphy, struct net_device *dev,
  1615. struct cfg80211_auth_request *req);
  1616. int (*assoc)(struct wiphy *wiphy, struct net_device *dev,
  1617. struct cfg80211_assoc_request *req);
  1618. int (*deauth)(struct wiphy *wiphy, struct net_device *dev,
  1619. struct cfg80211_deauth_request *req);
  1620. int (*disassoc)(struct wiphy *wiphy, struct net_device *dev,
  1621. struct cfg80211_disassoc_request *req);
  1622. int (*connect)(struct wiphy *wiphy, struct net_device *dev,
  1623. struct cfg80211_connect_params *sme);
  1624. int (*disconnect)(struct wiphy *wiphy, struct net_device *dev,
  1625. u16 reason_code);
  1626. int (*join_ibss)(struct wiphy *wiphy, struct net_device *dev,
  1627. struct cfg80211_ibss_params *params);
  1628. int (*leave_ibss)(struct wiphy *wiphy, struct net_device *dev);
  1629. int (*set_wiphy_params)(struct wiphy *wiphy, u32 changed);
  1630. int (*set_tx_power)(struct wiphy *wiphy,
  1631. enum nl80211_tx_power_setting type, int mbm);
  1632. int (*get_tx_power)(struct wiphy *wiphy, int *dbm);
  1633. int (*set_wds_peer)(struct wiphy *wiphy, struct net_device *dev,
  1634. const u8 *addr);
  1635. void (*rfkill_poll)(struct wiphy *wiphy);
  1636. #ifdef CONFIG_NL80211_TESTMODE
  1637. int (*testmode_cmd)(struct wiphy *wiphy, void *data, int len);
  1638. int (*testmode_dump)(struct wiphy *wiphy, struct sk_buff *skb,
  1639. struct netlink_callback *cb,
  1640. void *data, int len);
  1641. #endif
  1642. int (*set_bitrate_mask)(struct wiphy *wiphy,
  1643. struct net_device *dev,
  1644. const u8 *peer,
  1645. const struct cfg80211_bitrate_mask *mask);
  1646. int (*dump_survey)(struct wiphy *wiphy, struct net_device *netdev,
  1647. int idx, struct survey_info *info);
  1648. int (*set_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
  1649. struct cfg80211_pmksa *pmksa);
  1650. int (*del_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
  1651. struct cfg80211_pmksa *pmksa);
  1652. int (*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev);
  1653. int (*remain_on_channel)(struct wiphy *wiphy,
  1654. struct net_device *dev,
  1655. struct ieee80211_channel *chan,
  1656. enum nl80211_channel_type channel_type,
  1657. unsigned int duration,
  1658. u64 *cookie);
  1659. int (*cancel_remain_on_channel)(struct wiphy *wiphy,
  1660. struct net_device *dev,
  1661. u64 cookie);
  1662. int (*mgmt_tx)(struct wiphy *wiphy, struct net_device *dev,
  1663. struct ieee80211_channel *chan, bool offchan,
  1664. enum nl80211_channel_type channel_type,
  1665. bool channel_type_valid, unsigned int wait,
  1666. const u8 *buf, size_t len, bool no_cck,
  1667. bool dont_wait_for_ack, u64 *cookie);
  1668. int (*mgmt_tx_cancel_wait)(struct wiphy *wiphy,
  1669. struct net_device *dev,
  1670. u64 cookie);
  1671. int (*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev,
  1672. bool enabled, int timeout);
  1673. int (*set_cqm_rssi_config)(struct wiphy *wiphy,
  1674. struct net_device *dev,
  1675. s32 rssi_thold, u32 rssi_hyst);
  1676. void (*mgmt_frame_register)(struct wiphy *wiphy,
  1677. struct net_device *dev,
  1678. u16 frame_type, bool reg);
  1679. int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant);
  1680. int (*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant);
  1681. int (*set_ringparam)(struct wiphy *wiphy, u32 tx, u32 rx);
  1682. void (*get_ringparam)(struct wiphy *wiphy,
  1683. u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max);
  1684. int (*sched_scan_start)(struct wiphy *wiphy,
  1685. struct net_device *dev,
  1686. struct cfg80211_sched_scan_request *request);
  1687. int (*sched_scan_stop)(struct wiphy *wiphy, struct net_device *dev);
  1688. int (*set_rekey_data)(struct wiphy *wiphy, struct net_device *dev,
  1689. struct cfg80211_gtk_rekey_data *data);
  1690. int (*tdls_mgmt)(struct wiphy *wiphy, struct net_device *dev,
  1691. u8 *peer, u8 action_code, u8 dialog_token,
  1692. u16 status_code, const u8 *buf, size_t len);
  1693. int (*tdls_oper)(struct wiphy *wiphy, struct net_device *dev,
  1694. u8 *peer, enum nl80211_tdls_operation oper);
  1695. int (*probe_client)(struct wiphy *wiphy, struct net_device *dev,
  1696. const u8 *peer, u64 *cookie);
  1697. int (*set_noack_map)(struct wiphy *wiphy,
  1698. struct net_device *dev,
  1699. u16 noack_map);
  1700. int (*get_et_sset_count)(struct wiphy *wiphy,
  1701. struct net_device *dev, int sset);
  1702. void (*get_et_stats)(struct wiphy *wiphy, struct net_device *dev,
  1703. struct ethtool_stats *stats, u64 *data);
  1704. void (*get_et_strings)(struct wiphy *wiphy, struct net_device *dev,
  1705. u32 sset, u8 *data);
  1706. void (*set_monitor_enabled)(struct wiphy *wiphy, bool enabled);
  1707. };
  1708. /*
  1709. * wireless hardware and networking interfaces structures
  1710. * and registration/helper functions
  1711. */
  1712. /**
  1713. * enum wiphy_flags - wiphy capability flags
  1714. *
  1715. * @WIPHY_FLAG_CUSTOM_REGULATORY: tells us the driver for this device
  1716. * has its own custom regulatory domain and cannot identify the
  1717. * ISO / IEC 3166 alpha2 it belongs to. When this is enabled
  1718. * we will disregard the first regulatory hint (when the
  1719. * initiator is %REGDOM_SET_BY_CORE).
  1720. * @WIPHY_FLAG_STRICT_REGULATORY: tells us the driver for this device will
  1721. * ignore regulatory domain settings until it gets its own regulatory
  1722. * domain via its regulatory_hint() unless the regulatory hint is
  1723. * from a country IE. After its gets its own regulatory domain it will
  1724. * only allow further regulatory domain settings to further enhance
  1725. * compliance. For example if channel 13 and 14 are disabled by this
  1726. * regulatory domain no user regulatory domain can enable these channels
  1727. * at a later time. This can be used for devices which do not have
  1728. * calibration information guaranteed for frequencies or settings
  1729. * outside of its regulatory domain. If used in combination with
  1730. * WIPHY_FLAG_CUSTOM_REGULATORY the inspected country IE power settings
  1731. * will be followed.
  1732. * @WIPHY_FLAG_DISABLE_BEACON_HINTS: enable this if your driver needs to ensure
  1733. * that passive scan flags and beaconing flags may not be lifted by
  1734. * cfg80211 due to regulatory beacon hints. For more information on beacon
  1735. * hints read the documenation for regulatory_hint_found_beacon()
  1736. * @WIPHY_FLAG_NETNS_OK: if not set, do not allow changing the netns of this
  1737. * wiphy at all
  1738. * @WIPHY_FLAG_PS_ON_BY_DEFAULT: if set to true, powersave will be enabled
  1739. * by default -- this flag will be set depending on the kernel's default
  1740. * on wiphy_new(), but can be changed by the driver if it has a good
  1741. * reason to override the default
  1742. * @WIPHY_FLAG_4ADDR_AP: supports 4addr mode even on AP (with a single station
  1743. * on a VLAN interface)
  1744. * @WIPHY_FLAG_4ADDR_STATION: supports 4addr mode even as a station
  1745. * @WIPHY_FLAG_CONTROL_PORT_PROTOCOL: This device supports setting the
  1746. * control port protocol ethertype. The device also honours the
  1747. * control_port_no_encrypt flag.
  1748. * @WIPHY_FLAG_IBSS_RSN: The device supports IBSS RSN.
  1749. * @WIPHY_FLAG_MESH_AUTH: The device supports mesh authentication by routing
  1750. * auth frames to userspace. See @NL80211_MESH_SETUP_USERSPACE_AUTH.
  1751. * @WIPHY_FLAG_SUPPORTS_SCHED_SCAN: The device supports scheduled scans.
  1752. * @WIPHY_FLAG_SUPPORTS_FW_ROAM: The device supports roaming feature in the
  1753. * firmware.
  1754. * @WIPHY_FLAG_AP_UAPSD: The device supports uapsd on AP.
  1755. * @WIPHY_FLAG_SUPPORTS_TDLS: The device supports TDLS (802.11z) operation.
  1756. * @WIPHY_FLAG_TDLS_EXTERNAL_SETUP: The device does not handle TDLS (802.11z)
  1757. * link setup/discovery operations internally. Setup, discovery and
  1758. * teardown packets should be sent through the @NL80211_CMD_TDLS_MGMT
  1759. * command. When this flag is not set, @NL80211_CMD_TDLS_OPER should be
  1760. * used for asking the driver/firmware to perform a TDLS operation.
  1761. * @WIPHY_FLAG_HAVE_AP_SME: device integrates AP SME
  1762. * @WIPHY_FLAG_REPORTS_OBSS: the device will report beacons from other BSSes
  1763. * when there are virtual interfaces in AP mode by calling
  1764. * cfg80211_report_obss_beacon().
  1765. * @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD: When operating as an AP, the device
  1766. * responds to probe-requests in hardware.
  1767. * @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
  1768. * @WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL: Device supports remain-on-channel call.
  1769. */
  1770. enum wiphy_flags {
  1771. WIPHY_FLAG_CUSTOM_REGULATORY = BIT(0),
  1772. WIPHY_FLAG_STRICT_REGULATORY = BIT(1),
  1773. WIPHY_FLAG_DISABLE_BEACON_HINTS = BIT(2),
  1774. WIPHY_FLAG_NETNS_OK = BIT(3),
  1775. WIPHY_FLAG_PS_ON_BY_DEFAULT = BIT(4),
  1776. WIPHY_FLAG_4ADDR_AP = BIT(5),
  1777. WIPHY_FLAG_4ADDR_STATION = BIT(6),
  1778. WIPHY_FLAG_CONTROL_PORT_PROTOCOL = BIT(7),
  1779. WIPHY_FLAG_IBSS_RSN = BIT(8),
  1780. WIPHY_FLAG_MESH_AUTH = BIT(10),
  1781. WIPHY_FLAG_SUPPORTS_SCHED_SCAN = BIT(11),
  1782. /* use hole at 12 */
  1783. WIPHY_FLAG_SUPPORTS_FW_ROAM = BIT(13),
  1784. WIPHY_FLAG_AP_UAPSD = BIT(14),
  1785. WIPHY_FLAG_SUPPORTS_TDLS = BIT(15),
  1786. WIPHY_FLAG_TDLS_EXTERNAL_SETUP = BIT(16),
  1787. WIPHY_FLAG_HAVE_AP_SME = BIT(17),
  1788. WIPHY_FLAG_REPORTS_OBSS = BIT(18),
  1789. WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD = BIT(19),
  1790. WIPHY_FLAG_OFFCHAN_TX = BIT(20),
  1791. WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = BIT(21),
  1792. };
  1793. /**
  1794. * struct ieee80211_iface_limit - limit on certain interface types
  1795. * @max: maximum number of interfaces of these types
  1796. * @types: interface types (bits)
  1797. */
  1798. struct ieee80211_iface_limit {
  1799. u16 max;
  1800. u16 types;
  1801. };
  1802. /**
  1803. * struct ieee80211_iface_combination - possible interface combination
  1804. * @limits: limits for the given interface types
  1805. * @n_limits: number of limitations
  1806. * @num_different_channels: can use up to this many different channels
  1807. * @max_interfaces: maximum number of interfaces in total allowed in this
  1808. * group
  1809. * @beacon_int_infra_match: In this combination, the beacon intervals
  1810. * between infrastructure and AP types must match. This is required
  1811. * only in special cases.
  1812. *
  1813. * These examples can be expressed as follows:
  1814. *
  1815. * Allow #STA <= 1, #AP <= 1, matching BI, channels = 1, 2 total:
  1816. *
  1817. * struct ieee80211_iface_limit limits1[] = {
  1818. * { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
  1819. * { .max = 1, .types = BIT(NL80211_IFTYPE_AP}, },
  1820. * };
  1821. * struct ieee80211_iface_combination combination1 = {
  1822. * .limits = limits1,
  1823. * .n_limits = ARRAY_SIZE(limits1),
  1824. * .max_interfaces = 2,
  1825. * .beacon_int_infra_match = true,
  1826. * };
  1827. *
  1828. *
  1829. * Allow #{AP, P2P-GO} <= 8, channels = 1, 8 total:
  1830. *
  1831. * struct ieee80211_iface_limit limits2[] = {
  1832. * { .max = 8, .types = BIT(NL80211_IFTYPE_AP) |
  1833. * BIT(NL80211_IFTYPE_P2P_GO), },
  1834. * };
  1835. * struct ieee80211_iface_combination combination2 = {
  1836. * .limits = limits2,
  1837. * .n_limits = ARRAY_SIZE(limits2),
  1838. * .max_interfaces = 8,
  1839. * .num_different_channels = 1,
  1840. * };
  1841. *
  1842. *
  1843. * Allow #STA <= 1, #{P2P-client,P2P-GO} <= 3 on two channels, 4 total.
  1844. * This allows for an infrastructure connection and three P2P connections.
  1845. *
  1846. * struct ieee80211_iface_limit limits3[] = {
  1847. * { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
  1848. * { .max = 3, .types = BIT(NL80211_IFTYPE_P2P_GO) |
  1849. * BIT(NL80211_IFTYPE_P2P_CLIENT), },
  1850. * };
  1851. * struct ieee80211_iface_combination combination3 = {
  1852. * .limits = limits3,
  1853. * .n_limits = ARRAY_SIZE(limits3),
  1854. * .max_interfaces = 4,
  1855. * .num_different_channels = 2,
  1856. * };
  1857. */
  1858. struct ieee80211_iface_combination {
  1859. const struct ieee80211_iface_limit *limits;
  1860. u32 num_different_channels;
  1861. u16 max_interfaces;
  1862. u8 n_limits;
  1863. bool beacon_int_infra_match;
  1864. };
  1865. struct mac_address {
  1866. u8 addr[ETH_ALEN];
  1867. };
  1868. struct ieee80211_txrx_stypes {
  1869. u16 tx, rx;
  1870. };
  1871. /**
  1872. * enum wiphy_wowlan_support_flags - WoWLAN support flags
  1873. * @WIPHY_WOWLAN_ANY: supports wakeup for the special "any"
  1874. * trigger that keeps the device operating as-is and
  1875. * wakes up the host on any activity, for example a
  1876. * received packet that passed filtering; note that the
  1877. * packet should be preserved in that case
  1878. * @WIPHY_WOWLAN_MAGIC_PKT: supports wakeup on magic packet
  1879. * (see nl80211.h)
  1880. * @WIPHY_WOWLAN_DISCONNECT: supports wakeup on disconnect
  1881. * @WIPHY_WOWLAN_SUPPORTS_GTK_REKEY: supports GTK rekeying while asleep
  1882. * @WIPHY_WOWLAN_GTK_REKEY_FAILURE: supports wakeup on GTK rekey failure
  1883. * @WIPHY_WOWLAN_EAP_IDENTITY_REQ: supports wakeup on EAP identity request
  1884. * @WIPHY_WOWLAN_4WAY_HANDSHAKE: supports wakeup on 4-way handshake failure
  1885. * @WIPHY_WOWLAN_RFKILL_RELEASE: supports wakeup on RF-kill release
  1886. */
  1887. enum wiphy_wowlan_support_flags {
  1888. WIPHY_WOWLAN_ANY = BIT(0),
  1889. WIPHY_WOWLAN_MAGIC_PKT = BIT(1),
  1890. WIPHY_WOWLAN_DISCONNECT = BIT(2),
  1891. WIPHY_WOWLAN_SUPPORTS_GTK_REKEY = BIT(3),
  1892. WIPHY_WOWLAN_GTK_REKEY_FAILURE = BIT(4),
  1893. WIPHY_WOWLAN_EAP_IDENTITY_REQ = BIT(5),
  1894. WIPHY_WOWLAN_4WAY_HANDSHAKE = BIT(6),
  1895. WIPHY_WOWLAN_RFKILL_RELEASE = BIT(7),
  1896. };
  1897. /**
  1898. * struct wiphy_wowlan_support - WoWLAN support data
  1899. * @flags: see &enum wiphy_wowlan_support_flags
  1900. * @n_patterns: number of supported wakeup patterns
  1901. * (see nl80211.h for the pattern definition)
  1902. * @pattern_max_len: maximum length of each pattern
  1903. * @pattern_min_len: minimum length of each pattern
  1904. */
  1905. struct wiphy_wowlan_support {
  1906. u32 flags;
  1907. int n_patterns;
  1908. int pattern_max_len;
  1909. int pattern_min_len;
  1910. };
  1911. /**
  1912. * struct wiphy - wireless hardware description
  1913. * @reg_notifier: the driver's regulatory notification callback,
  1914. * note that if your driver uses wiphy_apply_custom_regulatory()
  1915. * the reg_notifier's request can be passed as NULL
  1916. * @regd: the driver's regulatory domain, if one was requested via
  1917. * the regulatory_hint() API. This can be used by the driver
  1918. * on the reg_notifier() if it chooses to ignore future
  1919. * regulatory domain changes caused by other drivers.
  1920. * @signal_type: signal type reported in &struct cfg80211_bss.
  1921. * @cipher_suites: supported cipher suites
  1922. * @n_cipher_suites: number of supported cipher suites
  1923. * @retry_short: Retry limit for short frames (dot11ShortRetryLimit)
  1924. * @retry_long: Retry limit for long frames (dot11LongRetryLimit)
  1925. * @frag_threshold: Fragmentation threshold (dot11FragmentationThreshold);
  1926. * -1 = fragmentation disabled, only odd values >= 256 used
  1927. * @rts_threshold: RTS threshold (dot11RTSThreshold); -1 = RTS/CTS disabled
  1928. * @_net: the network namespace this wiphy currently lives in
  1929. * @perm_addr: permanent MAC address of this device
  1930. * @addr_mask: If the device supports multiple MAC addresses by masking,
  1931. * set this to a mask with variable bits set to 1, e.g. if the last
  1932. * four bits are variable then set it to 00:...:00:0f. The actual
  1933. * variable bits shall be determined by the interfaces added, with
  1934. * interfaces not matching the mask being rejected to be brought up.
  1935. * @n_addresses: number of addresses in @addresses.
  1936. * @addresses: If the device has more than one address, set this pointer
  1937. * to a list of addresses (6 bytes each). The first one will be used
  1938. * by default for perm_addr. In this case, the mask should be set to
  1939. * all-zeroes. In this case it is assumed that the device can handle
  1940. * the same number of arbitrary MAC addresses.
  1941. * @registered: protects ->resume and ->suspend sysfs callbacks against
  1942. * unregister hardware
  1943. * @debugfsdir: debugfs directory used for this wiphy, will be renamed
  1944. * automatically on wiphy renames
  1945. * @dev: (virtual) struct device for this wiphy
  1946. * @registered: helps synchronize suspend/resume with wiphy unregister
  1947. * @wext: wireless extension handlers
  1948. * @priv: driver private data (sized according to wiphy_new() parameter)
  1949. * @interface_modes: bitmask of interfaces types valid for this wiphy,
  1950. * must be set by driver
  1951. * @iface_combinations: Valid interface combinations array, should not
  1952. * list single interface types.
  1953. * @n_iface_combinations: number of entries in @iface_combinations array.
  1954. * @software_iftypes: bitmask of software interface types, these are not
  1955. * subject to any restrictions since they are purely managed in SW.
  1956. * @flags: wiphy flags, see &enum wiphy_flags
  1957. * @features: features advertised to nl80211, see &enum nl80211_feature_flags.
  1958. * @bss_priv_size: each BSS struct has private data allocated with it,
  1959. * this variable determines its size
  1960. * @max_scan_ssids: maximum number of SSIDs the device can scan for in
  1961. * any given scan
  1962. * @max_sched_scan_ssids: maximum number of SSIDs the device can scan
  1963. * for in any given scheduled scan
  1964. * @max_match_sets: maximum number of match sets the device can handle
  1965. * when performing a scheduled scan, 0 if filtering is not
  1966. * supported.
  1967. * @max_scan_ie_len: maximum length of user-controlled IEs device can
  1968. * add to probe request frames transmitted during a scan, must not
  1969. * include fixed IEs like supported rates
  1970. * @max_sched_scan_ie_len: same as max_scan_ie_len, but for scheduled
  1971. * scans
  1972. * @coverage_class: current coverage class
  1973. * @fw_version: firmware version for ethtool reporting
  1974. * @hw_version: hardware version for ethtool reporting
  1975. * @max_num_pmkids: maximum number of PMKIDs supported by device
  1976. * @privid: a pointer that drivers can use to identify if an arbitrary
  1977. * wiphy is theirs, e.g. in global notifiers
  1978. * @bands: information about bands/channels supported by this device
  1979. *
  1980. * @mgmt_stypes: bitmasks of frame subtypes that can be subscribed to or
  1981. * transmitted through nl80211, points to an array indexed by interface
  1982. * type
  1983. *
  1984. * @available_antennas_tx: bitmap of antennas which are available to be
  1985. * configured as TX antennas. Antenna configuration commands will be
  1986. * rejected unless this or @available_antennas_rx is set.
  1987. *
  1988. * @available_antennas_rx: bitmap of antennas which are available to be
  1989. * configured as RX antennas. Antenna configuration commands will be
  1990. * rejected unless this or @available_antennas_tx is set.
  1991. *
  1992. * @probe_resp_offload:
  1993. * Bitmap of supported protocols for probe response offloading.
  1994. * See &enum nl80211_probe_resp_offload_support_attr. Only valid
  1995. * when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
  1996. *
  1997. * @max_remain_on_channel_duration: Maximum time a remain-on-channel operation
  1998. * may request, if implemented.
  1999. *
  2000. * @wowlan: WoWLAN support information
  2001. *
  2002. * @ap_sme_capa: AP SME capabilities, flags from &enum nl80211_ap_sme_features.
  2003. * @ht_capa_mod_mask: Specify what ht_cap values can be over-ridden.
  2004. * If null, then none can be over-ridden.
  2005. */
  2006. struct wiphy {
  2007. /* assign these fields before you register the wiphy */
  2008. /* permanent MAC address(es) */
  2009. u8 perm_addr[ETH_ALEN];
  2010. u8 addr_mask[ETH_ALEN];
  2011. struct mac_address *addresses;
  2012. const struct ieee80211_txrx_stypes *mgmt_stypes;
  2013. const struct ieee80211_iface_combination *iface_combinations;
  2014. int n_iface_combinations;
  2015. u16 software_iftypes;
  2016. u16 n_addresses;
  2017. /* Supported interface modes, OR together BIT(NL80211_IFTYPE_...) */
  2018. u16 interface_modes;
  2019. u32 flags, features;
  2020. u32 ap_sme_capa;
  2021. enum cfg80211_signal_type signal_type;
  2022. int bss_priv_size;
  2023. u8 max_scan_ssids;
  2024. u8 max_sched_scan_ssids;
  2025. u8 max_match_sets;
  2026. u16 max_scan_ie_len;
  2027. u16 max_sched_scan_ie_len;
  2028. int n_cipher_suites;
  2029. const u32 *cipher_suites;
  2030. u8 retry_short;
  2031. u8 retry_long;
  2032. u32 frag_threshold;
  2033. u32 rts_threshold;
  2034. u8 coverage_class;
  2035. char fw_version[ETHTOOL_BUSINFO_LEN];
  2036. u32 hw_version;
  2037. #ifdef CONFIG_PM
  2038. struct wiphy_wowlan_support wowlan;
  2039. #endif
  2040. u16 max_remain_on_channel_duration;
  2041. u8 max_num_pmkids;
  2042. u32 available_antennas_tx;
  2043. u32 available_antennas_rx;
  2044. /*
  2045. * Bitmap of supported protocols for probe response offloading
  2046. * see &enum nl80211_probe_resp_offload_support_attr. Only valid
  2047. * when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
  2048. */
  2049. u32 probe_resp_offload;
  2050. /* If multiple wiphys are registered and you're handed e.g.
  2051. * a regular netdev with assigned ieee80211_ptr, you won't
  2052. * know whether it points to a wiphy your driver has registered
  2053. * or not. Assign this to something global to your driver to
  2054. * help determine whether you own this wiphy or not. */
  2055. const void *privid;
  2056. struct ieee80211_supported_band *bands[IEEE80211_NUM_BANDS];
  2057. /* Lets us get back the wiphy on the callback */
  2058. int (*reg_notifier)(struct wiphy *wiphy,
  2059. struct regulatory_request *request);
  2060. /* fields below are read-only, assigned by cfg80211 */
  2061. const struct ieee80211_regdomain *regd;
  2062. /* the item in /sys/class/ieee80211/ points to this,
  2063. * you need use set_wiphy_dev() (see below) */
  2064. struct device dev;
  2065. /* protects ->resume, ->suspend sysfs callbacks against unregister hw */
  2066. bool registered;
  2067. /* dir in debugfs: ieee80211/<wiphyname> */
  2068. struct dentry *debugfsdir;
  2069. const struct ieee80211_ht_cap *ht_capa_mod_mask;
  2070. #ifdef CONFIG_NET_NS
  2071. /* the network namespace this phy lives in currently */
  2072. struct net *_net;
  2073. #endif
  2074. #ifdef CONFIG_CFG80211_WEXT
  2075. const struct iw_handler_def *wext;
  2076. #endif
  2077. char priv[0] __attribute__((__aligned__(NETDEV_ALIGN)));
  2078. };
  2079. static inline struct net *wiphy_net(struct wiphy *wiphy)
  2080. {
  2081. return read_pnet(&wiphy->_net);
  2082. }
  2083. static inline void wiphy_net_set(struct wiphy *wiphy, struct net *net)
  2084. {
  2085. write_pnet(&wiphy->_net, net);
  2086. }
  2087. /**
  2088. * wiphy_priv - return priv from wiphy
  2089. *
  2090. * @wiphy: the wiphy whose priv pointer to return
  2091. */
  2092. static inline void *wiphy_priv(struct wiphy *wiphy)
  2093. {
  2094. BUG_ON(!wiphy);
  2095. return &wiphy->priv;
  2096. }
  2097. /**
  2098. * priv_to_wiphy - return the wiphy containing the priv
  2099. *
  2100. * @priv: a pointer previously returned by wiphy_priv
  2101. */
  2102. static inline struct wiphy *priv_to_wiphy(void *priv)
  2103. {
  2104. BUG_ON(!priv);
  2105. return container_of(priv, struct wiphy, priv);
  2106. }
  2107. /**
  2108. * set_wiphy_dev - set device pointer for wiphy
  2109. *
  2110. * @wiphy: The wiphy whose device to bind
  2111. * @dev: The device to parent it to
  2112. */
  2113. static inline void set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
  2114. {
  2115. wiphy->dev.parent = dev;
  2116. }
  2117. /**
  2118. * wiphy_dev - get wiphy dev pointer
  2119. *
  2120. * @wiphy: The wiphy whose device struct to look up
  2121. */
  2122. static inline struct device *wiphy_dev(struct wiphy *wiphy)
  2123. {
  2124. return wiphy->dev.parent;
  2125. }
  2126. /**
  2127. * wiphy_name - get wiphy name
  2128. *
  2129. * @wiphy: The wiphy whose name to return
  2130. */
  2131. static inline const char *wiphy_name(const struct wiphy *wiphy)
  2132. {
  2133. return dev_name(&wiphy->dev);
  2134. }
  2135. /**
  2136. * wiphy_new - create a new wiphy for use with cfg80211
  2137. *
  2138. * @ops: The configuration operations for this device
  2139. * @sizeof_priv: The size of the private area to allocate
  2140. *
  2141. * Create a new wiphy and associate the given operations with it.
  2142. * @sizeof_priv bytes are allocated for private use.
  2143. *
  2144. * The returned pointer must be assigned to each netdev's
  2145. * ieee80211_ptr for proper operation.
  2146. */
  2147. struct wiphy *wiphy_new(const struct cfg80211_ops *ops, int sizeof_priv);
  2148. /**
  2149. * wiphy_register - register a wiphy with cfg80211
  2150. *
  2151. * @wiphy: The wiphy to register.
  2152. *
  2153. * Returns a non-negative wiphy index or a negative error code.
  2154. */
  2155. extern int wiphy_register(struct wiphy *wiphy);
  2156. /**
  2157. * wiphy_unregister - deregister a wiphy from cfg80211
  2158. *
  2159. * @wiphy: The wiphy to unregister.
  2160. *
  2161. * After this call, no more requests can be made with this priv
  2162. * pointer, but the call may sleep to wait for an outstanding
  2163. * request that is being handled.
  2164. */
  2165. extern void wiphy_unregister(struct wiphy *wiphy);
  2166. /**
  2167. * wiphy_free - free wiphy
  2168. *
  2169. * @wiphy: The wiphy to free
  2170. */
  2171. extern void wiphy_free(struct wiphy *wiphy);
  2172. /* internal structs */
  2173. struct cfg80211_conn;
  2174. struct cfg80211_internal_bss;
  2175. struct cfg80211_cached_keys;
  2176. /**
  2177. * struct wireless_dev - wireless per-netdev state
  2178. *
  2179. * This structure must be allocated by the driver/stack
  2180. * that uses the ieee80211_ptr field in struct net_device
  2181. * (this is intentional so it can be allocated along with
  2182. * the netdev.)
  2183. *
  2184. * @wiphy: pointer to hardware description
  2185. * @iftype: interface type
  2186. * @list: (private) Used to collect the interfaces
  2187. * @netdev: (private) Used to reference back to the netdev
  2188. * @current_bss: (private) Used by the internal configuration code
  2189. * @channel: (private) Used by the internal configuration code to track
  2190. * the user-set AP, monitor and WDS channel
  2191. * @preset_chan: (private) Used by the internal configuration code to
  2192. * track the channel to be used for AP later
  2193. * @preset_chantype: (private) the corresponding channel type
  2194. * @bssid: (private) Used by the internal configuration code
  2195. * @ssid: (private) Used by the internal configuration code
  2196. * @ssid_len: (private) Used by the internal configuration code
  2197. * @mesh_id_len: (private) Used by the internal configuration code
  2198. * @mesh_id_up_len: (private) Used by the internal configuration code
  2199. * @wext: (private) Used by the internal wireless extensions compat code
  2200. * @use_4addr: indicates 4addr mode is used on this interface, must be
  2201. * set by driver (if supported) on add_interface BEFORE registering the
  2202. * netdev and may otherwise be used by driver read-only, will be update
  2203. * by cfg80211 on change_interface
  2204. * @mgmt_registrations: list of registrations for management frames
  2205. * @mgmt_registrations_lock: lock for the list
  2206. * @mtx: mutex used to lock data in this struct
  2207. * @cleanup_work: work struct used for cleanup that can't be done directly
  2208. * @beacon_interval: beacon interval used on this device for transmitting
  2209. * beacons, 0 when not valid
  2210. */
  2211. struct wireless_dev {
  2212. struct wiphy *wiphy;
  2213. enum nl80211_iftype iftype;
  2214. /* the remainder of this struct should be private to cfg80211 */
  2215. struct list_head list;
  2216. struct net_device *netdev;
  2217. struct list_head mgmt_registrations;
  2218. spinlock_t mgmt_registrations_lock;
  2219. struct mutex mtx;
  2220. struct work_struct cleanup_work;
  2221. bool use_4addr;
  2222. /* currently used for IBSS and SME - might be rearranged later */
  2223. u8 ssid[IEEE80211_MAX_SSID_LEN];
  2224. u8 ssid_len, mesh_id_len, mesh_id_up_len;
  2225. enum {
  2226. CFG80211_SME_IDLE,
  2227. CFG80211_SME_CONNECTING,
  2228. CFG80211_SME_CONNECTED,
  2229. } sme_state;
  2230. struct cfg80211_conn *conn;
  2231. struct cfg80211_cached_keys *connect_keys;
  2232. struct list_head event_list;
  2233. spinlock_t event_lock;
  2234. struct cfg80211_internal_bss *current_bss; /* associated / joined */
  2235. struct ieee80211_channel *preset_chan;
  2236. enum nl80211_channel_type preset_chantype;
  2237. /* for AP and mesh channel tracking */
  2238. struct ieee80211_channel *channel;
  2239. bool ibss_fixed;
  2240. bool ps;
  2241. int ps_timeout;
  2242. int beacon_interval;
  2243. u32 ap_unexpected_nlpid;
  2244. #ifdef CONFIG_CFG80211_WEXT
  2245. /* wext data */
  2246. struct {
  2247. struct cfg80211_ibss_params ibss;
  2248. struct cfg80211_connect_params connect;
  2249. struct cfg80211_cached_keys *keys;
  2250. u8 *ie;
  2251. size_t ie_len;
  2252. u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
  2253. u8 ssid[IEEE80211_MAX_SSID_LEN];
  2254. s8 default_key, default_mgmt_key;
  2255. bool prev_bssid_valid;
  2256. } wext;
  2257. #endif
  2258. };
  2259. /**
  2260. * wdev_priv - return wiphy priv from wireless_dev
  2261. *
  2262. * @wdev: The wireless device whose wiphy's priv pointer to return
  2263. */
  2264. static inline void *wdev_priv(struct wireless_dev *wdev)
  2265. {
  2266. BUG_ON(!wdev);
  2267. return wiphy_priv(wdev->wiphy);
  2268. }
  2269. /**
  2270. * DOC: Utility functions
  2271. *
  2272. * cfg80211 offers a number of utility functions that can be useful.
  2273. */
  2274. /**
  2275. * ieee80211_channel_to_frequency - convert channel number to frequency
  2276. * @chan: channel number
  2277. * @band: band, necessary due to channel number overlap
  2278. */
  2279. extern int ieee80211_channel_to_frequency(int chan, enum ieee80211_band band);
  2280. /**
  2281. * ieee80211_frequency_to_channel - convert frequency to channel number
  2282. * @freq: center frequency
  2283. */
  2284. extern int ieee80211_frequency_to_channel(int freq);
  2285. /*
  2286. * Name indirection necessary because the ieee80211 code also has
  2287. * a function named "ieee80211_get_channel", so if you include
  2288. * cfg80211's header file you get cfg80211's version, if you try
  2289. * to include both header files you'll (rightfully!) get a symbol
  2290. * clash.
  2291. */
  2292. extern struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
  2293. int freq);
  2294. /**
  2295. * ieee80211_get_channel - get channel struct from wiphy for specified frequency
  2296. * @wiphy: the struct wiphy to get the channel for
  2297. * @freq: the center frequency of the channel
  2298. */
  2299. static inline struct ieee80211_channel *
  2300. ieee80211_get_channel(struct wiphy *wiphy, int freq)
  2301. {
  2302. return __ieee80211_get_channel(wiphy, freq);
  2303. }
  2304. /**
  2305. * ieee80211_get_response_rate - get basic rate for a given rate
  2306. *
  2307. * @sband: the band to look for rates in
  2308. * @basic_rates: bitmap of basic rates
  2309. * @bitrate: the bitrate for which to find the basic rate
  2310. *
  2311. * This function returns the basic rate corresponding to a given
  2312. * bitrate, that is the next lower bitrate contained in the basic
  2313. * rate map, which is, for this function, given as a bitmap of
  2314. * indices of rates in the band's bitrate table.
  2315. */
  2316. struct ieee80211_rate *
  2317. ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
  2318. u32 basic_rates, int bitrate);
  2319. /*
  2320. * Radiotap parsing functions -- for controlled injection support
  2321. *
  2322. * Implemented in net/wireless/radiotap.c
  2323. * Documentation in Documentation/networking/radiotap-headers.txt
  2324. */
  2325. struct radiotap_align_size {
  2326. uint8_t align:4, size:4;
  2327. };
  2328. struct ieee80211_radiotap_namespace {
  2329. const struct radiotap_align_size *align_size;
  2330. int n_bits;
  2331. uint32_t oui;
  2332. uint8_t subns;
  2333. };
  2334. struct ieee80211_radiotap_vendor_namespaces {
  2335. const struct ieee80211_radiotap_namespace *ns;
  2336. int n_ns;
  2337. };
  2338. /**
  2339. * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
  2340. * @this_arg_index: index of current arg, valid after each successful call
  2341. * to ieee80211_radiotap_iterator_next()
  2342. * @this_arg: pointer to current radiotap arg; it is valid after each
  2343. * call to ieee80211_radiotap_iterator_next() but also after
  2344. * ieee80211_radiotap_iterator_init() where it will point to
  2345. * the beginning of the actual data portion
  2346. * @this_arg_size: length of the current arg, for convenience
  2347. * @current_namespace: pointer to the current namespace definition
  2348. * (or internally %NULL if the current namespace is unknown)
  2349. * @is_radiotap_ns: indicates whether the current namespace is the default
  2350. * radiotap namespace or not
  2351. *
  2352. * @_rtheader: pointer to the radiotap header we are walking through
  2353. * @_max_length: length of radiotap header in cpu byte ordering
  2354. * @_arg_index: next argument index
  2355. * @_arg: next argument pointer
  2356. * @_next_bitmap: internal pointer to next present u32
  2357. * @_bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
  2358. * @_vns: vendor namespace definitions
  2359. * @_next_ns_data: beginning of the next namespace's data
  2360. * @_reset_on_ext: internal; reset the arg index to 0 when going to the
  2361. * next bitmap word
  2362. *
  2363. * Describes the radiotap parser state. Fields prefixed with an underscore
  2364. * must not be used by users of the parser, only by the parser internally.
  2365. */
  2366. struct ieee80211_radiotap_iterator {
  2367. struct ieee80211_radiotap_header *_rtheader;
  2368. const struct ieee80211_radiotap_vendor_namespaces *_vns;
  2369. const struct ieee80211_radiotap_namespace *current_namespace;
  2370. unsigned char *_arg, *_next_ns_data;
  2371. __le32 *_next_bitmap;
  2372. unsigned char *this_arg;
  2373. int this_arg_index;
  2374. int this_arg_size;
  2375. int is_radiotap_ns;
  2376. int _max_length;
  2377. int _arg_index;
  2378. uint32_t _bitmap_shifter;
  2379. int _reset_on_ext;
  2380. };
  2381. extern int ieee80211_radiotap_iterator_init(
  2382. struct ieee80211_radiotap_iterator *iterator,
  2383. struct ieee80211_radiotap_header *radiotap_header,
  2384. int max_length, const struct ieee80211_radiotap_vendor_namespaces *vns);
  2385. extern int ieee80211_radiotap_iterator_next(
  2386. struct ieee80211_radiotap_iterator *iterator);
  2387. extern const unsigned char rfc1042_header[6];
  2388. extern const unsigned char bridge_tunnel_header[6];
  2389. /**
  2390. * ieee80211_get_hdrlen_from_skb - get header length from data
  2391. *
  2392. * Given an skb with a raw 802.11 header at the data pointer this function
  2393. * returns the 802.11 header length in bytes (not including encryption
  2394. * headers). If the data in the sk_buff is too short to contain a valid 802.11
  2395. * header the function returns 0.
  2396. *
  2397. * @skb: the frame
  2398. */
  2399. unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
  2400. /**
  2401. * ieee80211_hdrlen - get header length in bytes from frame control
  2402. * @fc: frame control field in little-endian format
  2403. */
  2404. unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
  2405. /**
  2406. * DOC: Data path helpers
  2407. *
  2408. * In addition to generic utilities, cfg80211 also offers
  2409. * functions that help implement the data path for devices
  2410. * that do not do the 802.11/802.3 conversion on the device.
  2411. */
  2412. /**
  2413. * ieee80211_data_to_8023 - convert an 802.11 data frame to 802.3
  2414. * @skb: the 802.11 data frame
  2415. * @addr: the device MAC address
  2416. * @iftype: the virtual interface type
  2417. */
  2418. int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
  2419. enum nl80211_iftype iftype);
  2420. /**
  2421. * ieee80211_data_from_8023 - convert an 802.3 frame to 802.11
  2422. * @skb: the 802.3 frame
  2423. * @addr: the device MAC address
  2424. * @iftype: the virtual interface type
  2425. * @bssid: the network bssid (used only for iftype STATION and ADHOC)
  2426. * @qos: build 802.11 QoS data frame
  2427. */
  2428. int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
  2429. enum nl80211_iftype iftype, u8 *bssid, bool qos);
  2430. /**
  2431. * ieee80211_amsdu_to_8023s - decode an IEEE 802.11n A-MSDU frame
  2432. *
  2433. * Decode an IEEE 802.11n A-MSDU frame and convert it to a list of
  2434. * 802.3 frames. The @list will be empty if the decode fails. The
  2435. * @skb is consumed after the function returns.
  2436. *
  2437. * @skb: The input IEEE 802.11n A-MSDU frame.
  2438. * @list: The output list of 802.3 frames. It must be allocated and
  2439. * initialized by by the caller.
  2440. * @addr: The device MAC address.
  2441. * @iftype: The device interface type.
  2442. * @extra_headroom: The hardware extra headroom for SKBs in the @list.
  2443. * @has_80211_header: Set it true if SKB is with IEEE 802.11 header.
  2444. */
  2445. void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
  2446. const u8 *addr, enum nl80211_iftype iftype,
  2447. const unsigned int extra_headroom,
  2448. bool has_80211_header);
  2449. /**
  2450. * cfg80211_classify8021d - determine the 802.1p/1d tag for a data frame
  2451. * @skb: the data frame
  2452. */
  2453. unsigned int cfg80211_classify8021d(struct sk_buff *skb);
  2454. /**
  2455. * cfg80211_find_ie - find information element in data
  2456. *
  2457. * @eid: element ID
  2458. * @ies: data consisting of IEs
  2459. * @len: length of data
  2460. *
  2461. * This function will return %NULL if the element ID could
  2462. * not be found or if the element is invalid (claims to be
  2463. * longer than the given data), or a pointer to the first byte
  2464. * of the requested element, that is the byte containing the
  2465. * element ID. There are no checks on the element length
  2466. * other than having to fit into the given data.
  2467. */
  2468. const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len);
  2469. /**
  2470. * cfg80211_find_vendor_ie - find vendor specific information element in data
  2471. *
  2472. * @oui: vendor OUI
  2473. * @oui_type: vendor-specific OUI type
  2474. * @ies: data consisting of IEs
  2475. * @len: length of data
  2476. *
  2477. * This function will return %NULL if the vendor specific element ID
  2478. * could not be found or if the element is invalid (claims to be
  2479. * longer than the given data), or a pointer to the first byte
  2480. * of the requested element, that is the byte containing the
  2481. * element ID. There are no checks on the element length
  2482. * other than having to fit into the given data.
  2483. */
  2484. const u8 *cfg80211_find_vendor_ie(unsigned int oui, u8 oui_type,
  2485. const u8 *ies, int len);
  2486. /**
  2487. * DOC: Regulatory enforcement infrastructure
  2488. *
  2489. * TODO
  2490. */
  2491. /**
  2492. * regulatory_hint - driver hint to the wireless core a regulatory domain
  2493. * @wiphy: the wireless device giving the hint (used only for reporting
  2494. * conflicts)
  2495. * @alpha2: the ISO/IEC 3166 alpha2 the driver claims its regulatory domain
  2496. * should be in. If @rd is set this should be NULL. Note that if you
  2497. * set this to NULL you should still set rd->alpha2 to some accepted
  2498. * alpha2.
  2499. *
  2500. * Wireless drivers can use this function to hint to the wireless core
  2501. * what it believes should be the current regulatory domain by
  2502. * giving it an ISO/IEC 3166 alpha2 country code it knows its regulatory
  2503. * domain should be in or by providing a completely build regulatory domain.
  2504. * If the driver provides an ISO/IEC 3166 alpha2 userspace will be queried
  2505. * for a regulatory domain structure for the respective country.
  2506. *
  2507. * The wiphy must have been registered to cfg80211 prior to this call.
  2508. * For cfg80211 drivers this means you must first use wiphy_register(),
  2509. * for mac80211 drivers you must first use ieee80211_register_hw().
  2510. *
  2511. * Drivers should check the return value, its possible you can get
  2512. * an -ENOMEM.
  2513. */
  2514. extern int regulatory_hint(struct wiphy *wiphy, const char *alpha2);
  2515. /**
  2516. * wiphy_apply_custom_regulatory - apply a custom driver regulatory domain
  2517. * @wiphy: the wireless device we want to process the regulatory domain on
  2518. * @regd: the custom regulatory domain to use for this wiphy
  2519. *
  2520. * Drivers can sometimes have custom regulatory domains which do not apply
  2521. * to a specific country. Drivers can use this to apply such custom regulatory
  2522. * domains. This routine must be called prior to wiphy registration. The
  2523. * custom regulatory domain will be trusted completely and as such previous
  2524. * default channel settings will be disregarded. If no rule is found for a
  2525. * channel on the regulatory domain the channel will be disabled.
  2526. */
  2527. extern void wiphy_apply_custom_regulatory(
  2528. struct wiphy *wiphy,
  2529. const struct ieee80211_regdomain *regd);
  2530. /**
  2531. * freq_reg_info - get regulatory information for the given frequency
  2532. * @wiphy: the wiphy for which we want to process this rule for
  2533. * @center_freq: Frequency in KHz for which we want regulatory information for
  2534. * @desired_bw_khz: the desired max bandwidth you want to use per
  2535. * channel. Note that this is still 20 MHz if you want to use HT40
  2536. * as HT40 makes use of two channels for its 40 MHz width bandwidth.
  2537. * If set to 0 we'll assume you want the standard 20 MHz.
  2538. * @reg_rule: the regulatory rule which we have for this frequency
  2539. *
  2540. * Use this function to get the regulatory rule for a specific frequency on
  2541. * a given wireless device. If the device has a specific regulatory domain
  2542. * it wants to follow we respect that unless a country IE has been received
  2543. * and processed already.
  2544. *
  2545. * Returns 0 if it was able to find a valid regulatory rule which does
  2546. * apply to the given center_freq otherwise it returns non-zero. It will
  2547. * also return -ERANGE if we determine the given center_freq does not even have
  2548. * a regulatory rule for a frequency range in the center_freq's band. See
  2549. * freq_in_rule_band() for our current definition of a band -- this is purely
  2550. * subjective and right now its 802.11 specific.
  2551. */
  2552. extern int freq_reg_info(struct wiphy *wiphy,
  2553. u32 center_freq,
  2554. u32 desired_bw_khz,
  2555. const struct ieee80211_reg_rule **reg_rule);
  2556. /*
  2557. * callbacks for asynchronous cfg80211 methods, notification
  2558. * functions and BSS handling helpers
  2559. */
  2560. /**
  2561. * cfg80211_scan_done - notify that scan finished
  2562. *
  2563. * @request: the corresponding scan request
  2564. * @aborted: set to true if the scan was aborted for any reason,
  2565. * userspace will be notified of that
  2566. */
  2567. void cfg80211_scan_done(struct cfg80211_scan_request *request, bool aborted);
  2568. /**
  2569. * cfg80211_sched_scan_results - notify that new scan results are available
  2570. *
  2571. * @wiphy: the wiphy which got scheduled scan results
  2572. */
  2573. void cfg80211_sched_scan_results(struct wiphy *wiphy);
  2574. /**
  2575. * cfg80211_sched_scan_stopped - notify that the scheduled scan has stopped
  2576. *
  2577. * @wiphy: the wiphy on which the scheduled scan stopped
  2578. *
  2579. * The driver can call this function to inform cfg80211 that the
  2580. * scheduled scan had to be stopped, for whatever reason. The driver
  2581. * is then called back via the sched_scan_stop operation when done.
  2582. */
  2583. void cfg80211_sched_scan_stopped(struct wiphy *wiphy);
  2584. /**
  2585. * cfg80211_inform_bss_frame - inform cfg80211 of a received BSS frame
  2586. *
  2587. * @wiphy: the wiphy reporting the BSS
  2588. * @channel: The channel the frame was received on
  2589. * @mgmt: the management frame (probe response or beacon)
  2590. * @len: length of the management frame
  2591. * @signal: the signal strength, type depends on the wiphy's signal_type
  2592. * @gfp: context flags
  2593. *
  2594. * This informs cfg80211 that BSS information was found and
  2595. * the BSS should be updated/added.
  2596. *
  2597. * NOTE: Returns a referenced struct, must be released with cfg80211_put_bss()!
  2598. */
  2599. struct cfg80211_bss * __must_check
  2600. cfg80211_inform_bss_frame(struct wiphy *wiphy,
  2601. struct ieee80211_channel *channel,
  2602. struct ieee80211_mgmt *mgmt, size_t len,
  2603. s32 signal, gfp_t gfp);
  2604. /**
  2605. * cfg80211_inform_bss - inform cfg80211 of a new BSS
  2606. *
  2607. * @wiphy: the wiphy reporting the BSS
  2608. * @channel: The channel the frame was received on
  2609. * @bssid: the BSSID of the BSS
  2610. * @tsf: the TSF sent by the peer in the beacon/probe response (or 0)
  2611. * @capability: the capability field sent by the peer
  2612. * @beacon_interval: the beacon interval announced by the peer
  2613. * @ie: additional IEs sent by the peer
  2614. * @ielen: length of the additional IEs
  2615. * @signal: the signal strength, type depends on the wiphy's signal_type
  2616. * @gfp: context flags
  2617. *
  2618. * This informs cfg80211 that BSS information was found and
  2619. * the BSS should be updated/added.
  2620. *
  2621. * NOTE: Returns a referenced struct, must be released with cfg80211_put_bss()!
  2622. */
  2623. struct cfg80211_bss * __must_check
  2624. cfg80211_inform_bss(struct wiphy *wiphy,
  2625. struct ieee80211_channel *channel,
  2626. const u8 *bssid, u64 tsf, u16 capability,
  2627. u16 beacon_interval, const u8 *ie, size_t ielen,
  2628. s32 signal, gfp_t gfp);
  2629. struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
  2630. struct ieee80211_channel *channel,
  2631. const u8 *bssid,
  2632. const u8 *ssid, size_t ssid_len,
  2633. u16 capa_mask, u16 capa_val);
  2634. static inline struct cfg80211_bss *
  2635. cfg80211_get_ibss(struct wiphy *wiphy,
  2636. struct ieee80211_channel *channel,
  2637. const u8 *ssid, size_t ssid_len)
  2638. {
  2639. return cfg80211_get_bss(wiphy, channel, NULL, ssid, ssid_len,
  2640. WLAN_CAPABILITY_IBSS, WLAN_CAPABILITY_IBSS);
  2641. }
  2642. struct cfg80211_bss *cfg80211_get_mesh(struct wiphy *wiphy,
  2643. struct ieee80211_channel *channel,
  2644. const u8 *meshid, size_t meshidlen,
  2645. const u8 *meshcfg);
  2646. /**
  2647. * cfg80211_ref_bss - reference BSS struct
  2648. * @bss: the BSS struct to reference
  2649. *
  2650. * Increments the refcount of the given BSS struct.
  2651. */
  2652. void cfg80211_ref_bss(struct cfg80211_bss *bss);
  2653. /**
  2654. * cfg80211_put_bss - unref BSS struct
  2655. * @bss: the BSS struct
  2656. *
  2657. * Decrements the refcount of the given BSS struct.
  2658. */
  2659. void cfg80211_put_bss(struct cfg80211_bss *bss);
  2660. /**
  2661. * cfg80211_unlink_bss - unlink BSS from internal data structures
  2662. * @wiphy: the wiphy
  2663. * @bss: the bss to remove
  2664. *
  2665. * This function removes the given BSS from the internal data structures
  2666. * thereby making it no longer show up in scan results etc. Use this
  2667. * function when you detect a BSS is gone. Normally BSSes will also time
  2668. * out, so it is not necessary to use this function at all.
  2669. */
  2670. void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
  2671. /**
  2672. * cfg80211_send_rx_auth - notification of processed authentication
  2673. * @dev: network device
  2674. * @buf: authentication frame (header + body)
  2675. * @len: length of the frame data
  2676. *
  2677. * This function is called whenever an authentication has been processed in
  2678. * station mode. The driver is required to call either this function or
  2679. * cfg80211_send_auth_timeout() to indicate the result of cfg80211_ops::auth()
  2680. * call. This function may sleep.
  2681. */
  2682. void cfg80211_send_rx_auth(struct net_device *dev, const u8 *buf, size_t len);
  2683. /**
  2684. * cfg80211_send_auth_timeout - notification of timed out authentication
  2685. * @dev: network device
  2686. * @addr: The MAC address of the device with which the authentication timed out
  2687. *
  2688. * This function may sleep.
  2689. */
  2690. void cfg80211_send_auth_timeout(struct net_device *dev, const u8 *addr);
  2691. /**
  2692. * cfg80211_send_rx_assoc - notification of processed association
  2693. * @dev: network device
  2694. * @bss: the BSS struct association was requested for, the struct reference
  2695. * is owned by cfg80211 after this call
  2696. * @buf: (re)association response frame (header + body)
  2697. * @len: length of the frame data
  2698. *
  2699. * This function is called whenever a (re)association response has been
  2700. * processed in station mode. The driver is required to call either this
  2701. * function or cfg80211_send_assoc_timeout() to indicate the result of
  2702. * cfg80211_ops::assoc() call. This function may sleep.
  2703. */
  2704. void cfg80211_send_rx_assoc(struct net_device *dev, struct cfg80211_bss *bss,
  2705. const u8 *buf, size_t len);
  2706. /**
  2707. * cfg80211_send_assoc_timeout - notification of timed out association
  2708. * @dev: network device
  2709. * @addr: The MAC address of the device with which the association timed out
  2710. *
  2711. * This function may sleep.
  2712. */
  2713. void cfg80211_send_assoc_timeout(struct net_device *dev, const u8 *addr);
  2714. /**
  2715. * cfg80211_send_deauth - notification of processed deauthentication
  2716. * @dev: network device
  2717. * @buf: deauthentication frame (header + body)
  2718. * @len: length of the frame data
  2719. *
  2720. * This function is called whenever deauthentication has been processed in
  2721. * station mode. This includes both received deauthentication frames and
  2722. * locally generated ones. This function may sleep.
  2723. */
  2724. void cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
  2725. /**
  2726. * __cfg80211_send_deauth - notification of processed deauthentication
  2727. * @dev: network device
  2728. * @buf: deauthentication frame (header + body)
  2729. * @len: length of the frame data
  2730. *
  2731. * Like cfg80211_send_deauth(), but doesn't take the wdev lock.
  2732. */
  2733. void __cfg80211_send_deauth(struct net_device *dev, const u8 *buf, size_t len);
  2734. /**
  2735. * cfg80211_send_disassoc - notification of processed disassociation
  2736. * @dev: network device
  2737. * @buf: disassociation response frame (header + body)
  2738. * @len: length of the frame data
  2739. *
  2740. * This function is called whenever disassociation has been processed in
  2741. * station mode. This includes both received disassociation frames and locally
  2742. * generated ones. This function may sleep.
  2743. */
  2744. void cfg80211_send_disassoc(struct net_device *dev, const u8 *buf, size_t len);
  2745. /**
  2746. * __cfg80211_send_disassoc - notification of processed disassociation
  2747. * @dev: network device
  2748. * @buf: disassociation response frame (header + body)
  2749. * @len: length of the frame data
  2750. *
  2751. * Like cfg80211_send_disassoc(), but doesn't take the wdev lock.
  2752. */
  2753. void __cfg80211_send_disassoc(struct net_device *dev, const u8 *buf,
  2754. size_t len);
  2755. /**
  2756. * cfg80211_send_unprot_deauth - notification of unprotected deauthentication
  2757. * @dev: network device
  2758. * @buf: deauthentication frame (header + body)
  2759. * @len: length of the frame data
  2760. *
  2761. * This function is called whenever a received Deauthentication frame has been
  2762. * dropped in station mode because of MFP being used but the Deauthentication
  2763. * frame was not protected. This function may sleep.
  2764. */
  2765. void cfg80211_send_unprot_deauth(struct net_device *dev, const u8 *buf,
  2766. size_t len);
  2767. /**
  2768. * cfg80211_send_unprot_disassoc - notification of unprotected disassociation
  2769. * @dev: network device
  2770. * @buf: disassociation frame (header + body)
  2771. * @len: length of the frame data
  2772. *
  2773. * This function is called whenever a received Disassociation frame has been
  2774. * dropped in station mode because of MFP being used but the Disassociation
  2775. * frame was not protected. This function may sleep.
  2776. */
  2777. void cfg80211_send_unprot_disassoc(struct net_device *dev, const u8 *buf,
  2778. size_t len);
  2779. /**
  2780. * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
  2781. * @dev: network device
  2782. * @addr: The source MAC address of the frame
  2783. * @key_type: The key type that the received frame used
  2784. * @key_id: Key identifier (0..3). Can be -1 if missing.
  2785. * @tsc: The TSC value of the frame that generated the MIC failure (6 octets)
  2786. * @gfp: allocation flags
  2787. *
  2788. * This function is called whenever the local MAC detects a MIC failure in a
  2789. * received frame. This matches with MLME-MICHAELMICFAILURE.indication()
  2790. * primitive.
  2791. */
  2792. void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
  2793. enum nl80211_key_type key_type, int key_id,
  2794. const u8 *tsc, gfp_t gfp);
  2795. /**
  2796. * cfg80211_ibss_joined - notify cfg80211 that device joined an IBSS
  2797. *
  2798. * @dev: network device
  2799. * @bssid: the BSSID of the IBSS joined
  2800. * @gfp: allocation flags
  2801. *
  2802. * This function notifies cfg80211 that the device joined an IBSS or
  2803. * switched to a different BSSID. Before this function can be called,
  2804. * either a beacon has to have been received from the IBSS, or one of
  2805. * the cfg80211_inform_bss{,_frame} functions must have been called
  2806. * with the locally generated beacon -- this guarantees that there is
  2807. * always a scan result for this IBSS. cfg80211 will handle the rest.
  2808. */
  2809. void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp);
  2810. /**
  2811. * cfg80211_notify_new_candidate - notify cfg80211 of a new mesh peer candidate
  2812. *
  2813. * @dev: network device
  2814. * @macaddr: the MAC address of the new candidate
  2815. * @ie: information elements advertised by the peer candidate
  2816. * @ie_len: lenght of the information elements buffer
  2817. * @gfp: allocation flags
  2818. *
  2819. * This function notifies cfg80211 that the mesh peer candidate has been
  2820. * detected, most likely via a beacon or, less likely, via a probe response.
  2821. * cfg80211 then sends a notification to userspace.
  2822. */
  2823. void cfg80211_notify_new_peer_candidate(struct net_device *dev,
  2824. const u8 *macaddr, const u8 *ie, u8 ie_len, gfp_t gfp);
  2825. /**
  2826. * DOC: RFkill integration
  2827. *
  2828. * RFkill integration in cfg80211 is almost invisible to drivers,
  2829. * as cfg80211 automatically registers an rfkill instance for each
  2830. * wireless device it knows about. Soft kill is also translated
  2831. * into disconnecting and turning all interfaces off, drivers are
  2832. * expected to turn off the device when all interfaces are down.
  2833. *
  2834. * However, devices may have a hard RFkill line, in which case they
  2835. * also need to interact with the rfkill subsystem, via cfg80211.
  2836. * They can do this with a few helper functions documented here.
  2837. */
  2838. /**
  2839. * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
  2840. * @wiphy: the wiphy
  2841. * @blocked: block status
  2842. */
  2843. void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked);
  2844. /**
  2845. * wiphy_rfkill_start_polling - start polling rfkill
  2846. * @wiphy: the wiphy
  2847. */
  2848. void wiphy_rfkill_start_polling(struct wiphy *wiphy);
  2849. /**
  2850. * wiphy_rfkill_stop_polling - stop polling rfkill
  2851. * @wiphy: the wiphy
  2852. */
  2853. void wiphy_rfkill_stop_polling(struct wiphy *wiphy);
  2854. #ifdef CONFIG_NL80211_TESTMODE
  2855. /**
  2856. * DOC: Test mode
  2857. *
  2858. * Test mode is a set of utility functions to allow drivers to
  2859. * interact with driver-specific tools to aid, for instance,
  2860. * factory programming.
  2861. *
  2862. * This chapter describes how drivers interact with it, for more
  2863. * information see the nl80211 book's chapter on it.
  2864. */
  2865. /**
  2866. * cfg80211_testmode_alloc_reply_skb - allocate testmode reply
  2867. * @wiphy: the wiphy
  2868. * @approxlen: an upper bound of the length of the data that will
  2869. * be put into the skb
  2870. *
  2871. * This function allocates and pre-fills an skb for a reply to
  2872. * the testmode command. Since it is intended for a reply, calling
  2873. * it outside of the @testmode_cmd operation is invalid.
  2874. *
  2875. * The returned skb (or %NULL if any errors happen) is pre-filled
  2876. * with the wiphy index and set up in a way that any data that is
  2877. * put into the skb (with skb_put(), nla_put() or similar) will end
  2878. * up being within the %NL80211_ATTR_TESTDATA attribute, so all that
  2879. * needs to be done with the skb is adding data for the corresponding
  2880. * userspace tool which can then read that data out of the testdata
  2881. * attribute. You must not modify the skb in any other way.
  2882. *
  2883. * When done, call cfg80211_testmode_reply() with the skb and return
  2884. * its error code as the result of the @testmode_cmd operation.
  2885. */
  2886. struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
  2887. int approxlen);
  2888. /**
  2889. * cfg80211_testmode_reply - send the reply skb
  2890. * @skb: The skb, must have been allocated with
  2891. * cfg80211_testmode_alloc_reply_skb()
  2892. *
  2893. * Returns an error code or 0 on success, since calling this
  2894. * function will usually be the last thing before returning
  2895. * from the @testmode_cmd you should return the error code.
  2896. * Note that this function consumes the skb regardless of the
  2897. * return value.
  2898. */
  2899. int cfg80211_testmode_reply(struct sk_buff *skb);
  2900. /**
  2901. * cfg80211_testmode_alloc_event_skb - allocate testmode event
  2902. * @wiphy: the wiphy
  2903. * @approxlen: an upper bound of the length of the data that will
  2904. * be put into the skb
  2905. * @gfp: allocation flags
  2906. *
  2907. * This function allocates and pre-fills an skb for an event on the
  2908. * testmode multicast group.
  2909. *
  2910. * The returned skb (or %NULL if any errors happen) is set up in the
  2911. * same way as with cfg80211_testmode_alloc_reply_skb() but prepared
  2912. * for an event. As there, you should simply add data to it that will
  2913. * then end up in the %NL80211_ATTR_TESTDATA attribute. Again, you must
  2914. * not modify the skb in any other way.
  2915. *
  2916. * When done filling the skb, call cfg80211_testmode_event() with the
  2917. * skb to send the event.
  2918. */
  2919. struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
  2920. int approxlen, gfp_t gfp);
  2921. /**
  2922. * cfg80211_testmode_event - send the event
  2923. * @skb: The skb, must have been allocated with
  2924. * cfg80211_testmode_alloc_event_skb()
  2925. * @gfp: allocation flags
  2926. *
  2927. * This function sends the given @skb, which must have been allocated
  2928. * by cfg80211_testmode_alloc_event_skb(), as an event. It always
  2929. * consumes it.
  2930. */
  2931. void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp);
  2932. #define CFG80211_TESTMODE_CMD(cmd) .testmode_cmd = (cmd),
  2933. #define CFG80211_TESTMODE_DUMP(cmd) .testmode_dump = (cmd),
  2934. #else
  2935. #define CFG80211_TESTMODE_CMD(cmd)
  2936. #define CFG80211_TESTMODE_DUMP(cmd)
  2937. #endif
  2938. /**
  2939. * cfg80211_connect_result - notify cfg80211 of connection result
  2940. *
  2941. * @dev: network device
  2942. * @bssid: the BSSID of the AP
  2943. * @req_ie: association request IEs (maybe be %NULL)
  2944. * @req_ie_len: association request IEs length
  2945. * @resp_ie: association response IEs (may be %NULL)
  2946. * @resp_ie_len: assoc response IEs length
  2947. * @status: status code, 0 for successful connection, use
  2948. * %WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
  2949. * the real status code for failures.
  2950. * @gfp: allocation flags
  2951. *
  2952. * It should be called by the underlying driver whenever connect() has
  2953. * succeeded.
  2954. */
  2955. void cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
  2956. const u8 *req_ie, size_t req_ie_len,
  2957. const u8 *resp_ie, size_t resp_ie_len,
  2958. u16 status, gfp_t gfp);
  2959. /**
  2960. * cfg80211_roamed - notify cfg80211 of roaming
  2961. *
  2962. * @dev: network device
  2963. * @channel: the channel of the new AP
  2964. * @bssid: the BSSID of the new AP
  2965. * @req_ie: association request IEs (maybe be %NULL)
  2966. * @req_ie_len: association request IEs length
  2967. * @resp_ie: association response IEs (may be %NULL)
  2968. * @resp_ie_len: assoc response IEs length
  2969. * @gfp: allocation flags
  2970. *
  2971. * It should be called by the underlying driver whenever it roamed
  2972. * from one AP to another while connected.
  2973. */
  2974. void cfg80211_roamed(struct net_device *dev,
  2975. struct ieee80211_channel *channel,
  2976. const u8 *bssid,
  2977. const u8 *req_ie, size_t req_ie_len,
  2978. const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
  2979. /**
  2980. * cfg80211_roamed_bss - notify cfg80211 of roaming
  2981. *
  2982. * @dev: network device
  2983. * @bss: entry of bss to which STA got roamed
  2984. * @req_ie: association request IEs (maybe be %NULL)
  2985. * @req_ie_len: association request IEs length
  2986. * @resp_ie: association response IEs (may be %NULL)
  2987. * @resp_ie_len: assoc response IEs length
  2988. * @gfp: allocation flags
  2989. *
  2990. * This is just a wrapper to notify cfg80211 of roaming event with driver
  2991. * passing bss to avoid a race in timeout of the bss entry. It should be
  2992. * called by the underlying driver whenever it roamed from one AP to another
  2993. * while connected. Drivers which have roaming implemented in firmware
  2994. * may use this function to avoid a race in bss entry timeout where the bss
  2995. * entry of the new AP is seen in the driver, but gets timed out by the time
  2996. * it is accessed in __cfg80211_roamed() due to delay in scheduling
  2997. * rdev->event_work. In case of any failures, the reference is released
  2998. * either in cfg80211_roamed_bss() or in __cfg80211_romed(), Otherwise,
  2999. * it will be released while diconneting from the current bss.
  3000. */
  3001. void cfg80211_roamed_bss(struct net_device *dev, struct cfg80211_bss *bss,
  3002. const u8 *req_ie, size_t req_ie_len,
  3003. const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
  3004. /**
  3005. * cfg80211_disconnected - notify cfg80211 that connection was dropped
  3006. *
  3007. * @dev: network device
  3008. * @ie: information elements of the deauth/disassoc frame (may be %NULL)
  3009. * @ie_len: length of IEs
  3010. * @reason: reason code for the disconnection, set it to 0 if unknown
  3011. * @gfp: allocation flags
  3012. *
  3013. * After it calls this function, the driver should enter an idle state
  3014. * and not try to connect to any AP any more.
  3015. */
  3016. void cfg80211_disconnected(struct net_device *dev, u16 reason,
  3017. u8 *ie, size_t ie_len, gfp_t gfp);
  3018. /**
  3019. * cfg80211_ready_on_channel - notification of remain_on_channel start
  3020. * @dev: network device
  3021. * @cookie: the request cookie
  3022. * @chan: The current channel (from remain_on_channel request)
  3023. * @channel_type: Channel type
  3024. * @duration: Duration in milliseconds that the driver intents to remain on the
  3025. * channel
  3026. * @gfp: allocation flags
  3027. */
  3028. void cfg80211_ready_on_channel(struct net_device *dev, u64 cookie,
  3029. struct ieee80211_channel *chan,
  3030. enum nl80211_channel_type channel_type,
  3031. unsigned int duration, gfp_t gfp);
  3032. /**
  3033. * cfg80211_remain_on_channel_expired - remain_on_channel duration expired
  3034. * @dev: network device
  3035. * @cookie: the request cookie
  3036. * @chan: The current channel (from remain_on_channel request)
  3037. * @channel_type: Channel type
  3038. * @gfp: allocation flags
  3039. */
  3040. void cfg80211_remain_on_channel_expired(struct net_device *dev,
  3041. u64 cookie,
  3042. struct ieee80211_channel *chan,
  3043. enum nl80211_channel_type channel_type,
  3044. gfp_t gfp);
  3045. /**
  3046. * cfg80211_new_sta - notify userspace about station
  3047. *
  3048. * @dev: the netdev
  3049. * @mac_addr: the station's address
  3050. * @sinfo: the station information
  3051. * @gfp: allocation flags
  3052. */
  3053. void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
  3054. struct station_info *sinfo, gfp_t gfp);
  3055. /**
  3056. * cfg80211_del_sta - notify userspace about deletion of a station
  3057. *
  3058. * @dev: the netdev
  3059. * @mac_addr: the station's address
  3060. * @gfp: allocation flags
  3061. */
  3062. void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp);
  3063. /**
  3064. * cfg80211_rx_mgmt - notification of received, unprocessed management frame
  3065. * @dev: network device
  3066. * @freq: Frequency on which the frame was received in MHz
  3067. * @sig_dbm: signal strength in mBm, or 0 if unknown
  3068. * @buf: Management frame (header + body)
  3069. * @len: length of the frame data
  3070. * @gfp: context flags
  3071. *
  3072. * Returns %true if a user space application has registered for this frame.
  3073. * For action frames, that makes it responsible for rejecting unrecognized
  3074. * action frames; %false otherwise, in which case for action frames the
  3075. * driver is responsible for rejecting the frame.
  3076. *
  3077. * This function is called whenever an Action frame is received for a station
  3078. * mode interface, but is not processed in kernel.
  3079. */
  3080. bool cfg80211_rx_mgmt(struct net_device *dev, int freq, int sig_dbm,
  3081. const u8 *buf, size_t len, gfp_t gfp);
  3082. /**
  3083. * cfg80211_mgmt_tx_status - notification of TX status for management frame
  3084. * @dev: network device
  3085. * @cookie: Cookie returned by cfg80211_ops::mgmt_tx()
  3086. * @buf: Management frame (header + body)
  3087. * @len: length of the frame data
  3088. * @ack: Whether frame was acknowledged
  3089. * @gfp: context flags
  3090. *
  3091. * This function is called whenever a management frame was requested to be
  3092. * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the
  3093. * transmission attempt.
  3094. */
  3095. void cfg80211_mgmt_tx_status(struct net_device *dev, u64 cookie,
  3096. const u8 *buf, size_t len, bool ack, gfp_t gfp);
  3097. /**
  3098. * cfg80211_cqm_rssi_notify - connection quality monitoring rssi event
  3099. * @dev: network device
  3100. * @rssi_event: the triggered RSSI event
  3101. * @gfp: context flags
  3102. *
  3103. * This function is called when a configured connection quality monitoring
  3104. * rssi threshold reached event occurs.
  3105. */
  3106. void cfg80211_cqm_rssi_notify(struct net_device *dev,
  3107. enum nl80211_cqm_rssi_threshold_event rssi_event,
  3108. gfp_t gfp);
  3109. /**
  3110. * cfg80211_cqm_pktloss_notify - notify userspace about packetloss to peer
  3111. * @dev: network device
  3112. * @peer: peer's MAC address
  3113. * @num_packets: how many packets were lost -- should be a fixed threshold
  3114. * but probably no less than maybe 50, or maybe a throughput dependent
  3115. * threshold (to account for temporary interference)
  3116. * @gfp: context flags
  3117. */
  3118. void cfg80211_cqm_pktloss_notify(struct net_device *dev,
  3119. const u8 *peer, u32 num_packets, gfp_t gfp);
  3120. /**
  3121. * cfg80211_gtk_rekey_notify - notify userspace about driver rekeying
  3122. * @dev: network device
  3123. * @bssid: BSSID of AP (to avoid races)
  3124. * @replay_ctr: new replay counter
  3125. * @gfp: allocation flags
  3126. */
  3127. void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
  3128. const u8 *replay_ctr, gfp_t gfp);
  3129. /**
  3130. * cfg80211_pmksa_candidate_notify - notify about PMKSA caching candidate
  3131. * @dev: network device
  3132. * @index: candidate index (the smaller the index, the higher the priority)
  3133. * @bssid: BSSID of AP
  3134. * @preauth: Whether AP advertises support for RSN pre-authentication
  3135. * @gfp: allocation flags
  3136. */
  3137. void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
  3138. const u8 *bssid, bool preauth, gfp_t gfp);
  3139. /**
  3140. * cfg80211_rx_spurious_frame - inform userspace about a spurious frame
  3141. * @dev: The device the frame matched to
  3142. * @addr: the transmitter address
  3143. * @gfp: context flags
  3144. *
  3145. * This function is used in AP mode (only!) to inform userspace that
  3146. * a spurious class 3 frame was received, to be able to deauth the
  3147. * sender.
  3148. * Returns %true if the frame was passed to userspace (or this failed
  3149. * for a reason other than not having a subscription.)
  3150. */
  3151. bool cfg80211_rx_spurious_frame(struct net_device *dev,
  3152. const u8 *addr, gfp_t gfp);
  3153. /**
  3154. * cfg80211_rx_unexpected_4addr_frame - inform about unexpected WDS frame
  3155. * @dev: The device the frame matched to
  3156. * @addr: the transmitter address
  3157. * @gfp: context flags
  3158. *
  3159. * This function is used in AP mode (only!) to inform userspace that
  3160. * an associated station sent a 4addr frame but that wasn't expected.
  3161. * It is allowed and desirable to send this event only once for each
  3162. * station to avoid event flooding.
  3163. * Returns %true if the frame was passed to userspace (or this failed
  3164. * for a reason other than not having a subscription.)
  3165. */
  3166. bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
  3167. const u8 *addr, gfp_t gfp);
  3168. /**
  3169. * cfg80211_probe_status - notify userspace about probe status
  3170. * @dev: the device the probe was sent on
  3171. * @addr: the address of the peer
  3172. * @cookie: the cookie filled in @probe_client previously
  3173. * @acked: indicates whether probe was acked or not
  3174. * @gfp: allocation flags
  3175. */
  3176. void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
  3177. u64 cookie, bool acked, gfp_t gfp);
  3178. /**
  3179. * cfg80211_report_obss_beacon - report beacon from other APs
  3180. * @wiphy: The wiphy that received the beacon
  3181. * @frame: the frame
  3182. * @len: length of the frame
  3183. * @freq: frequency the frame was received on
  3184. * @sig_dbm: signal strength in mBm, or 0 if unknown
  3185. * @gfp: allocation flags
  3186. *
  3187. * Use this function to report to userspace when a beacon was
  3188. * received. It is not useful to call this when there is no
  3189. * netdev that is in AP/GO mode.
  3190. */
  3191. void cfg80211_report_obss_beacon(struct wiphy *wiphy,
  3192. const u8 *frame, size_t len,
  3193. int freq, int sig_dbm, gfp_t gfp);
  3194. /**
  3195. * cfg80211_can_beacon_sec_chan - test if ht40 on extension channel can be used
  3196. * @wiphy: the wiphy
  3197. * @chan: main channel
  3198. * @channel_type: HT mode
  3199. *
  3200. * This function returns true if there is no secondary channel or the secondary
  3201. * channel can be used for beaconing (i.e. is not a radar channel etc.)
  3202. */
  3203. bool cfg80211_can_beacon_sec_chan(struct wiphy *wiphy,
  3204. struct ieee80211_channel *chan,
  3205. enum nl80211_channel_type channel_type);
  3206. /*
  3207. * cfg80211_ch_switch_notify - update wdev channel and notify userspace
  3208. * @dev: the device which switched channels
  3209. * @freq: new channel frequency (in MHz)
  3210. * @type: channel type
  3211. *
  3212. * Acquires wdev_lock, so must only be called from sleepable driver context!
  3213. */
  3214. void cfg80211_ch_switch_notify(struct net_device *dev, int freq,
  3215. enum nl80211_channel_type type);
  3216. /*
  3217. * cfg80211_calculate_bitrate - calculate actual bitrate (in 100Kbps units)
  3218. * @rate: given rate_info to calculate bitrate from
  3219. *
  3220. * return 0 if MCS index >= 32
  3221. */
  3222. u32 cfg80211_calculate_bitrate(struct rate_info *rate);
  3223. /* Logging, debugging and troubleshooting/diagnostic helpers. */
  3224. /* wiphy_printk helpers, similar to dev_printk */
  3225. #define wiphy_printk(level, wiphy, format, args...) \
  3226. dev_printk(level, &(wiphy)->dev, format, ##args)
  3227. #define wiphy_emerg(wiphy, format, args...) \
  3228. dev_emerg(&(wiphy)->dev, format, ##args)
  3229. #define wiphy_alert(wiphy, format, args...) \
  3230. dev_alert(&(wiphy)->dev, format, ##args)
  3231. #define wiphy_crit(wiphy, format, args...) \
  3232. dev_crit(&(wiphy)->dev, format, ##args)
  3233. #define wiphy_err(wiphy, format, args...) \
  3234. dev_err(&(wiphy)->dev, format, ##args)
  3235. #define wiphy_warn(wiphy, format, args...) \
  3236. dev_warn(&(wiphy)->dev, format, ##args)
  3237. #define wiphy_notice(wiphy, format, args...) \
  3238. dev_notice(&(wiphy)->dev, format, ##args)
  3239. #define wiphy_info(wiphy, format, args...) \
  3240. dev_info(&(wiphy)->dev, format, ##args)
  3241. #define wiphy_debug(wiphy, format, args...) \
  3242. wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
  3243. #define wiphy_dbg(wiphy, format, args...) \
  3244. dev_dbg(&(wiphy)->dev, format, ##args)
  3245. #if defined(VERBOSE_DEBUG)
  3246. #define wiphy_vdbg wiphy_dbg
  3247. #else
  3248. #define wiphy_vdbg(wiphy, format, args...) \
  3249. ({ \
  3250. if (0) \
  3251. wiphy_printk(KERN_DEBUG, wiphy, format, ##args); \
  3252. 0; \
  3253. })
  3254. #endif
  3255. /*
  3256. * wiphy_WARN() acts like wiphy_printk(), but with the key difference
  3257. * of using a WARN/WARN_ON to get the message out, including the
  3258. * file/line information and a backtrace.
  3259. */
  3260. #define wiphy_WARN(wiphy, format, args...) \
  3261. WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);
  3262. #endif /* __NET_CFG80211_H */