cfg80211.h 126 KB

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