cfg80211.h 137 KB

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