driver.h 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146
  1. /*
  2. * Driver interface definition
  3. * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. *
  8. * This file defines a driver interface used by both %wpa_supplicant and
  9. * hostapd. The first part of the file defines data structures used in various
  10. * driver operations. This is followed by the struct wpa_driver_ops that each
  11. * driver wrapper will beed to define with callback functions for requesting
  12. * driver operations. After this, there are definitions for driver event
  13. * reporting with wpa_supplicant_event() and some convenience helper functions
  14. * that can be used to report events.
  15. */
  16. #ifndef DRIVER_H
  17. #define DRIVER_H
  18. #define WPA_SUPPLICANT_DRIVER_VERSION 4
  19. #include "common/defs.h"
  20. #include "utils/list.h"
  21. #define HOSTAPD_CHAN_DISABLED 0x00000001
  22. #define HOSTAPD_CHAN_PASSIVE_SCAN 0x00000002
  23. #define HOSTAPD_CHAN_NO_IBSS 0x00000004
  24. #define HOSTAPD_CHAN_RADAR 0x00000008
  25. #define HOSTAPD_CHAN_HT40PLUS 0x00000010
  26. #define HOSTAPD_CHAN_HT40MINUS 0x00000020
  27. #define HOSTAPD_CHAN_HT40 0x00000040
  28. #define HOSTAPD_CHAN_SURVEY_LIST_INITIALIZED 0x00000080
  29. #define HOSTAPD_CHAN_DFS_UNKNOWN 0x00000000
  30. #define HOSTAPD_CHAN_DFS_USABLE 0x00000100
  31. #define HOSTAPD_CHAN_DFS_UNAVAILABLE 0x00000200
  32. #define HOSTAPD_CHAN_DFS_AVAILABLE 0x00000300
  33. #define HOSTAPD_CHAN_DFS_MASK 0x00000300
  34. #define HOSTAPD_CHAN_VHT_10_70 0x00000800
  35. #define HOSTAPD_CHAN_VHT_30_50 0x00001000
  36. #define HOSTAPD_CHAN_VHT_50_30 0x00002000
  37. #define HOSTAPD_CHAN_VHT_70_10 0x00004000
  38. enum reg_change_initiator {
  39. REGDOM_SET_BY_CORE,
  40. REGDOM_SET_BY_USER,
  41. REGDOM_SET_BY_DRIVER,
  42. REGDOM_SET_BY_COUNTRY_IE,
  43. };
  44. /**
  45. * struct hostapd_channel_data - Channel information
  46. */
  47. struct hostapd_channel_data {
  48. /**
  49. * chan - Channel number (IEEE 802.11)
  50. */
  51. short chan;
  52. /**
  53. * freq - Frequency in MHz
  54. */
  55. int freq;
  56. /**
  57. * flag - Channel flags (HOSTAPD_CHAN_*)
  58. */
  59. int flag;
  60. /**
  61. * max_tx_power - Regulatory transmit power limit in dBm
  62. */
  63. u8 max_tx_power;
  64. /*
  65. * survey_list - Linked list of surveys
  66. */
  67. struct dl_list survey_list;
  68. /**
  69. * min_nf - Minimum observed noise floor, in dBm, based on all
  70. * surveyed channel data
  71. */
  72. s8 min_nf;
  73. #ifdef CONFIG_ACS
  74. /**
  75. * interference_factor - Computed interference factor on this
  76. * channel (used internally in src/ap/acs.c; driver wrappers do not
  77. * need to set this)
  78. */
  79. long double interference_factor;
  80. #endif /* CONFIG_ACS */
  81. };
  82. #define HOSTAPD_MODE_FLAG_HT_INFO_KNOWN BIT(0)
  83. #define HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN BIT(1)
  84. /**
  85. * struct hostapd_hw_modes - Supported hardware mode information
  86. */
  87. struct hostapd_hw_modes {
  88. /**
  89. * mode - Hardware mode
  90. */
  91. enum hostapd_hw_mode mode;
  92. /**
  93. * num_channels - Number of entries in the channels array
  94. */
  95. int num_channels;
  96. /**
  97. * channels - Array of supported channels
  98. */
  99. struct hostapd_channel_data *channels;
  100. /**
  101. * num_rates - Number of entries in the rates array
  102. */
  103. int num_rates;
  104. /**
  105. * rates - Array of supported rates in 100 kbps units
  106. */
  107. int *rates;
  108. /**
  109. * ht_capab - HT (IEEE 802.11n) capabilities
  110. */
  111. u16 ht_capab;
  112. /**
  113. * mcs_set - MCS (IEEE 802.11n) rate parameters
  114. */
  115. u8 mcs_set[16];
  116. /**
  117. * a_mpdu_params - A-MPDU (IEEE 802.11n) parameters
  118. */
  119. u8 a_mpdu_params;
  120. /**
  121. * vht_capab - VHT (IEEE 802.11ac) capabilities
  122. */
  123. u32 vht_capab;
  124. /**
  125. * vht_mcs_set - VHT MCS (IEEE 802.11ac) rate parameters
  126. */
  127. u8 vht_mcs_set[8];
  128. unsigned int flags; /* HOSTAPD_MODE_FLAG_* */
  129. };
  130. #define IEEE80211_MODE_INFRA 0
  131. #define IEEE80211_MODE_IBSS 1
  132. #define IEEE80211_MODE_AP 2
  133. #define IEEE80211_CAP_ESS 0x0001
  134. #define IEEE80211_CAP_IBSS 0x0002
  135. #define IEEE80211_CAP_PRIVACY 0x0010
  136. /* DMG (60 GHz) IEEE 802.11ad */
  137. /* type - bits 0..1 */
  138. #define IEEE80211_CAP_DMG_MASK 0x0003
  139. #define IEEE80211_CAP_DMG_IBSS 0x0001 /* Tx by: STA */
  140. #define IEEE80211_CAP_DMG_PBSS 0x0002 /* Tx by: PCP */
  141. #define IEEE80211_CAP_DMG_AP 0x0003 /* Tx by: AP */
  142. #define WPA_SCAN_QUAL_INVALID BIT(0)
  143. #define WPA_SCAN_NOISE_INVALID BIT(1)
  144. #define WPA_SCAN_LEVEL_INVALID BIT(2)
  145. #define WPA_SCAN_LEVEL_DBM BIT(3)
  146. #define WPA_SCAN_AUTHENTICATED BIT(4)
  147. #define WPA_SCAN_ASSOCIATED BIT(5)
  148. /**
  149. * struct wpa_scan_res - Scan result for an BSS/IBSS
  150. * @flags: information flags about the BSS/IBSS (WPA_SCAN_*)
  151. * @bssid: BSSID
  152. * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
  153. * @beacon_int: beacon interval in TUs (host byte order)
  154. * @caps: capability information field in host byte order
  155. * @qual: signal quality
  156. * @noise: noise level
  157. * @level: signal level
  158. * @tsf: Timestamp
  159. * @age: Age of the information in milliseconds (i.e., how many milliseconds
  160. * ago the last Beacon or Probe Response frame was received)
  161. * @ie_len: length of the following IE field in octets
  162. * @beacon_ie_len: length of the following Beacon IE field in octets
  163. *
  164. * This structure is used as a generic format for scan results from the
  165. * driver. Each driver interface implementation is responsible for converting
  166. * the driver or OS specific scan results into this format.
  167. *
  168. * If the driver does not support reporting all IEs, the IE data structure is
  169. * constructed of the IEs that are available. This field will also need to
  170. * include SSID in IE format. All drivers are encouraged to be extended to
  171. * report all IEs to make it easier to support future additions.
  172. */
  173. struct wpa_scan_res {
  174. unsigned int flags;
  175. u8 bssid[ETH_ALEN];
  176. int freq;
  177. u16 beacon_int;
  178. u16 caps;
  179. int qual;
  180. int noise;
  181. int level;
  182. u64 tsf;
  183. unsigned int age;
  184. size_t ie_len;
  185. size_t beacon_ie_len;
  186. /*
  187. * Followed by ie_len octets of IEs from Probe Response frame (or if
  188. * the driver does not indicate source of IEs, these may also be from
  189. * Beacon frame). After the first set of IEs, another set of IEs may
  190. * follow (with beacon_ie_len octets of data) if the driver provides
  191. * both IE sets.
  192. */
  193. };
  194. /**
  195. * struct wpa_scan_results - Scan results
  196. * @res: Array of pointers to allocated variable length scan result entries
  197. * @num: Number of entries in the scan result array
  198. * @fetch_time: Time when the results were fetched from the driver
  199. */
  200. struct wpa_scan_results {
  201. struct wpa_scan_res **res;
  202. size_t num;
  203. struct os_time fetch_time;
  204. };
  205. /**
  206. * struct wpa_interface_info - Network interface information
  207. * @next: Pointer to the next interface or NULL if this is the last one
  208. * @ifname: Interface name that can be used with init() or init2()
  209. * @desc: Human readable adapter description (e.g., vendor/model) or NULL if
  210. * not available
  211. * @drv_name: struct wpa_driver_ops::name (note: unlike other strings, this one
  212. * is not an allocated copy, i.e., get_interfaces() caller will not free
  213. * this)
  214. */
  215. struct wpa_interface_info {
  216. struct wpa_interface_info *next;
  217. char *ifname;
  218. char *desc;
  219. const char *drv_name;
  220. };
  221. #define WPAS_MAX_SCAN_SSIDS 16
  222. /**
  223. * struct wpa_driver_scan_params - Scan parameters
  224. * Data for struct wpa_driver_ops::scan2().
  225. */
  226. struct wpa_driver_scan_params {
  227. /**
  228. * ssids - SSIDs to scan for
  229. */
  230. struct wpa_driver_scan_ssid {
  231. /**
  232. * ssid - specific SSID to scan for (ProbeReq)
  233. * %NULL or zero-length SSID is used to indicate active scan
  234. * with wildcard SSID.
  235. */
  236. const u8 *ssid;
  237. /**
  238. * ssid_len: Length of the SSID in octets
  239. */
  240. size_t ssid_len;
  241. } ssids[WPAS_MAX_SCAN_SSIDS];
  242. /**
  243. * num_ssids - Number of entries in ssids array
  244. * Zero indicates a request for a passive scan.
  245. */
  246. size_t num_ssids;
  247. /**
  248. * extra_ies - Extra IE(s) to add into Probe Request or %NULL
  249. */
  250. const u8 *extra_ies;
  251. /**
  252. * extra_ies_len - Length of extra_ies in octets
  253. */
  254. size_t extra_ies_len;
  255. /**
  256. * freqs - Array of frequencies to scan or %NULL for all frequencies
  257. *
  258. * The frequency is set in MHz. The array is zero-terminated.
  259. */
  260. int *freqs;
  261. /**
  262. * filter_ssids - Filter for reporting SSIDs
  263. *
  264. * This optional parameter can be used to request the driver wrapper to
  265. * filter scan results to include only the specified SSIDs. %NULL
  266. * indicates that no filtering is to be done. This can be used to
  267. * reduce memory needs for scan results in environments that have large
  268. * number of APs with different SSIDs.
  269. *
  270. * The driver wrapper is allowed to take this allocated buffer into its
  271. * own use by setting the pointer to %NULL. In that case, the driver
  272. * wrapper is responsible for freeing the buffer with os_free() once it
  273. * is not needed anymore.
  274. */
  275. struct wpa_driver_scan_filter {
  276. u8 ssid[32];
  277. size_t ssid_len;
  278. } *filter_ssids;
  279. /**
  280. * num_filter_ssids - Number of entries in filter_ssids array
  281. */
  282. size_t num_filter_ssids;
  283. /**
  284. * filter_rssi - Filter by RSSI
  285. *
  286. * The driver may filter scan results in firmware to reduce host
  287. * wakeups and thereby save power. Specify the RSSI threshold in s32
  288. * dBm.
  289. */
  290. s32 filter_rssi;
  291. /**
  292. * p2p_probe - Used to disable CCK (802.11b) rates for P2P probes
  293. *
  294. * When set, the driver is expected to remove rates 1, 2, 5.5, and 11
  295. * Mbps from the support rates element(s) in the Probe Request frames
  296. * and not to transmit the frames at any of those rates.
  297. */
  298. u8 p2p_probe;
  299. };
  300. /**
  301. * struct wpa_driver_auth_params - Authentication parameters
  302. * Data for struct wpa_driver_ops::authenticate().
  303. */
  304. struct wpa_driver_auth_params {
  305. int freq;
  306. const u8 *bssid;
  307. const u8 *ssid;
  308. size_t ssid_len;
  309. int auth_alg;
  310. const u8 *ie;
  311. size_t ie_len;
  312. const u8 *wep_key[4];
  313. size_t wep_key_len[4];
  314. int wep_tx_keyidx;
  315. int local_state_change;
  316. /**
  317. * p2p - Whether this connection is a P2P group
  318. */
  319. int p2p;
  320. const u8 *sae_data;
  321. size_t sae_data_len;
  322. };
  323. enum wps_mode {
  324. WPS_MODE_NONE /* no WPS provisioning being used */,
  325. WPS_MODE_OPEN /* WPS provisioning with AP that is in open mode */,
  326. WPS_MODE_PRIVACY /* WPS provisioning with AP that is using protection
  327. */
  328. };
  329. /**
  330. * struct wpa_driver_associate_params - Association parameters
  331. * Data for struct wpa_driver_ops::associate().
  332. */
  333. struct wpa_driver_associate_params {
  334. /**
  335. * bssid - BSSID of the selected AP
  336. * This can be %NULL, if ap_scan=2 mode is used and the driver is
  337. * responsible for selecting with which BSS to associate. */
  338. const u8 *bssid;
  339. /**
  340. * ssid - The selected SSID
  341. */
  342. const u8 *ssid;
  343. /**
  344. * ssid_len - Length of the SSID (1..32)
  345. */
  346. size_t ssid_len;
  347. /**
  348. * freq - Frequency of the channel the selected AP is using
  349. * Frequency that the selected AP is using (in MHz as
  350. * reported in the scan results)
  351. */
  352. int freq;
  353. /**
  354. * bg_scan_period - Background scan period in seconds, 0 to disable
  355. * background scan, or -1 to indicate no change to default driver
  356. * configuration
  357. */
  358. int bg_scan_period;
  359. /**
  360. * wpa_ie - WPA information element for (Re)Association Request
  361. * WPA information element to be included in (Re)Association
  362. * Request (including information element id and length). Use
  363. * of this WPA IE is optional. If the driver generates the WPA
  364. * IE, it can use pairwise_suite, group_suite, and
  365. * key_mgmt_suite to select proper algorithms. In this case,
  366. * the driver has to notify wpa_supplicant about the used WPA
  367. * IE by generating an event that the interface code will
  368. * convert into EVENT_ASSOCINFO data (see below).
  369. *
  370. * When using WPA2/IEEE 802.11i, wpa_ie is used for RSN IE
  371. * instead. The driver can determine which version is used by
  372. * looking at the first byte of the IE (0xdd for WPA, 0x30 for
  373. * WPA2/RSN).
  374. *
  375. * When using WPS, wpa_ie is used for WPS IE instead of WPA/RSN IE.
  376. */
  377. const u8 *wpa_ie;
  378. /**
  379. * wpa_ie_len - length of the wpa_ie
  380. */
  381. size_t wpa_ie_len;
  382. /**
  383. * wpa_proto - Bitfield of WPA_PROTO_* values to indicate WPA/WPA2
  384. */
  385. unsigned int wpa_proto;
  386. /**
  387. * pairwise_suite - Selected pairwise cipher suite
  388. *
  389. * This is usually ignored if @wpa_ie is used.
  390. */
  391. enum wpa_cipher pairwise_suite;
  392. /**
  393. * group_suite - Selected group cipher suite
  394. *
  395. * This is usually ignored if @wpa_ie is used.
  396. */
  397. enum wpa_cipher group_suite;
  398. /**
  399. * key_mgmt_suite - Selected key management suite
  400. *
  401. * This is usually ignored if @wpa_ie is used.
  402. */
  403. enum wpa_key_mgmt key_mgmt_suite;
  404. /**
  405. * auth_alg - Allowed authentication algorithms
  406. * Bit field of WPA_AUTH_ALG_*
  407. */
  408. int auth_alg;
  409. /**
  410. * mode - Operation mode (infra/ibss) IEEE80211_MODE_*
  411. */
  412. int mode;
  413. /**
  414. * wep_key - WEP keys for static WEP configuration
  415. */
  416. const u8 *wep_key[4];
  417. /**
  418. * wep_key_len - WEP key length for static WEP configuration
  419. */
  420. size_t wep_key_len[4];
  421. /**
  422. * wep_tx_keyidx - WEP TX key index for static WEP configuration
  423. */
  424. int wep_tx_keyidx;
  425. /**
  426. * mgmt_frame_protection - IEEE 802.11w management frame protection
  427. */
  428. enum mfp_options mgmt_frame_protection;
  429. /**
  430. * ft_ies - IEEE 802.11r / FT information elements
  431. * If the supplicant is using IEEE 802.11r (FT) and has the needed keys
  432. * for fast transition, this parameter is set to include the IEs that
  433. * are to be sent in the next FT Authentication Request message.
  434. * update_ft_ies() handler is called to update the IEs for further
  435. * FT messages in the sequence.
  436. *
  437. * The driver should use these IEs only if the target AP is advertising
  438. * the same mobility domain as the one included in the MDIE here.
  439. *
  440. * In ap_scan=2 mode, the driver can use these IEs when moving to a new
  441. * AP after the initial association. These IEs can only be used if the
  442. * target AP is advertising support for FT and is using the same MDIE
  443. * and SSID as the current AP.
  444. *
  445. * The driver is responsible for reporting the FT IEs received from the
  446. * AP's response using wpa_supplicant_event() with EVENT_FT_RESPONSE
  447. * type. update_ft_ies() handler will then be called with the FT IEs to
  448. * include in the next frame in the authentication sequence.
  449. */
  450. const u8 *ft_ies;
  451. /**
  452. * ft_ies_len - Length of ft_ies in bytes
  453. */
  454. size_t ft_ies_len;
  455. /**
  456. * ft_md - FT Mobility domain (6 octets) (also included inside ft_ies)
  457. *
  458. * This value is provided to allow the driver interface easier access
  459. * to the current mobility domain. This value is set to %NULL if no
  460. * mobility domain is currently active.
  461. */
  462. const u8 *ft_md;
  463. /**
  464. * passphrase - RSN passphrase for PSK
  465. *
  466. * This value is made available only for WPA/WPA2-Personal (PSK) and
  467. * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
  468. * the 8..63 character ASCII passphrase, if available. Please note that
  469. * this can be %NULL if passphrase was not used to generate the PSK. In
  470. * that case, the psk field must be used to fetch the PSK.
  471. */
  472. const char *passphrase;
  473. /**
  474. * psk - RSN PSK (alternative for passphrase for PSK)
  475. *
  476. * This value is made available only for WPA/WPA2-Personal (PSK) and
  477. * only for drivers that set WPA_DRIVER_FLAGS_4WAY_HANDSHAKE. This is
  478. * the 32-octet (256-bit) PSK, if available. The driver wrapper should
  479. * be prepared to handle %NULL value as an error.
  480. */
  481. const u8 *psk;
  482. /**
  483. * drop_unencrypted - Enable/disable unencrypted frame filtering
  484. *
  485. * Configure the driver to drop all non-EAPOL frames (both receive and
  486. * transmit paths). Unencrypted EAPOL frames (ethertype 0x888e) must
  487. * still be allowed for key negotiation.
  488. */
  489. int drop_unencrypted;
  490. /**
  491. * prev_bssid - Previously used BSSID in this ESS
  492. *
  493. * When not %NULL, this is a request to use reassociation instead of
  494. * association.
  495. */
  496. const u8 *prev_bssid;
  497. /**
  498. * wps - WPS mode
  499. *
  500. * If the driver needs to do special configuration for WPS association,
  501. * this variable provides more information on what type of association
  502. * is being requested. Most drivers should not need ot use this.
  503. */
  504. enum wps_mode wps;
  505. /**
  506. * p2p - Whether this connection is a P2P group
  507. */
  508. int p2p;
  509. /**
  510. * uapsd - UAPSD parameters for the network
  511. * -1 = do not change defaults
  512. * AP mode: 1 = enabled, 0 = disabled
  513. * STA mode: bits 0..3 UAPSD enabled for VO,VI,BK,BE
  514. */
  515. int uapsd;
  516. /**
  517. * fixed_bssid - Whether to force this BSSID in IBSS mode
  518. * 1 = Fix this BSSID and prevent merges.
  519. * 0 = Do not fix BSSID.
  520. */
  521. int fixed_bssid;
  522. /**
  523. * disable_ht - Disable HT (IEEE 802.11n) for this connection
  524. */
  525. int disable_ht;
  526. /**
  527. * HT Capabilities over-rides. Only bits set in the mask will be used,
  528. * and not all values are used by the kernel anyway. Currently, MCS,
  529. * MPDU and MSDU fields are used.
  530. */
  531. const u8 *htcaps; /* struct ieee80211_ht_capabilities * */
  532. const u8 *htcaps_mask; /* struct ieee80211_ht_capabilities * */
  533. #ifdef CONFIG_VHT_OVERRIDES
  534. /**
  535. * disable_vht - Disable VHT for this connection
  536. */
  537. int disable_vht;
  538. /**
  539. * VHT capability overrides.
  540. */
  541. const struct ieee80211_vht_capabilities *vhtcaps;
  542. const struct ieee80211_vht_capabilities *vhtcaps_mask;
  543. #endif /* CONFIG_VHT_OVERRIDES */
  544. };
  545. enum hide_ssid {
  546. NO_SSID_HIDING,
  547. HIDDEN_SSID_ZERO_LEN,
  548. HIDDEN_SSID_ZERO_CONTENTS
  549. };
  550. struct wpa_driver_ap_params {
  551. /**
  552. * head - Beacon head from IEEE 802.11 header to IEs before TIM IE
  553. */
  554. u8 *head;
  555. /**
  556. * head_len - Length of the head buffer in octets
  557. */
  558. size_t head_len;
  559. /**
  560. * tail - Beacon tail following TIM IE
  561. */
  562. u8 *tail;
  563. /**
  564. * tail_len - Length of the tail buffer in octets
  565. */
  566. size_t tail_len;
  567. /**
  568. * dtim_period - DTIM period
  569. */
  570. int dtim_period;
  571. /**
  572. * beacon_int - Beacon interval
  573. */
  574. int beacon_int;
  575. /**
  576. * basic_rates: -1 terminated array of basic rates in 100 kbps
  577. *
  578. * This parameter can be used to set a specific basic rate set for the
  579. * BSS. If %NULL, default basic rate set is used.
  580. */
  581. int *basic_rates;
  582. /**
  583. * proberesp - Probe Response template
  584. *
  585. * This is used by drivers that reply to Probe Requests internally in
  586. * AP mode and require the full Probe Response template.
  587. */
  588. u8 *proberesp;
  589. /**
  590. * proberesp_len - Length of the proberesp buffer in octets
  591. */
  592. size_t proberesp_len;
  593. /**
  594. * ssid - The SSID to use in Beacon/Probe Response frames
  595. */
  596. const u8 *ssid;
  597. /**
  598. * ssid_len - Length of the SSID (1..32)
  599. */
  600. size_t ssid_len;
  601. /**
  602. * hide_ssid - Whether to hide the SSID
  603. */
  604. enum hide_ssid hide_ssid;
  605. /**
  606. * pairwise_ciphers - WPA_CIPHER_* bitfield
  607. */
  608. unsigned int pairwise_ciphers;
  609. /**
  610. * group_cipher - WPA_CIPHER_*
  611. */
  612. unsigned int group_cipher;
  613. /**
  614. * key_mgmt_suites - WPA_KEY_MGMT_* bitfield
  615. */
  616. unsigned int key_mgmt_suites;
  617. /**
  618. * auth_algs - WPA_AUTH_ALG_* bitfield
  619. */
  620. unsigned int auth_algs;
  621. /**
  622. * wpa_version - WPA_PROTO_* bitfield
  623. */
  624. unsigned int wpa_version;
  625. /**
  626. * privacy - Whether privacy is used in the BSS
  627. */
  628. int privacy;
  629. /**
  630. * beacon_ies - WPS/P2P IE(s) for Beacon frames
  631. *
  632. * This is used to add IEs like WPS IE and P2P IE by drivers that do
  633. * not use the full Beacon template.
  634. */
  635. const struct wpabuf *beacon_ies;
  636. /**
  637. * proberesp_ies - P2P/WPS IE(s) for Probe Response frames
  638. *
  639. * This is used to add IEs like WPS IE and P2P IE by drivers that
  640. * reply to Probe Request frames internally.
  641. */
  642. const struct wpabuf *proberesp_ies;
  643. /**
  644. * assocresp_ies - WPS IE(s) for (Re)Association Response frames
  645. *
  646. * This is used to add IEs like WPS IE by drivers that reply to
  647. * (Re)Association Request frames internally.
  648. */
  649. const struct wpabuf *assocresp_ies;
  650. /**
  651. * isolate - Whether to isolate frames between associated stations
  652. *
  653. * If this is non-zero, the AP is requested to disable forwarding of
  654. * frames between associated stations.
  655. */
  656. int isolate;
  657. /**
  658. * cts_protect - Whether CTS protection is enabled
  659. */
  660. int cts_protect;
  661. /**
  662. * preamble - Whether short preamble is enabled
  663. */
  664. int preamble;
  665. /**
  666. * short_slot_time - Whether short slot time is enabled
  667. *
  668. * 0 = short slot time disable, 1 = short slot time enabled, -1 = do
  669. * not set (e.g., when 802.11g mode is not in use)
  670. */
  671. int short_slot_time;
  672. /**
  673. * ht_opmode - HT operation mode or -1 if HT not in use
  674. */
  675. int ht_opmode;
  676. /**
  677. * interworking - Whether Interworking is enabled
  678. */
  679. int interworking;
  680. /**
  681. * hessid - Homogeneous ESS identifier or %NULL if not set
  682. */
  683. const u8 *hessid;
  684. /**
  685. * access_network_type - Access Network Type (0..15)
  686. *
  687. * This is used for filtering Probe Request frames when Interworking is
  688. * enabled.
  689. */
  690. u8 access_network_type;
  691. /**
  692. * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
  693. *
  694. * This is used by driver which advertises this capability.
  695. */
  696. int ap_max_inactivity;
  697. /**
  698. * disable_dgaf - Whether group-addressed frames are disabled
  699. */
  700. int disable_dgaf;
  701. };
  702. /**
  703. * struct wpa_driver_capa - Driver capability information
  704. */
  705. struct wpa_driver_capa {
  706. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA 0x00000001
  707. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2 0x00000002
  708. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK 0x00000004
  709. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK 0x00000008
  710. #define WPA_DRIVER_CAPA_KEY_MGMT_WPA_NONE 0x00000010
  711. #define WPA_DRIVER_CAPA_KEY_MGMT_FT 0x00000020
  712. #define WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK 0x00000040
  713. #define WPA_DRIVER_CAPA_KEY_MGMT_WAPI_PSK 0x00000080
  714. unsigned int key_mgmt;
  715. #define WPA_DRIVER_CAPA_ENC_WEP40 0x00000001
  716. #define WPA_DRIVER_CAPA_ENC_WEP104 0x00000002
  717. #define WPA_DRIVER_CAPA_ENC_TKIP 0x00000004
  718. #define WPA_DRIVER_CAPA_ENC_CCMP 0x00000008
  719. #define WPA_DRIVER_CAPA_ENC_WEP128 0x00000010
  720. #define WPA_DRIVER_CAPA_ENC_GCMP 0x00000020
  721. unsigned int enc;
  722. #define WPA_DRIVER_AUTH_OPEN 0x00000001
  723. #define WPA_DRIVER_AUTH_SHARED 0x00000002
  724. #define WPA_DRIVER_AUTH_LEAP 0x00000004
  725. unsigned int auth;
  726. /* Driver generated WPA/RSN IE */
  727. #define WPA_DRIVER_FLAGS_DRIVER_IE 0x00000001
  728. /* Driver needs static WEP key setup after association command */
  729. #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC 0x00000002
  730. /* unused: 0x00000004 */
  731. /* Driver takes care of RSN 4-way handshake internally; PMK is configured with
  732. * struct wpa_driver_ops::set_key using alg = WPA_ALG_PMK */
  733. #define WPA_DRIVER_FLAGS_4WAY_HANDSHAKE 0x00000008
  734. #define WPA_DRIVER_FLAGS_WIRED 0x00000010
  735. /* Driver provides separate commands for authentication and association (SME in
  736. * wpa_supplicant). */
  737. #define WPA_DRIVER_FLAGS_SME 0x00000020
  738. /* Driver supports AP mode */
  739. #define WPA_DRIVER_FLAGS_AP 0x00000040
  740. /* Driver needs static WEP key setup after association has been completed */
  741. #define WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE 0x00000080
  742. /* Driver takes care of P2P management operations */
  743. #define WPA_DRIVER_FLAGS_P2P_MGMT 0x00000100
  744. /* Driver supports concurrent P2P operations */
  745. #define WPA_DRIVER_FLAGS_P2P_CONCURRENT 0x00000200
  746. /*
  747. * Driver uses the initial interface as a dedicated management interface, i.e.,
  748. * it cannot be used for P2P group operations or non-P2P purposes.
  749. */
  750. #define WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE 0x00000400
  751. /* This interface is P2P capable (P2P GO or P2P Client) */
  752. #define WPA_DRIVER_FLAGS_P2P_CAPABLE 0x00000800
  753. /* unused: 0x00001000 */
  754. /*
  755. * Driver uses the initial interface for P2P management interface and non-P2P
  756. * purposes (e.g., connect to infra AP), but this interface cannot be used for
  757. * P2P group operations.
  758. */
  759. #define WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P 0x00002000
  760. /*
  761. * Driver is known to use sane error codes, i.e., when it indicates that
  762. * something (e.g., association) fails, there was indeed a failure and the
  763. * operation does not end up getting completed successfully later.
  764. */
  765. #define WPA_DRIVER_FLAGS_SANE_ERROR_CODES 0x00004000
  766. /* Driver supports off-channel TX */
  767. #define WPA_DRIVER_FLAGS_OFFCHANNEL_TX 0x00008000
  768. /* Driver indicates TX status events for EAPOL Data frames */
  769. #define WPA_DRIVER_FLAGS_EAPOL_TX_STATUS 0x00010000
  770. /* Driver indicates TX status events for Deauth/Disassoc frames */
  771. #define WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS 0x00020000
  772. /* Driver supports roaming (BSS selection) in firmware */
  773. #define WPA_DRIVER_FLAGS_BSS_SELECTION 0x00040000
  774. /* Driver supports operating as a TDLS peer */
  775. #define WPA_DRIVER_FLAGS_TDLS_SUPPORT 0x00080000
  776. /* Driver requires external TDLS setup/teardown/discovery */
  777. #define WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP 0x00100000
  778. /* Driver indicates support for Probe Response offloading in AP mode */
  779. #define WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD 0x00200000
  780. /* Driver supports U-APSD in AP mode */
  781. #define WPA_DRIVER_FLAGS_AP_UAPSD 0x00400000
  782. /* Driver supports inactivity timer in AP mode */
  783. #define WPA_DRIVER_FLAGS_INACTIVITY_TIMER 0x00800000
  784. /* Driver expects user space implementation of MLME in AP mode */
  785. #define WPA_DRIVER_FLAGS_AP_MLME 0x01000000
  786. /* Driver supports SAE with user space SME */
  787. #define WPA_DRIVER_FLAGS_SAE 0x02000000
  788. /* Driver makes use of OBSS scan mechanism in wpa_supplicant */
  789. #define WPA_DRIVER_FLAGS_OBSS_SCAN 0x04000000
  790. /* Driver supports IBSS (Ad-hoc) mode */
  791. #define WPA_DRIVER_FLAGS_IBSS 0x08000000
  792. /* Driver supports radar detection */
  793. #define WPA_DRIVER_FLAGS_RADAR 0x10000000
  794. /* Driver supports a dedicated interface for P2P Device */
  795. #define WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE 0x20000000
  796. unsigned int flags;
  797. int max_scan_ssids;
  798. int max_sched_scan_ssids;
  799. int sched_scan_supported;
  800. int max_match_sets;
  801. /**
  802. * max_remain_on_chan - Maximum remain-on-channel duration in msec
  803. */
  804. unsigned int max_remain_on_chan;
  805. /**
  806. * max_stations - Maximum number of associated stations the driver
  807. * supports in AP mode
  808. */
  809. unsigned int max_stations;
  810. /**
  811. * probe_resp_offloads - Bitmap of supported protocols by the driver
  812. * for Probe Response offloading.
  813. */
  814. /* Driver Probe Response offloading support for WPS ver. 1 */
  815. #define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS 0x00000001
  816. /* Driver Probe Response offloading support for WPS ver. 2 */
  817. #define WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2 0x00000002
  818. /* Driver Probe Response offloading support for P2P */
  819. #define WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P 0x00000004
  820. /* Driver Probe Response offloading support for IEEE 802.11u (Interworking) */
  821. #define WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING 0x00000008
  822. unsigned int probe_resp_offloads;
  823. unsigned int max_acl_mac_addrs;
  824. /**
  825. * Number of supported concurrent channels
  826. */
  827. unsigned int num_multichan_concurrent;
  828. /**
  829. * extended_capa - extended capabilities in driver/device
  830. *
  831. * Must be allocated and freed by driver and the pointers must be
  832. * valid for the lifetime of the driver, i.e., freed in deinit()
  833. */
  834. const u8 *extended_capa, *extended_capa_mask;
  835. unsigned int extended_capa_len;
  836. };
  837. struct hostapd_data;
  838. struct hostap_sta_driver_data {
  839. unsigned long rx_packets, tx_packets, rx_bytes, tx_bytes;
  840. unsigned long current_tx_rate;
  841. unsigned long inactive_msec;
  842. unsigned long flags;
  843. unsigned long num_ps_buf_frames;
  844. unsigned long tx_retry_failed;
  845. unsigned long tx_retry_count;
  846. int last_rssi;
  847. int last_ack_rssi;
  848. };
  849. struct hostapd_sta_add_params {
  850. const u8 *addr;
  851. u16 aid;
  852. u16 capability;
  853. const u8 *supp_rates;
  854. size_t supp_rates_len;
  855. u16 listen_interval;
  856. const struct ieee80211_ht_capabilities *ht_capabilities;
  857. const struct ieee80211_vht_capabilities *vht_capabilities;
  858. u32 flags; /* bitmask of WPA_STA_* flags */
  859. int set; /* Set STA parameters instead of add */
  860. u8 qosinfo;
  861. const u8 *ext_capab;
  862. size_t ext_capab_len;
  863. };
  864. struct hostapd_freq_params {
  865. int mode;
  866. int freq;
  867. int channel;
  868. /* for HT */
  869. int ht_enabled;
  870. int sec_channel_offset; /* 0 = HT40 disabled, -1 = HT40 enabled,
  871. * secondary channel below primary, 1 = HT40
  872. * enabled, secondary channel above primary */
  873. /* for VHT */
  874. int vht_enabled;
  875. /* valid for both HT and VHT, center_freq2 is non-zero
  876. * only for bandwidth 80 and an 80+80 channel */
  877. int center_freq1, center_freq2;
  878. int bandwidth;
  879. };
  880. struct mac_address {
  881. u8 addr[ETH_ALEN];
  882. };
  883. struct hostapd_acl_params {
  884. u8 acl_policy;
  885. unsigned int num_mac_acl;
  886. struct mac_address mac_acl[0];
  887. };
  888. enum wpa_driver_if_type {
  889. /**
  890. * WPA_IF_STATION - Station mode interface
  891. */
  892. WPA_IF_STATION,
  893. /**
  894. * WPA_IF_AP_VLAN - AP mode VLAN interface
  895. *
  896. * This interface shares its address and Beacon frame with the main
  897. * BSS.
  898. */
  899. WPA_IF_AP_VLAN,
  900. /**
  901. * WPA_IF_AP_BSS - AP mode BSS interface
  902. *
  903. * This interface has its own address and Beacon frame.
  904. */
  905. WPA_IF_AP_BSS,
  906. /**
  907. * WPA_IF_P2P_GO - P2P Group Owner
  908. */
  909. WPA_IF_P2P_GO,
  910. /**
  911. * WPA_IF_P2P_CLIENT - P2P Client
  912. */
  913. WPA_IF_P2P_CLIENT,
  914. /**
  915. * WPA_IF_P2P_GROUP - P2P Group interface (will become either
  916. * WPA_IF_P2P_GO or WPA_IF_P2P_CLIENT, but the role is not yet known)
  917. */
  918. WPA_IF_P2P_GROUP,
  919. /**
  920. * WPA_IF_P2P_DEVICE - P2P Device interface is used to indentify the
  921. * abstracted P2P Device function in the driver
  922. */
  923. WPA_IF_P2P_DEVICE
  924. };
  925. struct wpa_init_params {
  926. void *global_priv;
  927. const u8 *bssid;
  928. const char *ifname;
  929. const u8 *ssid;
  930. size_t ssid_len;
  931. const char *test_socket;
  932. int use_pae_group_addr;
  933. char **bridge;
  934. size_t num_bridge;
  935. u8 *own_addr; /* buffer for writing own MAC address */
  936. };
  937. struct wpa_bss_params {
  938. /** Interface name (for multi-SSID/VLAN support) */
  939. const char *ifname;
  940. /** Whether IEEE 802.1X or WPA/WPA2 is enabled */
  941. int enabled;
  942. int wpa;
  943. int ieee802_1x;
  944. int wpa_group;
  945. int wpa_pairwise;
  946. int wpa_key_mgmt;
  947. int rsn_preauth;
  948. enum mfp_options ieee80211w;
  949. };
  950. #define WPA_STA_AUTHORIZED BIT(0)
  951. #define WPA_STA_WMM BIT(1)
  952. #define WPA_STA_SHORT_PREAMBLE BIT(2)
  953. #define WPA_STA_MFP BIT(3)
  954. #define WPA_STA_TDLS_PEER BIT(4)
  955. /**
  956. * struct p2p_params - P2P parameters for driver-based P2P management
  957. */
  958. struct p2p_params {
  959. const char *dev_name;
  960. u8 pri_dev_type[8];
  961. #define DRV_MAX_SEC_DEV_TYPES 5
  962. u8 sec_dev_type[DRV_MAX_SEC_DEV_TYPES][8];
  963. size_t num_sec_dev_types;
  964. };
  965. enum tdls_oper {
  966. TDLS_DISCOVERY_REQ,
  967. TDLS_SETUP,
  968. TDLS_TEARDOWN,
  969. TDLS_ENABLE_LINK,
  970. TDLS_DISABLE_LINK,
  971. TDLS_ENABLE,
  972. TDLS_DISABLE
  973. };
  974. enum wnm_oper {
  975. WNM_SLEEP_ENTER_CONFIRM,
  976. WNM_SLEEP_ENTER_FAIL,
  977. WNM_SLEEP_EXIT_CONFIRM,
  978. WNM_SLEEP_EXIT_FAIL,
  979. WNM_SLEEP_TFS_REQ_IE_ADD, /* STA requests driver to add TFS req IE */
  980. WNM_SLEEP_TFS_REQ_IE_NONE, /* STA requests empty TFS req IE */
  981. WNM_SLEEP_TFS_REQ_IE_SET, /* AP requests driver to set TFS req IE for
  982. * a STA */
  983. WNM_SLEEP_TFS_RESP_IE_ADD, /* AP requests driver to add TFS resp IE
  984. * for a STA */
  985. WNM_SLEEP_TFS_RESP_IE_NONE, /* AP requests empty TFS resp IE */
  986. WNM_SLEEP_TFS_RESP_IE_SET, /* AP requests driver to set TFS resp IE
  987. * for a STA */
  988. WNM_SLEEP_TFS_IE_DEL /* AP delete the TFS IE */
  989. };
  990. /* enum chan_width - Channel width definitions */
  991. enum chan_width {
  992. CHAN_WIDTH_20_NOHT,
  993. CHAN_WIDTH_20,
  994. CHAN_WIDTH_40,
  995. CHAN_WIDTH_80,
  996. CHAN_WIDTH_80P80,
  997. CHAN_WIDTH_160,
  998. CHAN_WIDTH_UNKNOWN
  999. };
  1000. /**
  1001. * struct wpa_signal_info - Information about channel signal quality
  1002. */
  1003. struct wpa_signal_info {
  1004. u32 frequency;
  1005. int above_threshold;
  1006. int current_signal;
  1007. int avg_signal;
  1008. int current_noise;
  1009. int current_txrate;
  1010. enum chan_width chanwidth;
  1011. int center_frq1;
  1012. int center_frq2;
  1013. };
  1014. /**
  1015. * struct beacon_data - Beacon data
  1016. * @head: Head portion of Beacon frame (before TIM IE)
  1017. * @tail: Tail portion of Beacon frame (after TIM IE)
  1018. * @beacon_ies: Extra information element(s) to add into Beacon frames or %NULL
  1019. * @proberesp_ies: Extra information element(s) to add into Probe Response
  1020. * frames or %NULL
  1021. * @assocresp_ies: Extra information element(s) to add into (Re)Association
  1022. * Response frames or %NULL
  1023. * @probe_resp: Probe Response frame template
  1024. * @head_len: Length of @head
  1025. * @tail_len: Length of @tail
  1026. * @beacon_ies_len: Length of beacon_ies in octets
  1027. * @proberesp_ies_len: Length of proberesp_ies in octets
  1028. * @proberesp_ies_len: Length of proberesp_ies in octets
  1029. * @probe_resp_len: Length of probe response template (@probe_resp)
  1030. */
  1031. struct beacon_data {
  1032. u8 *head, *tail;
  1033. u8 *beacon_ies;
  1034. u8 *proberesp_ies;
  1035. u8 *assocresp_ies;
  1036. u8 *probe_resp;
  1037. size_t head_len, tail_len;
  1038. size_t beacon_ies_len;
  1039. size_t proberesp_ies_len;
  1040. size_t assocresp_ies_len;
  1041. size_t probe_resp_len;
  1042. };
  1043. /**
  1044. * struct csa_settings - Settings for channel switch command
  1045. * @cs_count: Count in Beacon frames (TBTT) to perform the switch
  1046. * @block_tx: 1 - block transmission for CSA period
  1047. * @freq_params: Next channel frequency parameter
  1048. * @beacon_csa: Beacon/probe resp/asooc resp info for CSA period
  1049. * @beacon_after: Next beacon/probe resp/asooc resp info
  1050. * @counter_offset_beacon: Offset to the count field in beacon's tail
  1051. * @counter_offset_presp: Offset to the count field in probe resp.
  1052. */
  1053. struct csa_settings {
  1054. u8 cs_count;
  1055. u8 block_tx;
  1056. struct hostapd_freq_params freq_params;
  1057. struct beacon_data beacon_csa;
  1058. struct beacon_data beacon_after;
  1059. u16 counter_offset_beacon;
  1060. u16 counter_offset_presp;
  1061. };
  1062. /**
  1063. * struct wpa_driver_ops - Driver interface API definition
  1064. *
  1065. * This structure defines the API that each driver interface needs to implement
  1066. * for core wpa_supplicant code. All driver specific functionality is captured
  1067. * in this wrapper.
  1068. */
  1069. struct wpa_driver_ops {
  1070. /** Name of the driver interface */
  1071. const char *name;
  1072. /** One line description of the driver interface */
  1073. const char *desc;
  1074. /**
  1075. * get_bssid - Get the current BSSID
  1076. * @priv: private driver interface data
  1077. * @bssid: buffer for BSSID (ETH_ALEN = 6 bytes)
  1078. *
  1079. * Returns: 0 on success, -1 on failure
  1080. *
  1081. * Query kernel driver for the current BSSID and copy it to bssid.
  1082. * Setting bssid to 00:00:00:00:00:00 is recommended if the STA is not
  1083. * associated.
  1084. */
  1085. int (*get_bssid)(void *priv, u8 *bssid);
  1086. /**
  1087. * get_ssid - Get the current SSID
  1088. * @priv: private driver interface data
  1089. * @ssid: buffer for SSID (at least 32 bytes)
  1090. *
  1091. * Returns: Length of the SSID on success, -1 on failure
  1092. *
  1093. * Query kernel driver for the current SSID and copy it to ssid.
  1094. * Returning zero is recommended if the STA is not associated.
  1095. *
  1096. * Note: SSID is an array of octets, i.e., it is not nul terminated and
  1097. * can, at least in theory, contain control characters (including nul)
  1098. * and as such, should be processed as binary data, not a printable
  1099. * string.
  1100. */
  1101. int (*get_ssid)(void *priv, u8 *ssid);
  1102. /**
  1103. * set_key - Configure encryption key
  1104. * @ifname: Interface name (for multi-SSID/VLAN support)
  1105. * @priv: private driver interface data
  1106. * @alg: encryption algorithm (%WPA_ALG_NONE, %WPA_ALG_WEP,
  1107. * %WPA_ALG_TKIP, %WPA_ALG_CCMP, %WPA_ALG_IGTK, %WPA_ALG_PMK,
  1108. * %WPA_ALG_GCMP);
  1109. * %WPA_ALG_NONE clears the key.
  1110. * @addr: Address of the peer STA (BSSID of the current AP when setting
  1111. * pairwise key in station mode), ff:ff:ff:ff:ff:ff for
  1112. * broadcast keys, %NULL for default keys that are used both for
  1113. * broadcast and unicast; when clearing keys, %NULL is used to
  1114. * indicate that both the broadcast-only and default key of the
  1115. * specified key index is to be cleared
  1116. * @key_idx: key index (0..3), usually 0 for unicast keys; 0..4095 for
  1117. * IGTK
  1118. * @set_tx: configure this key as the default Tx key (only used when
  1119. * driver does not support separate unicast/individual key
  1120. * @seq: sequence number/packet number, seq_len octets, the next
  1121. * packet number to be used for in replay protection; configured
  1122. * for Rx keys (in most cases, this is only used with broadcast
  1123. * keys and set to zero for unicast keys); %NULL if not set
  1124. * @seq_len: length of the seq, depends on the algorithm:
  1125. * TKIP: 6 octets, CCMP/GCMP: 6 octets, IGTK: 6 octets
  1126. * @key: key buffer; TKIP: 16-byte temporal key, 8-byte Tx Mic key,
  1127. * 8-byte Rx Mic Key
  1128. * @key_len: length of the key buffer in octets (WEP: 5 or 13,
  1129. * TKIP: 32, CCMP/GCMP: 16, IGTK: 16)
  1130. *
  1131. * Returns: 0 on success, -1 on failure
  1132. *
  1133. * Configure the given key for the kernel driver. If the driver
  1134. * supports separate individual keys (4 default keys + 1 individual),
  1135. * addr can be used to determine whether the key is default or
  1136. * individual. If only 4 keys are supported, the default key with key
  1137. * index 0 is used as the individual key. STA must be configured to use
  1138. * it as the default Tx key (set_tx is set) and accept Rx for all the
  1139. * key indexes. In most cases, WPA uses only key indexes 1 and 2 for
  1140. * broadcast keys, so key index 0 is available for this kind of
  1141. * configuration.
  1142. *
  1143. * Please note that TKIP keys include separate TX and RX MIC keys and
  1144. * some drivers may expect them in different order than wpa_supplicant
  1145. * is using. If the TX/RX keys are swapped, all TKIP encrypted packets
  1146. * will trigger Michael MIC errors. This can be fixed by changing the
  1147. * order of MIC keys by swapping te bytes 16..23 and 24..31 of the key
  1148. * in driver_*.c set_key() implementation, see driver_ndis.c for an
  1149. * example on how this can be done.
  1150. */
  1151. int (*set_key)(const char *ifname, void *priv, enum wpa_alg alg,
  1152. const u8 *addr, int key_idx, int set_tx,
  1153. const u8 *seq, size_t seq_len,
  1154. const u8 *key, size_t key_len);
  1155. /**
  1156. * init - Initialize driver interface
  1157. * @ctx: context to be used when calling wpa_supplicant functions,
  1158. * e.g., wpa_supplicant_event()
  1159. * @ifname: interface name, e.g., wlan0
  1160. *
  1161. * Returns: Pointer to private data, %NULL on failure
  1162. *
  1163. * Initialize driver interface, including event processing for kernel
  1164. * driver events (e.g., associated, scan results, Michael MIC failure).
  1165. * This function can allocate a private configuration data area for
  1166. * @ctx, file descriptor, interface name, etc. information that may be
  1167. * needed in future driver operations. If this is not used, non-NULL
  1168. * value will need to be returned because %NULL is used to indicate
  1169. * failure. The returned value will be used as 'void *priv' data for
  1170. * all other driver_ops functions.
  1171. *
  1172. * The main event loop (eloop.c) of wpa_supplicant can be used to
  1173. * register callback for read sockets (eloop_register_read_sock()).
  1174. *
  1175. * See below for more information about events and
  1176. * wpa_supplicant_event() function.
  1177. */
  1178. void * (*init)(void *ctx, const char *ifname);
  1179. /**
  1180. * deinit - Deinitialize driver interface
  1181. * @priv: private driver interface data from init()
  1182. *
  1183. * Shut down driver interface and processing of driver events. Free
  1184. * private data buffer if one was allocated in init() handler.
  1185. */
  1186. void (*deinit)(void *priv);
  1187. /**
  1188. * set_param - Set driver configuration parameters
  1189. * @priv: private driver interface data from init()
  1190. * @param: driver specific configuration parameters
  1191. *
  1192. * Returns: 0 on success, -1 on failure
  1193. *
  1194. * Optional handler for notifying driver interface about configuration
  1195. * parameters (driver_param).
  1196. */
  1197. int (*set_param)(void *priv, const char *param);
  1198. /**
  1199. * set_countermeasures - Enable/disable TKIP countermeasures
  1200. * @priv: private driver interface data
  1201. * @enabled: 1 = countermeasures enabled, 0 = disabled
  1202. *
  1203. * Returns: 0 on success, -1 on failure
  1204. *
  1205. * Configure TKIP countermeasures. When these are enabled, the driver
  1206. * should drop all received and queued frames that are using TKIP.
  1207. */
  1208. int (*set_countermeasures)(void *priv, int enabled);
  1209. /**
  1210. * deauthenticate - Request driver to deauthenticate
  1211. * @priv: private driver interface data
  1212. * @addr: peer address (BSSID of the AP)
  1213. * @reason_code: 16-bit reason code to be sent in the deauthentication
  1214. * frame
  1215. *
  1216. * Returns: 0 on success, -1 on failure
  1217. */
  1218. int (*deauthenticate)(void *priv, const u8 *addr, int reason_code);
  1219. /**
  1220. * associate - Request driver to associate
  1221. * @priv: private driver interface data
  1222. * @params: association parameters
  1223. *
  1224. * Returns: 0 on success, -1 on failure
  1225. */
  1226. int (*associate)(void *priv,
  1227. struct wpa_driver_associate_params *params);
  1228. /**
  1229. * add_pmkid - Add PMKSA cache entry to the driver
  1230. * @priv: private driver interface data
  1231. * @bssid: BSSID for the PMKSA cache entry
  1232. * @pmkid: PMKID for the PMKSA cache entry
  1233. *
  1234. * Returns: 0 on success, -1 on failure
  1235. *
  1236. * This function is called when a new PMK is received, as a result of
  1237. * either normal authentication or RSN pre-authentication.
  1238. *
  1239. * If the driver generates RSN IE, i.e., it does not use wpa_ie in
  1240. * associate(), add_pmkid() can be used to add new PMKSA cache entries
  1241. * in the driver. If the driver uses wpa_ie from wpa_supplicant, this
  1242. * driver_ops function does not need to be implemented. Likewise, if
  1243. * the driver does not support WPA, this function is not needed.
  1244. */
  1245. int (*add_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
  1246. /**
  1247. * remove_pmkid - Remove PMKSA cache entry to the driver
  1248. * @priv: private driver interface data
  1249. * @bssid: BSSID for the PMKSA cache entry
  1250. * @pmkid: PMKID for the PMKSA cache entry
  1251. *
  1252. * Returns: 0 on success, -1 on failure
  1253. *
  1254. * This function is called when the supplicant drops a PMKSA cache
  1255. * entry for any reason.
  1256. *
  1257. * If the driver generates RSN IE, i.e., it does not use wpa_ie in
  1258. * associate(), remove_pmkid() can be used to synchronize PMKSA caches
  1259. * between the driver and wpa_supplicant. If the driver uses wpa_ie
  1260. * from wpa_supplicant, this driver_ops function does not need to be
  1261. * implemented. Likewise, if the driver does not support WPA, this
  1262. * function is not needed.
  1263. */
  1264. int (*remove_pmkid)(void *priv, const u8 *bssid, const u8 *pmkid);
  1265. /**
  1266. * flush_pmkid - Flush PMKSA cache
  1267. * @priv: private driver interface data
  1268. *
  1269. * Returns: 0 on success, -1 on failure
  1270. *
  1271. * This function is called when the supplicant drops all PMKSA cache
  1272. * entries for any reason.
  1273. *
  1274. * If the driver generates RSN IE, i.e., it does not use wpa_ie in
  1275. * associate(), remove_pmkid() can be used to synchronize PMKSA caches
  1276. * between the driver and wpa_supplicant. If the driver uses wpa_ie
  1277. * from wpa_supplicant, this driver_ops function does not need to be
  1278. * implemented. Likewise, if the driver does not support WPA, this
  1279. * function is not needed.
  1280. */
  1281. int (*flush_pmkid)(void *priv);
  1282. /**
  1283. * get_capa - Get driver capabilities
  1284. * @priv: private driver interface data
  1285. *
  1286. * Returns: 0 on success, -1 on failure
  1287. *
  1288. * Get driver/firmware/hardware capabilities.
  1289. */
  1290. int (*get_capa)(void *priv, struct wpa_driver_capa *capa);
  1291. /**
  1292. * poll - Poll driver for association information
  1293. * @priv: private driver interface data
  1294. *
  1295. * This is an option callback that can be used when the driver does not
  1296. * provide event mechanism for association events. This is called when
  1297. * receiving WPA EAPOL-Key messages that require association
  1298. * information. The driver interface is supposed to generate associnfo
  1299. * event before returning from this callback function. In addition, the
  1300. * driver interface should generate an association event after having
  1301. * sent out associnfo.
  1302. */
  1303. void (*poll)(void *priv);
  1304. /**
  1305. * get_ifname - Get interface name
  1306. * @priv: private driver interface data
  1307. *
  1308. * Returns: Pointer to the interface name. This can differ from the
  1309. * interface name used in init() call. Init() is called first.
  1310. *
  1311. * This optional function can be used to allow the driver interface to
  1312. * replace the interface name with something else, e.g., based on an
  1313. * interface mapping from a more descriptive name.
  1314. */
  1315. const char * (*get_ifname)(void *priv);
  1316. /**
  1317. * get_mac_addr - Get own MAC address
  1318. * @priv: private driver interface data
  1319. *
  1320. * Returns: Pointer to own MAC address or %NULL on failure
  1321. *
  1322. * This optional function can be used to get the own MAC address of the
  1323. * device from the driver interface code. This is only needed if the
  1324. * l2_packet implementation for the OS does not provide easy access to
  1325. * a MAC address. */
  1326. const u8 * (*get_mac_addr)(void *priv);
  1327. /**
  1328. * send_eapol - Optional function for sending EAPOL packets
  1329. * @priv: private driver interface data
  1330. * @dest: Destination MAC address
  1331. * @proto: Ethertype
  1332. * @data: EAPOL packet starting with IEEE 802.1X header
  1333. * @data_len: Size of the EAPOL packet
  1334. *
  1335. * Returns: 0 on success, -1 on failure
  1336. *
  1337. * This optional function can be used to override l2_packet operations
  1338. * with driver specific functionality. If this function pointer is set,
  1339. * l2_packet module is not used at all and the driver interface code is
  1340. * responsible for receiving and sending all EAPOL packets. The
  1341. * received EAPOL packets are sent to core code with EVENT_EAPOL_RX
  1342. * event. The driver interface is required to implement get_mac_addr()
  1343. * handler if send_eapol() is used.
  1344. */
  1345. int (*send_eapol)(void *priv, const u8 *dest, u16 proto,
  1346. const u8 *data, size_t data_len);
  1347. /**
  1348. * set_operstate - Sets device operating state to DORMANT or UP
  1349. * @priv: private driver interface data
  1350. * @state: 0 = dormant, 1 = up
  1351. * Returns: 0 on success, -1 on failure
  1352. *
  1353. * This is an optional function that can be used on operating systems
  1354. * that support a concept of controlling network device state from user
  1355. * space applications. This function, if set, gets called with
  1356. * state = 1 when authentication has been completed and with state = 0
  1357. * when connection is lost.
  1358. */
  1359. int (*set_operstate)(void *priv, int state);
  1360. /**
  1361. * mlme_setprotection - MLME-SETPROTECTION.request primitive
  1362. * @priv: Private driver interface data
  1363. * @addr: Address of the station for which to set protection (may be
  1364. * %NULL for group keys)
  1365. * @protect_type: MLME_SETPROTECTION_PROTECT_TYPE_*
  1366. * @key_type: MLME_SETPROTECTION_KEY_TYPE_*
  1367. * Returns: 0 on success, -1 on failure
  1368. *
  1369. * This is an optional function that can be used to set the driver to
  1370. * require protection for Tx and/or Rx frames. This uses the layer
  1371. * interface defined in IEEE 802.11i-2004 clause 10.3.22.1
  1372. * (MLME-SETPROTECTION.request). Many drivers do not use explicit
  1373. * set protection operation; instead, they set protection implicitly
  1374. * based on configured keys.
  1375. */
  1376. int (*mlme_setprotection)(void *priv, const u8 *addr, int protect_type,
  1377. int key_type);
  1378. /**
  1379. * get_hw_feature_data - Get hardware support data (channels and rates)
  1380. * @priv: Private driver interface data
  1381. * @num_modes: Variable for returning the number of returned modes
  1382. * flags: Variable for returning hardware feature flags
  1383. * Returns: Pointer to allocated hardware data on success or %NULL on
  1384. * failure. Caller is responsible for freeing this.
  1385. */
  1386. struct hostapd_hw_modes * (*get_hw_feature_data)(void *priv,
  1387. u16 *num_modes,
  1388. u16 *flags);
  1389. /**
  1390. * send_mlme - Send management frame from MLME
  1391. * @priv: Private driver interface data
  1392. * @data: IEEE 802.11 management frame with IEEE 802.11 header
  1393. * @data_len: Size of the management frame
  1394. * @noack: Do not wait for this frame to be acked (disable retries)
  1395. * Returns: 0 on success, -1 on failure
  1396. */
  1397. int (*send_mlme)(void *priv, const u8 *data, size_t data_len,
  1398. int noack);
  1399. /**
  1400. * update_ft_ies - Update FT (IEEE 802.11r) IEs
  1401. * @priv: Private driver interface data
  1402. * @md: Mobility domain (2 octets) (also included inside ies)
  1403. * @ies: FT IEs (MDIE, FTIE, ...) or %NULL to remove IEs
  1404. * @ies_len: Length of FT IEs in bytes
  1405. * Returns: 0 on success, -1 on failure
  1406. *
  1407. * The supplicant uses this callback to let the driver know that keying
  1408. * material for FT is available and that the driver can use the
  1409. * provided IEs in the next message in FT authentication sequence.
  1410. *
  1411. * This function is only needed for driver that support IEEE 802.11r
  1412. * (Fast BSS Transition).
  1413. */
  1414. int (*update_ft_ies)(void *priv, const u8 *md, const u8 *ies,
  1415. size_t ies_len);
  1416. /**
  1417. * send_ft_action - Send FT Action frame (IEEE 802.11r)
  1418. * @priv: Private driver interface data
  1419. * @action: Action field value
  1420. * @target_ap: Target AP address
  1421. * @ies: FT IEs (MDIE, FTIE, ...) (FT Request action frame body)
  1422. * @ies_len: Length of FT IEs in bytes
  1423. * Returns: 0 on success, -1 on failure
  1424. *
  1425. * The supplicant uses this callback to request the driver to transmit
  1426. * an FT Action frame (action category 6) for over-the-DS fast BSS
  1427. * transition.
  1428. */
  1429. int (*send_ft_action)(void *priv, u8 action, const u8 *target_ap,
  1430. const u8 *ies, size_t ies_len);
  1431. /**
  1432. * get_scan_results2 - Fetch the latest scan results
  1433. * @priv: private driver interface data
  1434. *
  1435. * Returns: Allocated buffer of scan results (caller is responsible for
  1436. * freeing the data structure) on success, NULL on failure
  1437. */
  1438. struct wpa_scan_results * (*get_scan_results2)(void *priv);
  1439. /**
  1440. * set_country - Set country
  1441. * @priv: Private driver interface data
  1442. * @alpha2: country to which to switch to
  1443. * Returns: 0 on success, -1 on failure
  1444. *
  1445. * This function is for drivers which support some form
  1446. * of setting a regulatory domain.
  1447. */
  1448. int (*set_country)(void *priv, const char *alpha2);
  1449. /**
  1450. * get_country - Get country
  1451. * @priv: Private driver interface data
  1452. * @alpha2: Buffer for returning country code (at least 3 octets)
  1453. * Returns: 0 on success, -1 on failure
  1454. */
  1455. int (*get_country)(void *priv, char *alpha2);
  1456. /**
  1457. * global_init - Global driver initialization
  1458. * Returns: Pointer to private data (global), %NULL on failure
  1459. *
  1460. * This optional function is called to initialize the driver wrapper
  1461. * for global data, i.e., data that applies to all interfaces. If this
  1462. * function is implemented, global_deinit() will also need to be
  1463. * implemented to free the private data. The driver will also likely
  1464. * use init2() function instead of init() to get the pointer to global
  1465. * data available to per-interface initializer.
  1466. */
  1467. void * (*global_init)(void);
  1468. /**
  1469. * global_deinit - Global driver deinitialization
  1470. * @priv: private driver global data from global_init()
  1471. *
  1472. * Terminate any global driver related functionality and free the
  1473. * global data structure.
  1474. */
  1475. void (*global_deinit)(void *priv);
  1476. /**
  1477. * init2 - Initialize driver interface (with global data)
  1478. * @ctx: context to be used when calling wpa_supplicant functions,
  1479. * e.g., wpa_supplicant_event()
  1480. * @ifname: interface name, e.g., wlan0
  1481. * @global_priv: private driver global data from global_init()
  1482. * Returns: Pointer to private data, %NULL on failure
  1483. *
  1484. * This function can be used instead of init() if the driver wrapper
  1485. * uses global data.
  1486. */
  1487. void * (*init2)(void *ctx, const char *ifname, void *global_priv);
  1488. /**
  1489. * get_interfaces - Get information about available interfaces
  1490. * @global_priv: private driver global data from global_init()
  1491. * Returns: Allocated buffer of interface information (caller is
  1492. * responsible for freeing the data structure) on success, NULL on
  1493. * failure
  1494. */
  1495. struct wpa_interface_info * (*get_interfaces)(void *global_priv);
  1496. /**
  1497. * scan2 - Request the driver to initiate scan
  1498. * @priv: private driver interface data
  1499. * @params: Scan parameters
  1500. *
  1501. * Returns: 0 on success, -1 on failure
  1502. *
  1503. * Once the scan results are ready, the driver should report scan
  1504. * results event for wpa_supplicant which will eventually request the
  1505. * results with wpa_driver_get_scan_results2().
  1506. */
  1507. int (*scan2)(void *priv, struct wpa_driver_scan_params *params);
  1508. /**
  1509. * authenticate - Request driver to authenticate
  1510. * @priv: private driver interface data
  1511. * @params: authentication parameters
  1512. * Returns: 0 on success, -1 on failure
  1513. *
  1514. * This is an optional function that can be used with drivers that
  1515. * support separate authentication and association steps, i.e., when
  1516. * wpa_supplicant can act as the SME. If not implemented, associate()
  1517. * function is expected to take care of IEEE 802.11 authentication,
  1518. * too.
  1519. */
  1520. int (*authenticate)(void *priv,
  1521. struct wpa_driver_auth_params *params);
  1522. /**
  1523. * set_ap - Set Beacon and Probe Response information for AP mode
  1524. * @priv: Private driver interface data
  1525. * @params: Parameters to use in AP mode
  1526. *
  1527. * This function is used to configure Beacon template and/or extra IEs
  1528. * to add for Beacon and Probe Response frames for the driver in
  1529. * AP mode. The driver is responsible for building the full Beacon
  1530. * frame by concatenating the head part with TIM IE generated by the
  1531. * driver/firmware and finishing with the tail part. Depending on the
  1532. * driver architectue, this can be done either by using the full
  1533. * template or the set of additional IEs (e.g., WPS and P2P IE).
  1534. * Similarly, Probe Response processing depends on the driver design.
  1535. * If the driver (or firmware) takes care of replying to Probe Request
  1536. * frames, the extra IEs provided here needs to be added to the Probe
  1537. * Response frames.
  1538. *
  1539. * Returns: 0 on success, -1 on failure
  1540. */
  1541. int (*set_ap)(void *priv, struct wpa_driver_ap_params *params);
  1542. /**
  1543. * set_acl - Set ACL in AP mode
  1544. * @priv: Private driver interface data
  1545. * @params: Parameters to configure ACL
  1546. * Returns: 0 on success, -1 on failure
  1547. *
  1548. * This is used only for the drivers which support MAC address ACL.
  1549. */
  1550. int (*set_acl)(void *priv, struct hostapd_acl_params *params);
  1551. /**
  1552. * hapd_init - Initialize driver interface (hostapd only)
  1553. * @hapd: Pointer to hostapd context
  1554. * @params: Configuration for the driver wrapper
  1555. * Returns: Pointer to private data, %NULL on failure
  1556. *
  1557. * This function is used instead of init() or init2() when the driver
  1558. * wrapper is used with hostapd.
  1559. */
  1560. void * (*hapd_init)(struct hostapd_data *hapd,
  1561. struct wpa_init_params *params);
  1562. /**
  1563. * hapd_deinit - Deinitialize driver interface (hostapd only)
  1564. * @priv: Private driver interface data from hapd_init()
  1565. */
  1566. void (*hapd_deinit)(void *priv);
  1567. /**
  1568. * set_ieee8021x - Enable/disable IEEE 802.1X support (AP only)
  1569. * @priv: Private driver interface data
  1570. * @params: BSS parameters
  1571. * Returns: 0 on success, -1 on failure
  1572. *
  1573. * This is an optional function to configure the kernel driver to
  1574. * enable/disable IEEE 802.1X support and set WPA/WPA2 parameters. This
  1575. * can be left undefined (set to %NULL) if IEEE 802.1X support is
  1576. * always enabled and the driver uses set_ap() to set WPA/RSN IE
  1577. * for Beacon frames.
  1578. *
  1579. * DEPRECATED - use set_ap() instead
  1580. */
  1581. int (*set_ieee8021x)(void *priv, struct wpa_bss_params *params);
  1582. /**
  1583. * set_privacy - Enable/disable privacy (AP only)
  1584. * @priv: Private driver interface data
  1585. * @enabled: 1 = privacy enabled, 0 = disabled
  1586. * Returns: 0 on success, -1 on failure
  1587. *
  1588. * This is an optional function to configure privacy field in the
  1589. * kernel driver for Beacon frames. This can be left undefined (set to
  1590. * %NULL) if the driver uses the Beacon template from set_ap().
  1591. *
  1592. * DEPRECATED - use set_ap() instead
  1593. */
  1594. int (*set_privacy)(void *priv, int enabled);
  1595. /**
  1596. * get_seqnum - Fetch the current TSC/packet number (AP only)
  1597. * @ifname: The interface name (main or virtual)
  1598. * @priv: Private driver interface data
  1599. * @addr: MAC address of the station or %NULL for group keys
  1600. * @idx: Key index
  1601. * @seq: Buffer for returning the latest used TSC/packet number
  1602. * Returns: 0 on success, -1 on failure
  1603. *
  1604. * This function is used to fetch the last used TSC/packet number for
  1605. * a TKIP, CCMP, GCMP, or BIP/IGTK key. It is mainly used with group
  1606. * keys, so there is no strict requirement on implementing support for
  1607. * unicast keys (i.e., addr != %NULL).
  1608. */
  1609. int (*get_seqnum)(const char *ifname, void *priv, const u8 *addr,
  1610. int idx, u8 *seq);
  1611. /**
  1612. * flush - Flush all association stations (AP only)
  1613. * @priv: Private driver interface data
  1614. * Returns: 0 on success, -1 on failure
  1615. *
  1616. * This function requests the driver to disassociate all associated
  1617. * stations. This function does not need to be implemented if the
  1618. * driver does not process association frames internally.
  1619. */
  1620. int (*flush)(void *priv);
  1621. /**
  1622. * set_generic_elem - Add IEs into Beacon/Probe Response frames (AP)
  1623. * @priv: Private driver interface data
  1624. * @elem: Information elements
  1625. * @elem_len: Length of the elem buffer in octets
  1626. * Returns: 0 on success, -1 on failure
  1627. *
  1628. * This is an optional function to add information elements in the
  1629. * kernel driver for Beacon and Probe Response frames. This can be left
  1630. * undefined (set to %NULL) if the driver uses the Beacon template from
  1631. * set_ap().
  1632. *
  1633. * DEPRECATED - use set_ap() instead
  1634. */
  1635. int (*set_generic_elem)(void *priv, const u8 *elem, size_t elem_len);
  1636. /**
  1637. * read_sta_data - Fetch station data
  1638. * @priv: Private driver interface data
  1639. * @data: Buffer for returning station information
  1640. * @addr: MAC address of the station
  1641. * Returns: 0 on success, -1 on failure
  1642. */
  1643. int (*read_sta_data)(void *priv, struct hostap_sta_driver_data *data,
  1644. const u8 *addr);
  1645. /**
  1646. * hapd_send_eapol - Send an EAPOL packet (AP only)
  1647. * @priv: private driver interface data
  1648. * @addr: Destination MAC address
  1649. * @data: EAPOL packet starting with IEEE 802.1X header
  1650. * @data_len: Length of the EAPOL packet in octets
  1651. * @encrypt: Whether the frame should be encrypted
  1652. * @own_addr: Source MAC address
  1653. * @flags: WPA_STA_* flags for the destination station
  1654. *
  1655. * Returns: 0 on success, -1 on failure
  1656. */
  1657. int (*hapd_send_eapol)(void *priv, const u8 *addr, const u8 *data,
  1658. size_t data_len, int encrypt,
  1659. const u8 *own_addr, u32 flags);
  1660. /**
  1661. * sta_deauth - Deauthenticate a station (AP only)
  1662. * @priv: Private driver interface data
  1663. * @own_addr: Source address and BSSID for the Deauthentication frame
  1664. * @addr: MAC address of the station to deauthenticate
  1665. * @reason: Reason code for the Deauthentiation frame
  1666. * Returns: 0 on success, -1 on failure
  1667. *
  1668. * This function requests a specific station to be deauthenticated and
  1669. * a Deauthentication frame to be sent to it.
  1670. */
  1671. int (*sta_deauth)(void *priv, const u8 *own_addr, const u8 *addr,
  1672. int reason);
  1673. /**
  1674. * sta_disassoc - Disassociate a station (AP only)
  1675. * @priv: Private driver interface data
  1676. * @own_addr: Source address and BSSID for the Disassociation frame
  1677. * @addr: MAC address of the station to disassociate
  1678. * @reason: Reason code for the Disassociation frame
  1679. * Returns: 0 on success, -1 on failure
  1680. *
  1681. * This function requests a specific station to be disassociated and
  1682. * a Disassociation frame to be sent to it.
  1683. */
  1684. int (*sta_disassoc)(void *priv, const u8 *own_addr, const u8 *addr,
  1685. int reason);
  1686. /**
  1687. * sta_remove - Remove a station entry (AP only)
  1688. * @priv: Private driver interface data
  1689. * @addr: MAC address of the station to be removed
  1690. * Returns: 0 on success, -1 on failure
  1691. */
  1692. int (*sta_remove)(void *priv, const u8 *addr);
  1693. /**
  1694. * hapd_get_ssid - Get the current SSID (AP only)
  1695. * @priv: Private driver interface data
  1696. * @buf: Buffer for returning the SSID
  1697. * @len: Maximum length of the buffer
  1698. * Returns: Length of the SSID on success, -1 on failure
  1699. *
  1700. * This function need not be implemented if the driver uses Beacon
  1701. * template from set_ap() and does not reply to Probe Request frames.
  1702. */
  1703. int (*hapd_get_ssid)(void *priv, u8 *buf, int len);
  1704. /**
  1705. * hapd_set_ssid - Set SSID (AP only)
  1706. * @priv: Private driver interface data
  1707. * @buf: SSID
  1708. * @len: Length of the SSID in octets
  1709. * Returns: 0 on success, -1 on failure
  1710. *
  1711. * DEPRECATED - use set_ap() instead
  1712. */
  1713. int (*hapd_set_ssid)(void *priv, const u8 *buf, int len);
  1714. /**
  1715. * hapd_set_countermeasures - Enable/disable TKIP countermeasures (AP)
  1716. * @priv: Private driver interface data
  1717. * @enabled: 1 = countermeasures enabled, 0 = disabled
  1718. * Returns: 0 on success, -1 on failure
  1719. *
  1720. * This need not be implemented if the driver does not take care of
  1721. * association processing.
  1722. */
  1723. int (*hapd_set_countermeasures)(void *priv, int enabled);
  1724. /**
  1725. * sta_add - Add a station entry
  1726. * @priv: Private driver interface data
  1727. * @params: Station parameters
  1728. * Returns: 0 on success, -1 on failure
  1729. *
  1730. * This function is used to add a station entry to the driver once the
  1731. * station has completed association. This is only used if the driver
  1732. * does not take care of association processing.
  1733. *
  1734. * With TDLS, this function is also used to add or set (params->set 1)
  1735. * TDLS peer entries.
  1736. */
  1737. int (*sta_add)(void *priv, struct hostapd_sta_add_params *params);
  1738. /**
  1739. * get_inact_sec - Get station inactivity duration (AP only)
  1740. * @priv: Private driver interface data
  1741. * @addr: Station address
  1742. * Returns: Number of seconds station has been inactive, -1 on failure
  1743. */
  1744. int (*get_inact_sec)(void *priv, const u8 *addr);
  1745. /**
  1746. * sta_clear_stats - Clear station statistics (AP only)
  1747. * @priv: Private driver interface data
  1748. * @addr: Station address
  1749. * Returns: 0 on success, -1 on failure
  1750. */
  1751. int (*sta_clear_stats)(void *priv, const u8 *addr);
  1752. /**
  1753. * set_freq - Set channel/frequency (AP only)
  1754. * @priv: Private driver interface data
  1755. * @freq: Channel parameters
  1756. * Returns: 0 on success, -1 on failure
  1757. */
  1758. int (*set_freq)(void *priv, struct hostapd_freq_params *freq);
  1759. /**
  1760. * set_rts - Set RTS threshold
  1761. * @priv: Private driver interface data
  1762. * @rts: RTS threshold in octets
  1763. * Returns: 0 on success, -1 on failure
  1764. */
  1765. int (*set_rts)(void *priv, int rts);
  1766. /**
  1767. * set_frag - Set fragmentation threshold
  1768. * @priv: Private driver interface data
  1769. * @frag: Fragmentation threshold in octets
  1770. * Returns: 0 on success, -1 on failure
  1771. */
  1772. int (*set_frag)(void *priv, int frag);
  1773. /**
  1774. * sta_set_flags - Set station flags (AP only)
  1775. * @priv: Private driver interface data
  1776. * @addr: Station address
  1777. * @total_flags: Bitmap of all WPA_STA_* flags currently set
  1778. * @flags_or: Bitmap of WPA_STA_* flags to add
  1779. * @flags_and: Bitmap of WPA_STA_* flags to us as a mask
  1780. * Returns: 0 on success, -1 on failure
  1781. */
  1782. int (*sta_set_flags)(void *priv, const u8 *addr,
  1783. int total_flags, int flags_or, int flags_and);
  1784. /**
  1785. * set_tx_queue_params - Set TX queue parameters
  1786. * @priv: Private driver interface data
  1787. * @queue: Queue number (0 = VO, 1 = VI, 2 = BE, 3 = BK)
  1788. * @aifs: AIFS
  1789. * @cw_min: cwMin
  1790. * @cw_max: cwMax
  1791. * @burst_time: Maximum length for bursting in 0.1 msec units
  1792. */
  1793. int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
  1794. int cw_max, int burst_time);
  1795. /**
  1796. * if_add - Add a virtual interface
  1797. * @priv: Private driver interface data
  1798. * @type: Interface type
  1799. * @ifname: Interface name for the new virtual interface
  1800. * @addr: Local address to use for the interface or %NULL to use the
  1801. * parent interface address
  1802. * @bss_ctx: BSS context for %WPA_IF_AP_BSS interfaces
  1803. * @drv_priv: Pointer for overwriting the driver context or %NULL if
  1804. * not allowed (applies only to %WPA_IF_AP_BSS type)
  1805. * @force_ifname: Buffer for returning an interface name that the
  1806. * driver ended up using if it differs from the requested ifname
  1807. * @if_addr: Buffer for returning the allocated interface address
  1808. * (this may differ from the requested addr if the driver cannot
  1809. * change interface address)
  1810. * @bridge: Bridge interface to use or %NULL if no bridge configured
  1811. * @use_existing: Whether to allow existing interface to be used
  1812. * Returns: 0 on success, -1 on failure
  1813. */
  1814. int (*if_add)(void *priv, enum wpa_driver_if_type type,
  1815. const char *ifname, const u8 *addr, void *bss_ctx,
  1816. void **drv_priv, char *force_ifname, u8 *if_addr,
  1817. const char *bridge, int use_existing);
  1818. /**
  1819. * if_remove - Remove a virtual interface
  1820. * @priv: Private driver interface data
  1821. * @type: Interface type
  1822. * @ifname: Interface name of the virtual interface to be removed
  1823. * Returns: 0 on success, -1 on failure
  1824. */
  1825. int (*if_remove)(void *priv, enum wpa_driver_if_type type,
  1826. const char *ifname);
  1827. /**
  1828. * set_sta_vlan - Bind a station into a specific interface (AP only)
  1829. * @priv: Private driver interface data
  1830. * @ifname: Interface (main or virtual BSS or VLAN)
  1831. * @addr: MAC address of the associated station
  1832. * @vlan_id: VLAN ID
  1833. * Returns: 0 on success, -1 on failure
  1834. *
  1835. * This function is used to bind a station to a specific virtual
  1836. * interface. It is only used if when virtual interfaces are supported,
  1837. * e.g., to assign stations to different VLAN interfaces based on
  1838. * information from a RADIUS server. This allows separate broadcast
  1839. * domains to be used with a single BSS.
  1840. */
  1841. int (*set_sta_vlan)(void *priv, const u8 *addr, const char *ifname,
  1842. int vlan_id);
  1843. /**
  1844. * commit - Optional commit changes handler (AP only)
  1845. * @priv: driver private data
  1846. * Returns: 0 on success, -1 on failure
  1847. *
  1848. * This optional handler function can be registered if the driver
  1849. * interface implementation needs to commit changes (e.g., by setting
  1850. * network interface up) at the end of initial configuration. If set,
  1851. * this handler will be called after initial setup has been completed.
  1852. */
  1853. int (*commit)(void *priv);
  1854. /**
  1855. * send_ether - Send an ethernet packet (AP only)
  1856. * @priv: private driver interface data
  1857. * @dst: Destination MAC address
  1858. * @src: Source MAC address
  1859. * @proto: Ethertype
  1860. * @data: EAPOL packet starting with IEEE 802.1X header
  1861. * @data_len: Length of the EAPOL packet in octets
  1862. * Returns: 0 on success, -1 on failure
  1863. */
  1864. int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto,
  1865. const u8 *data, size_t data_len);
  1866. /**
  1867. * set_radius_acl_auth - Notification of RADIUS ACL change
  1868. * @priv: Private driver interface data
  1869. * @mac: MAC address of the station
  1870. * @accepted: Whether the station was accepted
  1871. * @session_timeout: Session timeout for the station
  1872. * Returns: 0 on success, -1 on failure
  1873. */
  1874. int (*set_radius_acl_auth)(void *priv, const u8 *mac, int accepted,
  1875. u32 session_timeout);
  1876. /**
  1877. * set_radius_acl_expire - Notification of RADIUS ACL expiration
  1878. * @priv: Private driver interface data
  1879. * @mac: MAC address of the station
  1880. * Returns: 0 on success, -1 on failure
  1881. */
  1882. int (*set_radius_acl_expire)(void *priv, const u8 *mac);
  1883. /**
  1884. * set_ap_wps_ie - Add WPS IE(s) into Beacon/Probe Response frames (AP)
  1885. * @priv: Private driver interface data
  1886. * @beacon: WPS IE(s) for Beacon frames or %NULL to remove extra IE(s)
  1887. * @proberesp: WPS IE(s) for Probe Response frames or %NULL to remove
  1888. * extra IE(s)
  1889. * @assocresp: WPS IE(s) for (Re)Association Response frames or %NULL
  1890. * to remove extra IE(s)
  1891. * Returns: 0 on success, -1 on failure
  1892. *
  1893. * This is an optional function to add WPS IE in the kernel driver for
  1894. * Beacon and Probe Response frames. This can be left undefined (set
  1895. * to %NULL) if the driver uses the Beacon template from set_ap()
  1896. * and does not process Probe Request frames. If the driver takes care
  1897. * of (Re)Association frame processing, the assocresp buffer includes
  1898. * WPS IE(s) that need to be added to (Re)Association Response frames
  1899. * whenever a (Re)Association Request frame indicated use of WPS.
  1900. *
  1901. * This will also be used to add P2P IE(s) into Beacon/Probe Response
  1902. * frames when operating as a GO. The driver is responsible for adding
  1903. * timing related attributes (e.g., NoA) in addition to the IEs
  1904. * included here by appending them after these buffers. This call is
  1905. * also used to provide Probe Response IEs for P2P Listen state
  1906. * operations for drivers that generate the Probe Response frames
  1907. * internally.
  1908. *
  1909. * DEPRECATED - use set_ap() instead
  1910. */
  1911. int (*set_ap_wps_ie)(void *priv, const struct wpabuf *beacon,
  1912. const struct wpabuf *proberesp,
  1913. const struct wpabuf *assocresp);
  1914. /**
  1915. * set_supp_port - Set IEEE 802.1X Supplicant Port status
  1916. * @priv: Private driver interface data
  1917. * @authorized: Whether the port is authorized
  1918. * Returns: 0 on success, -1 on failure
  1919. */
  1920. int (*set_supp_port)(void *priv, int authorized);
  1921. /**
  1922. * set_wds_sta - Bind a station into a 4-address WDS (AP only)
  1923. * @priv: Private driver interface data
  1924. * @addr: MAC address of the associated station
  1925. * @aid: Association ID
  1926. * @val: 1 = bind to 4-address WDS; 0 = unbind
  1927. * @bridge_ifname: Bridge interface to use for the WDS station or %NULL
  1928. * to indicate that bridge is not to be used
  1929. * @ifname_wds: Buffer to return the interface name for the new WDS
  1930. * station or %NULL to indicate name is not returned.
  1931. * Returns: 0 on success, -1 on failure
  1932. */
  1933. int (*set_wds_sta)(void *priv, const u8 *addr, int aid, int val,
  1934. const char *bridge_ifname, char *ifname_wds);
  1935. /**
  1936. * send_action - Transmit an Action frame
  1937. * @priv: Private driver interface data
  1938. * @freq: Frequency (in MHz) of the channel
  1939. * @wait: Time to wait off-channel for a response (in ms), or zero
  1940. * @dst: Destination MAC address (Address 1)
  1941. * @src: Source MAC address (Address 2)
  1942. * @bssid: BSSID (Address 3)
  1943. * @data: Frame body
  1944. * @data_len: data length in octets
  1945. @ @no_cck: Whether CCK rates must not be used to transmit this frame
  1946. * Returns: 0 on success, -1 on failure
  1947. *
  1948. * This command can be used to request the driver to transmit an action
  1949. * frame to the specified destination.
  1950. *
  1951. * If the %WPA_DRIVER_FLAGS_OFFCHANNEL_TX flag is set, the frame will
  1952. * be transmitted on the given channel and the device will wait for a
  1953. * response on that channel for the given wait time.
  1954. *
  1955. * If the flag is not set, the wait time will be ignored. In this case,
  1956. * if a remain-on-channel duration is in progress, the frame must be
  1957. * transmitted on that channel; alternatively the frame may be sent on
  1958. * the current operational channel (if in associated state in station
  1959. * mode or while operating as an AP.)
  1960. */
  1961. int (*send_action)(void *priv, unsigned int freq, unsigned int wait,
  1962. const u8 *dst, const u8 *src, const u8 *bssid,
  1963. const u8 *data, size_t data_len, int no_cck);
  1964. /**
  1965. * send_action_cancel_wait - Cancel action frame TX wait
  1966. * @priv: Private driver interface data
  1967. *
  1968. * This command cancels the wait time associated with sending an action
  1969. * frame. It is only available when %WPA_DRIVER_FLAGS_OFFCHANNEL_TX is
  1970. * set in the driver flags.
  1971. */
  1972. void (*send_action_cancel_wait)(void *priv);
  1973. /**
  1974. * remain_on_channel - Remain awake on a channel
  1975. * @priv: Private driver interface data
  1976. * @freq: Frequency (in MHz) of the channel
  1977. * @duration: Duration in milliseconds
  1978. * Returns: 0 on success, -1 on failure
  1979. *
  1980. * This command is used to request the driver to remain awake on the
  1981. * specified channel for the specified duration and report received
  1982. * Action frames with EVENT_RX_ACTION events. Optionally, received
  1983. * Probe Request frames may also be requested to be reported by calling
  1984. * probe_req_report(). These will be reported with EVENT_RX_PROBE_REQ.
  1985. *
  1986. * The driver may not be at the requested channel when this function
  1987. * returns, i.e., the return code is only indicating whether the
  1988. * request was accepted. The caller will need to wait until the
  1989. * EVENT_REMAIN_ON_CHANNEL event indicates that the driver has
  1990. * completed the channel change. This may take some time due to other
  1991. * need for the radio and the caller should be prepared to timing out
  1992. * its wait since there are no guarantees on when this request can be
  1993. * executed.
  1994. */
  1995. int (*remain_on_channel)(void *priv, unsigned int freq,
  1996. unsigned int duration);
  1997. /**
  1998. * cancel_remain_on_channel - Cancel remain-on-channel operation
  1999. * @priv: Private driver interface data
  2000. *
  2001. * This command can be used to cancel a remain-on-channel operation
  2002. * before its originally requested duration has passed. This could be
  2003. * used, e.g., when remain_on_channel() is used to request extra time
  2004. * to receive a response to an Action frame and the response is
  2005. * received when there is still unneeded time remaining on the
  2006. * remain-on-channel operation.
  2007. */
  2008. int (*cancel_remain_on_channel)(void *priv);
  2009. /**
  2010. * probe_req_report - Request Probe Request frames to be indicated
  2011. * @priv: Private driver interface data
  2012. * @report: Whether to report received Probe Request frames
  2013. * Returns: 0 on success, -1 on failure (or if not supported)
  2014. *
  2015. * This command can be used to request the driver to indicate when
  2016. * Probe Request frames are received with EVENT_RX_PROBE_REQ events.
  2017. * Since this operation may require extra resources, e.g., due to less
  2018. * optimal hardware/firmware RX filtering, many drivers may disable
  2019. * Probe Request reporting at least in station mode. This command is
  2020. * used to notify the driver when the Probe Request frames need to be
  2021. * reported, e.g., during remain-on-channel operations.
  2022. */
  2023. int (*probe_req_report)(void *priv, int report);
  2024. /**
  2025. * deinit_ap - Deinitialize AP mode
  2026. * @priv: Private driver interface data
  2027. * Returns: 0 on success, -1 on failure (or if not supported)
  2028. *
  2029. * This optional function can be used to disable AP mode related
  2030. * configuration. If the interface was not dynamically added,
  2031. * change the driver mode to station mode to allow normal station
  2032. * operations like scanning to be completed.
  2033. */
  2034. int (*deinit_ap)(void *priv);
  2035. /**
  2036. * deinit_p2p_cli - Deinitialize P2P client mode
  2037. * @priv: Private driver interface data
  2038. * Returns: 0 on success, -1 on failure (or if not supported)
  2039. *
  2040. * This optional function can be used to disable P2P client mode. If the
  2041. * interface was not dynamically added, change the interface type back
  2042. * to station mode.
  2043. */
  2044. int (*deinit_p2p_cli)(void *priv);
  2045. /**
  2046. * suspend - Notification on system suspend/hibernate event
  2047. * @priv: Private driver interface data
  2048. */
  2049. void (*suspend)(void *priv);
  2050. /**
  2051. * resume - Notification on system resume/thaw event
  2052. * @priv: Private driver interface data
  2053. */
  2054. void (*resume)(void *priv);
  2055. /**
  2056. * signal_monitor - Set signal monitoring parameters
  2057. * @priv: Private driver interface data
  2058. * @threshold: Threshold value for signal change events; 0 = disabled
  2059. * @hysteresis: Minimum change in signal strength before indicating a
  2060. * new event
  2061. * Returns: 0 on success, -1 on failure (or if not supported)
  2062. *
  2063. * This function can be used to configure monitoring of signal strength
  2064. * with the current AP. Whenever signal strength drops below the
  2065. * %threshold value or increases above it, EVENT_SIGNAL_CHANGE event
  2066. * should be generated assuming the signal strength has changed at
  2067. * least %hysteresis from the previously indicated signal change event.
  2068. */
  2069. int (*signal_monitor)(void *priv, int threshold, int hysteresis);
  2070. /**
  2071. * send_frame - Send IEEE 802.11 frame (testing use only)
  2072. * @priv: Private driver interface data
  2073. * @data: IEEE 802.11 frame with IEEE 802.11 header
  2074. * @data_len: Size of the frame
  2075. * @encrypt: Whether to encrypt the frame (if keys are set)
  2076. * Returns: 0 on success, -1 on failure
  2077. *
  2078. * This function is only used for debugging purposes and is not
  2079. * required to be implemented for normal operations.
  2080. */
  2081. int (*send_frame)(void *priv, const u8 *data, size_t data_len,
  2082. int encrypt);
  2083. /**
  2084. * shared_freq - Get operating frequency of shared interface(s)
  2085. * @priv: Private driver interface data
  2086. * Returns: Operating frequency in MHz, 0 if no shared operation in
  2087. * use, or -1 on failure
  2088. *
  2089. * This command can be used to request the current operating frequency
  2090. * of any virtual interface that shares the same radio to provide
  2091. * information for channel selection for other virtual interfaces.
  2092. */
  2093. int (*shared_freq)(void *priv);
  2094. /**
  2095. * get_noa - Get current Notice of Absence attribute payload
  2096. * @priv: Private driver interface data
  2097. * @buf: Buffer for returning NoA
  2098. * @buf_len: Buffer length in octets
  2099. * Returns: Number of octets used in buf, 0 to indicate no NoA is being
  2100. * advertized, or -1 on failure
  2101. *
  2102. * This function is used to fetch the current Notice of Absence
  2103. * attribute value from GO.
  2104. */
  2105. int (*get_noa)(void *priv, u8 *buf, size_t buf_len);
  2106. /**
  2107. * set_noa - Set Notice of Absence parameters for GO (testing)
  2108. * @priv: Private driver interface data
  2109. * @count: Count
  2110. * @start: Start time in ms from next TBTT
  2111. * @duration: Duration in ms
  2112. * Returns: 0 on success or -1 on failure
  2113. *
  2114. * This function is used to set Notice of Absence parameters for GO. It
  2115. * is used only for testing. To disable NoA, all parameters are set to
  2116. * 0.
  2117. */
  2118. int (*set_noa)(void *priv, u8 count, int start, int duration);
  2119. /**
  2120. * set_p2p_powersave - Set P2P power save options
  2121. * @priv: Private driver interface data
  2122. * @legacy_ps: 0 = disable, 1 = enable, 2 = maximum PS, -1 = no change
  2123. * @opp_ps: 0 = disable, 1 = enable, -1 = no change
  2124. * @ctwindow: 0.. = change (msec), -1 = no change
  2125. * Returns: 0 on success or -1 on failure
  2126. */
  2127. int (*set_p2p_powersave)(void *priv, int legacy_ps, int opp_ps,
  2128. int ctwindow);
  2129. /**
  2130. * ampdu - Enable/disable aggregation
  2131. * @priv: Private driver interface data
  2132. * @ampdu: 1/0 = enable/disable A-MPDU aggregation
  2133. * Returns: 0 on success or -1 on failure
  2134. */
  2135. int (*ampdu)(void *priv, int ampdu);
  2136. /**
  2137. * get_radio_name - Get physical radio name for the device
  2138. * @priv: Private driver interface data
  2139. * Returns: Radio name or %NULL if not known
  2140. *
  2141. * The returned data must not be modified by the caller. It is assumed
  2142. * that any interface that has the same radio name as another is
  2143. * sharing the same physical radio. This information can be used to
  2144. * share scan results etc. information between the virtual interfaces
  2145. * to speed up various operations.
  2146. */
  2147. const char * (*get_radio_name)(void *priv);
  2148. /**
  2149. * p2p_find - Start P2P Device Discovery
  2150. * @priv: Private driver interface data
  2151. * @timeout: Timeout for find operation in seconds or 0 for no timeout
  2152. * @type: Device Discovery type (enum p2p_discovery_type)
  2153. * Returns: 0 on success, -1 on failure
  2154. *
  2155. * This function is only used if the driver implements P2P management,
  2156. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2157. * struct wpa_driver_capa.
  2158. */
  2159. int (*p2p_find)(void *priv, unsigned int timeout, int type);
  2160. /**
  2161. * p2p_stop_find - Stop P2P Device Discovery
  2162. * @priv: Private driver interface data
  2163. * Returns: 0 on success, -1 on failure
  2164. *
  2165. * This function is only used if the driver implements P2P management,
  2166. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2167. * struct wpa_driver_capa.
  2168. */
  2169. int (*p2p_stop_find)(void *priv);
  2170. /**
  2171. * p2p_listen - Start P2P Listen state for specified duration
  2172. * @priv: Private driver interface data
  2173. * @timeout: Listen state duration in milliseconds
  2174. * Returns: 0 on success, -1 on failure
  2175. *
  2176. * This function can be used to request the P2P module to keep the
  2177. * device discoverable on the listen channel for an extended set of
  2178. * time. At least in its current form, this is mainly used for testing
  2179. * purposes and may not be of much use for normal P2P operations.
  2180. *
  2181. * This function is only used if the driver implements P2P management,
  2182. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2183. * struct wpa_driver_capa.
  2184. */
  2185. int (*p2p_listen)(void *priv, unsigned int timeout);
  2186. /**
  2187. * p2p_connect - Start P2P group formation (GO negotiation)
  2188. * @priv: Private driver interface data
  2189. * @peer_addr: MAC address of the peer P2P client
  2190. * @wps_method: enum p2p_wps_method value indicating config method
  2191. * @go_intent: Local GO intent value (1..15)
  2192. * @own_interface_addr: Intended interface address to use with the
  2193. * group
  2194. * @force_freq: The only allowed channel frequency in MHz or 0
  2195. * @persistent_group: Whether to create persistent group
  2196. * Returns: 0 on success, -1 on failure
  2197. *
  2198. * This function is only used if the driver implements P2P management,
  2199. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2200. * struct wpa_driver_capa.
  2201. */
  2202. int (*p2p_connect)(void *priv, const u8 *peer_addr, int wps_method,
  2203. int go_intent, const u8 *own_interface_addr,
  2204. unsigned int force_freq, int persistent_group);
  2205. /**
  2206. * wps_success_cb - Report successfully completed WPS provisioning
  2207. * @priv: Private driver interface data
  2208. * @peer_addr: Peer address
  2209. * Returns: 0 on success, -1 on failure
  2210. *
  2211. * This function is used to report successfully completed WPS
  2212. * provisioning during group formation in both GO/Registrar and
  2213. * client/Enrollee roles.
  2214. *
  2215. * This function is only used if the driver implements P2P management,
  2216. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2217. * struct wpa_driver_capa.
  2218. */
  2219. int (*wps_success_cb)(void *priv, const u8 *peer_addr);
  2220. /**
  2221. * p2p_group_formation_failed - Report failed WPS provisioning
  2222. * @priv: Private driver interface data
  2223. * Returns: 0 on success, -1 on failure
  2224. *
  2225. * This function is used to report failed group formation. This can
  2226. * happen either due to failed WPS provisioning or due to 15 second
  2227. * timeout during the provisioning phase.
  2228. *
  2229. * This function is only used if the driver implements P2P management,
  2230. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2231. * struct wpa_driver_capa.
  2232. */
  2233. int (*p2p_group_formation_failed)(void *priv);
  2234. /**
  2235. * p2p_set_params - Set P2P parameters
  2236. * @priv: Private driver interface data
  2237. * @params: P2P parameters
  2238. * Returns: 0 on success, -1 on failure
  2239. *
  2240. * This function is only used if the driver implements P2P management,
  2241. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2242. * struct wpa_driver_capa.
  2243. */
  2244. int (*p2p_set_params)(void *priv, const struct p2p_params *params);
  2245. /**
  2246. * p2p_prov_disc_req - Send Provision Discovery Request
  2247. * @priv: Private driver interface data
  2248. * @peer_addr: MAC address of the peer P2P client
  2249. * @config_methods: WPS Config Methods value (only one bit set)
  2250. * Returns: 0 on success, -1 on failure
  2251. *
  2252. * This function can be used to request a discovered P2P peer to
  2253. * display a PIN (config_methods = WPS_CONFIG_DISPLAY) or be prepared
  2254. * to enter a PIN from us (config_methods = WPS_CONFIG_KEYPAD). The
  2255. * Provision Discovery Request frame is transmitted once immediately
  2256. * and if no response is received, the frame will be sent again
  2257. * whenever the target device is discovered during device dsicovery
  2258. * (start with a p2p_find() call). Response from the peer is indicated
  2259. * with the EVENT_P2P_PROV_DISC_RESPONSE event.
  2260. *
  2261. * This function is only used if the driver implements P2P management,
  2262. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2263. * struct wpa_driver_capa.
  2264. */
  2265. int (*p2p_prov_disc_req)(void *priv, const u8 *peer_addr,
  2266. u16 config_methods, int join);
  2267. /**
  2268. * p2p_sd_request - Schedule a service discovery query
  2269. * @priv: Private driver interface data
  2270. * @dst: Destination peer or %NULL to apply for all peers
  2271. * @tlvs: P2P Service Query TLV(s)
  2272. * Returns: Reference to the query or 0 on failure
  2273. *
  2274. * Response to the query is indicated with the
  2275. * EVENT_P2P_SD_RESPONSE driver event.
  2276. *
  2277. * This function is only used if the driver implements P2P management,
  2278. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2279. * struct wpa_driver_capa.
  2280. */
  2281. u64 (*p2p_sd_request)(void *priv, const u8 *dst,
  2282. const struct wpabuf *tlvs);
  2283. /**
  2284. * p2p_sd_cancel_request - Cancel a pending service discovery query
  2285. * @priv: Private driver interface data
  2286. * @req: Query reference from p2p_sd_request()
  2287. * Returns: 0 on success, -1 on failure
  2288. *
  2289. * This function is only used if the driver implements P2P management,
  2290. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2291. * struct wpa_driver_capa.
  2292. */
  2293. int (*p2p_sd_cancel_request)(void *priv, u64 req);
  2294. /**
  2295. * p2p_sd_response - Send response to a service discovery query
  2296. * @priv: Private driver interface data
  2297. * @freq: Frequency from EVENT_P2P_SD_REQUEST event
  2298. * @dst: Destination address from EVENT_P2P_SD_REQUEST event
  2299. * @dialog_token: Dialog token from EVENT_P2P_SD_REQUEST event
  2300. * @resp_tlvs: P2P Service Response TLV(s)
  2301. * Returns: 0 on success, -1 on failure
  2302. *
  2303. * This function is called as a response to the request indicated with
  2304. * the EVENT_P2P_SD_REQUEST driver event.
  2305. *
  2306. * This function is only used if the driver implements P2P management,
  2307. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2308. * struct wpa_driver_capa.
  2309. */
  2310. int (*p2p_sd_response)(void *priv, int freq, const u8 *dst,
  2311. u8 dialog_token,
  2312. const struct wpabuf *resp_tlvs);
  2313. /**
  2314. * p2p_service_update - Indicate a change in local services
  2315. * @priv: Private driver interface data
  2316. * Returns: 0 on success, -1 on failure
  2317. *
  2318. * This function needs to be called whenever there is a change in
  2319. * availability of the local services. This will increment the
  2320. * Service Update Indicator value which will be used in SD Request and
  2321. * Response frames.
  2322. *
  2323. * This function is only used if the driver implements P2P management,
  2324. * i.e., if it sets WPA_DRIVER_FLAGS_P2P_MGMT in
  2325. * struct wpa_driver_capa.
  2326. */
  2327. int (*p2p_service_update)(void *priv);
  2328. /**
  2329. * p2p_reject - Reject peer device (explicitly block connections)
  2330. * @priv: Private driver interface data
  2331. * @addr: MAC address of the peer
  2332. * Returns: 0 on success, -1 on failure
  2333. */
  2334. int (*p2p_reject)(void *priv, const u8 *addr);
  2335. /**
  2336. * p2p_invite - Invite a P2P Device into a group
  2337. * @priv: Private driver interface data
  2338. * @peer: Device Address of the peer P2P Device
  2339. * @role: Local role in the group
  2340. * @bssid: Group BSSID or %NULL if not known
  2341. * @ssid: Group SSID
  2342. * @ssid_len: Length of ssid in octets
  2343. * @go_dev_addr: Forced GO Device Address or %NULL if none
  2344. * @persistent_group: Whether this is to reinvoke a persistent group
  2345. * Returns: 0 on success, -1 on failure
  2346. */
  2347. int (*p2p_invite)(void *priv, const u8 *peer, int role,
  2348. const u8 *bssid, const u8 *ssid, size_t ssid_len,
  2349. const u8 *go_dev_addr, int persistent_group);
  2350. /**
  2351. * send_tdls_mgmt - for sending TDLS management packets
  2352. * @priv: private driver interface data
  2353. * @dst: Destination (peer) MAC address
  2354. * @action_code: TDLS action code for the mssage
  2355. * @dialog_token: Dialog Token to use in the message (if needed)
  2356. * @status_code: Status Code or Reason Code to use (if needed)
  2357. * @buf: TDLS IEs to add to the message
  2358. * @len: Length of buf in octets
  2359. * Returns: 0 on success, negative (<0) on failure
  2360. *
  2361. * This optional function can be used to send packet to driver which is
  2362. * responsible for receiving and sending all TDLS packets.
  2363. */
  2364. int (*send_tdls_mgmt)(void *priv, const u8 *dst, u8 action_code,
  2365. u8 dialog_token, u16 status_code,
  2366. const u8 *buf, size_t len);
  2367. /**
  2368. * tdls_oper - Ask the driver to perform high-level TDLS operations
  2369. * @priv: Private driver interface data
  2370. * @oper: TDLS high-level operation. See %enum tdls_oper
  2371. * @peer: Destination (peer) MAC address
  2372. * Returns: 0 on success, negative (<0) on failure
  2373. *
  2374. * This optional function can be used to send high-level TDLS commands
  2375. * to the driver.
  2376. */
  2377. int (*tdls_oper)(void *priv, enum tdls_oper oper, const u8 *peer);
  2378. /**
  2379. * wnm_oper - Notify driver of the WNM frame reception
  2380. * @priv: Private driver interface data
  2381. * @oper: WNM operation. See %enum wnm_oper
  2382. * @peer: Destination (peer) MAC address
  2383. * @buf: Buffer for the driver to fill in (for getting IE)
  2384. * @buf_len: Return the len of buf
  2385. * Returns: 0 on success, negative (<0) on failure
  2386. */
  2387. int (*wnm_oper)(void *priv, enum wnm_oper oper, const u8 *peer,
  2388. u8 *buf, u16 *buf_len);
  2389. /**
  2390. * set_qos_map - Set QoS Map
  2391. * @priv: Private driver interface data
  2392. * @qos_map_set: QoS Map
  2393. * @qos_map_set_len: Length of QoS Map
  2394. */
  2395. int (*set_qos_map)(void *priv, const u8 *qos_map_set,
  2396. u8 qos_map_set_len);
  2397. /**
  2398. * signal_poll - Get current connection information
  2399. * @priv: Private driver interface data
  2400. * @signal_info: Connection info structure
  2401. */
  2402. int (*signal_poll)(void *priv, struct wpa_signal_info *signal_info);
  2403. /**
  2404. * set_authmode - Set authentication algorithm(s) for static WEP
  2405. * @priv: Private driver interface data
  2406. * @authmode: 1=Open System, 2=Shared Key, 3=both
  2407. * Returns: 0 on success, -1 on failure
  2408. *
  2409. * This function can be used to set authentication algorithms for AP
  2410. * mode when static WEP is used. If the driver uses user space MLME/SME
  2411. * implementation, there is no need to implement this function.
  2412. *
  2413. * DEPRECATED - use set_ap() instead
  2414. */
  2415. int (*set_authmode)(void *priv, int authmode);
  2416. #ifdef ANDROID
  2417. /**
  2418. * driver_cmd - Execute driver-specific command
  2419. * @priv: Private driver interface data
  2420. * @cmd: Command to execute
  2421. * @buf: Return buffer
  2422. * @buf_len: Buffer length
  2423. * Returns: 0 on success, -1 on failure
  2424. */
  2425. int (*driver_cmd)(void *priv, char *cmd, char *buf, size_t buf_len);
  2426. #endif /* ANDROID */
  2427. /**
  2428. * set_rekey_info - Set rekey information
  2429. * @priv: Private driver interface data
  2430. * @kek: Current KEK
  2431. * @kck: Current KCK
  2432. * @replay_ctr: Current EAPOL-Key Replay Counter
  2433. *
  2434. * This optional function can be used to provide information for the
  2435. * driver/firmware to process EAPOL-Key frames in Group Key Handshake
  2436. * while the host (including wpa_supplicant) is sleeping.
  2437. */
  2438. void (*set_rekey_info)(void *priv, const u8 *kek, const u8 *kck,
  2439. const u8 *replay_ctr);
  2440. /**
  2441. * sta_assoc - Station association indication
  2442. * @priv: Private driver interface data
  2443. * @own_addr: Source address and BSSID for association frame
  2444. * @addr: MAC address of the station to associate
  2445. * @reassoc: flag to indicate re-association
  2446. * @status: association response status code
  2447. * @ie: assoc response ie buffer
  2448. * @len: ie buffer length
  2449. * Returns: 0 on success, -1 on failure
  2450. *
  2451. * This function indicates the driver to send (Re)Association
  2452. * Response frame to the station.
  2453. */
  2454. int (*sta_assoc)(void *priv, const u8 *own_addr, const u8 *addr,
  2455. int reassoc, u16 status, const u8 *ie, size_t len);
  2456. /**
  2457. * sta_auth - Station authentication indication
  2458. * @priv: Private driver interface data
  2459. * @own_addr: Source address and BSSID for authentication frame
  2460. * @addr: MAC address of the station to associate
  2461. * @seq: authentication sequence number
  2462. * @status: authentication response status code
  2463. * @ie: authentication frame ie buffer
  2464. * @len: ie buffer length
  2465. *
  2466. * This function indicates the driver to send Authentication frame
  2467. * to the station.
  2468. */
  2469. int (*sta_auth)(void *priv, const u8 *own_addr, const u8 *addr,
  2470. u16 seq, u16 status, const u8 *ie, size_t len);
  2471. /**
  2472. * add_tspec - Add traffic stream
  2473. * @priv: Private driver interface data
  2474. * @addr: MAC address of the station to associate
  2475. * @tspec_ie: tspec ie buffer
  2476. * @tspec_ielen: tspec ie length
  2477. * Returns: 0 on success, -1 on failure
  2478. *
  2479. * This function adds the traffic steam for the station
  2480. * and fills the medium_time in tspec_ie.
  2481. */
  2482. int (*add_tspec)(void *priv, const u8 *addr, u8 *tspec_ie,
  2483. size_t tspec_ielen);
  2484. /**
  2485. * add_sta_node - Add a station node in the driver
  2486. * @priv: Private driver interface data
  2487. * @addr: MAC address of the station to add
  2488. * @auth_alg: authentication algorithm used by the station
  2489. * Returns: 0 on success, -1 on failure
  2490. *
  2491. * This function adds the station node in the driver, when
  2492. * the station gets added by FT-over-DS.
  2493. */
  2494. int (*add_sta_node)(void *priv, const u8 *addr, u16 auth_alg);
  2495. /**
  2496. * sched_scan - Request the driver to initiate scheduled scan
  2497. * @priv: Private driver interface data
  2498. * @params: Scan parameters
  2499. * @interval: Interval between scan cycles in milliseconds
  2500. * Returns: 0 on success, -1 on failure
  2501. *
  2502. * This operation should be used for scheduled scan offload to
  2503. * the hardware. Every time scan results are available, the
  2504. * driver should report scan results event for wpa_supplicant
  2505. * which will eventually request the results with
  2506. * wpa_driver_get_scan_results2(). This operation is optional
  2507. * and if not provided or if it returns -1, we fall back to
  2508. * normal host-scheduled scans.
  2509. */
  2510. int (*sched_scan)(void *priv, struct wpa_driver_scan_params *params,
  2511. u32 interval);
  2512. /**
  2513. * stop_sched_scan - Request the driver to stop a scheduled scan
  2514. * @priv: Private driver interface data
  2515. * Returns: 0 on success, -1 on failure
  2516. *
  2517. * This should cause the scheduled scan to be stopped and
  2518. * results should stop being sent. Must be supported if
  2519. * sched_scan is supported.
  2520. */
  2521. int (*stop_sched_scan)(void *priv);
  2522. /**
  2523. * poll_client - Probe (null data or such) the given station
  2524. * @priv: Private driver interface data
  2525. * @own_addr: MAC address of sending interface
  2526. * @addr: MAC address of the station to probe
  2527. * @qos: Indicates whether station is QoS station
  2528. *
  2529. * This function is used to verify whether an associated station is
  2530. * still present. This function does not need to be implemented if the
  2531. * driver provides such inactivity polling mechanism.
  2532. */
  2533. void (*poll_client)(void *priv, const u8 *own_addr,
  2534. const u8 *addr, int qos);
  2535. /**
  2536. * radio_disable - Disable/enable radio
  2537. * @priv: Private driver interface data
  2538. * @disabled: 1=disable 0=enable radio
  2539. * Returns: 0 on success, -1 on failure
  2540. *
  2541. * This optional command is for testing purposes. It can be used to
  2542. * disable the radio on a testbed device to simulate out-of-radio-range
  2543. * conditions.
  2544. */
  2545. int (*radio_disable)(void *priv, int disabled);
  2546. /**
  2547. * switch_channel - Announce channel switch and migrate the GO to the
  2548. * given frequency
  2549. * @priv: Private driver interface data
  2550. * @settings: Settings for CSA period and new channel
  2551. * Returns: 0 on success, -1 on failure
  2552. *
  2553. * This function is used to move the GO to the legacy STA channel to
  2554. * avoid frequency conflict in single channel concurrency.
  2555. */
  2556. int (*switch_channel)(void *priv, struct csa_settings *settings);
  2557. /**
  2558. * start_dfs_cac - Listen for radar interference on the channel
  2559. * @priv: Private driver interface data
  2560. * @freq: Channel parameters
  2561. * Returns: 0 on success, -1 on failure
  2562. */
  2563. int (*start_dfs_cac)(void *priv, struct hostapd_freq_params *freq);
  2564. /**
  2565. * stop_ap - Removes beacon from AP
  2566. * @priv: Private driver interface data
  2567. * Returns: 0 on success, -1 on failure (or if not supported)
  2568. *
  2569. * This optional function can be used to disable AP mode related
  2570. * configuration. Unlike deinit_ap, it does not change to station
  2571. * mode.
  2572. */
  2573. int (*stop_ap)(void *priv);
  2574. /**
  2575. * get_survey - Retrieve survey data
  2576. * @priv: Private driver interface data
  2577. * @freq: If set, survey data for the specified frequency is only
  2578. * being requested. If not set, all survey data is requested.
  2579. * Returns: 0 on success, -1 on failure
  2580. *
  2581. * Use this to retrieve:
  2582. *
  2583. * - the observed channel noise floor
  2584. * - the amount of time we have spent on the channel
  2585. * - the amount of time during which we have spent on the channel that
  2586. * the radio has determined the medium is busy and we cannot
  2587. * transmit
  2588. * - the amount of time we have spent receiving data
  2589. * - the amount of time we have spent transmitting data
  2590. *
  2591. * This data can be used for spectrum heuristics. One example is
  2592. * Automatic Channel Selection (ACS). The channel survey data is
  2593. * kept on a linked list on the channel data, one entry is added
  2594. * for each survey. The min_nf of the channel is updated for each
  2595. * survey.
  2596. */
  2597. int (*get_survey)(void *priv, unsigned int freq);
  2598. /**
  2599. * status - Get driver interface status information
  2600. * @priv: Private driver interface data
  2601. * @buf: Buffer for printing tou the status information
  2602. * @buflen: Maximum length of the buffer
  2603. * Returns: Length of written status information or -1 on failure
  2604. */
  2605. int (*status)(void *priv, char *buf, size_t buflen);
  2606. };
  2607. /**
  2608. * enum wpa_event_type - Event type for wpa_supplicant_event() calls
  2609. */
  2610. enum wpa_event_type {
  2611. /**
  2612. * EVENT_ASSOC - Association completed
  2613. *
  2614. * This event needs to be delivered when the driver completes IEEE
  2615. * 802.11 association or reassociation successfully.
  2616. * wpa_driver_ops::get_bssid() is expected to provide the current BSSID
  2617. * after this event has been generated. In addition, optional
  2618. * EVENT_ASSOCINFO may be generated just before EVENT_ASSOC to provide
  2619. * more information about the association. If the driver interface gets
  2620. * both of these events at the same time, it can also include the
  2621. * assoc_info data in EVENT_ASSOC call.
  2622. */
  2623. EVENT_ASSOC,
  2624. /**
  2625. * EVENT_DISASSOC - Association lost
  2626. *
  2627. * This event should be called when association is lost either due to
  2628. * receiving deauthenticate or disassociate frame from the AP or when
  2629. * sending either of these frames to the current AP. If the driver
  2630. * supports separate deauthentication event, EVENT_DISASSOC should only
  2631. * be used for disassociation and EVENT_DEAUTH for deauthentication.
  2632. * In AP mode, union wpa_event_data::disassoc_info is required.
  2633. */
  2634. EVENT_DISASSOC,
  2635. /**
  2636. * EVENT_MICHAEL_MIC_FAILURE - Michael MIC (TKIP) detected
  2637. *
  2638. * This event must be delivered when a Michael MIC error is detected by
  2639. * the local driver. Additional data for event processing is
  2640. * provided with union wpa_event_data::michael_mic_failure. This
  2641. * information is used to request new encyption key and to initiate
  2642. * TKIP countermeasures if needed.
  2643. */
  2644. EVENT_MICHAEL_MIC_FAILURE,
  2645. /**
  2646. * EVENT_SCAN_RESULTS - Scan results available
  2647. *
  2648. * This event must be called whenever scan results are available to be
  2649. * fetched with struct wpa_driver_ops::get_scan_results(). This event
  2650. * is expected to be used some time after struct wpa_driver_ops::scan()
  2651. * is called. If the driver provides an unsolicited event when the scan
  2652. * has been completed, this event can be used to trigger
  2653. * EVENT_SCAN_RESULTS call. If such event is not available from the
  2654. * driver, the driver wrapper code is expected to use a registered
  2655. * timeout to generate EVENT_SCAN_RESULTS call after the time that the
  2656. * scan is expected to be completed. Optional information about
  2657. * completed scan can be provided with union wpa_event_data::scan_info.
  2658. */
  2659. EVENT_SCAN_RESULTS,
  2660. /**
  2661. * EVENT_ASSOCINFO - Report optional extra information for association
  2662. *
  2663. * This event can be used to report extra association information for
  2664. * EVENT_ASSOC processing. This extra information includes IEs from
  2665. * association frames and Beacon/Probe Response frames in union
  2666. * wpa_event_data::assoc_info. EVENT_ASSOCINFO must be send just before
  2667. * EVENT_ASSOC. Alternatively, the driver interface can include
  2668. * assoc_info data in the EVENT_ASSOC call if it has all the
  2669. * information available at the same point.
  2670. */
  2671. EVENT_ASSOCINFO,
  2672. /**
  2673. * EVENT_INTERFACE_STATUS - Report interface status changes
  2674. *
  2675. * This optional event can be used to report changes in interface
  2676. * status (interface added/removed) using union
  2677. * wpa_event_data::interface_status. This can be used to trigger
  2678. * wpa_supplicant to stop and re-start processing for the interface,
  2679. * e.g., when a cardbus card is ejected/inserted.
  2680. */
  2681. EVENT_INTERFACE_STATUS,
  2682. /**
  2683. * EVENT_PMKID_CANDIDATE - Report a candidate AP for pre-authentication
  2684. *
  2685. * This event can be used to inform wpa_supplicant about candidates for
  2686. * RSN (WPA2) pre-authentication. If wpa_supplicant is not responsible
  2687. * for scan request (ap_scan=2 mode), this event is required for
  2688. * pre-authentication. If wpa_supplicant is performing scan request
  2689. * (ap_scan=1), this event is optional since scan results can be used
  2690. * to add pre-authentication candidates. union
  2691. * wpa_event_data::pmkid_candidate is used to report the BSSID of the
  2692. * candidate and priority of the candidate, e.g., based on the signal
  2693. * strength, in order to try to pre-authenticate first with candidates
  2694. * that are most likely targets for re-association.
  2695. *
  2696. * EVENT_PMKID_CANDIDATE can be called whenever the driver has updates
  2697. * on the candidate list. In addition, it can be called for the current
  2698. * AP and APs that have existing PMKSA cache entries. wpa_supplicant
  2699. * will automatically skip pre-authentication in cases where a valid
  2700. * PMKSA exists. When more than one candidate exists, this event should
  2701. * be generated once for each candidate.
  2702. *
  2703. * Driver will be notified about successful pre-authentication with
  2704. * struct wpa_driver_ops::add_pmkid() calls.
  2705. */
  2706. EVENT_PMKID_CANDIDATE,
  2707. /**
  2708. * EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
  2709. *
  2710. * This event can be used to inform wpa_supplicant about desire to set
  2711. * up secure direct link connection between two stations as defined in
  2712. * IEEE 802.11e with a new PeerKey mechanism that replaced the original
  2713. * STAKey negotiation. The caller will need to set peer address for the
  2714. * event.
  2715. */
  2716. EVENT_STKSTART,
  2717. /**
  2718. * EVENT_TDLS - Request TDLS operation
  2719. *
  2720. * This event can be used to request a TDLS operation to be performed.
  2721. */
  2722. EVENT_TDLS,
  2723. /**
  2724. * EVENT_FT_RESPONSE - Report FT (IEEE 802.11r) response IEs
  2725. *
  2726. * The driver is expected to report the received FT IEs from
  2727. * FT authentication sequence from the AP. The FT IEs are included in
  2728. * the extra information in union wpa_event_data::ft_ies.
  2729. */
  2730. EVENT_FT_RESPONSE,
  2731. /**
  2732. * EVENT_IBSS_RSN_START - Request RSN authentication in IBSS
  2733. *
  2734. * The driver can use this event to inform wpa_supplicant about a STA
  2735. * in an IBSS with which protected frames could be exchanged. This
  2736. * event starts RSN authentication with the other STA to authenticate
  2737. * the STA and set up encryption keys with it.
  2738. */
  2739. EVENT_IBSS_RSN_START,
  2740. /**
  2741. * EVENT_AUTH - Authentication result
  2742. *
  2743. * This event should be called when authentication attempt has been
  2744. * completed. This is only used if the driver supports separate
  2745. * authentication step (struct wpa_driver_ops::authenticate).
  2746. * Information about authentication result is included in
  2747. * union wpa_event_data::auth.
  2748. */
  2749. EVENT_AUTH,
  2750. /**
  2751. * EVENT_DEAUTH - Authentication lost
  2752. *
  2753. * This event should be called when authentication is lost either due
  2754. * to receiving deauthenticate frame from the AP or when sending that
  2755. * frame to the current AP.
  2756. * In AP mode, union wpa_event_data::deauth_info is required.
  2757. */
  2758. EVENT_DEAUTH,
  2759. /**
  2760. * EVENT_ASSOC_REJECT - Association rejected
  2761. *
  2762. * This event should be called when (re)association attempt has been
  2763. * rejected by the AP. Information about the association response is
  2764. * included in union wpa_event_data::assoc_reject.
  2765. */
  2766. EVENT_ASSOC_REJECT,
  2767. /**
  2768. * EVENT_AUTH_TIMED_OUT - Authentication timed out
  2769. */
  2770. EVENT_AUTH_TIMED_OUT,
  2771. /**
  2772. * EVENT_ASSOC_TIMED_OUT - Association timed out
  2773. */
  2774. EVENT_ASSOC_TIMED_OUT,
  2775. /**
  2776. * EVENT_FT_RRB_RX - FT (IEEE 802.11r) RRB frame received
  2777. */
  2778. EVENT_FT_RRB_RX,
  2779. /**
  2780. * EVENT_WPS_BUTTON_PUSHED - Report hardware push button press for WPS
  2781. */
  2782. EVENT_WPS_BUTTON_PUSHED,
  2783. /**
  2784. * EVENT_TX_STATUS - Report TX status
  2785. */
  2786. EVENT_TX_STATUS,
  2787. /**
  2788. * EVENT_RX_FROM_UNKNOWN - Report RX from unknown STA
  2789. */
  2790. EVENT_RX_FROM_UNKNOWN,
  2791. /**
  2792. * EVENT_RX_MGMT - Report RX of a management frame
  2793. */
  2794. EVENT_RX_MGMT,
  2795. /**
  2796. * EVENT_RX_ACTION - Action frame received
  2797. *
  2798. * This event is used to indicate when an Action frame has been
  2799. * received. Information about the received frame is included in
  2800. * union wpa_event_data::rx_action.
  2801. */
  2802. EVENT_RX_ACTION,
  2803. /**
  2804. * EVENT_REMAIN_ON_CHANNEL - Remain-on-channel duration started
  2805. *
  2806. * This event is used to indicate when the driver has started the
  2807. * requested remain-on-channel duration. Information about the
  2808. * operation is included in union wpa_event_data::remain_on_channel.
  2809. */
  2810. EVENT_REMAIN_ON_CHANNEL,
  2811. /**
  2812. * EVENT_CANCEL_REMAIN_ON_CHANNEL - Remain-on-channel timed out
  2813. *
  2814. * This event is used to indicate when the driver has completed
  2815. * remain-on-channel duration, i.e., may noot be available on the
  2816. * requested channel anymore. Information about the
  2817. * operation is included in union wpa_event_data::remain_on_channel.
  2818. */
  2819. EVENT_CANCEL_REMAIN_ON_CHANNEL,
  2820. /**
  2821. * EVENT_MLME_RX - Report reception of frame for MLME (test use only)
  2822. *
  2823. * This event is used only by driver_test.c and userspace MLME.
  2824. */
  2825. EVENT_MLME_RX,
  2826. /**
  2827. * EVENT_RX_PROBE_REQ - Indicate received Probe Request frame
  2828. *
  2829. * This event is used to indicate when a Probe Request frame has been
  2830. * received. Information about the received frame is included in
  2831. * union wpa_event_data::rx_probe_req. The driver is required to report
  2832. * these events only after successfully completed probe_req_report()
  2833. * commands to request the events (i.e., report parameter is non-zero)
  2834. * in station mode. In AP mode, Probe Request frames should always be
  2835. * reported.
  2836. */
  2837. EVENT_RX_PROBE_REQ,
  2838. /**
  2839. * EVENT_NEW_STA - New wired device noticed
  2840. *
  2841. * This event is used to indicate that a new device has been detected
  2842. * in a network that does not use association-like functionality (i.e.,
  2843. * mainly wired Ethernet). This can be used to start EAPOL
  2844. * authenticator when receiving a frame from a device. The address of
  2845. * the device is included in union wpa_event_data::new_sta.
  2846. */
  2847. EVENT_NEW_STA,
  2848. /**
  2849. * EVENT_EAPOL_RX - Report received EAPOL frame
  2850. *
  2851. * When in AP mode with hostapd, this event is required to be used to
  2852. * deliver the receive EAPOL frames from the driver. With
  2853. * %wpa_supplicant, this event is used only if the send_eapol() handler
  2854. * is used to override the use of l2_packet for EAPOL frame TX.
  2855. */
  2856. EVENT_EAPOL_RX,
  2857. /**
  2858. * EVENT_SIGNAL_CHANGE - Indicate change in signal strength
  2859. *
  2860. * This event is used to indicate changes in the signal strength
  2861. * observed in frames received from the current AP if signal strength
  2862. * monitoring has been enabled with signal_monitor().
  2863. */
  2864. EVENT_SIGNAL_CHANGE,
  2865. /**
  2866. * EVENT_INTERFACE_ENABLED - Notify that interface was enabled
  2867. *
  2868. * This event is used to indicate that the interface was enabled after
  2869. * having been previously disabled, e.g., due to rfkill.
  2870. */
  2871. EVENT_INTERFACE_ENABLED,
  2872. /**
  2873. * EVENT_INTERFACE_DISABLED - Notify that interface was disabled
  2874. *
  2875. * This event is used to indicate that the interface was disabled,
  2876. * e.g., due to rfkill.
  2877. */
  2878. EVENT_INTERFACE_DISABLED,
  2879. /**
  2880. * EVENT_CHANNEL_LIST_CHANGED - Channel list changed
  2881. *
  2882. * This event is used to indicate that the channel list has changed,
  2883. * e.g., because of a regulatory domain change triggered by scan
  2884. * results including an AP advertising a country code.
  2885. */
  2886. EVENT_CHANNEL_LIST_CHANGED,
  2887. /**
  2888. * EVENT_INTERFACE_UNAVAILABLE - Notify that interface is unavailable
  2889. *
  2890. * This event is used to indicate that the driver cannot maintain this
  2891. * interface in its operation mode anymore. The most likely use for
  2892. * this is to indicate that AP mode operation is not available due to
  2893. * operating channel would need to be changed to a DFS channel when
  2894. * the driver does not support radar detection and another virtual
  2895. * interfaces caused the operating channel to change. Other similar
  2896. * resource conflicts could also trigger this for station mode
  2897. * interfaces.
  2898. */
  2899. EVENT_INTERFACE_UNAVAILABLE,
  2900. /**
  2901. * EVENT_BEST_CHANNEL
  2902. *
  2903. * Driver generates this event whenever it detects a better channel
  2904. * (e.g., based on RSSI or channel use). This information can be used
  2905. * to improve channel selection for a new AP/P2P group.
  2906. */
  2907. EVENT_BEST_CHANNEL,
  2908. /**
  2909. * EVENT_UNPROT_DEAUTH - Unprotected Deauthentication frame received
  2910. *
  2911. * This event should be called when a Deauthentication frame is dropped
  2912. * due to it not being protected (MFP/IEEE 802.11w).
  2913. * union wpa_event_data::unprot_deauth is required to provide more
  2914. * details of the frame.
  2915. */
  2916. EVENT_UNPROT_DEAUTH,
  2917. /**
  2918. * EVENT_UNPROT_DISASSOC - Unprotected Disassociation frame received
  2919. *
  2920. * This event should be called when a Disassociation frame is dropped
  2921. * due to it not being protected (MFP/IEEE 802.11w).
  2922. * union wpa_event_data::unprot_disassoc is required to provide more
  2923. * details of the frame.
  2924. */
  2925. EVENT_UNPROT_DISASSOC,
  2926. /**
  2927. * EVENT_STATION_LOW_ACK
  2928. *
  2929. * Driver generates this event whenever it detected that a particular
  2930. * station was lost. Detection can be through massive transmission
  2931. * failures for example.
  2932. */
  2933. EVENT_STATION_LOW_ACK,
  2934. /**
  2935. * EVENT_P2P_DEV_FOUND - Report a discovered P2P device
  2936. *
  2937. * This event is used only if the driver implements P2P management
  2938. * internally. Event data is stored in
  2939. * union wpa_event_data::p2p_dev_found.
  2940. */
  2941. EVENT_P2P_DEV_FOUND,
  2942. /**
  2943. * EVENT_P2P_GO_NEG_REQ_RX - Report reception of GO Negotiation Request
  2944. *
  2945. * This event is used only if the driver implements P2P management
  2946. * internally. Event data is stored in
  2947. * union wpa_event_data::p2p_go_neg_req_rx.
  2948. */
  2949. EVENT_P2P_GO_NEG_REQ_RX,
  2950. /**
  2951. * EVENT_P2P_GO_NEG_COMPLETED - Report completion of GO Negotiation
  2952. *
  2953. * This event is used only if the driver implements P2P management
  2954. * internally. Event data is stored in
  2955. * union wpa_event_data::p2p_go_neg_completed.
  2956. */
  2957. EVENT_P2P_GO_NEG_COMPLETED,
  2958. EVENT_P2P_PROV_DISC_REQUEST,
  2959. EVENT_P2P_PROV_DISC_RESPONSE,
  2960. EVENT_P2P_SD_REQUEST,
  2961. EVENT_P2P_SD_RESPONSE,
  2962. /**
  2963. * EVENT_IBSS_PEER_LOST - IBSS peer not reachable anymore
  2964. */
  2965. EVENT_IBSS_PEER_LOST,
  2966. /**
  2967. * EVENT_DRIVER_GTK_REKEY - Device/driver did GTK rekey
  2968. *
  2969. * This event carries the new replay counter to notify wpa_supplicant
  2970. * of the current EAPOL-Key Replay Counter in case the driver/firmware
  2971. * completed Group Key Handshake while the host (including
  2972. * wpa_supplicant was sleeping).
  2973. */
  2974. EVENT_DRIVER_GTK_REKEY,
  2975. /**
  2976. * EVENT_SCHED_SCAN_STOPPED - Scheduled scan was stopped
  2977. */
  2978. EVENT_SCHED_SCAN_STOPPED,
  2979. /**
  2980. * EVENT_DRIVER_CLIENT_POLL_OK - Station responded to poll
  2981. *
  2982. * This event indicates that the station responded to the poll
  2983. * initiated with @poll_client.
  2984. */
  2985. EVENT_DRIVER_CLIENT_POLL_OK,
  2986. /**
  2987. * EVENT_EAPOL_TX_STATUS - notify of EAPOL TX status
  2988. */
  2989. EVENT_EAPOL_TX_STATUS,
  2990. /**
  2991. * EVENT_CH_SWITCH - AP or GO decided to switch channels
  2992. *
  2993. * Described in wpa_event_data.ch_switch
  2994. * */
  2995. EVENT_CH_SWITCH,
  2996. /**
  2997. * EVENT_WNM - Request WNM operation
  2998. *
  2999. * This event can be used to request a WNM operation to be performed.
  3000. */
  3001. EVENT_WNM,
  3002. /**
  3003. * EVENT_CONNECT_FAILED_REASON - Connection failure reason in AP mode
  3004. *
  3005. * This event indicates that the driver reported a connection failure
  3006. * with the specified client (for example, max client reached, etc.) in
  3007. * AP mode.
  3008. */
  3009. EVENT_CONNECT_FAILED_REASON,
  3010. /**
  3011. * EVENT_RADAR_DETECTED - Notify of radar detection
  3012. *
  3013. * A radar has been detected on the supplied frequency, hostapd should
  3014. * react accordingly (e.g., change channel).
  3015. */
  3016. EVENT_DFS_RADAR_DETECTED,
  3017. /**
  3018. * EVENT_CAC_FINISHED - Notify that channel availability check has been completed
  3019. *
  3020. * After a successful CAC, the channel can be marked clear and used.
  3021. */
  3022. EVENT_DFS_CAC_FINISHED,
  3023. /**
  3024. * EVENT_CAC_ABORTED - Notify that channel availability check has been aborted
  3025. *
  3026. * The CAC was not successful, and the channel remains in the previous
  3027. * state. This may happen due to a radar beeing detected or other
  3028. * external influences.
  3029. */
  3030. EVENT_DFS_CAC_ABORTED,
  3031. /**
  3032. * EVENT_DFS_CAC_NOP_FINISHED - Notify that non-occupancy period is over
  3033. *
  3034. * The channel which was previously unavailable is now available again.
  3035. */
  3036. EVENT_DFS_NOP_FINISHED,
  3037. /*
  3038. * EVENT_SURVEY - Received survey data
  3039. *
  3040. * This event gets triggered when a driver query is issued for survey
  3041. * data and the requested data becomes available. The returned data is
  3042. * stored in struct survey_results. The results provide at most one
  3043. * survey entry for each frequency and at minimum will provide one survey
  3044. * entry for one frequency. The survey data can be os_malloc()'d and
  3045. * then os_free()'d, so the event callback must only copy data.
  3046. */
  3047. EVENT_SURVEY
  3048. };
  3049. /**
  3050. * struct freq_survey - Channel survey info
  3051. *
  3052. * @ifidx: Interface index in which this survey was observed
  3053. * @freq: Center of frequency of the surveyed channel
  3054. * @nf: Channel noise floor in dBm
  3055. * @channel_time: Amount of time in ms the radio spent on the channel
  3056. * @channel_time_busy: Amount of time in ms the radio detected some signal
  3057. * that indicated to the radio the channel was not clear
  3058. * @channel_time_rx: Amount of time the radio spent receiving data
  3059. * @channel_time_tx: Amount of time the radio spent transmitting data
  3060. * @filled: bitmask indicating which fields have been reported, see
  3061. * SURVEY_HAS_* defines.
  3062. * @list: Internal list pointers
  3063. */
  3064. struct freq_survey {
  3065. u32 ifidx;
  3066. unsigned int freq;
  3067. s8 nf;
  3068. u64 channel_time;
  3069. u64 channel_time_busy;
  3070. u64 channel_time_rx;
  3071. u64 channel_time_tx;
  3072. unsigned int filled;
  3073. struct dl_list list;
  3074. };
  3075. #define SURVEY_HAS_NF BIT(0)
  3076. #define SURVEY_HAS_CHAN_TIME BIT(1)
  3077. #define SURVEY_HAS_CHAN_TIME_BUSY BIT(2)
  3078. #define SURVEY_HAS_CHAN_TIME_RX BIT(3)
  3079. #define SURVEY_HAS_CHAN_TIME_TX BIT(4)
  3080. /**
  3081. * union wpa_event_data - Additional data for wpa_supplicant_event() calls
  3082. */
  3083. union wpa_event_data {
  3084. /**
  3085. * struct assoc_info - Data for EVENT_ASSOC and EVENT_ASSOCINFO events
  3086. *
  3087. * This structure is optional for EVENT_ASSOC calls and required for
  3088. * EVENT_ASSOCINFO calls. By using EVENT_ASSOC with this data, the
  3089. * driver interface does not need to generate separate EVENT_ASSOCINFO
  3090. * calls.
  3091. */
  3092. struct assoc_info {
  3093. /**
  3094. * reassoc - Flag to indicate association or reassociation
  3095. */
  3096. int reassoc;
  3097. /**
  3098. * req_ies - (Re)Association Request IEs
  3099. *
  3100. * If the driver generates WPA/RSN IE, this event data must be
  3101. * returned for WPA handshake to have needed information. If
  3102. * wpa_supplicant-generated WPA/RSN IE is used, this
  3103. * information event is optional.
  3104. *
  3105. * This should start with the first IE (fixed fields before IEs
  3106. * are not included).
  3107. */
  3108. const u8 *req_ies;
  3109. /**
  3110. * req_ies_len - Length of req_ies in bytes
  3111. */
  3112. size_t req_ies_len;
  3113. /**
  3114. * resp_ies - (Re)Association Response IEs
  3115. *
  3116. * Optional association data from the driver. This data is not
  3117. * required WPA, but may be useful for some protocols and as
  3118. * such, should be reported if this is available to the driver
  3119. * interface.
  3120. *
  3121. * This should start with the first IE (fixed fields before IEs
  3122. * are not included).
  3123. */
  3124. const u8 *resp_ies;
  3125. /**
  3126. * resp_ies_len - Length of resp_ies in bytes
  3127. */
  3128. size_t resp_ies_len;
  3129. /**
  3130. * beacon_ies - Beacon or Probe Response IEs
  3131. *
  3132. * Optional Beacon/ProbeResp data: IEs included in Beacon or
  3133. * Probe Response frames from the current AP (i.e., the one
  3134. * that the client just associated with). This information is
  3135. * used to update WPA/RSN IE for the AP. If this field is not
  3136. * set, the results from previous scan will be used. If no
  3137. * data for the new AP is found, scan results will be requested
  3138. * again (without scan request). At this point, the driver is
  3139. * expected to provide WPA/RSN IE for the AP (if WPA/WPA2 is
  3140. * used).
  3141. *
  3142. * This should start with the first IE (fixed fields before IEs
  3143. * are not included).
  3144. */
  3145. const u8 *beacon_ies;
  3146. /**
  3147. * beacon_ies_len - Length of beacon_ies */
  3148. size_t beacon_ies_len;
  3149. /**
  3150. * freq - Frequency of the operational channel in MHz
  3151. */
  3152. unsigned int freq;
  3153. /**
  3154. * addr - Station address (for AP mode)
  3155. */
  3156. const u8 *addr;
  3157. } assoc_info;
  3158. /**
  3159. * struct disassoc_info - Data for EVENT_DISASSOC events
  3160. */
  3161. struct disassoc_info {
  3162. /**
  3163. * addr - Station address (for AP mode)
  3164. */
  3165. const u8 *addr;
  3166. /**
  3167. * reason_code - Reason Code (host byte order) used in
  3168. * Deauthentication frame
  3169. */
  3170. u16 reason_code;
  3171. /**
  3172. * ie - Optional IE(s) in Disassociation frame
  3173. */
  3174. const u8 *ie;
  3175. /**
  3176. * ie_len - Length of ie buffer in octets
  3177. */
  3178. size_t ie_len;
  3179. /**
  3180. * locally_generated - Whether the frame was locally generated
  3181. */
  3182. int locally_generated;
  3183. } disassoc_info;
  3184. /**
  3185. * struct deauth_info - Data for EVENT_DEAUTH events
  3186. */
  3187. struct deauth_info {
  3188. /**
  3189. * addr - Station address (for AP mode)
  3190. */
  3191. const u8 *addr;
  3192. /**
  3193. * reason_code - Reason Code (host byte order) used in
  3194. * Deauthentication frame
  3195. */
  3196. u16 reason_code;
  3197. /**
  3198. * ie - Optional IE(s) in Deauthentication frame
  3199. */
  3200. const u8 *ie;
  3201. /**
  3202. * ie_len - Length of ie buffer in octets
  3203. */
  3204. size_t ie_len;
  3205. /**
  3206. * locally_generated - Whether the frame was locally generated
  3207. */
  3208. int locally_generated;
  3209. } deauth_info;
  3210. /**
  3211. * struct michael_mic_failure - Data for EVENT_MICHAEL_MIC_FAILURE
  3212. */
  3213. struct michael_mic_failure {
  3214. int unicast;
  3215. const u8 *src;
  3216. } michael_mic_failure;
  3217. /**
  3218. * struct interface_status - Data for EVENT_INTERFACE_STATUS
  3219. */
  3220. struct interface_status {
  3221. char ifname[100];
  3222. enum {
  3223. EVENT_INTERFACE_ADDED, EVENT_INTERFACE_REMOVED
  3224. } ievent;
  3225. } interface_status;
  3226. /**
  3227. * struct pmkid_candidate - Data for EVENT_PMKID_CANDIDATE
  3228. */
  3229. struct pmkid_candidate {
  3230. /** BSSID of the PMKID candidate */
  3231. u8 bssid[ETH_ALEN];
  3232. /** Smaller the index, higher the priority */
  3233. int index;
  3234. /** Whether RSN IE includes pre-authenticate flag */
  3235. int preauth;
  3236. } pmkid_candidate;
  3237. /**
  3238. * struct stkstart - Data for EVENT_STKSTART
  3239. */
  3240. struct stkstart {
  3241. u8 peer[ETH_ALEN];
  3242. } stkstart;
  3243. /**
  3244. * struct tdls - Data for EVENT_TDLS
  3245. */
  3246. struct tdls {
  3247. u8 peer[ETH_ALEN];
  3248. enum {
  3249. TDLS_REQUEST_SETUP,
  3250. TDLS_REQUEST_TEARDOWN
  3251. } oper;
  3252. u16 reason_code; /* for teardown */
  3253. } tdls;
  3254. /**
  3255. * struct wnm - Data for EVENT_WNM
  3256. */
  3257. struct wnm {
  3258. u8 addr[ETH_ALEN];
  3259. enum {
  3260. WNM_OPER_SLEEP,
  3261. } oper;
  3262. enum {
  3263. WNM_SLEEP_ENTER,
  3264. WNM_SLEEP_EXIT
  3265. } sleep_action;
  3266. int sleep_intval;
  3267. u16 reason_code;
  3268. u8 *buf;
  3269. u16 buf_len;
  3270. } wnm;
  3271. /**
  3272. * struct ft_ies - FT information elements (EVENT_FT_RESPONSE)
  3273. *
  3274. * During FT (IEEE 802.11r) authentication sequence, the driver is
  3275. * expected to use this event to report received FT IEs (MDIE, FTIE,
  3276. * RSN IE, TIE, possible resource request) to the supplicant. The FT
  3277. * IEs for the next message will be delivered through the
  3278. * struct wpa_driver_ops::update_ft_ies() callback.
  3279. */
  3280. struct ft_ies {
  3281. const u8 *ies;
  3282. size_t ies_len;
  3283. int ft_action;
  3284. u8 target_ap[ETH_ALEN];
  3285. /** Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request */
  3286. const u8 *ric_ies;
  3287. /** Length of ric_ies buffer in octets */
  3288. size_t ric_ies_len;
  3289. } ft_ies;
  3290. /**
  3291. * struct ibss_rsn_start - Data for EVENT_IBSS_RSN_START
  3292. */
  3293. struct ibss_rsn_start {
  3294. u8 peer[ETH_ALEN];
  3295. } ibss_rsn_start;
  3296. /**
  3297. * struct auth_info - Data for EVENT_AUTH events
  3298. */
  3299. struct auth_info {
  3300. u8 peer[ETH_ALEN];
  3301. u8 bssid[ETH_ALEN];
  3302. u16 auth_type;
  3303. u16 auth_transaction;
  3304. u16 status_code;
  3305. const u8 *ies;
  3306. size_t ies_len;
  3307. } auth;
  3308. /**
  3309. * struct assoc_reject - Data for EVENT_ASSOC_REJECT events
  3310. */
  3311. struct assoc_reject {
  3312. /**
  3313. * bssid - BSSID of the AP that rejected association
  3314. */
  3315. const u8 *bssid;
  3316. /**
  3317. * resp_ies - (Re)Association Response IEs
  3318. *
  3319. * Optional association data from the driver. This data is not
  3320. * required WPA, but may be useful for some protocols and as
  3321. * such, should be reported if this is available to the driver
  3322. * interface.
  3323. *
  3324. * This should start with the first IE (fixed fields before IEs
  3325. * are not included).
  3326. */
  3327. const u8 *resp_ies;
  3328. /**
  3329. * resp_ies_len - Length of resp_ies in bytes
  3330. */
  3331. size_t resp_ies_len;
  3332. /**
  3333. * status_code - Status Code from (Re)association Response
  3334. */
  3335. u16 status_code;
  3336. } assoc_reject;
  3337. struct timeout_event {
  3338. u8 addr[ETH_ALEN];
  3339. } timeout_event;
  3340. /**
  3341. * struct ft_rrb_rx - Data for EVENT_FT_RRB_RX events
  3342. */
  3343. struct ft_rrb_rx {
  3344. const u8 *src;
  3345. const u8 *data;
  3346. size_t data_len;
  3347. } ft_rrb_rx;
  3348. /**
  3349. * struct tx_status - Data for EVENT_TX_STATUS events
  3350. */
  3351. struct tx_status {
  3352. u16 type;
  3353. u16 stype;
  3354. const u8 *dst;
  3355. const u8 *data;
  3356. size_t data_len;
  3357. int ack;
  3358. } tx_status;
  3359. /**
  3360. * struct rx_from_unknown - Data for EVENT_RX_FROM_UNKNOWN events
  3361. */
  3362. struct rx_from_unknown {
  3363. const u8 *bssid;
  3364. const u8 *addr;
  3365. int wds;
  3366. } rx_from_unknown;
  3367. /**
  3368. * struct rx_mgmt - Data for EVENT_RX_MGMT events
  3369. */
  3370. struct rx_mgmt {
  3371. const u8 *frame;
  3372. size_t frame_len;
  3373. u32 datarate;
  3374. int ssi_signal; /* dBm */
  3375. } rx_mgmt;
  3376. /**
  3377. * struct rx_action - Data for EVENT_RX_ACTION events
  3378. */
  3379. struct rx_action {
  3380. /**
  3381. * da - Destination address of the received Action frame
  3382. */
  3383. const u8 *da;
  3384. /**
  3385. * sa - Source address of the received Action frame
  3386. */
  3387. const u8 *sa;
  3388. /**
  3389. * bssid - Address 3 of the received Action frame
  3390. */
  3391. const u8 *bssid;
  3392. /**
  3393. * category - Action frame category
  3394. */
  3395. u8 category;
  3396. /**
  3397. * data - Action frame body after category field
  3398. */
  3399. const u8 *data;
  3400. /**
  3401. * len - Length of data in octets
  3402. */
  3403. size_t len;
  3404. /**
  3405. * freq - Frequency (in MHz) on which the frame was received
  3406. */
  3407. int freq;
  3408. } rx_action;
  3409. /**
  3410. * struct remain_on_channel - Data for EVENT_REMAIN_ON_CHANNEL events
  3411. *
  3412. * This is also used with EVENT_CANCEL_REMAIN_ON_CHANNEL events.
  3413. */
  3414. struct remain_on_channel {
  3415. /**
  3416. * freq - Channel frequency in MHz
  3417. */
  3418. unsigned int freq;
  3419. /**
  3420. * duration - Duration to remain on the channel in milliseconds
  3421. */
  3422. unsigned int duration;
  3423. } remain_on_channel;
  3424. /**
  3425. * struct scan_info - Optional data for EVENT_SCAN_RESULTS events
  3426. * @aborted: Whether the scan was aborted
  3427. * @freqs: Scanned frequencies in MHz (%NULL = all channels scanned)
  3428. * @num_freqs: Number of entries in freqs array
  3429. * @ssids: Scanned SSIDs (%NULL or zero-length SSID indicates wildcard
  3430. * SSID)
  3431. * @num_ssids: Number of entries in ssids array
  3432. */
  3433. struct scan_info {
  3434. int aborted;
  3435. const int *freqs;
  3436. size_t num_freqs;
  3437. struct wpa_driver_scan_ssid ssids[WPAS_MAX_SCAN_SSIDS];
  3438. size_t num_ssids;
  3439. } scan_info;
  3440. /**
  3441. * struct mlme_rx - Data for EVENT_MLME_RX events
  3442. */
  3443. struct mlme_rx {
  3444. const u8 *buf;
  3445. size_t len;
  3446. int freq;
  3447. int channel;
  3448. int ssi;
  3449. } mlme_rx;
  3450. /**
  3451. * struct rx_probe_req - Data for EVENT_RX_PROBE_REQ events
  3452. */
  3453. struct rx_probe_req {
  3454. /**
  3455. * sa - Source address of the received Probe Request frame
  3456. */
  3457. const u8 *sa;
  3458. /**
  3459. * da - Destination address of the received Probe Request frame
  3460. * or %NULL if not available
  3461. */
  3462. const u8 *da;
  3463. /**
  3464. * bssid - BSSID of the received Probe Request frame or %NULL
  3465. * if not available
  3466. */
  3467. const u8 *bssid;
  3468. /**
  3469. * ie - IEs from the Probe Request body
  3470. */
  3471. const u8 *ie;
  3472. /**
  3473. * ie_len - Length of ie buffer in octets
  3474. */
  3475. size_t ie_len;
  3476. /**
  3477. * signal - signal strength in dBm (or 0 if not available)
  3478. */
  3479. int ssi_signal;
  3480. } rx_probe_req;
  3481. /**
  3482. * struct new_sta - Data for EVENT_NEW_STA events
  3483. */
  3484. struct new_sta {
  3485. const u8 *addr;
  3486. } new_sta;
  3487. /**
  3488. * struct eapol_rx - Data for EVENT_EAPOL_RX events
  3489. */
  3490. struct eapol_rx {
  3491. const u8 *src;
  3492. const u8 *data;
  3493. size_t data_len;
  3494. } eapol_rx;
  3495. /**
  3496. * signal_change - Data for EVENT_SIGNAL_CHANGE events
  3497. */
  3498. struct wpa_signal_info signal_change;
  3499. /**
  3500. * struct best_channel - Data for EVENT_BEST_CHANNEL events
  3501. * @freq_24: Best 2.4 GHz band channel frequency in MHz
  3502. * @freq_5: Best 5 GHz band channel frequency in MHz
  3503. * @freq_overall: Best channel frequency in MHz
  3504. *
  3505. * 0 can be used to indicate no preference in either band.
  3506. */
  3507. struct best_channel {
  3508. int freq_24;
  3509. int freq_5;
  3510. int freq_overall;
  3511. } best_chan;
  3512. struct unprot_deauth {
  3513. const u8 *sa;
  3514. const u8 *da;
  3515. u16 reason_code;
  3516. } unprot_deauth;
  3517. struct unprot_disassoc {
  3518. const u8 *sa;
  3519. const u8 *da;
  3520. u16 reason_code;
  3521. } unprot_disassoc;
  3522. /**
  3523. * struct low_ack - Data for EVENT_STATION_LOW_ACK events
  3524. * @addr: station address
  3525. */
  3526. struct low_ack {
  3527. u8 addr[ETH_ALEN];
  3528. } low_ack;
  3529. /**
  3530. * struct p2p_dev_found - Data for EVENT_P2P_DEV_FOUND
  3531. */
  3532. struct p2p_dev_found {
  3533. const u8 *addr;
  3534. const u8 *dev_addr;
  3535. const u8 *pri_dev_type;
  3536. const char *dev_name;
  3537. u16 config_methods;
  3538. u8 dev_capab;
  3539. u8 group_capab;
  3540. } p2p_dev_found;
  3541. /**
  3542. * struct p2p_go_neg_req_rx - Data for EVENT_P2P_GO_NEG_REQ_RX
  3543. */
  3544. struct p2p_go_neg_req_rx {
  3545. const u8 *src;
  3546. u16 dev_passwd_id;
  3547. } p2p_go_neg_req_rx;
  3548. /**
  3549. * struct p2p_go_neg_completed - Data for EVENT_P2P_GO_NEG_COMPLETED
  3550. */
  3551. struct p2p_go_neg_completed {
  3552. struct p2p_go_neg_results *res;
  3553. } p2p_go_neg_completed;
  3554. struct p2p_prov_disc_req {
  3555. const u8 *peer;
  3556. u16 config_methods;
  3557. const u8 *dev_addr;
  3558. const u8 *pri_dev_type;
  3559. const char *dev_name;
  3560. u16 supp_config_methods;
  3561. u8 dev_capab;
  3562. u8 group_capab;
  3563. } p2p_prov_disc_req;
  3564. struct p2p_prov_disc_resp {
  3565. const u8 *peer;
  3566. u16 config_methods;
  3567. } p2p_prov_disc_resp;
  3568. struct p2p_sd_req {
  3569. int freq;
  3570. const u8 *sa;
  3571. u8 dialog_token;
  3572. u16 update_indic;
  3573. const u8 *tlvs;
  3574. size_t tlvs_len;
  3575. } p2p_sd_req;
  3576. struct p2p_sd_resp {
  3577. const u8 *sa;
  3578. u16 update_indic;
  3579. const u8 *tlvs;
  3580. size_t tlvs_len;
  3581. } p2p_sd_resp;
  3582. /**
  3583. * struct ibss_peer_lost - Data for EVENT_IBSS_PEER_LOST
  3584. */
  3585. struct ibss_peer_lost {
  3586. u8 peer[ETH_ALEN];
  3587. } ibss_peer_lost;
  3588. /**
  3589. * struct driver_gtk_rekey - Data for EVENT_DRIVER_GTK_REKEY
  3590. */
  3591. struct driver_gtk_rekey {
  3592. const u8 *bssid;
  3593. const u8 *replay_ctr;
  3594. } driver_gtk_rekey;
  3595. /**
  3596. * struct client_poll - Data for EVENT_DRIVER_CLIENT_POLL_OK events
  3597. * @addr: station address
  3598. */
  3599. struct client_poll {
  3600. u8 addr[ETH_ALEN];
  3601. } client_poll;
  3602. /**
  3603. * struct eapol_tx_status
  3604. * @dst: Original destination
  3605. * @data: Data starting with IEEE 802.1X header (!)
  3606. * @data_len: Length of data
  3607. * @ack: Indicates ack or lost frame
  3608. *
  3609. * This corresponds to hapd_send_eapol if the frame sent
  3610. * there isn't just reported as EVENT_TX_STATUS.
  3611. */
  3612. struct eapol_tx_status {
  3613. const u8 *dst;
  3614. const u8 *data;
  3615. int data_len;
  3616. int ack;
  3617. } eapol_tx_status;
  3618. /**
  3619. * struct ch_switch
  3620. * @freq: Frequency of new channel in MHz
  3621. * @ht_enabled: Whether this is an HT channel
  3622. * @ch_offset: Secondary channel offset
  3623. * @ch_width: Channel width
  3624. * @cf1: Center frequency 1
  3625. * @cf2: Center frequency 2
  3626. */
  3627. struct ch_switch {
  3628. int freq;
  3629. int ht_enabled;
  3630. int ch_offset;
  3631. enum chan_width ch_width;
  3632. int cf1;
  3633. int cf2;
  3634. } ch_switch;
  3635. /**
  3636. * struct connect_failed - Data for EVENT_CONNECT_FAILED_REASON
  3637. * @addr: Remote client address
  3638. * @code: Reason code for connection failure
  3639. */
  3640. struct connect_failed_reason {
  3641. u8 addr[ETH_ALEN];
  3642. enum {
  3643. MAX_CLIENT_REACHED,
  3644. BLOCKED_CLIENT
  3645. } code;
  3646. } connect_failed_reason;
  3647. /**
  3648. * struct dfs_event - Data for radar detected events
  3649. * @freq: Frequency of the channel in MHz
  3650. */
  3651. struct dfs_event {
  3652. int freq;
  3653. int ht_enabled;
  3654. int chan_offset;
  3655. enum chan_width chan_width;
  3656. int cf1;
  3657. int cf2;
  3658. } dfs_event;
  3659. /**
  3660. * survey_results - Survey result data for EVENT_SURVEY
  3661. * @freq_filter: Requested frequency survey filter, 0 if request
  3662. * was for all survey data
  3663. * @survey_list: Linked list of survey data
  3664. */
  3665. struct survey_results {
  3666. unsigned int freq_filter;
  3667. struct dl_list survey_list; /* struct freq_survey */
  3668. } survey_results;
  3669. /**
  3670. * channel_list_changed - Data for EVENT_CHANNEL_LIST_CHANGED
  3671. * @initiator: Initiator of the regulatory change
  3672. */
  3673. struct channel_list_changed {
  3674. enum reg_change_initiator initiator;
  3675. } channel_list_changed;
  3676. };
  3677. /**
  3678. * wpa_supplicant_event - Report a driver event for wpa_supplicant
  3679. * @ctx: Context pointer (wpa_s); this is the ctx variable registered
  3680. * with struct wpa_driver_ops::init()
  3681. * @event: event type (defined above)
  3682. * @data: possible extra data for the event
  3683. *
  3684. * Driver wrapper code should call this function whenever an event is received
  3685. * from the driver.
  3686. */
  3687. void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
  3688. union wpa_event_data *data);
  3689. /*
  3690. * The following inline functions are provided for convenience to simplify
  3691. * event indication for some of the common events.
  3692. */
  3693. static inline void drv_event_assoc(void *ctx, const u8 *addr, const u8 *ie,
  3694. size_t ielen, int reassoc)
  3695. {
  3696. union wpa_event_data event;
  3697. os_memset(&event, 0, sizeof(event));
  3698. event.assoc_info.reassoc = reassoc;
  3699. event.assoc_info.req_ies = ie;
  3700. event.assoc_info.req_ies_len = ielen;
  3701. event.assoc_info.addr = addr;
  3702. wpa_supplicant_event(ctx, EVENT_ASSOC, &event);
  3703. }
  3704. static inline void drv_event_disassoc(void *ctx, const u8 *addr)
  3705. {
  3706. union wpa_event_data event;
  3707. os_memset(&event, 0, sizeof(event));
  3708. event.disassoc_info.addr = addr;
  3709. wpa_supplicant_event(ctx, EVENT_DISASSOC, &event);
  3710. }
  3711. static inline void drv_event_eapol_rx(void *ctx, const u8 *src, const u8 *data,
  3712. size_t data_len)
  3713. {
  3714. union wpa_event_data event;
  3715. os_memset(&event, 0, sizeof(event));
  3716. event.eapol_rx.src = src;
  3717. event.eapol_rx.data = data;
  3718. event.eapol_rx.data_len = data_len;
  3719. wpa_supplicant_event(ctx, EVENT_EAPOL_RX, &event);
  3720. }
  3721. /* driver_common.c */
  3722. void wpa_scan_results_free(struct wpa_scan_results *res);
  3723. /* Convert wpa_event_type to a string for logging */
  3724. const char * event_to_string(enum wpa_event_type event);
  3725. #endif /* DRIVER_H */