driver_nl80211.c 234 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117
  1. /*
  2. * Driver interaction with Linux nl80211/cfg80211
  3. * Copyright (c) 2002-2012, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2003-2004, Instant802 Networks, Inc.
  5. * Copyright (c) 2005-2006, Devicescape Software, Inc.
  6. * Copyright (c) 2007, Johannes Berg <johannes@sipsolutions.net>
  7. * Copyright (c) 2009-2010, Atheros Communications
  8. *
  9. * This software may be distributed under the terms of the BSD license.
  10. * See README for more details.
  11. */
  12. #include "includes.h"
  13. #include <sys/ioctl.h>
  14. #include <sys/types.h>
  15. #include <sys/stat.h>
  16. #include <fcntl.h>
  17. #include <net/if.h>
  18. #include <netlink/genl/genl.h>
  19. #include <netlink/genl/family.h>
  20. #include <netlink/genl/ctrl.h>
  21. #include <linux/rtnetlink.h>
  22. #include <netpacket/packet.h>
  23. #include <linux/filter.h>
  24. #include <linux/errqueue.h>
  25. #include "nl80211_copy.h"
  26. #include "common.h"
  27. #include "eloop.h"
  28. #include "utils/list.h"
  29. #include "common/ieee802_11_defs.h"
  30. #include "common/ieee802_11_common.h"
  31. #include "l2_packet/l2_packet.h"
  32. #include "netlink.h"
  33. #include "linux_ioctl.h"
  34. #include "radiotap.h"
  35. #include "radiotap_iter.h"
  36. #include "rfkill.h"
  37. #include "driver.h"
  38. #ifndef SO_WIFI_STATUS
  39. # if defined(__sparc__)
  40. # define SO_WIFI_STATUS 0x0025
  41. # elif defined(__parisc__)
  42. # define SO_WIFI_STATUS 0x4022
  43. # else
  44. # define SO_WIFI_STATUS 41
  45. # endif
  46. # define SCM_WIFI_STATUS SO_WIFI_STATUS
  47. #endif
  48. #ifndef SO_EE_ORIGIN_TXSTATUS
  49. #define SO_EE_ORIGIN_TXSTATUS 4
  50. #endif
  51. #ifndef PACKET_TX_TIMESTAMP
  52. #define PACKET_TX_TIMESTAMP 16
  53. #endif
  54. #ifdef ANDROID
  55. #include "android_drv.h"
  56. #endif /* ANDROID */
  57. #ifdef CONFIG_LIBNL20
  58. /* libnl 2.0 compatibility code */
  59. #define nl_handle nl_sock
  60. #define nl80211_handle_alloc nl_socket_alloc_cb
  61. #define nl80211_handle_destroy nl_socket_free
  62. #else
  63. /*
  64. * libnl 1.1 has a bug, it tries to allocate socket numbers densely
  65. * but when you free a socket again it will mess up its bitmap and
  66. * and use the wrong number the next time it needs a socket ID.
  67. * Therefore, we wrap the handle alloc/destroy and add our own pid
  68. * accounting.
  69. */
  70. static uint32_t port_bitmap[32] = { 0 };
  71. static struct nl_handle *nl80211_handle_alloc(void *cb)
  72. {
  73. struct nl_handle *handle;
  74. uint32_t pid = getpid() & 0x3FFFFF;
  75. int i;
  76. handle = nl_handle_alloc_cb(cb);
  77. for (i = 0; i < 1024; i++) {
  78. if (port_bitmap[i / 32] & (1 << (i % 32)))
  79. continue;
  80. port_bitmap[i / 32] |= 1 << (i % 32);
  81. pid += i << 22;
  82. break;
  83. }
  84. nl_socket_set_local_port(handle, pid);
  85. return handle;
  86. }
  87. static void nl80211_handle_destroy(struct nl_handle *handle)
  88. {
  89. uint32_t port = nl_socket_get_local_port(handle);
  90. port >>= 22;
  91. port_bitmap[port / 32] &= ~(1 << (port % 32));
  92. nl_handle_destroy(handle);
  93. }
  94. #endif /* CONFIG_LIBNL20 */
  95. static struct nl_handle * nl_create_handle(struct nl_cb *cb, const char *dbg)
  96. {
  97. struct nl_handle *handle;
  98. handle = nl80211_handle_alloc(cb);
  99. if (handle == NULL) {
  100. wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
  101. "callbacks (%s)", dbg);
  102. return NULL;
  103. }
  104. if (genl_connect(handle)) {
  105. wpa_printf(MSG_ERROR, "nl80211: Failed to connect to generic "
  106. "netlink (%s)", dbg);
  107. nl80211_handle_destroy(handle);
  108. return NULL;
  109. }
  110. return handle;
  111. }
  112. static void nl_destroy_handles(struct nl_handle **handle)
  113. {
  114. if (*handle == NULL)
  115. return;
  116. nl80211_handle_destroy(*handle);
  117. *handle = NULL;
  118. }
  119. #ifndef IFF_LOWER_UP
  120. #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */
  121. #endif
  122. #ifndef IFF_DORMANT
  123. #define IFF_DORMANT 0x20000 /* driver signals dormant */
  124. #endif
  125. #ifndef IF_OPER_DORMANT
  126. #define IF_OPER_DORMANT 5
  127. #endif
  128. #ifndef IF_OPER_UP
  129. #define IF_OPER_UP 6
  130. #endif
  131. struct nl80211_global {
  132. struct dl_list interfaces;
  133. int if_add_ifindex;
  134. struct netlink_data *netlink;
  135. struct nl_cb *nl_cb;
  136. struct nl_handle *nl;
  137. int nl80211_id;
  138. int ioctl_sock; /* socket for ioctl() use */
  139. struct nl_handle *nl_event;
  140. };
  141. struct nl80211_wiphy_data {
  142. struct dl_list list;
  143. struct dl_list bsss;
  144. struct dl_list drvs;
  145. struct nl_handle *nl_beacons;
  146. struct nl_cb *nl_cb;
  147. int wiphy_idx;
  148. };
  149. static void nl80211_global_deinit(void *priv);
  150. static void wpa_driver_nl80211_deinit(void *priv);
  151. struct i802_bss {
  152. struct wpa_driver_nl80211_data *drv;
  153. struct i802_bss *next;
  154. int ifindex;
  155. char ifname[IFNAMSIZ + 1];
  156. char brname[IFNAMSIZ];
  157. unsigned int beacon_set:1;
  158. unsigned int added_if_into_bridge:1;
  159. unsigned int added_bridge:1;
  160. unsigned int in_deinit:1;
  161. u8 addr[ETH_ALEN];
  162. int freq;
  163. struct nl_handle *nl_preq, *nl_mgmt;
  164. struct nl_cb *nl_cb;
  165. struct nl80211_wiphy_data *wiphy_data;
  166. struct dl_list wiphy_list;
  167. };
  168. struct wpa_driver_nl80211_data {
  169. struct nl80211_global *global;
  170. struct dl_list list;
  171. struct dl_list wiphy_list;
  172. char phyname[32];
  173. void *ctx;
  174. int ifindex;
  175. int if_removed;
  176. int if_disabled;
  177. int ignore_if_down_event;
  178. struct rfkill_data *rfkill;
  179. struct wpa_driver_capa capa;
  180. int has_capability;
  181. int operstate;
  182. int scan_complete_events;
  183. struct nl_cb *nl_cb;
  184. u8 auth_bssid[ETH_ALEN];
  185. u8 bssid[ETH_ALEN];
  186. int associated;
  187. u8 ssid[32];
  188. size_t ssid_len;
  189. enum nl80211_iftype nlmode;
  190. enum nl80211_iftype ap_scan_as_station;
  191. unsigned int assoc_freq;
  192. int monitor_sock;
  193. int monitor_ifidx;
  194. int monitor_refcount;
  195. unsigned int disabled_11b_rates:1;
  196. unsigned int pending_remain_on_chan:1;
  197. unsigned int in_interface_list:1;
  198. unsigned int device_ap_sme:1;
  199. unsigned int poll_command_supported:1;
  200. unsigned int data_tx_status:1;
  201. unsigned int scan_for_auth:1;
  202. unsigned int retry_auth:1;
  203. unsigned int use_monitor:1;
  204. u64 remain_on_chan_cookie;
  205. u64 send_action_cookie;
  206. unsigned int last_mgmt_freq;
  207. struct wpa_driver_scan_filter *filter_ssids;
  208. size_t num_filter_ssids;
  209. struct i802_bss first_bss;
  210. int eapol_tx_sock;
  211. #ifdef HOSTAPD
  212. int eapol_sock; /* socket for EAPOL frames */
  213. int default_if_indices[16];
  214. int *if_indices;
  215. int num_if_indices;
  216. int last_freq;
  217. int last_freq_ht;
  218. #endif /* HOSTAPD */
  219. /* From failed authentication command */
  220. int auth_freq;
  221. u8 auth_bssid_[ETH_ALEN];
  222. u8 auth_ssid[32];
  223. size_t auth_ssid_len;
  224. int auth_alg;
  225. u8 *auth_ie;
  226. size_t auth_ie_len;
  227. u8 auth_wep_key[4][16];
  228. size_t auth_wep_key_len[4];
  229. int auth_wep_tx_keyidx;
  230. int auth_local_state_change;
  231. int auth_p2p;
  232. };
  233. static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx,
  234. void *timeout_ctx);
  235. static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
  236. enum nl80211_iftype nlmode);
  237. static int
  238. wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv);
  239. static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
  240. const u8 *addr, int cmd, u16 reason_code,
  241. int local_state_change);
  242. static void nl80211_remove_monitor_interface(
  243. struct wpa_driver_nl80211_data *drv);
  244. static int nl80211_send_frame_cmd(struct i802_bss *bss,
  245. unsigned int freq, unsigned int wait,
  246. const u8 *buf, size_t buf_len, u64 *cookie,
  247. int no_cck, int no_ack, int offchanok);
  248. static int wpa_driver_nl80211_probe_req_report(void *priv, int report);
  249. #ifdef ANDROID
  250. static int android_pno_start(struct i802_bss *bss,
  251. struct wpa_driver_scan_params *params);
  252. static int android_pno_stop(struct i802_bss *bss);
  253. #endif /* ANDROID */
  254. #ifdef HOSTAPD
  255. static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
  256. static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
  257. static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
  258. static int wpa_driver_nl80211_if_remove(void *priv,
  259. enum wpa_driver_if_type type,
  260. const char *ifname);
  261. #else /* HOSTAPD */
  262. static inline void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
  263. {
  264. }
  265. static inline void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
  266. {
  267. }
  268. static inline int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
  269. {
  270. return 0;
  271. }
  272. #endif /* HOSTAPD */
  273. static int i802_set_freq(void *priv, struct hostapd_freq_params *freq);
  274. static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
  275. int ifindex, int disabled);
  276. static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv);
  277. static int wpa_driver_nl80211_authenticate_retry(
  278. struct wpa_driver_nl80211_data *drv);
  279. static int is_ap_interface(enum nl80211_iftype nlmode)
  280. {
  281. return (nlmode == NL80211_IFTYPE_AP ||
  282. nlmode == NL80211_IFTYPE_P2P_GO);
  283. }
  284. static int is_sta_interface(enum nl80211_iftype nlmode)
  285. {
  286. return (nlmode == NL80211_IFTYPE_STATION ||
  287. nlmode == NL80211_IFTYPE_P2P_CLIENT);
  288. }
  289. static int is_p2p_interface(enum nl80211_iftype nlmode)
  290. {
  291. return (nlmode == NL80211_IFTYPE_P2P_CLIENT ||
  292. nlmode == NL80211_IFTYPE_P2P_GO);
  293. }
  294. struct nl80211_bss_info_arg {
  295. struct wpa_driver_nl80211_data *drv;
  296. struct wpa_scan_results *res;
  297. unsigned int assoc_freq;
  298. u8 assoc_bssid[ETH_ALEN];
  299. };
  300. static int bss_info_handler(struct nl_msg *msg, void *arg);
  301. /* nl80211 code */
  302. static int ack_handler(struct nl_msg *msg, void *arg)
  303. {
  304. int *err = arg;
  305. *err = 0;
  306. return NL_STOP;
  307. }
  308. static int finish_handler(struct nl_msg *msg, void *arg)
  309. {
  310. int *ret = arg;
  311. *ret = 0;
  312. return NL_SKIP;
  313. }
  314. static int error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err,
  315. void *arg)
  316. {
  317. int *ret = arg;
  318. *ret = err->error;
  319. return NL_SKIP;
  320. }
  321. static int no_seq_check(struct nl_msg *msg, void *arg)
  322. {
  323. return NL_OK;
  324. }
  325. static int send_and_recv(struct nl80211_global *global,
  326. struct nl_handle *nl_handle, struct nl_msg *msg,
  327. int (*valid_handler)(struct nl_msg *, void *),
  328. void *valid_data)
  329. {
  330. struct nl_cb *cb;
  331. int err = -ENOMEM;
  332. cb = nl_cb_clone(global->nl_cb);
  333. if (!cb)
  334. goto out;
  335. err = nl_send_auto_complete(nl_handle, msg);
  336. if (err < 0)
  337. goto out;
  338. err = 1;
  339. nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err);
  340. nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err);
  341. nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &err);
  342. if (valid_handler)
  343. nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
  344. valid_handler, valid_data);
  345. while (err > 0)
  346. nl_recvmsgs(nl_handle, cb);
  347. out:
  348. nl_cb_put(cb);
  349. nlmsg_free(msg);
  350. return err;
  351. }
  352. static int send_and_recv_msgs_global(struct nl80211_global *global,
  353. struct nl_msg *msg,
  354. int (*valid_handler)(struct nl_msg *, void *),
  355. void *valid_data)
  356. {
  357. return send_and_recv(global, global->nl, msg, valid_handler,
  358. valid_data);
  359. }
  360. static int send_and_recv_msgs(struct wpa_driver_nl80211_data *drv,
  361. struct nl_msg *msg,
  362. int (*valid_handler)(struct nl_msg *, void *),
  363. void *valid_data)
  364. {
  365. return send_and_recv(drv->global, drv->global->nl, msg,
  366. valid_handler, valid_data);
  367. }
  368. struct family_data {
  369. const char *group;
  370. int id;
  371. };
  372. static int family_handler(struct nl_msg *msg, void *arg)
  373. {
  374. struct family_data *res = arg;
  375. struct nlattr *tb[CTRL_ATTR_MAX + 1];
  376. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  377. struct nlattr *mcgrp;
  378. int i;
  379. nla_parse(tb, CTRL_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  380. genlmsg_attrlen(gnlh, 0), NULL);
  381. if (!tb[CTRL_ATTR_MCAST_GROUPS])
  382. return NL_SKIP;
  383. nla_for_each_nested(mcgrp, tb[CTRL_ATTR_MCAST_GROUPS], i) {
  384. struct nlattr *tb2[CTRL_ATTR_MCAST_GRP_MAX + 1];
  385. nla_parse(tb2, CTRL_ATTR_MCAST_GRP_MAX, nla_data(mcgrp),
  386. nla_len(mcgrp), NULL);
  387. if (!tb2[CTRL_ATTR_MCAST_GRP_NAME] ||
  388. !tb2[CTRL_ATTR_MCAST_GRP_ID] ||
  389. os_strncmp(nla_data(tb2[CTRL_ATTR_MCAST_GRP_NAME]),
  390. res->group,
  391. nla_len(tb2[CTRL_ATTR_MCAST_GRP_NAME])) != 0)
  392. continue;
  393. res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]);
  394. break;
  395. };
  396. return NL_SKIP;
  397. }
  398. static int nl_get_multicast_id(struct nl80211_global *global,
  399. const char *family, const char *group)
  400. {
  401. struct nl_msg *msg;
  402. int ret = -1;
  403. struct family_data res = { group, -ENOENT };
  404. msg = nlmsg_alloc();
  405. if (!msg)
  406. return -ENOMEM;
  407. genlmsg_put(msg, 0, 0, genl_ctrl_resolve(global->nl, "nlctrl"),
  408. 0, 0, CTRL_CMD_GETFAMILY, 0);
  409. NLA_PUT_STRING(msg, CTRL_ATTR_FAMILY_NAME, family);
  410. ret = send_and_recv_msgs_global(global, msg, family_handler, &res);
  411. msg = NULL;
  412. if (ret == 0)
  413. ret = res.id;
  414. nla_put_failure:
  415. nlmsg_free(msg);
  416. return ret;
  417. }
  418. static void * nl80211_cmd(struct wpa_driver_nl80211_data *drv,
  419. struct nl_msg *msg, int flags, uint8_t cmd)
  420. {
  421. return genlmsg_put(msg, 0, 0, drv->global->nl80211_id,
  422. 0, flags, cmd, 0);
  423. }
  424. struct wiphy_idx_data {
  425. int wiphy_idx;
  426. };
  427. static int netdev_info_handler(struct nl_msg *msg, void *arg)
  428. {
  429. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  430. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  431. struct wiphy_idx_data *info = arg;
  432. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  433. genlmsg_attrlen(gnlh, 0), NULL);
  434. if (tb[NL80211_ATTR_WIPHY])
  435. info->wiphy_idx = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
  436. return NL_SKIP;
  437. }
  438. static int nl80211_get_wiphy_index(struct i802_bss *bss)
  439. {
  440. struct nl_msg *msg;
  441. struct wiphy_idx_data data = {
  442. .wiphy_idx = -1,
  443. };
  444. msg = nlmsg_alloc();
  445. if (!msg)
  446. return -1;
  447. nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
  448. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
  449. if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
  450. return data.wiphy_idx;
  451. msg = NULL;
  452. nla_put_failure:
  453. nlmsg_free(msg);
  454. return -1;
  455. }
  456. static int nl80211_register_beacons(struct wpa_driver_nl80211_data *drv,
  457. struct nl80211_wiphy_data *w)
  458. {
  459. struct nl_msg *msg;
  460. int ret = -1;
  461. msg = nlmsg_alloc();
  462. if (!msg)
  463. return -1;
  464. nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_BEACONS);
  465. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, w->wiphy_idx);
  466. ret = send_and_recv(drv->global, w->nl_beacons, msg, NULL, NULL);
  467. msg = NULL;
  468. if (ret) {
  469. wpa_printf(MSG_DEBUG, "nl80211: Register beacons command "
  470. "failed: ret=%d (%s)",
  471. ret, strerror(-ret));
  472. goto nla_put_failure;
  473. }
  474. ret = 0;
  475. nla_put_failure:
  476. nlmsg_free(msg);
  477. return ret;
  478. }
  479. static void nl80211_recv_beacons(int sock, void *eloop_ctx, void *handle)
  480. {
  481. struct nl80211_wiphy_data *w = eloop_ctx;
  482. wpa_printf(MSG_EXCESSIVE, "nl80211: Beacon event message available");
  483. nl_recvmsgs(handle, w->nl_cb);
  484. }
  485. static int process_beacon_event(struct nl_msg *msg, void *arg)
  486. {
  487. struct nl80211_wiphy_data *w = arg;
  488. struct wpa_driver_nl80211_data *drv;
  489. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  490. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  491. union wpa_event_data event;
  492. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  493. genlmsg_attrlen(gnlh, 0), NULL);
  494. if (gnlh->cmd != NL80211_CMD_FRAME) {
  495. wpa_printf(MSG_DEBUG, "nl80211: Unexpected beacon event? (%d)",
  496. gnlh->cmd);
  497. return NL_SKIP;
  498. }
  499. if (!tb[NL80211_ATTR_FRAME])
  500. return NL_SKIP;
  501. dl_list_for_each(drv, &w->drvs, struct wpa_driver_nl80211_data,
  502. wiphy_list) {
  503. os_memset(&event, 0, sizeof(event));
  504. event.rx_mgmt.frame = nla_data(tb[NL80211_ATTR_FRAME]);
  505. event.rx_mgmt.frame_len = nla_len(tb[NL80211_ATTR_FRAME]);
  506. wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
  507. }
  508. return NL_SKIP;
  509. }
  510. static struct nl80211_wiphy_data *
  511. nl80211_get_wiphy_data_ap(struct i802_bss *bss)
  512. {
  513. static DEFINE_DL_LIST(nl80211_wiphys);
  514. struct nl80211_wiphy_data *w;
  515. int wiphy_idx, found = 0;
  516. struct i802_bss *tmp_bss;
  517. if (bss->wiphy_data != NULL)
  518. return bss->wiphy_data;
  519. wiphy_idx = nl80211_get_wiphy_index(bss);
  520. dl_list_for_each(w, &nl80211_wiphys, struct nl80211_wiphy_data, list) {
  521. if (w->wiphy_idx == wiphy_idx)
  522. goto add;
  523. }
  524. /* alloc new one */
  525. w = os_zalloc(sizeof(*w));
  526. if (w == NULL)
  527. return NULL;
  528. w->wiphy_idx = wiphy_idx;
  529. dl_list_init(&w->bsss);
  530. dl_list_init(&w->drvs);
  531. w->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
  532. if (!w->nl_cb) {
  533. os_free(w);
  534. return NULL;
  535. }
  536. nl_cb_set(w->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL);
  537. nl_cb_set(w->nl_cb, NL_CB_VALID, NL_CB_CUSTOM, process_beacon_event,
  538. w);
  539. w->nl_beacons = nl_create_handle(bss->drv->global->nl_cb,
  540. "wiphy beacons");
  541. if (w->nl_beacons == NULL) {
  542. os_free(w);
  543. return NULL;
  544. }
  545. if (nl80211_register_beacons(bss->drv, w)) {
  546. nl_destroy_handles(&w->nl_beacons);
  547. os_free(w);
  548. return NULL;
  549. }
  550. eloop_register_read_sock(nl_socket_get_fd(w->nl_beacons),
  551. nl80211_recv_beacons, w, w->nl_beacons);
  552. dl_list_add(&nl80211_wiphys, &w->list);
  553. add:
  554. /* drv entry for this bss already there? */
  555. dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
  556. if (tmp_bss->drv == bss->drv) {
  557. found = 1;
  558. break;
  559. }
  560. }
  561. /* if not add it */
  562. if (!found)
  563. dl_list_add(&w->drvs, &bss->drv->wiphy_list);
  564. dl_list_add(&w->bsss, &bss->wiphy_list);
  565. bss->wiphy_data = w;
  566. return w;
  567. }
  568. static void nl80211_put_wiphy_data_ap(struct i802_bss *bss)
  569. {
  570. struct nl80211_wiphy_data *w = bss->wiphy_data;
  571. struct i802_bss *tmp_bss;
  572. int found = 0;
  573. if (w == NULL)
  574. return;
  575. bss->wiphy_data = NULL;
  576. dl_list_del(&bss->wiphy_list);
  577. /* still any for this drv present? */
  578. dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
  579. if (tmp_bss->drv == bss->drv) {
  580. found = 1;
  581. break;
  582. }
  583. }
  584. /* if not remove it */
  585. if (!found)
  586. dl_list_del(&bss->drv->wiphy_list);
  587. if (!dl_list_empty(&w->bsss))
  588. return;
  589. eloop_unregister_read_sock(nl_socket_get_fd(w->nl_beacons));
  590. nl_cb_put(w->nl_cb);
  591. nl_destroy_handles(&w->nl_beacons);
  592. dl_list_del(&w->list);
  593. os_free(w);
  594. }
  595. static int wpa_driver_nl80211_get_bssid(void *priv, u8 *bssid)
  596. {
  597. struct i802_bss *bss = priv;
  598. struct wpa_driver_nl80211_data *drv = bss->drv;
  599. if (!drv->associated)
  600. return -1;
  601. os_memcpy(bssid, drv->bssid, ETH_ALEN);
  602. return 0;
  603. }
  604. static int wpa_driver_nl80211_get_ssid(void *priv, u8 *ssid)
  605. {
  606. struct i802_bss *bss = priv;
  607. struct wpa_driver_nl80211_data *drv = bss->drv;
  608. if (!drv->associated)
  609. return -1;
  610. os_memcpy(ssid, drv->ssid, drv->ssid_len);
  611. return drv->ssid_len;
  612. }
  613. static void wpa_driver_nl80211_event_link(struct wpa_driver_nl80211_data *drv,
  614. char *buf, size_t len, int del)
  615. {
  616. union wpa_event_data event;
  617. os_memset(&event, 0, sizeof(event));
  618. if (len > sizeof(event.interface_status.ifname))
  619. len = sizeof(event.interface_status.ifname) - 1;
  620. os_memcpy(event.interface_status.ifname, buf, len);
  621. event.interface_status.ievent = del ? EVENT_INTERFACE_REMOVED :
  622. EVENT_INTERFACE_ADDED;
  623. wpa_printf(MSG_DEBUG, "RTM_%sLINK, IFLA_IFNAME: Interface '%s' %s",
  624. del ? "DEL" : "NEW",
  625. event.interface_status.ifname,
  626. del ? "removed" : "added");
  627. if (os_strcmp(drv->first_bss.ifname, event.interface_status.ifname) == 0) {
  628. if (del) {
  629. if (drv->if_removed) {
  630. wpa_printf(MSG_DEBUG, "nl80211: if_removed "
  631. "already set - ignore event");
  632. return;
  633. }
  634. drv->if_removed = 1;
  635. } else {
  636. if (if_nametoindex(drv->first_bss.ifname) == 0) {
  637. wpa_printf(MSG_DEBUG, "nl80211: Interface %s "
  638. "does not exist - ignore "
  639. "RTM_NEWLINK",
  640. drv->first_bss.ifname);
  641. return;
  642. }
  643. if (!drv->if_removed) {
  644. wpa_printf(MSG_DEBUG, "nl80211: if_removed "
  645. "already cleared - ignore event");
  646. return;
  647. }
  648. drv->if_removed = 0;
  649. }
  650. }
  651. wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_STATUS, &event);
  652. }
  653. static int wpa_driver_nl80211_own_ifname(struct wpa_driver_nl80211_data *drv,
  654. u8 *buf, size_t len)
  655. {
  656. int attrlen, rta_len;
  657. struct rtattr *attr;
  658. attrlen = len;
  659. attr = (struct rtattr *) buf;
  660. rta_len = RTA_ALIGN(sizeof(struct rtattr));
  661. while (RTA_OK(attr, attrlen)) {
  662. if (attr->rta_type == IFLA_IFNAME) {
  663. if (os_strcmp(((char *) attr) + rta_len, drv->first_bss.ifname)
  664. == 0)
  665. return 1;
  666. else
  667. break;
  668. }
  669. attr = RTA_NEXT(attr, attrlen);
  670. }
  671. return 0;
  672. }
  673. static int wpa_driver_nl80211_own_ifindex(struct wpa_driver_nl80211_data *drv,
  674. int ifindex, u8 *buf, size_t len)
  675. {
  676. if (drv->ifindex == ifindex)
  677. return 1;
  678. if (drv->if_removed && wpa_driver_nl80211_own_ifname(drv, buf, len)) {
  679. drv->first_bss.ifindex = if_nametoindex(drv->first_bss.ifname);
  680. wpa_printf(MSG_DEBUG, "nl80211: Update ifindex for a removed "
  681. "interface");
  682. wpa_driver_nl80211_finish_drv_init(drv);
  683. return 1;
  684. }
  685. return 0;
  686. }
  687. static struct wpa_driver_nl80211_data *
  688. nl80211_find_drv(struct nl80211_global *global, int idx, u8 *buf, size_t len)
  689. {
  690. struct wpa_driver_nl80211_data *drv;
  691. dl_list_for_each(drv, &global->interfaces,
  692. struct wpa_driver_nl80211_data, list) {
  693. if (wpa_driver_nl80211_own_ifindex(drv, idx, buf, len) ||
  694. have_ifidx(drv, idx))
  695. return drv;
  696. }
  697. return NULL;
  698. }
  699. static void wpa_driver_nl80211_event_rtm_newlink(void *ctx,
  700. struct ifinfomsg *ifi,
  701. u8 *buf, size_t len)
  702. {
  703. struct nl80211_global *global = ctx;
  704. struct wpa_driver_nl80211_data *drv;
  705. int attrlen, rta_len;
  706. struct rtattr *attr;
  707. u32 brid = 0;
  708. char namebuf[IFNAMSIZ];
  709. drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
  710. if (!drv) {
  711. wpa_printf(MSG_DEBUG, "nl80211: Ignore event for foreign "
  712. "ifindex %d", ifi->ifi_index);
  713. return;
  714. }
  715. wpa_printf(MSG_DEBUG, "RTM_NEWLINK: operstate=%d ifi_flags=0x%x "
  716. "(%s%s%s%s)",
  717. drv->operstate, ifi->ifi_flags,
  718. (ifi->ifi_flags & IFF_UP) ? "[UP]" : "",
  719. (ifi->ifi_flags & IFF_RUNNING) ? "[RUNNING]" : "",
  720. (ifi->ifi_flags & IFF_LOWER_UP) ? "[LOWER_UP]" : "",
  721. (ifi->ifi_flags & IFF_DORMANT) ? "[DORMANT]" : "");
  722. if (!drv->if_disabled && !(ifi->ifi_flags & IFF_UP)) {
  723. if (if_indextoname(ifi->ifi_index, namebuf) &&
  724. linux_iface_up(drv->global->ioctl_sock,
  725. drv->first_bss.ifname) > 0) {
  726. wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
  727. "event since interface %s is up", namebuf);
  728. return;
  729. }
  730. wpa_printf(MSG_DEBUG, "nl80211: Interface down");
  731. if (drv->ignore_if_down_event) {
  732. wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
  733. "event generated by mode change");
  734. drv->ignore_if_down_event = 0;
  735. } else {
  736. drv->if_disabled = 1;
  737. wpa_supplicant_event(drv->ctx,
  738. EVENT_INTERFACE_DISABLED, NULL);
  739. }
  740. }
  741. if (drv->if_disabled && (ifi->ifi_flags & IFF_UP)) {
  742. if (if_indextoname(ifi->ifi_index, namebuf) &&
  743. linux_iface_up(drv->global->ioctl_sock,
  744. drv->first_bss.ifname) == 0) {
  745. wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
  746. "event since interface %s is down",
  747. namebuf);
  748. } else if (if_nametoindex(drv->first_bss.ifname) == 0) {
  749. wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
  750. "event since interface %s does not exist",
  751. drv->first_bss.ifname);
  752. } else if (drv->if_removed) {
  753. wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
  754. "event since interface %s is marked "
  755. "removed", drv->first_bss.ifname);
  756. } else {
  757. wpa_printf(MSG_DEBUG, "nl80211: Interface up");
  758. drv->if_disabled = 0;
  759. wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_ENABLED,
  760. NULL);
  761. }
  762. }
  763. /*
  764. * Some drivers send the association event before the operup event--in
  765. * this case, lifting operstate in wpa_driver_nl80211_set_operstate()
  766. * fails. This will hit us when wpa_supplicant does not need to do
  767. * IEEE 802.1X authentication
  768. */
  769. if (drv->operstate == 1 &&
  770. (ifi->ifi_flags & (IFF_LOWER_UP | IFF_DORMANT)) == IFF_LOWER_UP &&
  771. !(ifi->ifi_flags & IFF_RUNNING))
  772. netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
  773. -1, IF_OPER_UP);
  774. attrlen = len;
  775. attr = (struct rtattr *) buf;
  776. rta_len = RTA_ALIGN(sizeof(struct rtattr));
  777. while (RTA_OK(attr, attrlen)) {
  778. if (attr->rta_type == IFLA_IFNAME) {
  779. wpa_driver_nl80211_event_link(
  780. drv,
  781. ((char *) attr) + rta_len,
  782. attr->rta_len - rta_len, 0);
  783. } else if (attr->rta_type == IFLA_MASTER)
  784. brid = nla_get_u32((struct nlattr *) attr);
  785. attr = RTA_NEXT(attr, attrlen);
  786. }
  787. if (ifi->ifi_family == AF_BRIDGE && brid) {
  788. /* device has been added to bridge */
  789. if_indextoname(brid, namebuf);
  790. wpa_printf(MSG_DEBUG, "nl80211: Add ifindex %u for bridge %s",
  791. brid, namebuf);
  792. add_ifidx(drv, brid);
  793. }
  794. }
  795. static void wpa_driver_nl80211_event_rtm_dellink(void *ctx,
  796. struct ifinfomsg *ifi,
  797. u8 *buf, size_t len)
  798. {
  799. struct nl80211_global *global = ctx;
  800. struct wpa_driver_nl80211_data *drv;
  801. int attrlen, rta_len;
  802. struct rtattr *attr;
  803. u32 brid = 0;
  804. drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
  805. if (!drv) {
  806. wpa_printf(MSG_DEBUG, "nl80211: Ignore dellink event for "
  807. "foreign ifindex %d", ifi->ifi_index);
  808. return;
  809. }
  810. attrlen = len;
  811. attr = (struct rtattr *) buf;
  812. rta_len = RTA_ALIGN(sizeof(struct rtattr));
  813. while (RTA_OK(attr, attrlen)) {
  814. if (attr->rta_type == IFLA_IFNAME) {
  815. wpa_driver_nl80211_event_link(
  816. drv,
  817. ((char *) attr) + rta_len,
  818. attr->rta_len - rta_len, 1);
  819. } else if (attr->rta_type == IFLA_MASTER)
  820. brid = nla_get_u32((struct nlattr *) attr);
  821. attr = RTA_NEXT(attr, attrlen);
  822. }
  823. if (ifi->ifi_family == AF_BRIDGE && brid) {
  824. /* device has been removed from bridge */
  825. char namebuf[IFNAMSIZ];
  826. if_indextoname(brid, namebuf);
  827. wpa_printf(MSG_DEBUG, "nl80211: Remove ifindex %u for bridge "
  828. "%s", brid, namebuf);
  829. del_ifidx(drv, brid);
  830. }
  831. }
  832. static void mlme_event_auth(struct wpa_driver_nl80211_data *drv,
  833. const u8 *frame, size_t len)
  834. {
  835. const struct ieee80211_mgmt *mgmt;
  836. union wpa_event_data event;
  837. mgmt = (const struct ieee80211_mgmt *) frame;
  838. if (len < 24 + sizeof(mgmt->u.auth)) {
  839. wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
  840. "frame");
  841. return;
  842. }
  843. os_memcpy(drv->auth_bssid, mgmt->sa, ETH_ALEN);
  844. os_memset(&event, 0, sizeof(event));
  845. os_memcpy(event.auth.peer, mgmt->sa, ETH_ALEN);
  846. event.auth.auth_type = le_to_host16(mgmt->u.auth.auth_alg);
  847. event.auth.status_code = le_to_host16(mgmt->u.auth.status_code);
  848. if (len > 24 + sizeof(mgmt->u.auth)) {
  849. event.auth.ies = mgmt->u.auth.variable;
  850. event.auth.ies_len = len - 24 - sizeof(mgmt->u.auth);
  851. }
  852. wpa_supplicant_event(drv->ctx, EVENT_AUTH, &event);
  853. }
  854. static unsigned int nl80211_get_assoc_freq(struct wpa_driver_nl80211_data *drv)
  855. {
  856. struct nl_msg *msg;
  857. int ret;
  858. struct nl80211_bss_info_arg arg;
  859. os_memset(&arg, 0, sizeof(arg));
  860. msg = nlmsg_alloc();
  861. if (!msg)
  862. goto nla_put_failure;
  863. nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
  864. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  865. arg.drv = drv;
  866. ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
  867. msg = NULL;
  868. if (ret == 0) {
  869. wpa_printf(MSG_DEBUG, "nl80211: Operating frequency for the "
  870. "associated BSS from scan results: %u MHz",
  871. arg.assoc_freq);
  872. return arg.assoc_freq ? arg.assoc_freq : drv->assoc_freq;
  873. }
  874. wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
  875. "(%s)", ret, strerror(-ret));
  876. nla_put_failure:
  877. nlmsg_free(msg);
  878. return drv->assoc_freq;
  879. }
  880. static void mlme_event_assoc(struct wpa_driver_nl80211_data *drv,
  881. const u8 *frame, size_t len)
  882. {
  883. const struct ieee80211_mgmt *mgmt;
  884. union wpa_event_data event;
  885. u16 status;
  886. mgmt = (const struct ieee80211_mgmt *) frame;
  887. if (len < 24 + sizeof(mgmt->u.assoc_resp)) {
  888. wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
  889. "frame");
  890. return;
  891. }
  892. status = le_to_host16(mgmt->u.assoc_resp.status_code);
  893. if (status != WLAN_STATUS_SUCCESS) {
  894. os_memset(&event, 0, sizeof(event));
  895. event.assoc_reject.bssid = mgmt->bssid;
  896. if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
  897. event.assoc_reject.resp_ies =
  898. (u8 *) mgmt->u.assoc_resp.variable;
  899. event.assoc_reject.resp_ies_len =
  900. len - 24 - sizeof(mgmt->u.assoc_resp);
  901. }
  902. event.assoc_reject.status_code = status;
  903. wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
  904. return;
  905. }
  906. drv->associated = 1;
  907. os_memcpy(drv->bssid, mgmt->sa, ETH_ALEN);
  908. os_memset(&event, 0, sizeof(event));
  909. if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
  910. event.assoc_info.resp_ies = (u8 *) mgmt->u.assoc_resp.variable;
  911. event.assoc_info.resp_ies_len =
  912. len - 24 - sizeof(mgmt->u.assoc_resp);
  913. }
  914. event.assoc_info.freq = drv->assoc_freq;
  915. wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
  916. }
  917. static void mlme_event_connect(struct wpa_driver_nl80211_data *drv,
  918. enum nl80211_commands cmd, struct nlattr *status,
  919. struct nlattr *addr, struct nlattr *req_ie,
  920. struct nlattr *resp_ie)
  921. {
  922. union wpa_event_data event;
  923. if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
  924. /*
  925. * Avoid reporting two association events that would confuse
  926. * the core code.
  927. */
  928. wpa_printf(MSG_DEBUG, "nl80211: Ignore connect event (cmd=%d) "
  929. "when using userspace SME", cmd);
  930. return;
  931. }
  932. os_memset(&event, 0, sizeof(event));
  933. if (cmd == NL80211_CMD_CONNECT &&
  934. nla_get_u16(status) != WLAN_STATUS_SUCCESS) {
  935. if (addr)
  936. event.assoc_reject.bssid = nla_data(addr);
  937. if (resp_ie) {
  938. event.assoc_reject.resp_ies = nla_data(resp_ie);
  939. event.assoc_reject.resp_ies_len = nla_len(resp_ie);
  940. }
  941. event.assoc_reject.status_code = nla_get_u16(status);
  942. wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
  943. return;
  944. }
  945. drv->associated = 1;
  946. if (addr)
  947. os_memcpy(drv->bssid, nla_data(addr), ETH_ALEN);
  948. if (req_ie) {
  949. event.assoc_info.req_ies = nla_data(req_ie);
  950. event.assoc_info.req_ies_len = nla_len(req_ie);
  951. }
  952. if (resp_ie) {
  953. event.assoc_info.resp_ies = nla_data(resp_ie);
  954. event.assoc_info.resp_ies_len = nla_len(resp_ie);
  955. }
  956. event.assoc_info.freq = nl80211_get_assoc_freq(drv);
  957. wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
  958. }
  959. static void mlme_event_disconnect(struct wpa_driver_nl80211_data *drv,
  960. struct nlattr *reason, struct nlattr *addr,
  961. struct nlattr *by_ap)
  962. {
  963. union wpa_event_data data;
  964. if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
  965. /*
  966. * Avoid reporting two disassociation events that could
  967. * confuse the core code.
  968. */
  969. wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
  970. "event when using userspace SME");
  971. return;
  972. }
  973. drv->associated = 0;
  974. os_memset(&data, 0, sizeof(data));
  975. if (reason)
  976. data.deauth_info.reason_code = nla_get_u16(reason);
  977. data.deauth_info.locally_generated = by_ap == NULL;
  978. wpa_supplicant_event(drv->ctx, EVENT_DEAUTH, &data);
  979. }
  980. static void mlme_event_ch_switch(struct wpa_driver_nl80211_data *drv,
  981. struct nlattr *freq, struct nlattr *type)
  982. {
  983. union wpa_event_data data;
  984. int ht_enabled = 1;
  985. int chan_offset = 0;
  986. wpa_printf(MSG_DEBUG, "nl80211: Channel switch event");
  987. if (!freq || !type)
  988. return;
  989. switch (nla_get_u32(type)) {
  990. case NL80211_CHAN_NO_HT:
  991. ht_enabled = 0;
  992. break;
  993. case NL80211_CHAN_HT20:
  994. break;
  995. case NL80211_CHAN_HT40PLUS:
  996. chan_offset = 1;
  997. break;
  998. case NL80211_CHAN_HT40MINUS:
  999. chan_offset = -1;
  1000. break;
  1001. }
  1002. data.ch_switch.freq = nla_get_u32(freq);
  1003. data.ch_switch.ht_enabled = ht_enabled;
  1004. data.ch_switch.ch_offset = chan_offset;
  1005. wpa_supplicant_event(drv->ctx, EVENT_CH_SWITCH, &data);
  1006. }
  1007. static void mlme_timeout_event(struct wpa_driver_nl80211_data *drv,
  1008. enum nl80211_commands cmd, struct nlattr *addr)
  1009. {
  1010. union wpa_event_data event;
  1011. enum wpa_event_type ev;
  1012. if (nla_len(addr) != ETH_ALEN)
  1013. return;
  1014. wpa_printf(MSG_DEBUG, "nl80211: MLME event %d; timeout with " MACSTR,
  1015. cmd, MAC2STR((u8 *) nla_data(addr)));
  1016. if (cmd == NL80211_CMD_AUTHENTICATE)
  1017. ev = EVENT_AUTH_TIMED_OUT;
  1018. else if (cmd == NL80211_CMD_ASSOCIATE)
  1019. ev = EVENT_ASSOC_TIMED_OUT;
  1020. else
  1021. return;
  1022. os_memset(&event, 0, sizeof(event));
  1023. os_memcpy(event.timeout_event.addr, nla_data(addr), ETH_ALEN);
  1024. wpa_supplicant_event(drv->ctx, ev, &event);
  1025. }
  1026. static void mlme_event_mgmt(struct wpa_driver_nl80211_data *drv,
  1027. struct nlattr *freq, struct nlattr *sig,
  1028. const u8 *frame, size_t len)
  1029. {
  1030. const struct ieee80211_mgmt *mgmt;
  1031. union wpa_event_data event;
  1032. u16 fc, stype;
  1033. int ssi_signal = 0;
  1034. mgmt = (const struct ieee80211_mgmt *) frame;
  1035. if (len < 24) {
  1036. wpa_printf(MSG_DEBUG, "nl80211: Too short action frame");
  1037. return;
  1038. }
  1039. fc = le_to_host16(mgmt->frame_control);
  1040. stype = WLAN_FC_GET_STYPE(fc);
  1041. if (sig)
  1042. ssi_signal = (s32) nla_get_u32(sig);
  1043. os_memset(&event, 0, sizeof(event));
  1044. if (freq) {
  1045. event.rx_action.freq = nla_get_u32(freq);
  1046. drv->last_mgmt_freq = event.rx_action.freq;
  1047. }
  1048. if (stype == WLAN_FC_STYPE_ACTION) {
  1049. event.rx_action.da = mgmt->da;
  1050. event.rx_action.sa = mgmt->sa;
  1051. event.rx_action.bssid = mgmt->bssid;
  1052. event.rx_action.category = mgmt->u.action.category;
  1053. event.rx_action.data = &mgmt->u.action.category + 1;
  1054. event.rx_action.len = frame + len - event.rx_action.data;
  1055. wpa_supplicant_event(drv->ctx, EVENT_RX_ACTION, &event);
  1056. } else {
  1057. event.rx_mgmt.frame = frame;
  1058. event.rx_mgmt.frame_len = len;
  1059. event.rx_mgmt.ssi_signal = ssi_signal;
  1060. wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
  1061. }
  1062. }
  1063. static void mlme_event_mgmt_tx_status(struct wpa_driver_nl80211_data *drv,
  1064. struct nlattr *cookie, const u8 *frame,
  1065. size_t len, struct nlattr *ack)
  1066. {
  1067. union wpa_event_data event;
  1068. const struct ieee80211_hdr *hdr;
  1069. u16 fc;
  1070. if (!is_ap_interface(drv->nlmode)) {
  1071. u64 cookie_val;
  1072. if (!cookie)
  1073. return;
  1074. cookie_val = nla_get_u64(cookie);
  1075. wpa_printf(MSG_DEBUG, "nl80211: Action TX status:"
  1076. " cookie=0%llx%s (ack=%d)",
  1077. (long long unsigned int) cookie_val,
  1078. cookie_val == drv->send_action_cookie ?
  1079. " (match)" : " (unknown)", ack != NULL);
  1080. if (cookie_val != drv->send_action_cookie)
  1081. return;
  1082. }
  1083. hdr = (const struct ieee80211_hdr *) frame;
  1084. fc = le_to_host16(hdr->frame_control);
  1085. os_memset(&event, 0, sizeof(event));
  1086. event.tx_status.type = WLAN_FC_GET_TYPE(fc);
  1087. event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
  1088. event.tx_status.dst = hdr->addr1;
  1089. event.tx_status.data = frame;
  1090. event.tx_status.data_len = len;
  1091. event.tx_status.ack = ack != NULL;
  1092. wpa_supplicant_event(drv->ctx, EVENT_TX_STATUS, &event);
  1093. }
  1094. static void mlme_event_deauth_disassoc(struct wpa_driver_nl80211_data *drv,
  1095. enum wpa_event_type type,
  1096. const u8 *frame, size_t len)
  1097. {
  1098. const struct ieee80211_mgmt *mgmt;
  1099. union wpa_event_data event;
  1100. const u8 *bssid = NULL;
  1101. u16 reason_code = 0;
  1102. mgmt = (const struct ieee80211_mgmt *) frame;
  1103. if (len >= 24) {
  1104. bssid = mgmt->bssid;
  1105. if (drv->associated != 0 &&
  1106. os_memcmp(bssid, drv->bssid, ETH_ALEN) != 0 &&
  1107. os_memcmp(bssid, drv->auth_bssid, ETH_ALEN) != 0) {
  1108. /*
  1109. * We have presumably received this deauth as a
  1110. * response to a clear_state_mismatch() outgoing
  1111. * deauth. Don't let it take us offline!
  1112. */
  1113. wpa_printf(MSG_DEBUG, "nl80211: Deauth received "
  1114. "from Unknown BSSID " MACSTR " -- ignoring",
  1115. MAC2STR(bssid));
  1116. return;
  1117. }
  1118. }
  1119. drv->associated = 0;
  1120. os_memset(&event, 0, sizeof(event));
  1121. /* Note: Same offset for Reason Code in both frame subtypes */
  1122. if (len >= 24 + sizeof(mgmt->u.deauth))
  1123. reason_code = le_to_host16(mgmt->u.deauth.reason_code);
  1124. if (type == EVENT_DISASSOC) {
  1125. event.disassoc_info.locally_generated =
  1126. !os_memcmp(mgmt->sa, drv->first_bss.addr, ETH_ALEN);
  1127. event.disassoc_info.addr = bssid;
  1128. event.disassoc_info.reason_code = reason_code;
  1129. if (frame + len > mgmt->u.disassoc.variable) {
  1130. event.disassoc_info.ie = mgmt->u.disassoc.variable;
  1131. event.disassoc_info.ie_len = frame + len -
  1132. mgmt->u.disassoc.variable;
  1133. }
  1134. } else {
  1135. event.deauth_info.locally_generated =
  1136. !os_memcmp(mgmt->sa, drv->first_bss.addr, ETH_ALEN);
  1137. event.deauth_info.addr = bssid;
  1138. event.deauth_info.reason_code = reason_code;
  1139. if (frame + len > mgmt->u.deauth.variable) {
  1140. event.deauth_info.ie = mgmt->u.deauth.variable;
  1141. event.deauth_info.ie_len = frame + len -
  1142. mgmt->u.deauth.variable;
  1143. }
  1144. }
  1145. wpa_supplicant_event(drv->ctx, type, &event);
  1146. }
  1147. static void mlme_event_unprot_disconnect(struct wpa_driver_nl80211_data *drv,
  1148. enum wpa_event_type type,
  1149. const u8 *frame, size_t len)
  1150. {
  1151. const struct ieee80211_mgmt *mgmt;
  1152. union wpa_event_data event;
  1153. u16 reason_code = 0;
  1154. if (len < 24)
  1155. return;
  1156. mgmt = (const struct ieee80211_mgmt *) frame;
  1157. os_memset(&event, 0, sizeof(event));
  1158. /* Note: Same offset for Reason Code in both frame subtypes */
  1159. if (len >= 24 + sizeof(mgmt->u.deauth))
  1160. reason_code = le_to_host16(mgmt->u.deauth.reason_code);
  1161. if (type == EVENT_UNPROT_DISASSOC) {
  1162. event.unprot_disassoc.sa = mgmt->sa;
  1163. event.unprot_disassoc.da = mgmt->da;
  1164. event.unprot_disassoc.reason_code = reason_code;
  1165. } else {
  1166. event.unprot_deauth.sa = mgmt->sa;
  1167. event.unprot_deauth.da = mgmt->da;
  1168. event.unprot_deauth.reason_code = reason_code;
  1169. }
  1170. wpa_supplicant_event(drv->ctx, type, &event);
  1171. }
  1172. static void mlme_event(struct wpa_driver_nl80211_data *drv,
  1173. enum nl80211_commands cmd, struct nlattr *frame,
  1174. struct nlattr *addr, struct nlattr *timed_out,
  1175. struct nlattr *freq, struct nlattr *ack,
  1176. struct nlattr *cookie, struct nlattr *sig)
  1177. {
  1178. if (timed_out && addr) {
  1179. mlme_timeout_event(drv, cmd, addr);
  1180. return;
  1181. }
  1182. if (frame == NULL) {
  1183. wpa_printf(MSG_DEBUG, "nl80211: MLME event %d without frame "
  1184. "data", cmd);
  1185. return;
  1186. }
  1187. wpa_printf(MSG_DEBUG, "nl80211: MLME event %d", cmd);
  1188. wpa_hexdump(MSG_MSGDUMP, "nl80211: MLME event frame",
  1189. nla_data(frame), nla_len(frame));
  1190. switch (cmd) {
  1191. case NL80211_CMD_AUTHENTICATE:
  1192. mlme_event_auth(drv, nla_data(frame), nla_len(frame));
  1193. break;
  1194. case NL80211_CMD_ASSOCIATE:
  1195. mlme_event_assoc(drv, nla_data(frame), nla_len(frame));
  1196. break;
  1197. case NL80211_CMD_DEAUTHENTICATE:
  1198. mlme_event_deauth_disassoc(drv, EVENT_DEAUTH,
  1199. nla_data(frame), nla_len(frame));
  1200. break;
  1201. case NL80211_CMD_DISASSOCIATE:
  1202. mlme_event_deauth_disassoc(drv, EVENT_DISASSOC,
  1203. nla_data(frame), nla_len(frame));
  1204. break;
  1205. case NL80211_CMD_FRAME:
  1206. mlme_event_mgmt(drv, freq, sig, nla_data(frame),
  1207. nla_len(frame));
  1208. break;
  1209. case NL80211_CMD_FRAME_TX_STATUS:
  1210. mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
  1211. nla_len(frame), ack);
  1212. break;
  1213. case NL80211_CMD_UNPROT_DEAUTHENTICATE:
  1214. mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DEAUTH,
  1215. nla_data(frame), nla_len(frame));
  1216. break;
  1217. case NL80211_CMD_UNPROT_DISASSOCIATE:
  1218. mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DISASSOC,
  1219. nla_data(frame), nla_len(frame));
  1220. break;
  1221. default:
  1222. break;
  1223. }
  1224. }
  1225. static void mlme_event_michael_mic_failure(struct wpa_driver_nl80211_data *drv,
  1226. struct nlattr *tb[])
  1227. {
  1228. union wpa_event_data data;
  1229. wpa_printf(MSG_DEBUG, "nl80211: MLME event Michael MIC failure");
  1230. os_memset(&data, 0, sizeof(data));
  1231. if (tb[NL80211_ATTR_MAC]) {
  1232. wpa_hexdump(MSG_DEBUG, "nl80211: Source MAC address",
  1233. nla_data(tb[NL80211_ATTR_MAC]),
  1234. nla_len(tb[NL80211_ATTR_MAC]));
  1235. data.michael_mic_failure.src = nla_data(tb[NL80211_ATTR_MAC]);
  1236. }
  1237. if (tb[NL80211_ATTR_KEY_SEQ]) {
  1238. wpa_hexdump(MSG_DEBUG, "nl80211: TSC",
  1239. nla_data(tb[NL80211_ATTR_KEY_SEQ]),
  1240. nla_len(tb[NL80211_ATTR_KEY_SEQ]));
  1241. }
  1242. if (tb[NL80211_ATTR_KEY_TYPE]) {
  1243. enum nl80211_key_type key_type =
  1244. nla_get_u32(tb[NL80211_ATTR_KEY_TYPE]);
  1245. wpa_printf(MSG_DEBUG, "nl80211: Key Type %d", key_type);
  1246. if (key_type == NL80211_KEYTYPE_PAIRWISE)
  1247. data.michael_mic_failure.unicast = 1;
  1248. } else
  1249. data.michael_mic_failure.unicast = 1;
  1250. if (tb[NL80211_ATTR_KEY_IDX]) {
  1251. u8 key_id = nla_get_u8(tb[NL80211_ATTR_KEY_IDX]);
  1252. wpa_printf(MSG_DEBUG, "nl80211: Key Id %d", key_id);
  1253. }
  1254. wpa_supplicant_event(drv->ctx, EVENT_MICHAEL_MIC_FAILURE, &data);
  1255. }
  1256. static void mlme_event_join_ibss(struct wpa_driver_nl80211_data *drv,
  1257. struct nlattr *tb[])
  1258. {
  1259. if (tb[NL80211_ATTR_MAC] == NULL) {
  1260. wpa_printf(MSG_DEBUG, "nl80211: No address in IBSS joined "
  1261. "event");
  1262. return;
  1263. }
  1264. os_memcpy(drv->bssid, nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
  1265. drv->associated = 1;
  1266. wpa_printf(MSG_DEBUG, "nl80211: IBSS " MACSTR " joined",
  1267. MAC2STR(drv->bssid));
  1268. wpa_supplicant_event(drv->ctx, EVENT_ASSOC, NULL);
  1269. }
  1270. static void mlme_event_remain_on_channel(struct wpa_driver_nl80211_data *drv,
  1271. int cancel_event, struct nlattr *tb[])
  1272. {
  1273. unsigned int freq, chan_type, duration;
  1274. union wpa_event_data data;
  1275. u64 cookie;
  1276. if (tb[NL80211_ATTR_WIPHY_FREQ])
  1277. freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
  1278. else
  1279. freq = 0;
  1280. if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])
  1281. chan_type = nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
  1282. else
  1283. chan_type = 0;
  1284. if (tb[NL80211_ATTR_DURATION])
  1285. duration = nla_get_u32(tb[NL80211_ATTR_DURATION]);
  1286. else
  1287. duration = 0;
  1288. if (tb[NL80211_ATTR_COOKIE])
  1289. cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
  1290. else
  1291. cookie = 0;
  1292. wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel event (cancel=%d "
  1293. "freq=%u channel_type=%u duration=%u cookie=0x%llx (%s))",
  1294. cancel_event, freq, chan_type, duration,
  1295. (long long unsigned int) cookie,
  1296. cookie == drv->remain_on_chan_cookie ? "match" : "unknown");
  1297. if (cookie != drv->remain_on_chan_cookie)
  1298. return; /* not for us */
  1299. if (cancel_event)
  1300. drv->pending_remain_on_chan = 0;
  1301. os_memset(&data, 0, sizeof(data));
  1302. data.remain_on_channel.freq = freq;
  1303. data.remain_on_channel.duration = duration;
  1304. wpa_supplicant_event(drv->ctx, cancel_event ?
  1305. EVENT_CANCEL_REMAIN_ON_CHANNEL :
  1306. EVENT_REMAIN_ON_CHANNEL, &data);
  1307. }
  1308. static void send_scan_event(struct wpa_driver_nl80211_data *drv, int aborted,
  1309. struct nlattr *tb[])
  1310. {
  1311. union wpa_event_data event;
  1312. struct nlattr *nl;
  1313. int rem;
  1314. struct scan_info *info;
  1315. #define MAX_REPORT_FREQS 50
  1316. int freqs[MAX_REPORT_FREQS];
  1317. int num_freqs = 0;
  1318. if (drv->scan_for_auth) {
  1319. drv->scan_for_auth = 0;
  1320. wpa_printf(MSG_DEBUG, "nl80211: Scan results for missing "
  1321. "cfg80211 BSS entry");
  1322. wpa_driver_nl80211_authenticate_retry(drv);
  1323. return;
  1324. }
  1325. os_memset(&event, 0, sizeof(event));
  1326. info = &event.scan_info;
  1327. info->aborted = aborted;
  1328. if (tb[NL80211_ATTR_SCAN_SSIDS]) {
  1329. nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_SSIDS], rem) {
  1330. struct wpa_driver_scan_ssid *s =
  1331. &info->ssids[info->num_ssids];
  1332. s->ssid = nla_data(nl);
  1333. s->ssid_len = nla_len(nl);
  1334. info->num_ssids++;
  1335. if (info->num_ssids == WPAS_MAX_SCAN_SSIDS)
  1336. break;
  1337. }
  1338. }
  1339. if (tb[NL80211_ATTR_SCAN_FREQUENCIES]) {
  1340. nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_FREQUENCIES], rem)
  1341. {
  1342. freqs[num_freqs] = nla_get_u32(nl);
  1343. num_freqs++;
  1344. if (num_freqs == MAX_REPORT_FREQS - 1)
  1345. break;
  1346. }
  1347. info->freqs = freqs;
  1348. info->num_freqs = num_freqs;
  1349. }
  1350. wpa_supplicant_event(drv->ctx, EVENT_SCAN_RESULTS, &event);
  1351. }
  1352. static int get_link_signal(struct nl_msg *msg, void *arg)
  1353. {
  1354. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  1355. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  1356. struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1];
  1357. static struct nla_policy policy[NL80211_STA_INFO_MAX + 1] = {
  1358. [NL80211_STA_INFO_SIGNAL] = { .type = NLA_U8 },
  1359. };
  1360. struct nlattr *rinfo[NL80211_RATE_INFO_MAX + 1];
  1361. static struct nla_policy rate_policy[NL80211_RATE_INFO_MAX + 1] = {
  1362. [NL80211_RATE_INFO_BITRATE] = { .type = NLA_U16 },
  1363. [NL80211_RATE_INFO_MCS] = { .type = NLA_U8 },
  1364. [NL80211_RATE_INFO_40_MHZ_WIDTH] = { .type = NLA_FLAG },
  1365. [NL80211_RATE_INFO_SHORT_GI] = { .type = NLA_FLAG },
  1366. };
  1367. struct wpa_signal_info *sig_change = arg;
  1368. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  1369. genlmsg_attrlen(gnlh, 0), NULL);
  1370. if (!tb[NL80211_ATTR_STA_INFO] ||
  1371. nla_parse_nested(sinfo, NL80211_STA_INFO_MAX,
  1372. tb[NL80211_ATTR_STA_INFO], policy))
  1373. return NL_SKIP;
  1374. if (!sinfo[NL80211_STA_INFO_SIGNAL])
  1375. return NL_SKIP;
  1376. sig_change->current_signal =
  1377. (s8) nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL]);
  1378. if (sinfo[NL80211_STA_INFO_TX_BITRATE]) {
  1379. if (nla_parse_nested(rinfo, NL80211_RATE_INFO_MAX,
  1380. sinfo[NL80211_STA_INFO_TX_BITRATE],
  1381. rate_policy)) {
  1382. sig_change->current_txrate = 0;
  1383. } else {
  1384. if (rinfo[NL80211_RATE_INFO_BITRATE]) {
  1385. sig_change->current_txrate =
  1386. nla_get_u16(rinfo[
  1387. NL80211_RATE_INFO_BITRATE]) * 100;
  1388. }
  1389. }
  1390. }
  1391. return NL_SKIP;
  1392. }
  1393. static int nl80211_get_link_signal(struct wpa_driver_nl80211_data *drv,
  1394. struct wpa_signal_info *sig)
  1395. {
  1396. struct nl_msg *msg;
  1397. sig->current_signal = -9999;
  1398. sig->current_txrate = 0;
  1399. msg = nlmsg_alloc();
  1400. if (!msg)
  1401. return -ENOMEM;
  1402. nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
  1403. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  1404. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
  1405. return send_and_recv_msgs(drv, msg, get_link_signal, sig);
  1406. nla_put_failure:
  1407. nlmsg_free(msg);
  1408. return -ENOBUFS;
  1409. }
  1410. static int get_link_noise(struct nl_msg *msg, void *arg)
  1411. {
  1412. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  1413. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  1414. struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
  1415. static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
  1416. [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
  1417. [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
  1418. };
  1419. struct wpa_signal_info *sig_change = arg;
  1420. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  1421. genlmsg_attrlen(gnlh, 0), NULL);
  1422. if (!tb[NL80211_ATTR_SURVEY_INFO]) {
  1423. wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
  1424. return NL_SKIP;
  1425. }
  1426. if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
  1427. tb[NL80211_ATTR_SURVEY_INFO],
  1428. survey_policy)) {
  1429. wpa_printf(MSG_DEBUG, "nl80211: failed to parse nested "
  1430. "attributes!");
  1431. return NL_SKIP;
  1432. }
  1433. if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
  1434. return NL_SKIP;
  1435. if (nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
  1436. sig_change->frequency)
  1437. return NL_SKIP;
  1438. if (!sinfo[NL80211_SURVEY_INFO_NOISE])
  1439. return NL_SKIP;
  1440. sig_change->current_noise =
  1441. (s8) nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
  1442. return NL_SKIP;
  1443. }
  1444. static int nl80211_get_link_noise(struct wpa_driver_nl80211_data *drv,
  1445. struct wpa_signal_info *sig_change)
  1446. {
  1447. struct nl_msg *msg;
  1448. sig_change->current_noise = 9999;
  1449. sig_change->frequency = drv->assoc_freq;
  1450. msg = nlmsg_alloc();
  1451. if (!msg)
  1452. return -ENOMEM;
  1453. nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
  1454. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  1455. return send_and_recv_msgs(drv, msg, get_link_noise, sig_change);
  1456. nla_put_failure:
  1457. nlmsg_free(msg);
  1458. return -ENOBUFS;
  1459. }
  1460. static int get_noise_for_scan_results(struct nl_msg *msg, void *arg)
  1461. {
  1462. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  1463. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  1464. struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
  1465. static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
  1466. [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
  1467. [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
  1468. };
  1469. struct wpa_scan_results *scan_results = arg;
  1470. struct wpa_scan_res *scan_res;
  1471. size_t i;
  1472. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  1473. genlmsg_attrlen(gnlh, 0), NULL);
  1474. if (!tb[NL80211_ATTR_SURVEY_INFO]) {
  1475. wpa_printf(MSG_DEBUG, "nl80211: Survey data missing");
  1476. return NL_SKIP;
  1477. }
  1478. if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
  1479. tb[NL80211_ATTR_SURVEY_INFO],
  1480. survey_policy)) {
  1481. wpa_printf(MSG_DEBUG, "nl80211: Failed to parse nested "
  1482. "attributes");
  1483. return NL_SKIP;
  1484. }
  1485. if (!sinfo[NL80211_SURVEY_INFO_NOISE])
  1486. return NL_SKIP;
  1487. if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
  1488. return NL_SKIP;
  1489. for (i = 0; i < scan_results->num; ++i) {
  1490. scan_res = scan_results->res[i];
  1491. if (!scan_res)
  1492. continue;
  1493. if ((int) nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
  1494. scan_res->freq)
  1495. continue;
  1496. if (!(scan_res->flags & WPA_SCAN_NOISE_INVALID))
  1497. continue;
  1498. scan_res->noise = (s8)
  1499. nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
  1500. scan_res->flags &= ~WPA_SCAN_NOISE_INVALID;
  1501. }
  1502. return NL_SKIP;
  1503. }
  1504. static int nl80211_get_noise_for_scan_results(
  1505. struct wpa_driver_nl80211_data *drv,
  1506. struct wpa_scan_results *scan_res)
  1507. {
  1508. struct nl_msg *msg;
  1509. msg = nlmsg_alloc();
  1510. if (!msg)
  1511. return -ENOMEM;
  1512. nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
  1513. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  1514. return send_and_recv_msgs(drv, msg, get_noise_for_scan_results,
  1515. scan_res);
  1516. nla_put_failure:
  1517. nlmsg_free(msg);
  1518. return -ENOBUFS;
  1519. }
  1520. static void nl80211_cqm_event(struct wpa_driver_nl80211_data *drv,
  1521. struct nlattr *tb[])
  1522. {
  1523. static struct nla_policy cqm_policy[NL80211_ATTR_CQM_MAX + 1] = {
  1524. [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
  1525. [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U8 },
  1526. [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
  1527. [NL80211_ATTR_CQM_PKT_LOSS_EVENT] = { .type = NLA_U32 },
  1528. };
  1529. struct nlattr *cqm[NL80211_ATTR_CQM_MAX + 1];
  1530. enum nl80211_cqm_rssi_threshold_event event;
  1531. union wpa_event_data ed;
  1532. struct wpa_signal_info sig;
  1533. int res;
  1534. if (tb[NL80211_ATTR_CQM] == NULL ||
  1535. nla_parse_nested(cqm, NL80211_ATTR_CQM_MAX, tb[NL80211_ATTR_CQM],
  1536. cqm_policy)) {
  1537. wpa_printf(MSG_DEBUG, "nl80211: Ignore invalid CQM event");
  1538. return;
  1539. }
  1540. os_memset(&ed, 0, sizeof(ed));
  1541. if (cqm[NL80211_ATTR_CQM_PKT_LOSS_EVENT]) {
  1542. if (!tb[NL80211_ATTR_MAC])
  1543. return;
  1544. os_memcpy(ed.low_ack.addr, nla_data(tb[NL80211_ATTR_MAC]),
  1545. ETH_ALEN);
  1546. wpa_supplicant_event(drv->ctx, EVENT_STATION_LOW_ACK, &ed);
  1547. return;
  1548. }
  1549. if (cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] == NULL)
  1550. return;
  1551. event = nla_get_u32(cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT]);
  1552. if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH) {
  1553. wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
  1554. "event: RSSI high");
  1555. ed.signal_change.above_threshold = 1;
  1556. } else if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW) {
  1557. wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
  1558. "event: RSSI low");
  1559. ed.signal_change.above_threshold = 0;
  1560. } else
  1561. return;
  1562. res = nl80211_get_link_signal(drv, &sig);
  1563. if (res == 0) {
  1564. ed.signal_change.current_signal = sig.current_signal;
  1565. ed.signal_change.current_txrate = sig.current_txrate;
  1566. wpa_printf(MSG_DEBUG, "nl80211: Signal: %d dBm txrate: %d",
  1567. sig.current_signal, sig.current_txrate);
  1568. }
  1569. res = nl80211_get_link_noise(drv, &sig);
  1570. if (res == 0) {
  1571. ed.signal_change.current_noise = sig.current_noise;
  1572. wpa_printf(MSG_DEBUG, "nl80211: Noise: %d dBm",
  1573. sig.current_noise);
  1574. }
  1575. wpa_supplicant_event(drv->ctx, EVENT_SIGNAL_CHANGE, &ed);
  1576. }
  1577. static void nl80211_new_station_event(struct wpa_driver_nl80211_data *drv,
  1578. struct nlattr **tb)
  1579. {
  1580. u8 *addr;
  1581. union wpa_event_data data;
  1582. if (tb[NL80211_ATTR_MAC] == NULL)
  1583. return;
  1584. addr = nla_data(tb[NL80211_ATTR_MAC]);
  1585. wpa_printf(MSG_DEBUG, "nl80211: New station " MACSTR, MAC2STR(addr));
  1586. if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
  1587. u8 *ies = NULL;
  1588. size_t ies_len = 0;
  1589. if (tb[NL80211_ATTR_IE]) {
  1590. ies = nla_data(tb[NL80211_ATTR_IE]);
  1591. ies_len = nla_len(tb[NL80211_ATTR_IE]);
  1592. }
  1593. wpa_hexdump(MSG_DEBUG, "nl80211: Assoc Req IEs", ies, ies_len);
  1594. drv_event_assoc(drv->ctx, addr, ies, ies_len, 0);
  1595. return;
  1596. }
  1597. if (drv->nlmode != NL80211_IFTYPE_ADHOC)
  1598. return;
  1599. os_memset(&data, 0, sizeof(data));
  1600. os_memcpy(data.ibss_rsn_start.peer, addr, ETH_ALEN);
  1601. wpa_supplicant_event(drv->ctx, EVENT_IBSS_RSN_START, &data);
  1602. }
  1603. static void nl80211_del_station_event(struct wpa_driver_nl80211_data *drv,
  1604. struct nlattr **tb)
  1605. {
  1606. u8 *addr;
  1607. union wpa_event_data data;
  1608. if (tb[NL80211_ATTR_MAC] == NULL)
  1609. return;
  1610. addr = nla_data(tb[NL80211_ATTR_MAC]);
  1611. wpa_printf(MSG_DEBUG, "nl80211: Delete station " MACSTR,
  1612. MAC2STR(addr));
  1613. if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
  1614. drv_event_disassoc(drv->ctx, addr);
  1615. return;
  1616. }
  1617. if (drv->nlmode != NL80211_IFTYPE_ADHOC)
  1618. return;
  1619. os_memset(&data, 0, sizeof(data));
  1620. os_memcpy(data.ibss_peer_lost.peer, addr, ETH_ALEN);
  1621. wpa_supplicant_event(drv->ctx, EVENT_IBSS_PEER_LOST, &data);
  1622. }
  1623. static void nl80211_rekey_offload_event(struct wpa_driver_nl80211_data *drv,
  1624. struct nlattr **tb)
  1625. {
  1626. struct nlattr *rekey_info[NUM_NL80211_REKEY_DATA];
  1627. static struct nla_policy rekey_policy[NUM_NL80211_REKEY_DATA] = {
  1628. [NL80211_REKEY_DATA_KEK] = {
  1629. .minlen = NL80211_KEK_LEN,
  1630. .maxlen = NL80211_KEK_LEN,
  1631. },
  1632. [NL80211_REKEY_DATA_KCK] = {
  1633. .minlen = NL80211_KCK_LEN,
  1634. .maxlen = NL80211_KCK_LEN,
  1635. },
  1636. [NL80211_REKEY_DATA_REPLAY_CTR] = {
  1637. .minlen = NL80211_REPLAY_CTR_LEN,
  1638. .maxlen = NL80211_REPLAY_CTR_LEN,
  1639. },
  1640. };
  1641. union wpa_event_data data;
  1642. if (!tb[NL80211_ATTR_MAC])
  1643. return;
  1644. if (!tb[NL80211_ATTR_REKEY_DATA])
  1645. return;
  1646. if (nla_parse_nested(rekey_info, MAX_NL80211_REKEY_DATA,
  1647. tb[NL80211_ATTR_REKEY_DATA], rekey_policy))
  1648. return;
  1649. if (!rekey_info[NL80211_REKEY_DATA_REPLAY_CTR])
  1650. return;
  1651. os_memset(&data, 0, sizeof(data));
  1652. data.driver_gtk_rekey.bssid = nla_data(tb[NL80211_ATTR_MAC]);
  1653. wpa_printf(MSG_DEBUG, "nl80211: Rekey offload event for BSSID " MACSTR,
  1654. MAC2STR(data.driver_gtk_rekey.bssid));
  1655. data.driver_gtk_rekey.replay_ctr =
  1656. nla_data(rekey_info[NL80211_REKEY_DATA_REPLAY_CTR]);
  1657. wpa_hexdump(MSG_DEBUG, "nl80211: Rekey offload - Replay Counter",
  1658. data.driver_gtk_rekey.replay_ctr, NL80211_REPLAY_CTR_LEN);
  1659. wpa_supplicant_event(drv->ctx, EVENT_DRIVER_GTK_REKEY, &data);
  1660. }
  1661. static void nl80211_pmksa_candidate_event(struct wpa_driver_nl80211_data *drv,
  1662. struct nlattr **tb)
  1663. {
  1664. struct nlattr *cand[NUM_NL80211_PMKSA_CANDIDATE];
  1665. static struct nla_policy cand_policy[NUM_NL80211_PMKSA_CANDIDATE] = {
  1666. [NL80211_PMKSA_CANDIDATE_INDEX] = { .type = NLA_U32 },
  1667. [NL80211_PMKSA_CANDIDATE_BSSID] = {
  1668. .minlen = ETH_ALEN,
  1669. .maxlen = ETH_ALEN,
  1670. },
  1671. [NL80211_PMKSA_CANDIDATE_PREAUTH] = { .type = NLA_FLAG },
  1672. };
  1673. union wpa_event_data data;
  1674. if (!tb[NL80211_ATTR_PMKSA_CANDIDATE])
  1675. return;
  1676. if (nla_parse_nested(cand, MAX_NL80211_PMKSA_CANDIDATE,
  1677. tb[NL80211_ATTR_PMKSA_CANDIDATE], cand_policy))
  1678. return;
  1679. if (!cand[NL80211_PMKSA_CANDIDATE_INDEX] ||
  1680. !cand[NL80211_PMKSA_CANDIDATE_BSSID])
  1681. return;
  1682. os_memset(&data, 0, sizeof(data));
  1683. os_memcpy(data.pmkid_candidate.bssid,
  1684. nla_data(cand[NL80211_PMKSA_CANDIDATE_BSSID]), ETH_ALEN);
  1685. data.pmkid_candidate.index =
  1686. nla_get_u32(cand[NL80211_PMKSA_CANDIDATE_INDEX]);
  1687. data.pmkid_candidate.preauth =
  1688. cand[NL80211_PMKSA_CANDIDATE_PREAUTH] != NULL;
  1689. wpa_supplicant_event(drv->ctx, EVENT_PMKID_CANDIDATE, &data);
  1690. }
  1691. static void nl80211_client_probe_event(struct wpa_driver_nl80211_data *drv,
  1692. struct nlattr **tb)
  1693. {
  1694. union wpa_event_data data;
  1695. if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_ACK])
  1696. return;
  1697. os_memset(&data, 0, sizeof(data));
  1698. os_memcpy(data.client_poll.addr,
  1699. nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
  1700. wpa_supplicant_event(drv->ctx, EVENT_DRIVER_CLIENT_POLL_OK, &data);
  1701. }
  1702. static void nl80211_spurious_frame(struct i802_bss *bss, struct nlattr **tb,
  1703. int wds)
  1704. {
  1705. struct wpa_driver_nl80211_data *drv = bss->drv;
  1706. union wpa_event_data event;
  1707. if (!tb[NL80211_ATTR_MAC])
  1708. return;
  1709. os_memset(&event, 0, sizeof(event));
  1710. event.rx_from_unknown.bssid = bss->addr;
  1711. event.rx_from_unknown.addr = nla_data(tb[NL80211_ATTR_MAC]);
  1712. event.rx_from_unknown.wds = wds;
  1713. wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
  1714. }
  1715. static void do_process_drv_event(struct wpa_driver_nl80211_data *drv,
  1716. int cmd, struct nlattr **tb)
  1717. {
  1718. if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED &&
  1719. (cmd == NL80211_CMD_NEW_SCAN_RESULTS ||
  1720. cmd == NL80211_CMD_SCAN_ABORTED)) {
  1721. wpa_driver_nl80211_set_mode(&drv->first_bss,
  1722. drv->ap_scan_as_station);
  1723. drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
  1724. }
  1725. switch (cmd) {
  1726. case NL80211_CMD_TRIGGER_SCAN:
  1727. wpa_printf(MSG_DEBUG, "nl80211: Scan trigger");
  1728. break;
  1729. case NL80211_CMD_START_SCHED_SCAN:
  1730. wpa_printf(MSG_DEBUG, "nl80211: Sched scan started");
  1731. break;
  1732. case NL80211_CMD_SCHED_SCAN_STOPPED:
  1733. wpa_printf(MSG_DEBUG, "nl80211: Sched scan stopped");
  1734. wpa_supplicant_event(drv->ctx, EVENT_SCHED_SCAN_STOPPED, NULL);
  1735. break;
  1736. case NL80211_CMD_NEW_SCAN_RESULTS:
  1737. wpa_printf(MSG_DEBUG, "nl80211: New scan results available");
  1738. drv->scan_complete_events = 1;
  1739. eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
  1740. drv->ctx);
  1741. send_scan_event(drv, 0, tb);
  1742. break;
  1743. case NL80211_CMD_SCHED_SCAN_RESULTS:
  1744. wpa_printf(MSG_DEBUG,
  1745. "nl80211: New sched scan results available");
  1746. send_scan_event(drv, 0, tb);
  1747. break;
  1748. case NL80211_CMD_SCAN_ABORTED:
  1749. wpa_printf(MSG_DEBUG, "nl80211: Scan aborted");
  1750. /*
  1751. * Need to indicate that scan results are available in order
  1752. * not to make wpa_supplicant stop its scanning.
  1753. */
  1754. eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
  1755. drv->ctx);
  1756. send_scan_event(drv, 1, tb);
  1757. break;
  1758. case NL80211_CMD_AUTHENTICATE:
  1759. case NL80211_CMD_ASSOCIATE:
  1760. case NL80211_CMD_DEAUTHENTICATE:
  1761. case NL80211_CMD_DISASSOCIATE:
  1762. case NL80211_CMD_FRAME_TX_STATUS:
  1763. case NL80211_CMD_UNPROT_DEAUTHENTICATE:
  1764. case NL80211_CMD_UNPROT_DISASSOCIATE:
  1765. mlme_event(drv, cmd, tb[NL80211_ATTR_FRAME],
  1766. tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
  1767. tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
  1768. tb[NL80211_ATTR_COOKIE],
  1769. tb[NL80211_ATTR_RX_SIGNAL_DBM]);
  1770. break;
  1771. case NL80211_CMD_CONNECT:
  1772. case NL80211_CMD_ROAM:
  1773. mlme_event_connect(drv, cmd,
  1774. tb[NL80211_ATTR_STATUS_CODE],
  1775. tb[NL80211_ATTR_MAC],
  1776. tb[NL80211_ATTR_REQ_IE],
  1777. tb[NL80211_ATTR_RESP_IE]);
  1778. break;
  1779. case NL80211_CMD_CH_SWITCH_NOTIFY:
  1780. mlme_event_ch_switch(drv, tb[NL80211_ATTR_WIPHY_FREQ],
  1781. tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
  1782. break;
  1783. case NL80211_CMD_DISCONNECT:
  1784. mlme_event_disconnect(drv, tb[NL80211_ATTR_REASON_CODE],
  1785. tb[NL80211_ATTR_MAC],
  1786. tb[NL80211_ATTR_DISCONNECTED_BY_AP]);
  1787. break;
  1788. case NL80211_CMD_MICHAEL_MIC_FAILURE:
  1789. mlme_event_michael_mic_failure(drv, tb);
  1790. break;
  1791. case NL80211_CMD_JOIN_IBSS:
  1792. mlme_event_join_ibss(drv, tb);
  1793. break;
  1794. case NL80211_CMD_REMAIN_ON_CHANNEL:
  1795. mlme_event_remain_on_channel(drv, 0, tb);
  1796. break;
  1797. case NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL:
  1798. mlme_event_remain_on_channel(drv, 1, tb);
  1799. break;
  1800. case NL80211_CMD_NOTIFY_CQM:
  1801. nl80211_cqm_event(drv, tb);
  1802. break;
  1803. case NL80211_CMD_REG_CHANGE:
  1804. wpa_printf(MSG_DEBUG, "nl80211: Regulatory domain change");
  1805. wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
  1806. NULL);
  1807. break;
  1808. case NL80211_CMD_REG_BEACON_HINT:
  1809. wpa_printf(MSG_DEBUG, "nl80211: Regulatory beacon hint");
  1810. wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
  1811. NULL);
  1812. break;
  1813. case NL80211_CMD_NEW_STATION:
  1814. nl80211_new_station_event(drv, tb);
  1815. break;
  1816. case NL80211_CMD_DEL_STATION:
  1817. nl80211_del_station_event(drv, tb);
  1818. break;
  1819. case NL80211_CMD_SET_REKEY_OFFLOAD:
  1820. nl80211_rekey_offload_event(drv, tb);
  1821. break;
  1822. case NL80211_CMD_PMKSA_CANDIDATE:
  1823. nl80211_pmksa_candidate_event(drv, tb);
  1824. break;
  1825. case NL80211_CMD_PROBE_CLIENT:
  1826. nl80211_client_probe_event(drv, tb);
  1827. break;
  1828. default:
  1829. wpa_printf(MSG_DEBUG, "nl80211: Ignored unknown event "
  1830. "(cmd=%d)", cmd);
  1831. break;
  1832. }
  1833. }
  1834. static int process_drv_event(struct nl_msg *msg, void *arg)
  1835. {
  1836. struct wpa_driver_nl80211_data *drv = arg;
  1837. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  1838. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  1839. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  1840. genlmsg_attrlen(gnlh, 0), NULL);
  1841. if (tb[NL80211_ATTR_IFINDEX]) {
  1842. int ifindex = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
  1843. if (ifindex != drv->ifindex && !have_ifidx(drv, ifindex)) {
  1844. wpa_printf(MSG_DEBUG, "nl80211: Ignored event (cmd=%d)"
  1845. " for foreign interface (ifindex %d)",
  1846. gnlh->cmd, ifindex);
  1847. return NL_SKIP;
  1848. }
  1849. }
  1850. do_process_drv_event(drv, gnlh->cmd, tb);
  1851. return NL_SKIP;
  1852. }
  1853. static int process_global_event(struct nl_msg *msg, void *arg)
  1854. {
  1855. struct nl80211_global *global = arg;
  1856. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  1857. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  1858. struct wpa_driver_nl80211_data *drv, *tmp;
  1859. int ifidx = -1;
  1860. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  1861. genlmsg_attrlen(gnlh, 0), NULL);
  1862. if (tb[NL80211_ATTR_IFINDEX])
  1863. ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
  1864. dl_list_for_each_safe(drv, tmp, &global->interfaces,
  1865. struct wpa_driver_nl80211_data, list) {
  1866. if (ifidx == -1 || ifidx == drv->ifindex ||
  1867. have_ifidx(drv, ifidx))
  1868. do_process_drv_event(drv, gnlh->cmd, tb);
  1869. }
  1870. return NL_SKIP;
  1871. }
  1872. static int process_bss_event(struct nl_msg *msg, void *arg)
  1873. {
  1874. struct i802_bss *bss = arg;
  1875. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  1876. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  1877. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  1878. genlmsg_attrlen(gnlh, 0), NULL);
  1879. switch (gnlh->cmd) {
  1880. case NL80211_CMD_FRAME:
  1881. case NL80211_CMD_FRAME_TX_STATUS:
  1882. mlme_event(bss->drv, gnlh->cmd, tb[NL80211_ATTR_FRAME],
  1883. tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
  1884. tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
  1885. tb[NL80211_ATTR_COOKIE],
  1886. tb[NL80211_ATTR_RX_SIGNAL_DBM]);
  1887. break;
  1888. case NL80211_CMD_UNEXPECTED_FRAME:
  1889. nl80211_spurious_frame(bss, tb, 0);
  1890. break;
  1891. case NL80211_CMD_UNEXPECTED_4ADDR_FRAME:
  1892. nl80211_spurious_frame(bss, tb, 1);
  1893. break;
  1894. default:
  1895. wpa_printf(MSG_DEBUG, "nl80211: Ignored unknown event "
  1896. "(cmd=%d)", gnlh->cmd);
  1897. break;
  1898. }
  1899. return NL_SKIP;
  1900. }
  1901. static void wpa_driver_nl80211_event_receive(int sock, void *eloop_ctx,
  1902. void *handle)
  1903. {
  1904. struct nl_cb *cb = eloop_ctx;
  1905. wpa_printf(MSG_DEBUG, "nl80211: Event message available");
  1906. nl_recvmsgs(handle, cb);
  1907. }
  1908. /**
  1909. * wpa_driver_nl80211_set_country - ask nl80211 to set the regulatory domain
  1910. * @priv: driver_nl80211 private data
  1911. * @alpha2_arg: country to which to switch to
  1912. * Returns: 0 on success, -1 on failure
  1913. *
  1914. * This asks nl80211 to set the regulatory domain for given
  1915. * country ISO / IEC alpha2.
  1916. */
  1917. static int wpa_driver_nl80211_set_country(void *priv, const char *alpha2_arg)
  1918. {
  1919. struct i802_bss *bss = priv;
  1920. struct wpa_driver_nl80211_data *drv = bss->drv;
  1921. char alpha2[3];
  1922. struct nl_msg *msg;
  1923. msg = nlmsg_alloc();
  1924. if (!msg)
  1925. return -ENOMEM;
  1926. alpha2[0] = alpha2_arg[0];
  1927. alpha2[1] = alpha2_arg[1];
  1928. alpha2[2] = '\0';
  1929. nl80211_cmd(drv, msg, 0, NL80211_CMD_REQ_SET_REG);
  1930. NLA_PUT_STRING(msg, NL80211_ATTR_REG_ALPHA2, alpha2);
  1931. if (send_and_recv_msgs(drv, msg, NULL, NULL))
  1932. return -EINVAL;
  1933. return 0;
  1934. nla_put_failure:
  1935. nlmsg_free(msg);
  1936. return -EINVAL;
  1937. }
  1938. struct wiphy_info_data {
  1939. struct wpa_driver_capa *capa;
  1940. unsigned int error:1;
  1941. unsigned int device_ap_sme:1;
  1942. unsigned int poll_command_supported:1;
  1943. unsigned int data_tx_status:1;
  1944. unsigned int monitor_supported:1;
  1945. };
  1946. static unsigned int probe_resp_offload_support(int supp_protocols)
  1947. {
  1948. unsigned int prot = 0;
  1949. if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS)
  1950. prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS;
  1951. if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2)
  1952. prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2;
  1953. if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P)
  1954. prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P;
  1955. if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U)
  1956. prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING;
  1957. return prot;
  1958. }
  1959. static int wiphy_info_handler(struct nl_msg *msg, void *arg)
  1960. {
  1961. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  1962. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  1963. struct wiphy_info_data *info = arg;
  1964. int p2p_go_supported = 0, p2p_client_supported = 0;
  1965. int p2p_concurrent = 0;
  1966. int auth_supported = 0, connect_supported = 0;
  1967. struct wpa_driver_capa *capa = info->capa;
  1968. static struct nla_policy
  1969. iface_combination_policy[NUM_NL80211_IFACE_COMB] = {
  1970. [NL80211_IFACE_COMB_LIMITS] = { .type = NLA_NESTED },
  1971. [NL80211_IFACE_COMB_MAXNUM] = { .type = NLA_U32 },
  1972. [NL80211_IFACE_COMB_STA_AP_BI_MATCH] = { .type = NLA_FLAG },
  1973. [NL80211_IFACE_COMB_NUM_CHANNELS] = { .type = NLA_U32 },
  1974. },
  1975. iface_limit_policy[NUM_NL80211_IFACE_LIMIT] = {
  1976. [NL80211_IFACE_LIMIT_TYPES] = { .type = NLA_NESTED },
  1977. [NL80211_IFACE_LIMIT_MAX] = { .type = NLA_U32 },
  1978. };
  1979. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  1980. genlmsg_attrlen(gnlh, 0), NULL);
  1981. if (tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])
  1982. capa->max_scan_ssids =
  1983. nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]);
  1984. if (tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS])
  1985. capa->max_sched_scan_ssids =
  1986. nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS]);
  1987. if (tb[NL80211_ATTR_MAX_MATCH_SETS])
  1988. capa->max_match_sets =
  1989. nla_get_u8(tb[NL80211_ATTR_MAX_MATCH_SETS]);
  1990. if (tb[NL80211_ATTR_SUPPORTED_IFTYPES]) {
  1991. struct nlattr *nl_mode;
  1992. int i;
  1993. nla_for_each_nested(nl_mode,
  1994. tb[NL80211_ATTR_SUPPORTED_IFTYPES], i) {
  1995. switch (nla_type(nl_mode)) {
  1996. case NL80211_IFTYPE_AP:
  1997. capa->flags |= WPA_DRIVER_FLAGS_AP;
  1998. break;
  1999. case NL80211_IFTYPE_P2P_GO:
  2000. p2p_go_supported = 1;
  2001. break;
  2002. case NL80211_IFTYPE_P2P_CLIENT:
  2003. p2p_client_supported = 1;
  2004. break;
  2005. case NL80211_IFTYPE_MONITOR:
  2006. info->monitor_supported = 1;
  2007. break;
  2008. }
  2009. }
  2010. }
  2011. if (tb[NL80211_ATTR_INTERFACE_COMBINATIONS]) {
  2012. struct nlattr *nl_combi;
  2013. int rem_combi;
  2014. nla_for_each_nested(nl_combi,
  2015. tb[NL80211_ATTR_INTERFACE_COMBINATIONS],
  2016. rem_combi) {
  2017. struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB];
  2018. struct nlattr *tb_limit[NUM_NL80211_IFACE_LIMIT];
  2019. struct nlattr *nl_limit, *nl_mode;
  2020. int err, rem_limit, rem_mode;
  2021. int combination_has_p2p = 0, combination_has_mgd = 0;
  2022. err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB,
  2023. nl_combi,
  2024. iface_combination_policy);
  2025. if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] ||
  2026. !tb_comb[NL80211_IFACE_COMB_MAXNUM] ||
  2027. !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS])
  2028. goto broken_combination;
  2029. nla_for_each_nested(nl_limit,
  2030. tb_comb[NL80211_IFACE_COMB_LIMITS],
  2031. rem_limit) {
  2032. err = nla_parse_nested(tb_limit,
  2033. MAX_NL80211_IFACE_LIMIT,
  2034. nl_limit,
  2035. iface_limit_policy);
  2036. if (err ||
  2037. !tb_limit[NL80211_IFACE_LIMIT_TYPES])
  2038. goto broken_combination;
  2039. nla_for_each_nested(
  2040. nl_mode,
  2041. tb_limit[NL80211_IFACE_LIMIT_TYPES],
  2042. rem_mode) {
  2043. int ift = nla_type(nl_mode);
  2044. if (ift == NL80211_IFTYPE_P2P_GO ||
  2045. ift == NL80211_IFTYPE_P2P_CLIENT)
  2046. combination_has_p2p = 1;
  2047. if (ift == NL80211_IFTYPE_STATION)
  2048. combination_has_mgd = 1;
  2049. }
  2050. if (combination_has_p2p && combination_has_mgd)
  2051. break;
  2052. }
  2053. if (combination_has_p2p && combination_has_mgd) {
  2054. p2p_concurrent = 1;
  2055. break;
  2056. }
  2057. broken_combination:
  2058. ;
  2059. }
  2060. }
  2061. if (tb[NL80211_ATTR_SUPPORTED_COMMANDS]) {
  2062. struct nlattr *nl_cmd;
  2063. int i;
  2064. nla_for_each_nested(nl_cmd,
  2065. tb[NL80211_ATTR_SUPPORTED_COMMANDS], i) {
  2066. switch (nla_get_u32(nl_cmd)) {
  2067. case NL80211_CMD_AUTHENTICATE:
  2068. auth_supported = 1;
  2069. break;
  2070. case NL80211_CMD_CONNECT:
  2071. connect_supported = 1;
  2072. break;
  2073. case NL80211_CMD_START_SCHED_SCAN:
  2074. capa->sched_scan_supported = 1;
  2075. break;
  2076. case NL80211_CMD_PROBE_CLIENT:
  2077. info->poll_command_supported = 1;
  2078. break;
  2079. }
  2080. }
  2081. }
  2082. if (tb[NL80211_ATTR_OFFCHANNEL_TX_OK]) {
  2083. wpa_printf(MSG_DEBUG, "nl80211: Using driver-based "
  2084. "off-channel TX");
  2085. capa->flags |= WPA_DRIVER_FLAGS_OFFCHANNEL_TX;
  2086. }
  2087. if (tb[NL80211_ATTR_ROAM_SUPPORT]) {
  2088. wpa_printf(MSG_DEBUG, "nl80211: Using driver-based roaming");
  2089. capa->flags |= WPA_DRIVER_FLAGS_BSS_SELECTION;
  2090. }
  2091. /* default to 5000 since early versions of mac80211 don't set it */
  2092. capa->max_remain_on_chan = 5000;
  2093. if (tb[NL80211_ATTR_SUPPORT_AP_UAPSD])
  2094. capa->flags |= WPA_DRIVER_FLAGS_AP_UAPSD;
  2095. if (tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION])
  2096. capa->max_remain_on_chan =
  2097. nla_get_u32(tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION]);
  2098. if (auth_supported)
  2099. capa->flags |= WPA_DRIVER_FLAGS_SME;
  2100. else if (!connect_supported) {
  2101. wpa_printf(MSG_INFO, "nl80211: Driver does not support "
  2102. "authentication/association or connect commands");
  2103. info->error = 1;
  2104. }
  2105. if (p2p_go_supported && p2p_client_supported)
  2106. capa->flags |= WPA_DRIVER_FLAGS_P2P_CAPABLE;
  2107. if (p2p_concurrent) {
  2108. wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
  2109. "interface (driver advertised support)");
  2110. capa->flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
  2111. capa->flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
  2112. }
  2113. if (tb[NL80211_ATTR_TDLS_SUPPORT]) {
  2114. wpa_printf(MSG_DEBUG, "nl80211: TDLS supported");
  2115. capa->flags |= WPA_DRIVER_FLAGS_TDLS_SUPPORT;
  2116. if (tb[NL80211_ATTR_TDLS_EXTERNAL_SETUP]) {
  2117. wpa_printf(MSG_DEBUG, "nl80211: TDLS external setup");
  2118. capa->flags |=
  2119. WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP;
  2120. }
  2121. }
  2122. if (tb[NL80211_ATTR_DEVICE_AP_SME])
  2123. info->device_ap_sme = 1;
  2124. if (tb[NL80211_ATTR_FEATURE_FLAGS]) {
  2125. u32 flags = nla_get_u32(tb[NL80211_ATTR_FEATURE_FLAGS]);
  2126. if (flags & NL80211_FEATURE_SK_TX_STATUS)
  2127. info->data_tx_status = 1;
  2128. if (flags & NL80211_FEATURE_INACTIVITY_TIMER)
  2129. capa->flags |= WPA_DRIVER_FLAGS_INACTIVITY_TIMER;
  2130. }
  2131. if (tb[NL80211_ATTR_PROBE_RESP_OFFLOAD]) {
  2132. int protocols =
  2133. nla_get_u32(tb[NL80211_ATTR_PROBE_RESP_OFFLOAD]);
  2134. wpa_printf(MSG_DEBUG, "nl80211: Supports Probe Response "
  2135. "offload in AP mode");
  2136. capa->flags |= WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD;
  2137. capa->probe_resp_offloads =
  2138. probe_resp_offload_support(protocols);
  2139. }
  2140. return NL_SKIP;
  2141. }
  2142. static int wpa_driver_nl80211_get_info(struct wpa_driver_nl80211_data *drv,
  2143. struct wiphy_info_data *info)
  2144. {
  2145. struct nl_msg *msg;
  2146. os_memset(info, 0, sizeof(*info));
  2147. info->capa = &drv->capa;
  2148. msg = nlmsg_alloc();
  2149. if (!msg)
  2150. return -1;
  2151. nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
  2152. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->first_bss.ifindex);
  2153. if (send_and_recv_msgs(drv, msg, wiphy_info_handler, info) == 0)
  2154. return 0;
  2155. msg = NULL;
  2156. nla_put_failure:
  2157. nlmsg_free(msg);
  2158. return -1;
  2159. }
  2160. static int wpa_driver_nl80211_capa(struct wpa_driver_nl80211_data *drv)
  2161. {
  2162. struct wiphy_info_data info;
  2163. if (wpa_driver_nl80211_get_info(drv, &info))
  2164. return -1;
  2165. if (info.error)
  2166. return -1;
  2167. drv->has_capability = 1;
  2168. /* For now, assume TKIP, CCMP, WPA, WPA2 are supported */
  2169. drv->capa.key_mgmt = WPA_DRIVER_CAPA_KEY_MGMT_WPA |
  2170. WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
  2171. WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
  2172. WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK;
  2173. drv->capa.enc = WPA_DRIVER_CAPA_ENC_WEP40 |
  2174. WPA_DRIVER_CAPA_ENC_WEP104 |
  2175. WPA_DRIVER_CAPA_ENC_TKIP |
  2176. WPA_DRIVER_CAPA_ENC_CCMP;
  2177. drv->capa.auth = WPA_DRIVER_AUTH_OPEN |
  2178. WPA_DRIVER_AUTH_SHARED |
  2179. WPA_DRIVER_AUTH_LEAP;
  2180. drv->capa.flags |= WPA_DRIVER_FLAGS_SANE_ERROR_CODES;
  2181. drv->capa.flags |= WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE;
  2182. drv->capa.flags |= WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
  2183. if (!info.device_ap_sme)
  2184. drv->capa.flags |= WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS;
  2185. drv->device_ap_sme = info.device_ap_sme;
  2186. drv->poll_command_supported = info.poll_command_supported;
  2187. drv->data_tx_status = info.data_tx_status;
  2188. /*
  2189. * If poll command is supported mac80211 is new enough to
  2190. * have everything we need to not need monitor interfaces.
  2191. */
  2192. drv->use_monitor = !info.poll_command_supported;
  2193. if (drv->device_ap_sme && drv->use_monitor) {
  2194. /*
  2195. * Non-mac80211 drivers may not support monitor interface.
  2196. * Make sure we do not get stuck with incorrect capability here
  2197. * by explicitly testing this.
  2198. */
  2199. if (!info.monitor_supported) {
  2200. wpa_printf(MSG_DEBUG, "nl80211: Disable use_monitor "
  2201. "with device_ap_sme since no monitor mode "
  2202. "support detected");
  2203. drv->use_monitor = 0;
  2204. }
  2205. }
  2206. /*
  2207. * If we aren't going to use monitor interfaces, but the
  2208. * driver doesn't support data TX status, we won't get TX
  2209. * status for EAPOL frames.
  2210. */
  2211. if (!drv->use_monitor && !info.data_tx_status)
  2212. drv->capa.flags &= ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
  2213. return 0;
  2214. }
  2215. #ifdef ANDROID
  2216. static int android_genl_ctrl_resolve(struct nl_handle *handle,
  2217. const char *name)
  2218. {
  2219. /*
  2220. * Android ICS has very minimal genl_ctrl_resolve() implementation, so
  2221. * need to work around that.
  2222. */
  2223. struct nl_cache *cache = NULL;
  2224. struct genl_family *nl80211 = NULL;
  2225. int id = -1;
  2226. if (genl_ctrl_alloc_cache(handle, &cache) < 0) {
  2227. wpa_printf(MSG_ERROR, "nl80211: Failed to allocate generic "
  2228. "netlink cache");
  2229. goto fail;
  2230. }
  2231. nl80211 = genl_ctrl_search_by_name(cache, name);
  2232. if (nl80211 == NULL)
  2233. goto fail;
  2234. id = genl_family_get_id(nl80211);
  2235. fail:
  2236. if (nl80211)
  2237. genl_family_put(nl80211);
  2238. if (cache)
  2239. nl_cache_free(cache);
  2240. return id;
  2241. }
  2242. #define genl_ctrl_resolve android_genl_ctrl_resolve
  2243. #endif /* ANDROID */
  2244. static int wpa_driver_nl80211_init_nl_global(struct nl80211_global *global)
  2245. {
  2246. int ret;
  2247. global->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
  2248. if (global->nl_cb == NULL) {
  2249. wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
  2250. "callbacks");
  2251. return -1;
  2252. }
  2253. global->nl = nl_create_handle(global->nl_cb, "nl");
  2254. if (global->nl == NULL)
  2255. goto err;
  2256. global->nl80211_id = genl_ctrl_resolve(global->nl, "nl80211");
  2257. if (global->nl80211_id < 0) {
  2258. wpa_printf(MSG_ERROR, "nl80211: 'nl80211' generic netlink not "
  2259. "found");
  2260. goto err;
  2261. }
  2262. global->nl_event = nl_create_handle(global->nl_cb, "event");
  2263. if (global->nl_event == NULL)
  2264. goto err;
  2265. ret = nl_get_multicast_id(global, "nl80211", "scan");
  2266. if (ret >= 0)
  2267. ret = nl_socket_add_membership(global->nl_event, ret);
  2268. if (ret < 0) {
  2269. wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
  2270. "membership for scan events: %d (%s)",
  2271. ret, strerror(-ret));
  2272. goto err;
  2273. }
  2274. ret = nl_get_multicast_id(global, "nl80211", "mlme");
  2275. if (ret >= 0)
  2276. ret = nl_socket_add_membership(global->nl_event, ret);
  2277. if (ret < 0) {
  2278. wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
  2279. "membership for mlme events: %d (%s)",
  2280. ret, strerror(-ret));
  2281. goto err;
  2282. }
  2283. ret = nl_get_multicast_id(global, "nl80211", "regulatory");
  2284. if (ret >= 0)
  2285. ret = nl_socket_add_membership(global->nl_event, ret);
  2286. if (ret < 0) {
  2287. wpa_printf(MSG_DEBUG, "nl80211: Could not add multicast "
  2288. "membership for regulatory events: %d (%s)",
  2289. ret, strerror(-ret));
  2290. /* Continue without regulatory events */
  2291. }
  2292. nl_cb_set(global->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
  2293. no_seq_check, NULL);
  2294. nl_cb_set(global->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
  2295. process_global_event, global);
  2296. eloop_register_read_sock(nl_socket_get_fd(global->nl_event),
  2297. wpa_driver_nl80211_event_receive,
  2298. global->nl_cb, global->nl_event);
  2299. return 0;
  2300. err:
  2301. nl_destroy_handles(&global->nl_event);
  2302. nl_destroy_handles(&global->nl);
  2303. nl_cb_put(global->nl_cb);
  2304. global->nl_cb = NULL;
  2305. return -1;
  2306. }
  2307. static int wpa_driver_nl80211_init_nl(struct wpa_driver_nl80211_data *drv)
  2308. {
  2309. drv->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
  2310. if (!drv->nl_cb) {
  2311. wpa_printf(MSG_ERROR, "nl80211: Failed to alloc cb struct");
  2312. return -1;
  2313. }
  2314. nl_cb_set(drv->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
  2315. no_seq_check, NULL);
  2316. nl_cb_set(drv->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
  2317. process_drv_event, drv);
  2318. return 0;
  2319. }
  2320. static void wpa_driver_nl80211_rfkill_blocked(void *ctx)
  2321. {
  2322. wpa_printf(MSG_DEBUG, "nl80211: RFKILL blocked");
  2323. /*
  2324. * This may be for any interface; use ifdown event to disable
  2325. * interface.
  2326. */
  2327. }
  2328. static void wpa_driver_nl80211_rfkill_unblocked(void *ctx)
  2329. {
  2330. struct wpa_driver_nl80211_data *drv = ctx;
  2331. wpa_printf(MSG_DEBUG, "nl80211: RFKILL unblocked");
  2332. if (linux_set_iface_flags(drv->global->ioctl_sock,
  2333. drv->first_bss.ifname, 1)) {
  2334. wpa_printf(MSG_DEBUG, "nl80211: Could not set interface UP "
  2335. "after rfkill unblock");
  2336. return;
  2337. }
  2338. /* rtnetlink ifup handler will report interface as enabled */
  2339. }
  2340. static void nl80211_get_phy_name(struct wpa_driver_nl80211_data *drv)
  2341. {
  2342. /* Find phy (radio) to which this interface belongs */
  2343. char buf[90], *pos;
  2344. int f, rv;
  2345. drv->phyname[0] = '\0';
  2346. snprintf(buf, sizeof(buf) - 1, "/sys/class/net/%s/phy80211/name",
  2347. drv->first_bss.ifname);
  2348. f = open(buf, O_RDONLY);
  2349. if (f < 0) {
  2350. wpa_printf(MSG_DEBUG, "Could not open file %s: %s",
  2351. buf, strerror(errno));
  2352. return;
  2353. }
  2354. rv = read(f, drv->phyname, sizeof(drv->phyname) - 1);
  2355. close(f);
  2356. if (rv < 0) {
  2357. wpa_printf(MSG_DEBUG, "Could not read file %s: %s",
  2358. buf, strerror(errno));
  2359. return;
  2360. }
  2361. drv->phyname[rv] = '\0';
  2362. pos = os_strchr(drv->phyname, '\n');
  2363. if (pos)
  2364. *pos = '\0';
  2365. wpa_printf(MSG_DEBUG, "nl80211: interface %s in phy %s",
  2366. drv->first_bss.ifname, drv->phyname);
  2367. }
  2368. static void wpa_driver_nl80211_handle_eapol_tx_status(int sock,
  2369. void *eloop_ctx,
  2370. void *handle)
  2371. {
  2372. struct wpa_driver_nl80211_data *drv = eloop_ctx;
  2373. u8 data[2048];
  2374. struct msghdr msg;
  2375. struct iovec entry;
  2376. u8 control[512];
  2377. struct cmsghdr *cmsg;
  2378. int res, found_ee = 0, found_wifi = 0, acked = 0;
  2379. union wpa_event_data event;
  2380. memset(&msg, 0, sizeof(msg));
  2381. msg.msg_iov = &entry;
  2382. msg.msg_iovlen = 1;
  2383. entry.iov_base = data;
  2384. entry.iov_len = sizeof(data);
  2385. msg.msg_control = &control;
  2386. msg.msg_controllen = sizeof(control);
  2387. res = recvmsg(sock, &msg, MSG_ERRQUEUE);
  2388. /* if error or not fitting 802.3 header, return */
  2389. if (res < 14)
  2390. return;
  2391. for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg))
  2392. {
  2393. if (cmsg->cmsg_level == SOL_SOCKET &&
  2394. cmsg->cmsg_type == SCM_WIFI_STATUS) {
  2395. int *ack;
  2396. found_wifi = 1;
  2397. ack = (void *)CMSG_DATA(cmsg);
  2398. acked = *ack;
  2399. }
  2400. if (cmsg->cmsg_level == SOL_PACKET &&
  2401. cmsg->cmsg_type == PACKET_TX_TIMESTAMP) {
  2402. struct sock_extended_err *err =
  2403. (struct sock_extended_err *)CMSG_DATA(cmsg);
  2404. if (err->ee_origin == SO_EE_ORIGIN_TXSTATUS)
  2405. found_ee = 1;
  2406. }
  2407. }
  2408. if (!found_ee || !found_wifi)
  2409. return;
  2410. memset(&event, 0, sizeof(event));
  2411. event.eapol_tx_status.dst = data;
  2412. event.eapol_tx_status.data = data + 14;
  2413. event.eapol_tx_status.data_len = res - 14;
  2414. event.eapol_tx_status.ack = acked;
  2415. wpa_supplicant_event(drv->ctx, EVENT_EAPOL_TX_STATUS, &event);
  2416. }
  2417. static int nl80211_init_bss(struct i802_bss *bss)
  2418. {
  2419. bss->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
  2420. if (!bss->nl_cb)
  2421. return -1;
  2422. nl_cb_set(bss->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
  2423. no_seq_check, NULL);
  2424. nl_cb_set(bss->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
  2425. process_bss_event, bss);
  2426. return 0;
  2427. }
  2428. static void nl80211_destroy_bss(struct i802_bss *bss)
  2429. {
  2430. nl_cb_put(bss->nl_cb);
  2431. bss->nl_cb = NULL;
  2432. }
  2433. /**
  2434. * wpa_driver_nl80211_init - Initialize nl80211 driver interface
  2435. * @ctx: context to be used when calling wpa_supplicant functions,
  2436. * e.g., wpa_supplicant_event()
  2437. * @ifname: interface name, e.g., wlan0
  2438. * @global_priv: private driver global data from global_init()
  2439. * Returns: Pointer to private data, %NULL on failure
  2440. */
  2441. static void * wpa_driver_nl80211_init(void *ctx, const char *ifname,
  2442. void *global_priv)
  2443. {
  2444. struct wpa_driver_nl80211_data *drv;
  2445. struct rfkill_config *rcfg;
  2446. struct i802_bss *bss;
  2447. if (global_priv == NULL)
  2448. return NULL;
  2449. drv = os_zalloc(sizeof(*drv));
  2450. if (drv == NULL)
  2451. return NULL;
  2452. drv->global = global_priv;
  2453. drv->ctx = ctx;
  2454. bss = &drv->first_bss;
  2455. bss->drv = drv;
  2456. os_strlcpy(bss->ifname, ifname, sizeof(bss->ifname));
  2457. drv->monitor_ifidx = -1;
  2458. drv->monitor_sock = -1;
  2459. drv->eapol_tx_sock = -1;
  2460. drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
  2461. if (wpa_driver_nl80211_init_nl(drv)) {
  2462. os_free(drv);
  2463. return NULL;
  2464. }
  2465. if (nl80211_init_bss(bss))
  2466. goto failed;
  2467. nl80211_get_phy_name(drv);
  2468. rcfg = os_zalloc(sizeof(*rcfg));
  2469. if (rcfg == NULL)
  2470. goto failed;
  2471. rcfg->ctx = drv;
  2472. os_strlcpy(rcfg->ifname, ifname, sizeof(rcfg->ifname));
  2473. rcfg->blocked_cb = wpa_driver_nl80211_rfkill_blocked;
  2474. rcfg->unblocked_cb = wpa_driver_nl80211_rfkill_unblocked;
  2475. drv->rfkill = rfkill_init(rcfg);
  2476. if (drv->rfkill == NULL) {
  2477. wpa_printf(MSG_DEBUG, "nl80211: RFKILL status not available");
  2478. os_free(rcfg);
  2479. }
  2480. if (wpa_driver_nl80211_finish_drv_init(drv))
  2481. goto failed;
  2482. drv->eapol_tx_sock = socket(PF_PACKET, SOCK_DGRAM, 0);
  2483. if (drv->eapol_tx_sock < 0)
  2484. goto failed;
  2485. if (drv->data_tx_status) {
  2486. int enabled = 1;
  2487. if (setsockopt(drv->eapol_tx_sock, SOL_SOCKET, SO_WIFI_STATUS,
  2488. &enabled, sizeof(enabled)) < 0) {
  2489. wpa_printf(MSG_DEBUG,
  2490. "nl80211: wifi status sockopt failed\n");
  2491. drv->data_tx_status = 0;
  2492. if (!drv->use_monitor)
  2493. drv->capa.flags &=
  2494. ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
  2495. } else {
  2496. eloop_register_read_sock(drv->eapol_tx_sock,
  2497. wpa_driver_nl80211_handle_eapol_tx_status,
  2498. drv, NULL);
  2499. }
  2500. }
  2501. if (drv->global) {
  2502. dl_list_add(&drv->global->interfaces, &drv->list);
  2503. drv->in_interface_list = 1;
  2504. }
  2505. return bss;
  2506. failed:
  2507. wpa_driver_nl80211_deinit(bss);
  2508. return NULL;
  2509. }
  2510. static int nl80211_register_frame(struct i802_bss *bss,
  2511. struct nl_handle *nl_handle,
  2512. u16 type, const u8 *match, size_t match_len)
  2513. {
  2514. struct wpa_driver_nl80211_data *drv = bss->drv;
  2515. struct nl_msg *msg;
  2516. int ret = -1;
  2517. msg = nlmsg_alloc();
  2518. if (!msg)
  2519. return -1;
  2520. wpa_printf(MSG_DEBUG, "nl80211: Register frame type=0x%x nl_handle=%p",
  2521. type, nl_handle);
  2522. wpa_hexdump(MSG_DEBUG, "nl80211: Register frame match",
  2523. match, match_len);
  2524. nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_ACTION);
  2525. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
  2526. NLA_PUT_U16(msg, NL80211_ATTR_FRAME_TYPE, type);
  2527. NLA_PUT(msg, NL80211_ATTR_FRAME_MATCH, match_len, match);
  2528. ret = send_and_recv(drv->global, nl_handle, msg, NULL, NULL);
  2529. msg = NULL;
  2530. if (ret) {
  2531. wpa_printf(MSG_DEBUG, "nl80211: Register frame command "
  2532. "failed (type=%u): ret=%d (%s)",
  2533. type, ret, strerror(-ret));
  2534. wpa_hexdump(MSG_DEBUG, "nl80211: Register frame match",
  2535. match, match_len);
  2536. goto nla_put_failure;
  2537. }
  2538. ret = 0;
  2539. nla_put_failure:
  2540. nlmsg_free(msg);
  2541. return ret;
  2542. }
  2543. static int nl80211_alloc_mgmt_handle(struct i802_bss *bss)
  2544. {
  2545. struct wpa_driver_nl80211_data *drv = bss->drv;
  2546. if (bss->nl_mgmt) {
  2547. wpa_printf(MSG_DEBUG, "nl80211: Mgmt reporting "
  2548. "already on! (nl_mgmt=%p)", bss->nl_mgmt);
  2549. return -1;
  2550. }
  2551. bss->nl_mgmt = nl_create_handle(drv->nl_cb, "mgmt");
  2552. if (bss->nl_mgmt == NULL)
  2553. return -1;
  2554. eloop_register_read_sock(nl_socket_get_fd(bss->nl_mgmt),
  2555. wpa_driver_nl80211_event_receive, bss->nl_cb,
  2556. bss->nl_mgmt);
  2557. return 0;
  2558. }
  2559. static int nl80211_register_action_frame(struct i802_bss *bss,
  2560. const u8 *match, size_t match_len)
  2561. {
  2562. u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_ACTION << 4);
  2563. return nl80211_register_frame(bss, bss->nl_mgmt,
  2564. type, match, match_len);
  2565. }
  2566. static int nl80211_mgmt_subscribe_non_ap(struct i802_bss *bss)
  2567. {
  2568. struct wpa_driver_nl80211_data *drv = bss->drv;
  2569. if (nl80211_alloc_mgmt_handle(bss))
  2570. return -1;
  2571. wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with non-AP "
  2572. "handle %p", bss->nl_mgmt);
  2573. #if defined(CONFIG_P2P) || defined(CONFIG_INTERWORKING)
  2574. /* GAS Initial Request */
  2575. if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0a", 2) < 0)
  2576. return -1;
  2577. /* GAS Initial Response */
  2578. if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0b", 2) < 0)
  2579. return -1;
  2580. /* GAS Comeback Request */
  2581. if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0c", 2) < 0)
  2582. return -1;
  2583. /* GAS Comeback Response */
  2584. if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0d", 2) < 0)
  2585. return -1;
  2586. #endif /* CONFIG_P2P || CONFIG_INTERWORKING */
  2587. #ifdef CONFIG_P2P
  2588. /* P2P Public Action */
  2589. if (nl80211_register_action_frame(bss,
  2590. (u8 *) "\x04\x09\x50\x6f\x9a\x09",
  2591. 6) < 0)
  2592. return -1;
  2593. /* P2P Action */
  2594. if (nl80211_register_action_frame(bss,
  2595. (u8 *) "\x7f\x50\x6f\x9a\x09",
  2596. 5) < 0)
  2597. return -1;
  2598. #endif /* CONFIG_P2P */
  2599. #ifdef CONFIG_IEEE80211W
  2600. /* SA Query Response */
  2601. if (nl80211_register_action_frame(bss, (u8 *) "\x08\x01", 2) < 0)
  2602. return -1;
  2603. #endif /* CONFIG_IEEE80211W */
  2604. #ifdef CONFIG_TDLS
  2605. if ((drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT)) {
  2606. /* TDLS Discovery Response */
  2607. if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0e", 2) <
  2608. 0)
  2609. return -1;
  2610. }
  2611. #endif /* CONFIG_TDLS */
  2612. /* FT Action frames */
  2613. if (nl80211_register_action_frame(bss, (u8 *) "\x06", 1) < 0)
  2614. return -1;
  2615. else
  2616. drv->capa.key_mgmt |= WPA_DRIVER_CAPA_KEY_MGMT_FT |
  2617. WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK;
  2618. /* WNM - BSS Transition Management Request */
  2619. if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x07", 2) < 0)
  2620. return -1;
  2621. return 0;
  2622. }
  2623. static int nl80211_register_spurious_class3(struct i802_bss *bss)
  2624. {
  2625. struct wpa_driver_nl80211_data *drv = bss->drv;
  2626. struct nl_msg *msg;
  2627. int ret = -1;
  2628. msg = nlmsg_alloc();
  2629. if (!msg)
  2630. return -1;
  2631. nl80211_cmd(drv, msg, 0, NL80211_CMD_UNEXPECTED_FRAME);
  2632. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
  2633. ret = send_and_recv(drv->global, bss->nl_mgmt, msg, NULL, NULL);
  2634. msg = NULL;
  2635. if (ret) {
  2636. wpa_printf(MSG_DEBUG, "nl80211: Register spurious class3 "
  2637. "failed: ret=%d (%s)",
  2638. ret, strerror(-ret));
  2639. goto nla_put_failure;
  2640. }
  2641. ret = 0;
  2642. nla_put_failure:
  2643. nlmsg_free(msg);
  2644. return ret;
  2645. }
  2646. static int nl80211_mgmt_subscribe_ap(struct i802_bss *bss)
  2647. {
  2648. static const int stypes[] = {
  2649. WLAN_FC_STYPE_AUTH,
  2650. WLAN_FC_STYPE_ASSOC_REQ,
  2651. WLAN_FC_STYPE_REASSOC_REQ,
  2652. WLAN_FC_STYPE_DISASSOC,
  2653. WLAN_FC_STYPE_DEAUTH,
  2654. WLAN_FC_STYPE_ACTION,
  2655. WLAN_FC_STYPE_PROBE_REQ,
  2656. /* Beacon doesn't work as mac80211 doesn't currently allow
  2657. * it, but it wouldn't really be the right thing anyway as
  2658. * it isn't per interface ... maybe just dump the scan
  2659. * results periodically for OLBC?
  2660. */
  2661. // WLAN_FC_STYPE_BEACON,
  2662. };
  2663. unsigned int i;
  2664. if (nl80211_alloc_mgmt_handle(bss))
  2665. return -1;
  2666. wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
  2667. "handle %p", bss->nl_mgmt);
  2668. for (i = 0; i < sizeof(stypes) / sizeof(stypes[0]); i++) {
  2669. if (nl80211_register_frame(bss, bss->nl_mgmt,
  2670. (WLAN_FC_TYPE_MGMT << 2) |
  2671. (stypes[i] << 4),
  2672. NULL, 0) < 0) {
  2673. goto out_err;
  2674. }
  2675. }
  2676. if (nl80211_register_spurious_class3(bss))
  2677. goto out_err;
  2678. if (nl80211_get_wiphy_data_ap(bss) == NULL)
  2679. goto out_err;
  2680. return 0;
  2681. out_err:
  2682. eloop_unregister_read_sock(nl_socket_get_fd(bss->nl_mgmt));
  2683. nl_destroy_handles(&bss->nl_mgmt);
  2684. return -1;
  2685. }
  2686. static int nl80211_mgmt_subscribe_ap_dev_sme(struct i802_bss *bss)
  2687. {
  2688. if (nl80211_alloc_mgmt_handle(bss))
  2689. return -1;
  2690. wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
  2691. "handle %p (device SME)", bss->nl_mgmt);
  2692. if (nl80211_register_frame(bss, bss->nl_mgmt,
  2693. (WLAN_FC_TYPE_MGMT << 2) |
  2694. (WLAN_FC_STYPE_ACTION << 4),
  2695. NULL, 0) < 0)
  2696. goto out_err;
  2697. return 0;
  2698. out_err:
  2699. eloop_unregister_read_sock(nl_socket_get_fd(bss->nl_mgmt));
  2700. nl_destroy_handles(&bss->nl_mgmt);
  2701. return -1;
  2702. }
  2703. static void nl80211_mgmt_unsubscribe(struct i802_bss *bss, const char *reason)
  2704. {
  2705. if (bss->nl_mgmt == NULL)
  2706. return;
  2707. wpa_printf(MSG_DEBUG, "nl80211: Unsubscribe mgmt frames handle %p "
  2708. "(%s)", bss->nl_mgmt, reason);
  2709. eloop_unregister_read_sock(nl_socket_get_fd(bss->nl_mgmt));
  2710. nl_destroy_handles(&bss->nl_mgmt);
  2711. nl80211_put_wiphy_data_ap(bss);
  2712. }
  2713. static void wpa_driver_nl80211_send_rfkill(void *eloop_ctx, void *timeout_ctx)
  2714. {
  2715. wpa_supplicant_event(timeout_ctx, EVENT_INTERFACE_DISABLED, NULL);
  2716. }
  2717. static int
  2718. wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv)
  2719. {
  2720. struct i802_bss *bss = &drv->first_bss;
  2721. int send_rfkill_event = 0;
  2722. drv->ifindex = if_nametoindex(bss->ifname);
  2723. drv->first_bss.ifindex = drv->ifindex;
  2724. #ifndef HOSTAPD
  2725. /*
  2726. * Make sure the interface starts up in station mode unless this is a
  2727. * dynamically added interface (e.g., P2P) that was already configured
  2728. * with proper iftype.
  2729. */
  2730. if (drv->ifindex != drv->global->if_add_ifindex &&
  2731. wpa_driver_nl80211_set_mode(bss, NL80211_IFTYPE_STATION) < 0) {
  2732. wpa_printf(MSG_ERROR, "nl80211: Could not configure driver to "
  2733. "use managed mode");
  2734. return -1;
  2735. }
  2736. if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1)) {
  2737. if (rfkill_is_blocked(drv->rfkill)) {
  2738. wpa_printf(MSG_DEBUG, "nl80211: Could not yet enable "
  2739. "interface '%s' due to rfkill",
  2740. bss->ifname);
  2741. drv->if_disabled = 1;
  2742. send_rfkill_event = 1;
  2743. } else {
  2744. wpa_printf(MSG_ERROR, "nl80211: Could not set "
  2745. "interface '%s' UP", bss->ifname);
  2746. return -1;
  2747. }
  2748. }
  2749. netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
  2750. 1, IF_OPER_DORMANT);
  2751. #endif /* HOSTAPD */
  2752. if (wpa_driver_nl80211_capa(drv))
  2753. return -1;
  2754. if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
  2755. bss->addr))
  2756. return -1;
  2757. if (send_rfkill_event) {
  2758. eloop_register_timeout(0, 0, wpa_driver_nl80211_send_rfkill,
  2759. drv, drv->ctx);
  2760. }
  2761. return 0;
  2762. }
  2763. static int wpa_driver_nl80211_del_beacon(struct wpa_driver_nl80211_data *drv)
  2764. {
  2765. struct nl_msg *msg;
  2766. msg = nlmsg_alloc();
  2767. if (!msg)
  2768. return -ENOMEM;
  2769. nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_BEACON);
  2770. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  2771. return send_and_recv_msgs(drv, msg, NULL, NULL);
  2772. nla_put_failure:
  2773. nlmsg_free(msg);
  2774. return -ENOBUFS;
  2775. }
  2776. /**
  2777. * wpa_driver_nl80211_deinit - Deinitialize nl80211 driver interface
  2778. * @priv: Pointer to private nl80211 data from wpa_driver_nl80211_init()
  2779. *
  2780. * Shut down driver interface and processing of driver events. Free
  2781. * private data buffer if one was allocated in wpa_driver_nl80211_init().
  2782. */
  2783. static void wpa_driver_nl80211_deinit(void *priv)
  2784. {
  2785. struct i802_bss *bss = priv;
  2786. struct wpa_driver_nl80211_data *drv = bss->drv;
  2787. bss->in_deinit = 1;
  2788. if (drv->data_tx_status)
  2789. eloop_unregister_read_sock(drv->eapol_tx_sock);
  2790. if (drv->eapol_tx_sock >= 0)
  2791. close(drv->eapol_tx_sock);
  2792. if (bss->nl_preq)
  2793. wpa_driver_nl80211_probe_req_report(bss, 0);
  2794. if (bss->added_if_into_bridge) {
  2795. if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
  2796. bss->ifname) < 0)
  2797. wpa_printf(MSG_INFO, "nl80211: Failed to remove "
  2798. "interface %s from bridge %s: %s",
  2799. bss->ifname, bss->brname, strerror(errno));
  2800. }
  2801. if (bss->added_bridge) {
  2802. if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
  2803. wpa_printf(MSG_INFO, "nl80211: Failed to remove "
  2804. "bridge %s: %s",
  2805. bss->brname, strerror(errno));
  2806. }
  2807. nl80211_remove_monitor_interface(drv);
  2808. if (is_ap_interface(drv->nlmode))
  2809. wpa_driver_nl80211_del_beacon(drv);
  2810. #ifdef HOSTAPD
  2811. if (drv->last_freq_ht) {
  2812. /* Clear HT flags from the driver */
  2813. struct hostapd_freq_params freq;
  2814. os_memset(&freq, 0, sizeof(freq));
  2815. freq.freq = drv->last_freq;
  2816. i802_set_freq(priv, &freq);
  2817. }
  2818. if (drv->eapol_sock >= 0) {
  2819. eloop_unregister_read_sock(drv->eapol_sock);
  2820. close(drv->eapol_sock);
  2821. }
  2822. if (drv->if_indices != drv->default_if_indices)
  2823. os_free(drv->if_indices);
  2824. #endif /* HOSTAPD */
  2825. if (drv->disabled_11b_rates)
  2826. nl80211_disable_11b_rates(drv, drv->ifindex, 0);
  2827. netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, 0,
  2828. IF_OPER_UP);
  2829. rfkill_deinit(drv->rfkill);
  2830. eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
  2831. (void) linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 0);
  2832. wpa_driver_nl80211_set_mode(bss, NL80211_IFTYPE_STATION);
  2833. nl80211_mgmt_unsubscribe(bss, "deinit");
  2834. nl_cb_put(drv->nl_cb);
  2835. nl80211_destroy_bss(&drv->first_bss);
  2836. os_free(drv->filter_ssids);
  2837. os_free(drv->auth_ie);
  2838. if (drv->in_interface_list)
  2839. dl_list_del(&drv->list);
  2840. os_free(drv);
  2841. }
  2842. /**
  2843. * wpa_driver_nl80211_scan_timeout - Scan timeout to report scan completion
  2844. * @eloop_ctx: Driver private data
  2845. * @timeout_ctx: ctx argument given to wpa_driver_nl80211_init()
  2846. *
  2847. * This function can be used as registered timeout when starting a scan to
  2848. * generate a scan completed event if the driver does not report this.
  2849. */
  2850. static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx, void *timeout_ctx)
  2851. {
  2852. struct wpa_driver_nl80211_data *drv = eloop_ctx;
  2853. if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED) {
  2854. wpa_driver_nl80211_set_mode(&drv->first_bss,
  2855. drv->ap_scan_as_station);
  2856. drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
  2857. }
  2858. wpa_printf(MSG_DEBUG, "Scan timeout - try to get results");
  2859. wpa_supplicant_event(timeout_ctx, EVENT_SCAN_RESULTS, NULL);
  2860. }
  2861. /**
  2862. * wpa_driver_nl80211_scan - Request the driver to initiate scan
  2863. * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
  2864. * @params: Scan parameters
  2865. * Returns: 0 on success, -1 on failure
  2866. */
  2867. static int wpa_driver_nl80211_scan(void *priv,
  2868. struct wpa_driver_scan_params *params)
  2869. {
  2870. struct i802_bss *bss = priv;
  2871. struct wpa_driver_nl80211_data *drv = bss->drv;
  2872. int ret = 0, timeout;
  2873. struct nl_msg *msg, *ssids, *freqs, *rates;
  2874. size_t i;
  2875. drv->scan_for_auth = 0;
  2876. msg = nlmsg_alloc();
  2877. ssids = nlmsg_alloc();
  2878. freqs = nlmsg_alloc();
  2879. rates = nlmsg_alloc();
  2880. if (!msg || !ssids || !freqs || !rates) {
  2881. nlmsg_free(msg);
  2882. nlmsg_free(ssids);
  2883. nlmsg_free(freqs);
  2884. nlmsg_free(rates);
  2885. return -1;
  2886. }
  2887. os_free(drv->filter_ssids);
  2888. drv->filter_ssids = params->filter_ssids;
  2889. params->filter_ssids = NULL;
  2890. drv->num_filter_ssids = params->num_filter_ssids;
  2891. nl80211_cmd(drv, msg, 0, NL80211_CMD_TRIGGER_SCAN);
  2892. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  2893. for (i = 0; i < params->num_ssids; i++) {
  2894. wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Scan SSID",
  2895. params->ssids[i].ssid,
  2896. params->ssids[i].ssid_len);
  2897. NLA_PUT(ssids, i + 1, params->ssids[i].ssid_len,
  2898. params->ssids[i].ssid);
  2899. }
  2900. if (params->num_ssids)
  2901. nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids);
  2902. if (params->extra_ies) {
  2903. wpa_hexdump(MSG_MSGDUMP, "nl80211: Scan extra IEs",
  2904. params->extra_ies, params->extra_ies_len);
  2905. NLA_PUT(msg, NL80211_ATTR_IE, params->extra_ies_len,
  2906. params->extra_ies);
  2907. }
  2908. if (params->freqs) {
  2909. for (i = 0; params->freqs[i]; i++) {
  2910. wpa_printf(MSG_MSGDUMP, "nl80211: Scan frequency %u "
  2911. "MHz", params->freqs[i]);
  2912. NLA_PUT_U32(freqs, i + 1, params->freqs[i]);
  2913. }
  2914. nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
  2915. }
  2916. if (params->p2p_probe) {
  2917. wpa_printf(MSG_DEBUG, "nl80211: P2P probe - mask SuppRates");
  2918. /*
  2919. * Remove 2.4 GHz rates 1, 2, 5.5, 11 Mbps from supported rates
  2920. * by masking out everything else apart from the OFDM rates 6,
  2921. * 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS rates. All 5 GHz
  2922. * rates are left enabled.
  2923. */
  2924. NLA_PUT(rates, NL80211_BAND_2GHZ, 8,
  2925. "\x0c\x12\x18\x24\x30\x48\x60\x6c");
  2926. nla_put_nested(msg, NL80211_ATTR_SCAN_SUPP_RATES, rates);
  2927. NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
  2928. }
  2929. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  2930. msg = NULL;
  2931. if (ret) {
  2932. wpa_printf(MSG_DEBUG, "nl80211: Scan trigger failed: ret=%d "
  2933. "(%s)", ret, strerror(-ret));
  2934. #ifdef HOSTAPD
  2935. if (is_ap_interface(drv->nlmode)) {
  2936. /*
  2937. * mac80211 does not allow scan requests in AP mode, so
  2938. * try to do this in station mode.
  2939. */
  2940. if (wpa_driver_nl80211_set_mode(
  2941. bss, NL80211_IFTYPE_STATION))
  2942. goto nla_put_failure;
  2943. if (wpa_driver_nl80211_scan(drv, params)) {
  2944. wpa_driver_nl80211_set_mode(bss, drv->nlmode);
  2945. goto nla_put_failure;
  2946. }
  2947. /* Restore AP mode when processing scan results */
  2948. drv->ap_scan_as_station = drv->nlmode;
  2949. ret = 0;
  2950. } else
  2951. goto nla_put_failure;
  2952. #else /* HOSTAPD */
  2953. goto nla_put_failure;
  2954. #endif /* HOSTAPD */
  2955. }
  2956. /* Not all drivers generate "scan completed" wireless event, so try to
  2957. * read results after a timeout. */
  2958. timeout = 10;
  2959. if (drv->scan_complete_events) {
  2960. /*
  2961. * The driver seems to deliver events to notify when scan is
  2962. * complete, so use longer timeout to avoid race conditions
  2963. * with scanning and following association request.
  2964. */
  2965. timeout = 30;
  2966. }
  2967. wpa_printf(MSG_DEBUG, "Scan requested (ret=%d) - scan timeout %d "
  2968. "seconds", ret, timeout);
  2969. eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
  2970. eloop_register_timeout(timeout, 0, wpa_driver_nl80211_scan_timeout,
  2971. drv, drv->ctx);
  2972. nla_put_failure:
  2973. nlmsg_free(ssids);
  2974. nlmsg_free(msg);
  2975. nlmsg_free(freqs);
  2976. nlmsg_free(rates);
  2977. return ret;
  2978. }
  2979. /**
  2980. * wpa_driver_nl80211_sched_scan - Initiate a scheduled scan
  2981. * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
  2982. * @params: Scan parameters
  2983. * @interval: Interval between scan cycles in milliseconds
  2984. * Returns: 0 on success, -1 on failure or if not supported
  2985. */
  2986. static int wpa_driver_nl80211_sched_scan(void *priv,
  2987. struct wpa_driver_scan_params *params,
  2988. u32 interval)
  2989. {
  2990. struct i802_bss *bss = priv;
  2991. struct wpa_driver_nl80211_data *drv = bss->drv;
  2992. int ret = 0;
  2993. struct nl_msg *msg, *ssids, *freqs, *match_set_ssid, *match_sets;
  2994. size_t i;
  2995. #ifdef ANDROID
  2996. if (!drv->capa.sched_scan_supported)
  2997. return android_pno_start(bss, params);
  2998. #endif /* ANDROID */
  2999. msg = nlmsg_alloc();
  3000. ssids = nlmsg_alloc();
  3001. freqs = nlmsg_alloc();
  3002. if (!msg || !ssids || !freqs) {
  3003. nlmsg_free(msg);
  3004. nlmsg_free(ssids);
  3005. nlmsg_free(freqs);
  3006. return -1;
  3007. }
  3008. os_free(drv->filter_ssids);
  3009. drv->filter_ssids = params->filter_ssids;
  3010. params->filter_ssids = NULL;
  3011. drv->num_filter_ssids = params->num_filter_ssids;
  3012. nl80211_cmd(drv, msg, 0, NL80211_CMD_START_SCHED_SCAN);
  3013. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  3014. NLA_PUT_U32(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL, interval);
  3015. if (drv->num_filter_ssids &&
  3016. (int) drv->num_filter_ssids <= drv->capa.max_match_sets) {
  3017. match_sets = nlmsg_alloc();
  3018. for (i = 0; i < drv->num_filter_ssids; i++) {
  3019. wpa_hexdump_ascii(MSG_MSGDUMP,
  3020. "nl80211: Sched scan filter SSID",
  3021. drv->filter_ssids[i].ssid,
  3022. drv->filter_ssids[i].ssid_len);
  3023. match_set_ssid = nlmsg_alloc();
  3024. nla_put(match_set_ssid,
  3025. NL80211_ATTR_SCHED_SCAN_MATCH_SSID,
  3026. drv->filter_ssids[i].ssid_len,
  3027. drv->filter_ssids[i].ssid);
  3028. nla_put_nested(match_sets, i + 1, match_set_ssid);
  3029. nlmsg_free(match_set_ssid);
  3030. }
  3031. nla_put_nested(msg, NL80211_ATTR_SCHED_SCAN_MATCH,
  3032. match_sets);
  3033. nlmsg_free(match_sets);
  3034. }
  3035. for (i = 0; i < params->num_ssids; i++) {
  3036. wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Sched scan SSID",
  3037. params->ssids[i].ssid,
  3038. params->ssids[i].ssid_len);
  3039. NLA_PUT(ssids, i + 1, params->ssids[i].ssid_len,
  3040. params->ssids[i].ssid);
  3041. }
  3042. if (params->num_ssids)
  3043. nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids);
  3044. if (params->extra_ies) {
  3045. wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Sched scan extra IEs",
  3046. params->extra_ies, params->extra_ies_len);
  3047. NLA_PUT(msg, NL80211_ATTR_IE, params->extra_ies_len,
  3048. params->extra_ies);
  3049. }
  3050. if (params->freqs) {
  3051. for (i = 0; params->freqs[i]; i++) {
  3052. wpa_printf(MSG_MSGDUMP, "nl80211: Scan frequency %u "
  3053. "MHz", params->freqs[i]);
  3054. NLA_PUT_U32(freqs, i + 1, params->freqs[i]);
  3055. }
  3056. nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
  3057. }
  3058. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  3059. /* TODO: if we get an error here, we should fall back to normal scan */
  3060. msg = NULL;
  3061. if (ret) {
  3062. wpa_printf(MSG_DEBUG, "nl80211: Sched scan start failed: "
  3063. "ret=%d (%s)", ret, strerror(-ret));
  3064. goto nla_put_failure;
  3065. }
  3066. wpa_printf(MSG_DEBUG, "nl80211: Sched scan requested (ret=%d) - "
  3067. "scan interval %d msec", ret, interval);
  3068. nla_put_failure:
  3069. nlmsg_free(ssids);
  3070. nlmsg_free(msg);
  3071. nlmsg_free(freqs);
  3072. return ret;
  3073. }
  3074. /**
  3075. * wpa_driver_nl80211_stop_sched_scan - Stop a scheduled scan
  3076. * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
  3077. * Returns: 0 on success, -1 on failure or if not supported
  3078. */
  3079. static int wpa_driver_nl80211_stop_sched_scan(void *priv)
  3080. {
  3081. struct i802_bss *bss = priv;
  3082. struct wpa_driver_nl80211_data *drv = bss->drv;
  3083. int ret = 0;
  3084. struct nl_msg *msg;
  3085. #ifdef ANDROID
  3086. if (!drv->capa.sched_scan_supported)
  3087. return android_pno_stop(bss);
  3088. #endif /* ANDROID */
  3089. msg = nlmsg_alloc();
  3090. if (!msg)
  3091. return -1;
  3092. nl80211_cmd(drv, msg, 0, NL80211_CMD_STOP_SCHED_SCAN);
  3093. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  3094. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  3095. msg = NULL;
  3096. if (ret) {
  3097. wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop failed: "
  3098. "ret=%d (%s)", ret, strerror(-ret));
  3099. goto nla_put_failure;
  3100. }
  3101. wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop sent (ret=%d)", ret);
  3102. nla_put_failure:
  3103. nlmsg_free(msg);
  3104. return ret;
  3105. }
  3106. static const u8 * nl80211_get_ie(const u8 *ies, size_t ies_len, u8 ie)
  3107. {
  3108. const u8 *end, *pos;
  3109. if (ies == NULL)
  3110. return NULL;
  3111. pos = ies;
  3112. end = ies + ies_len;
  3113. while (pos + 1 < end) {
  3114. if (pos + 2 + pos[1] > end)
  3115. break;
  3116. if (pos[0] == ie)
  3117. return pos;
  3118. pos += 2 + pos[1];
  3119. }
  3120. return NULL;
  3121. }
  3122. static int nl80211_scan_filtered(struct wpa_driver_nl80211_data *drv,
  3123. const u8 *ie, size_t ie_len)
  3124. {
  3125. const u8 *ssid;
  3126. size_t i;
  3127. if (drv->filter_ssids == NULL)
  3128. return 0;
  3129. ssid = nl80211_get_ie(ie, ie_len, WLAN_EID_SSID);
  3130. if (ssid == NULL)
  3131. return 1;
  3132. for (i = 0; i < drv->num_filter_ssids; i++) {
  3133. if (ssid[1] == drv->filter_ssids[i].ssid_len &&
  3134. os_memcmp(ssid + 2, drv->filter_ssids[i].ssid, ssid[1]) ==
  3135. 0)
  3136. return 0;
  3137. }
  3138. return 1;
  3139. }
  3140. static int bss_info_handler(struct nl_msg *msg, void *arg)
  3141. {
  3142. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  3143. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  3144. struct nlattr *bss[NL80211_BSS_MAX + 1];
  3145. static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
  3146. [NL80211_BSS_BSSID] = { .type = NLA_UNSPEC },
  3147. [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
  3148. [NL80211_BSS_TSF] = { .type = NLA_U64 },
  3149. [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
  3150. [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
  3151. [NL80211_BSS_INFORMATION_ELEMENTS] = { .type = NLA_UNSPEC },
  3152. [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
  3153. [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
  3154. [NL80211_BSS_STATUS] = { .type = NLA_U32 },
  3155. [NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
  3156. [NL80211_BSS_BEACON_IES] = { .type = NLA_UNSPEC },
  3157. };
  3158. struct nl80211_bss_info_arg *_arg = arg;
  3159. struct wpa_scan_results *res = _arg->res;
  3160. struct wpa_scan_res **tmp;
  3161. struct wpa_scan_res *r;
  3162. const u8 *ie, *beacon_ie;
  3163. size_t ie_len, beacon_ie_len;
  3164. u8 *pos;
  3165. size_t i;
  3166. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  3167. genlmsg_attrlen(gnlh, 0), NULL);
  3168. if (!tb[NL80211_ATTR_BSS])
  3169. return NL_SKIP;
  3170. if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS],
  3171. bss_policy))
  3172. return NL_SKIP;
  3173. if (bss[NL80211_BSS_STATUS]) {
  3174. enum nl80211_bss_status status;
  3175. status = nla_get_u32(bss[NL80211_BSS_STATUS]);
  3176. if (status == NL80211_BSS_STATUS_ASSOCIATED &&
  3177. bss[NL80211_BSS_FREQUENCY]) {
  3178. _arg->assoc_freq =
  3179. nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
  3180. wpa_printf(MSG_DEBUG, "nl80211: Associated on %u MHz",
  3181. _arg->assoc_freq);
  3182. }
  3183. if (status == NL80211_BSS_STATUS_ASSOCIATED &&
  3184. bss[NL80211_BSS_BSSID]) {
  3185. os_memcpy(_arg->assoc_bssid,
  3186. nla_data(bss[NL80211_BSS_BSSID]), ETH_ALEN);
  3187. wpa_printf(MSG_DEBUG, "nl80211: Associated with "
  3188. MACSTR, MAC2STR(_arg->assoc_bssid));
  3189. }
  3190. }
  3191. if (!res)
  3192. return NL_SKIP;
  3193. if (bss[NL80211_BSS_INFORMATION_ELEMENTS]) {
  3194. ie = nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
  3195. ie_len = nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
  3196. } else {
  3197. ie = NULL;
  3198. ie_len = 0;
  3199. }
  3200. if (bss[NL80211_BSS_BEACON_IES]) {
  3201. beacon_ie = nla_data(bss[NL80211_BSS_BEACON_IES]);
  3202. beacon_ie_len = nla_len(bss[NL80211_BSS_BEACON_IES]);
  3203. } else {
  3204. beacon_ie = NULL;
  3205. beacon_ie_len = 0;
  3206. }
  3207. if (nl80211_scan_filtered(_arg->drv, ie ? ie : beacon_ie,
  3208. ie ? ie_len : beacon_ie_len))
  3209. return NL_SKIP;
  3210. r = os_zalloc(sizeof(*r) + ie_len + beacon_ie_len);
  3211. if (r == NULL)
  3212. return NL_SKIP;
  3213. if (bss[NL80211_BSS_BSSID])
  3214. os_memcpy(r->bssid, nla_data(bss[NL80211_BSS_BSSID]),
  3215. ETH_ALEN);
  3216. if (bss[NL80211_BSS_FREQUENCY])
  3217. r->freq = nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
  3218. if (bss[NL80211_BSS_BEACON_INTERVAL])
  3219. r->beacon_int = nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]);
  3220. if (bss[NL80211_BSS_CAPABILITY])
  3221. r->caps = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
  3222. r->flags |= WPA_SCAN_NOISE_INVALID;
  3223. if (bss[NL80211_BSS_SIGNAL_MBM]) {
  3224. r->level = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
  3225. r->level /= 100; /* mBm to dBm */
  3226. r->flags |= WPA_SCAN_LEVEL_DBM | WPA_SCAN_QUAL_INVALID;
  3227. } else if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
  3228. r->level = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
  3229. r->flags |= WPA_SCAN_QUAL_INVALID;
  3230. } else
  3231. r->flags |= WPA_SCAN_LEVEL_INVALID | WPA_SCAN_QUAL_INVALID;
  3232. if (bss[NL80211_BSS_TSF])
  3233. r->tsf = nla_get_u64(bss[NL80211_BSS_TSF]);
  3234. if (bss[NL80211_BSS_SEEN_MS_AGO])
  3235. r->age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
  3236. r->ie_len = ie_len;
  3237. pos = (u8 *) (r + 1);
  3238. if (ie) {
  3239. os_memcpy(pos, ie, ie_len);
  3240. pos += ie_len;
  3241. }
  3242. r->beacon_ie_len = beacon_ie_len;
  3243. if (beacon_ie)
  3244. os_memcpy(pos, beacon_ie, beacon_ie_len);
  3245. if (bss[NL80211_BSS_STATUS]) {
  3246. enum nl80211_bss_status status;
  3247. status = nla_get_u32(bss[NL80211_BSS_STATUS]);
  3248. switch (status) {
  3249. case NL80211_BSS_STATUS_AUTHENTICATED:
  3250. r->flags |= WPA_SCAN_AUTHENTICATED;
  3251. break;
  3252. case NL80211_BSS_STATUS_ASSOCIATED:
  3253. r->flags |= WPA_SCAN_ASSOCIATED;
  3254. break;
  3255. default:
  3256. break;
  3257. }
  3258. }
  3259. /*
  3260. * cfg80211 maintains separate BSS table entries for APs if the same
  3261. * BSSID,SSID pair is seen on multiple channels. wpa_supplicant does
  3262. * not use frequency as a separate key in the BSS table, so filter out
  3263. * duplicated entries. Prefer associated BSS entry in such a case in
  3264. * order to get the correct frequency into the BSS table.
  3265. */
  3266. for (i = 0; i < res->num; i++) {
  3267. const u8 *s1, *s2;
  3268. if (os_memcmp(res->res[i]->bssid, r->bssid, ETH_ALEN) != 0)
  3269. continue;
  3270. s1 = nl80211_get_ie((u8 *) (res->res[i] + 1),
  3271. res->res[i]->ie_len, WLAN_EID_SSID);
  3272. s2 = nl80211_get_ie((u8 *) (r + 1), r->ie_len, WLAN_EID_SSID);
  3273. if (s1 == NULL || s2 == NULL || s1[1] != s2[1] ||
  3274. os_memcmp(s1, s2, 2 + s1[1]) != 0)
  3275. continue;
  3276. /* Same BSSID,SSID was already included in scan results */
  3277. wpa_printf(MSG_DEBUG, "nl80211: Remove duplicated scan result "
  3278. "for " MACSTR, MAC2STR(r->bssid));
  3279. if ((r->flags & WPA_SCAN_ASSOCIATED) &&
  3280. !(res->res[i]->flags & WPA_SCAN_ASSOCIATED)) {
  3281. os_free(res->res[i]);
  3282. res->res[i] = r;
  3283. } else
  3284. os_free(r);
  3285. return NL_SKIP;
  3286. }
  3287. tmp = os_realloc(res->res,
  3288. (res->num + 1) * sizeof(struct wpa_scan_res *));
  3289. if (tmp == NULL) {
  3290. os_free(r);
  3291. return NL_SKIP;
  3292. }
  3293. tmp[res->num++] = r;
  3294. res->res = tmp;
  3295. return NL_SKIP;
  3296. }
  3297. static void clear_state_mismatch(struct wpa_driver_nl80211_data *drv,
  3298. const u8 *addr)
  3299. {
  3300. if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
  3301. wpa_printf(MSG_DEBUG, "nl80211: Clear possible state "
  3302. "mismatch (" MACSTR ")", MAC2STR(addr));
  3303. wpa_driver_nl80211_mlme(drv, addr,
  3304. NL80211_CMD_DEAUTHENTICATE,
  3305. WLAN_REASON_PREV_AUTH_NOT_VALID, 1);
  3306. }
  3307. }
  3308. static void wpa_driver_nl80211_check_bss_status(
  3309. struct wpa_driver_nl80211_data *drv, struct wpa_scan_results *res)
  3310. {
  3311. size_t i;
  3312. for (i = 0; i < res->num; i++) {
  3313. struct wpa_scan_res *r = res->res[i];
  3314. if (r->flags & WPA_SCAN_AUTHENTICATED) {
  3315. wpa_printf(MSG_DEBUG, "nl80211: Scan results "
  3316. "indicates BSS status with " MACSTR
  3317. " as authenticated",
  3318. MAC2STR(r->bssid));
  3319. if (is_sta_interface(drv->nlmode) &&
  3320. os_memcmp(r->bssid, drv->bssid, ETH_ALEN) != 0 &&
  3321. os_memcmp(r->bssid, drv->auth_bssid, ETH_ALEN) !=
  3322. 0) {
  3323. wpa_printf(MSG_DEBUG, "nl80211: Unknown BSSID"
  3324. " in local state (auth=" MACSTR
  3325. " assoc=" MACSTR ")",
  3326. MAC2STR(drv->auth_bssid),
  3327. MAC2STR(drv->bssid));
  3328. clear_state_mismatch(drv, r->bssid);
  3329. }
  3330. }
  3331. if (r->flags & WPA_SCAN_ASSOCIATED) {
  3332. wpa_printf(MSG_DEBUG, "nl80211: Scan results "
  3333. "indicate BSS status with " MACSTR
  3334. " as associated",
  3335. MAC2STR(r->bssid));
  3336. if (is_sta_interface(drv->nlmode) &&
  3337. !drv->associated) {
  3338. wpa_printf(MSG_DEBUG, "nl80211: Local state "
  3339. "(not associated) does not match "
  3340. "with BSS state");
  3341. clear_state_mismatch(drv, r->bssid);
  3342. } else if (is_sta_interface(drv->nlmode) &&
  3343. os_memcmp(drv->bssid, r->bssid, ETH_ALEN) !=
  3344. 0) {
  3345. wpa_printf(MSG_DEBUG, "nl80211: Local state "
  3346. "(associated with " MACSTR ") does "
  3347. "not match with BSS state",
  3348. MAC2STR(drv->bssid));
  3349. clear_state_mismatch(drv, r->bssid);
  3350. clear_state_mismatch(drv, drv->bssid);
  3351. }
  3352. }
  3353. }
  3354. }
  3355. static struct wpa_scan_results *
  3356. nl80211_get_scan_results(struct wpa_driver_nl80211_data *drv)
  3357. {
  3358. struct nl_msg *msg;
  3359. struct wpa_scan_results *res;
  3360. int ret;
  3361. struct nl80211_bss_info_arg arg;
  3362. res = os_zalloc(sizeof(*res));
  3363. if (res == NULL)
  3364. return NULL;
  3365. msg = nlmsg_alloc();
  3366. if (!msg)
  3367. goto nla_put_failure;
  3368. nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
  3369. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  3370. arg.drv = drv;
  3371. arg.res = res;
  3372. ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
  3373. msg = NULL;
  3374. if (ret == 0) {
  3375. wpa_printf(MSG_DEBUG, "nl80211: Received scan results (%lu "
  3376. "BSSes)", (unsigned long) res->num);
  3377. nl80211_get_noise_for_scan_results(drv, res);
  3378. return res;
  3379. }
  3380. wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
  3381. "(%s)", ret, strerror(-ret));
  3382. nla_put_failure:
  3383. nlmsg_free(msg);
  3384. wpa_scan_results_free(res);
  3385. return NULL;
  3386. }
  3387. /**
  3388. * wpa_driver_nl80211_get_scan_results - Fetch the latest scan results
  3389. * @priv: Pointer to private wext data from wpa_driver_nl80211_init()
  3390. * Returns: Scan results on success, -1 on failure
  3391. */
  3392. static struct wpa_scan_results *
  3393. wpa_driver_nl80211_get_scan_results(void *priv)
  3394. {
  3395. struct i802_bss *bss = priv;
  3396. struct wpa_driver_nl80211_data *drv = bss->drv;
  3397. struct wpa_scan_results *res;
  3398. res = nl80211_get_scan_results(drv);
  3399. if (res)
  3400. wpa_driver_nl80211_check_bss_status(drv, res);
  3401. return res;
  3402. }
  3403. static void nl80211_dump_scan(struct wpa_driver_nl80211_data *drv)
  3404. {
  3405. struct wpa_scan_results *res;
  3406. size_t i;
  3407. res = nl80211_get_scan_results(drv);
  3408. if (res == NULL) {
  3409. wpa_printf(MSG_DEBUG, "nl80211: Failed to get scan results");
  3410. return;
  3411. }
  3412. wpa_printf(MSG_DEBUG, "nl80211: Scan result dump");
  3413. for (i = 0; i < res->num; i++) {
  3414. struct wpa_scan_res *r = res->res[i];
  3415. wpa_printf(MSG_DEBUG, "nl80211: %d/%d " MACSTR "%s%s",
  3416. (int) i, (int) res->num, MAC2STR(r->bssid),
  3417. r->flags & WPA_SCAN_AUTHENTICATED ? " [auth]" : "",
  3418. r->flags & WPA_SCAN_ASSOCIATED ? " [assoc]" : "");
  3419. }
  3420. wpa_scan_results_free(res);
  3421. }
  3422. static int wpa_driver_nl80211_set_key(const char *ifname, void *priv,
  3423. enum wpa_alg alg, const u8 *addr,
  3424. int key_idx, int set_tx,
  3425. const u8 *seq, size_t seq_len,
  3426. const u8 *key, size_t key_len)
  3427. {
  3428. struct i802_bss *bss = priv;
  3429. struct wpa_driver_nl80211_data *drv = bss->drv;
  3430. int ifindex = if_nametoindex(ifname);
  3431. struct nl_msg *msg;
  3432. int ret;
  3433. wpa_printf(MSG_DEBUG, "%s: ifindex=%d alg=%d addr=%p key_idx=%d "
  3434. "set_tx=%d seq_len=%lu key_len=%lu",
  3435. __func__, ifindex, alg, addr, key_idx, set_tx,
  3436. (unsigned long) seq_len, (unsigned long) key_len);
  3437. #ifdef CONFIG_TDLS
  3438. if (key_idx == -1)
  3439. key_idx = 0;
  3440. #endif /* CONFIG_TDLS */
  3441. msg = nlmsg_alloc();
  3442. if (!msg)
  3443. return -ENOMEM;
  3444. if (alg == WPA_ALG_NONE) {
  3445. nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_KEY);
  3446. } else {
  3447. nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_KEY);
  3448. NLA_PUT(msg, NL80211_ATTR_KEY_DATA, key_len, key);
  3449. switch (alg) {
  3450. case WPA_ALG_WEP:
  3451. if (key_len == 5)
  3452. NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
  3453. WLAN_CIPHER_SUITE_WEP40);
  3454. else
  3455. NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
  3456. WLAN_CIPHER_SUITE_WEP104);
  3457. break;
  3458. case WPA_ALG_TKIP:
  3459. NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
  3460. WLAN_CIPHER_SUITE_TKIP);
  3461. break;
  3462. case WPA_ALG_CCMP:
  3463. NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
  3464. WLAN_CIPHER_SUITE_CCMP);
  3465. break;
  3466. case WPA_ALG_IGTK:
  3467. NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
  3468. WLAN_CIPHER_SUITE_AES_CMAC);
  3469. break;
  3470. default:
  3471. wpa_printf(MSG_ERROR, "%s: Unsupported encryption "
  3472. "algorithm %d", __func__, alg);
  3473. nlmsg_free(msg);
  3474. return -1;
  3475. }
  3476. }
  3477. if (seq && seq_len)
  3478. NLA_PUT(msg, NL80211_ATTR_KEY_SEQ, seq_len, seq);
  3479. if (addr && !is_broadcast_ether_addr(addr)) {
  3480. wpa_printf(MSG_DEBUG, " addr=" MACSTR, MAC2STR(addr));
  3481. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  3482. if (alg != WPA_ALG_WEP && key_idx && !set_tx) {
  3483. wpa_printf(MSG_DEBUG, " RSN IBSS RX GTK");
  3484. NLA_PUT_U32(msg, NL80211_ATTR_KEY_TYPE,
  3485. NL80211_KEYTYPE_GROUP);
  3486. }
  3487. } else if (addr && is_broadcast_ether_addr(addr)) {
  3488. struct nl_msg *types;
  3489. int err;
  3490. wpa_printf(MSG_DEBUG, " broadcast key");
  3491. types = nlmsg_alloc();
  3492. if (!types)
  3493. goto nla_put_failure;
  3494. NLA_PUT_FLAG(types, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
  3495. err = nla_put_nested(msg, NL80211_ATTR_KEY_DEFAULT_TYPES,
  3496. types);
  3497. nlmsg_free(types);
  3498. if (err)
  3499. goto nla_put_failure;
  3500. }
  3501. NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
  3502. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
  3503. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  3504. if ((ret == -ENOENT || ret == -ENOLINK) && alg == WPA_ALG_NONE)
  3505. ret = 0;
  3506. if (ret)
  3507. wpa_printf(MSG_DEBUG, "nl80211: set_key failed; err=%d %s)",
  3508. ret, strerror(-ret));
  3509. /*
  3510. * If we failed or don't need to set the default TX key (below),
  3511. * we're done here.
  3512. */
  3513. if (ret || !set_tx || alg == WPA_ALG_NONE)
  3514. return ret;
  3515. if (is_ap_interface(drv->nlmode) && addr &&
  3516. !is_broadcast_ether_addr(addr))
  3517. return ret;
  3518. msg = nlmsg_alloc();
  3519. if (!msg)
  3520. return -ENOMEM;
  3521. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_KEY);
  3522. NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
  3523. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
  3524. if (alg == WPA_ALG_IGTK)
  3525. NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT_MGMT);
  3526. else
  3527. NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT);
  3528. if (addr && is_broadcast_ether_addr(addr)) {
  3529. struct nl_msg *types;
  3530. int err;
  3531. types = nlmsg_alloc();
  3532. if (!types)
  3533. goto nla_put_failure;
  3534. NLA_PUT_FLAG(types, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
  3535. err = nla_put_nested(msg, NL80211_ATTR_KEY_DEFAULT_TYPES,
  3536. types);
  3537. nlmsg_free(types);
  3538. if (err)
  3539. goto nla_put_failure;
  3540. } else if (addr) {
  3541. struct nl_msg *types;
  3542. int err;
  3543. types = nlmsg_alloc();
  3544. if (!types)
  3545. goto nla_put_failure;
  3546. NLA_PUT_FLAG(types, NL80211_KEY_DEFAULT_TYPE_UNICAST);
  3547. err = nla_put_nested(msg, NL80211_ATTR_KEY_DEFAULT_TYPES,
  3548. types);
  3549. nlmsg_free(types);
  3550. if (err)
  3551. goto nla_put_failure;
  3552. }
  3553. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  3554. if (ret == -ENOENT)
  3555. ret = 0;
  3556. if (ret)
  3557. wpa_printf(MSG_DEBUG, "nl80211: set_key default failed; "
  3558. "err=%d %s)", ret, strerror(-ret));
  3559. return ret;
  3560. nla_put_failure:
  3561. nlmsg_free(msg);
  3562. return -ENOBUFS;
  3563. }
  3564. static int nl_add_key(struct nl_msg *msg, enum wpa_alg alg,
  3565. int key_idx, int defkey,
  3566. const u8 *seq, size_t seq_len,
  3567. const u8 *key, size_t key_len)
  3568. {
  3569. struct nlattr *key_attr = nla_nest_start(msg, NL80211_ATTR_KEY);
  3570. if (!key_attr)
  3571. return -1;
  3572. if (defkey && alg == WPA_ALG_IGTK)
  3573. NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_MGMT);
  3574. else if (defkey)
  3575. NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
  3576. NLA_PUT_U8(msg, NL80211_KEY_IDX, key_idx);
  3577. switch (alg) {
  3578. case WPA_ALG_WEP:
  3579. if (key_len == 5)
  3580. NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
  3581. WLAN_CIPHER_SUITE_WEP40);
  3582. else
  3583. NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
  3584. WLAN_CIPHER_SUITE_WEP104);
  3585. break;
  3586. case WPA_ALG_TKIP:
  3587. NLA_PUT_U32(msg, NL80211_KEY_CIPHER, WLAN_CIPHER_SUITE_TKIP);
  3588. break;
  3589. case WPA_ALG_CCMP:
  3590. NLA_PUT_U32(msg, NL80211_KEY_CIPHER, WLAN_CIPHER_SUITE_CCMP);
  3591. break;
  3592. case WPA_ALG_IGTK:
  3593. NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
  3594. WLAN_CIPHER_SUITE_AES_CMAC);
  3595. break;
  3596. default:
  3597. wpa_printf(MSG_ERROR, "%s: Unsupported encryption "
  3598. "algorithm %d", __func__, alg);
  3599. return -1;
  3600. }
  3601. if (seq && seq_len)
  3602. NLA_PUT(msg, NL80211_KEY_SEQ, seq_len, seq);
  3603. NLA_PUT(msg, NL80211_KEY_DATA, key_len, key);
  3604. nla_nest_end(msg, key_attr);
  3605. return 0;
  3606. nla_put_failure:
  3607. return -1;
  3608. }
  3609. static int nl80211_set_conn_keys(struct wpa_driver_associate_params *params,
  3610. struct nl_msg *msg)
  3611. {
  3612. int i, privacy = 0;
  3613. struct nlattr *nl_keys, *nl_key;
  3614. for (i = 0; i < 4; i++) {
  3615. if (!params->wep_key[i])
  3616. continue;
  3617. privacy = 1;
  3618. break;
  3619. }
  3620. if (params->wps == WPS_MODE_PRIVACY)
  3621. privacy = 1;
  3622. if (params->pairwise_suite &&
  3623. params->pairwise_suite != WPA_CIPHER_NONE)
  3624. privacy = 1;
  3625. if (!privacy)
  3626. return 0;
  3627. NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
  3628. nl_keys = nla_nest_start(msg, NL80211_ATTR_KEYS);
  3629. if (!nl_keys)
  3630. goto nla_put_failure;
  3631. for (i = 0; i < 4; i++) {
  3632. if (!params->wep_key[i])
  3633. continue;
  3634. nl_key = nla_nest_start(msg, i);
  3635. if (!nl_key)
  3636. goto nla_put_failure;
  3637. NLA_PUT(msg, NL80211_KEY_DATA, params->wep_key_len[i],
  3638. params->wep_key[i]);
  3639. if (params->wep_key_len[i] == 5)
  3640. NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
  3641. WLAN_CIPHER_SUITE_WEP40);
  3642. else
  3643. NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
  3644. WLAN_CIPHER_SUITE_WEP104);
  3645. NLA_PUT_U8(msg, NL80211_KEY_IDX, i);
  3646. if (i == params->wep_tx_keyidx)
  3647. NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
  3648. nla_nest_end(msg, nl_key);
  3649. }
  3650. nla_nest_end(msg, nl_keys);
  3651. return 0;
  3652. nla_put_failure:
  3653. return -ENOBUFS;
  3654. }
  3655. static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
  3656. const u8 *addr, int cmd, u16 reason_code,
  3657. int local_state_change)
  3658. {
  3659. int ret = -1;
  3660. struct nl_msg *msg;
  3661. msg = nlmsg_alloc();
  3662. if (!msg)
  3663. return -1;
  3664. nl80211_cmd(drv, msg, 0, cmd);
  3665. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  3666. NLA_PUT_U16(msg, NL80211_ATTR_REASON_CODE, reason_code);
  3667. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  3668. if (local_state_change)
  3669. NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
  3670. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  3671. msg = NULL;
  3672. if (ret) {
  3673. wpa_dbg(drv->ctx, MSG_DEBUG,
  3674. "nl80211: MLME command failed: reason=%u ret=%d (%s)",
  3675. reason_code, ret, strerror(-ret));
  3676. goto nla_put_failure;
  3677. }
  3678. ret = 0;
  3679. nla_put_failure:
  3680. nlmsg_free(msg);
  3681. return ret;
  3682. }
  3683. static int wpa_driver_nl80211_disconnect(struct wpa_driver_nl80211_data *drv,
  3684. const u8 *addr, int reason_code)
  3685. {
  3686. wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
  3687. __func__, MAC2STR(addr), reason_code);
  3688. drv->associated = 0;
  3689. return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DISCONNECT,
  3690. reason_code, 0);
  3691. }
  3692. static int wpa_driver_nl80211_deauthenticate(void *priv, const u8 *addr,
  3693. int reason_code)
  3694. {
  3695. struct i802_bss *bss = priv;
  3696. struct wpa_driver_nl80211_data *drv = bss->drv;
  3697. if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
  3698. return wpa_driver_nl80211_disconnect(drv, addr, reason_code);
  3699. wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
  3700. __func__, MAC2STR(addr), reason_code);
  3701. drv->associated = 0;
  3702. if (drv->nlmode == NL80211_IFTYPE_ADHOC)
  3703. return nl80211_leave_ibss(drv);
  3704. return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DEAUTHENTICATE,
  3705. reason_code, 0);
  3706. }
  3707. static int wpa_driver_nl80211_disassociate(void *priv, const u8 *addr,
  3708. int reason_code)
  3709. {
  3710. struct i802_bss *bss = priv;
  3711. struct wpa_driver_nl80211_data *drv = bss->drv;
  3712. if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
  3713. return wpa_driver_nl80211_disconnect(drv, addr, reason_code);
  3714. wpa_printf(MSG_DEBUG, "%s", __func__);
  3715. drv->associated = 0;
  3716. return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DISASSOCIATE,
  3717. reason_code, 0);
  3718. }
  3719. static void nl80211_copy_auth_params(struct wpa_driver_nl80211_data *drv,
  3720. struct wpa_driver_auth_params *params)
  3721. {
  3722. int i;
  3723. drv->auth_freq = params->freq;
  3724. drv->auth_alg = params->auth_alg;
  3725. drv->auth_wep_tx_keyidx = params->wep_tx_keyidx;
  3726. drv->auth_local_state_change = params->local_state_change;
  3727. drv->auth_p2p = params->p2p;
  3728. if (params->bssid)
  3729. os_memcpy(drv->auth_bssid_, params->bssid, ETH_ALEN);
  3730. else
  3731. os_memset(drv->auth_bssid_, 0, ETH_ALEN);
  3732. if (params->ssid) {
  3733. os_memcpy(drv->auth_ssid, params->ssid, params->ssid_len);
  3734. drv->auth_ssid_len = params->ssid_len;
  3735. } else
  3736. drv->auth_ssid_len = 0;
  3737. os_free(drv->auth_ie);
  3738. drv->auth_ie = NULL;
  3739. drv->auth_ie_len = 0;
  3740. if (params->ie) {
  3741. drv->auth_ie = os_malloc(params->ie_len);
  3742. if (drv->auth_ie) {
  3743. os_memcpy(drv->auth_ie, params->ie, params->ie_len);
  3744. drv->auth_ie_len = params->ie_len;
  3745. }
  3746. }
  3747. for (i = 0; i < 4; i++) {
  3748. if (params->wep_key[i] && params->wep_key_len[i] &&
  3749. params->wep_key_len[i] <= 16) {
  3750. os_memcpy(drv->auth_wep_key[i], params->wep_key[i],
  3751. params->wep_key_len[i]);
  3752. drv->auth_wep_key_len[i] = params->wep_key_len[i];
  3753. } else
  3754. drv->auth_wep_key_len[i] = 0;
  3755. }
  3756. }
  3757. static int wpa_driver_nl80211_authenticate(
  3758. void *priv, struct wpa_driver_auth_params *params)
  3759. {
  3760. struct i802_bss *bss = priv;
  3761. struct wpa_driver_nl80211_data *drv = bss->drv;
  3762. int ret = -1, i;
  3763. struct nl_msg *msg;
  3764. enum nl80211_auth_type type;
  3765. enum nl80211_iftype nlmode;
  3766. int count = 0;
  3767. int is_retry;
  3768. is_retry = drv->retry_auth;
  3769. drv->retry_auth = 0;
  3770. drv->associated = 0;
  3771. os_memset(drv->auth_bssid, 0, ETH_ALEN);
  3772. /* FIX: IBSS mode */
  3773. nlmode = params->p2p ?
  3774. NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
  3775. if (drv->nlmode != nlmode &&
  3776. wpa_driver_nl80211_set_mode(priv, nlmode) < 0)
  3777. return -1;
  3778. retry:
  3779. msg = nlmsg_alloc();
  3780. if (!msg)
  3781. return -1;
  3782. wpa_printf(MSG_DEBUG, "nl80211: Authenticate (ifindex=%d)",
  3783. drv->ifindex);
  3784. nl80211_cmd(drv, msg, 0, NL80211_CMD_AUTHENTICATE);
  3785. for (i = 0; i < 4; i++) {
  3786. if (!params->wep_key[i])
  3787. continue;
  3788. wpa_driver_nl80211_set_key(bss->ifname, priv, WPA_ALG_WEP,
  3789. NULL, i,
  3790. i == params->wep_tx_keyidx, NULL, 0,
  3791. params->wep_key[i],
  3792. params->wep_key_len[i]);
  3793. if (params->wep_tx_keyidx != i)
  3794. continue;
  3795. if (nl_add_key(msg, WPA_ALG_WEP, i, 1, NULL, 0,
  3796. params->wep_key[i], params->wep_key_len[i])) {
  3797. nlmsg_free(msg);
  3798. return -1;
  3799. }
  3800. }
  3801. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  3802. if (params->bssid) {
  3803. wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
  3804. MAC2STR(params->bssid));
  3805. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
  3806. }
  3807. if (params->freq) {
  3808. wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
  3809. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
  3810. }
  3811. if (params->ssid) {
  3812. wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
  3813. params->ssid, params->ssid_len);
  3814. NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
  3815. params->ssid);
  3816. }
  3817. wpa_hexdump(MSG_DEBUG, " * IEs", params->ie, params->ie_len);
  3818. if (params->ie)
  3819. NLA_PUT(msg, NL80211_ATTR_IE, params->ie_len, params->ie);
  3820. if (params->auth_alg & WPA_AUTH_ALG_OPEN)
  3821. type = NL80211_AUTHTYPE_OPEN_SYSTEM;
  3822. else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
  3823. type = NL80211_AUTHTYPE_SHARED_KEY;
  3824. else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
  3825. type = NL80211_AUTHTYPE_NETWORK_EAP;
  3826. else if (params->auth_alg & WPA_AUTH_ALG_FT)
  3827. type = NL80211_AUTHTYPE_FT;
  3828. else
  3829. goto nla_put_failure;
  3830. wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
  3831. NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
  3832. if (params->local_state_change) {
  3833. wpa_printf(MSG_DEBUG, " * Local state change only");
  3834. NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
  3835. }
  3836. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  3837. msg = NULL;
  3838. if (ret) {
  3839. wpa_dbg(drv->ctx, MSG_DEBUG,
  3840. "nl80211: MLME command failed (auth): ret=%d (%s)",
  3841. ret, strerror(-ret));
  3842. count++;
  3843. if (ret == -EALREADY && count == 1 && params->bssid &&
  3844. !params->local_state_change) {
  3845. /*
  3846. * mac80211 does not currently accept new
  3847. * authentication if we are already authenticated. As a
  3848. * workaround, force deauthentication and try again.
  3849. */
  3850. wpa_printf(MSG_DEBUG, "nl80211: Retry authentication "
  3851. "after forced deauthentication");
  3852. wpa_driver_nl80211_deauthenticate(
  3853. bss, params->bssid,
  3854. WLAN_REASON_PREV_AUTH_NOT_VALID);
  3855. nlmsg_free(msg);
  3856. goto retry;
  3857. }
  3858. if (ret == -ENOENT && params->freq && !is_retry) {
  3859. /*
  3860. * cfg80211 has likely expired the BSS entry even
  3861. * though it was previously available in our internal
  3862. * BSS table. To recover quickly, start a single
  3863. * channel scan on the specified channel.
  3864. */
  3865. struct wpa_driver_scan_params scan;
  3866. int freqs[2];
  3867. os_memset(&scan, 0, sizeof(scan));
  3868. scan.num_ssids = 1;
  3869. if (params->ssid) {
  3870. scan.ssids[0].ssid = params->ssid;
  3871. scan.ssids[0].ssid_len = params->ssid_len;
  3872. }
  3873. freqs[0] = params->freq;
  3874. freqs[1] = 0;
  3875. scan.freqs = freqs;
  3876. wpa_printf(MSG_DEBUG, "nl80211: Trigger single "
  3877. "channel scan to refresh cfg80211 BSS "
  3878. "entry");
  3879. ret = wpa_driver_nl80211_scan(bss, &scan);
  3880. if (ret == 0) {
  3881. nl80211_copy_auth_params(drv, params);
  3882. drv->scan_for_auth = 1;
  3883. }
  3884. } else if (is_retry) {
  3885. /*
  3886. * Need to indicate this with an event since the return
  3887. * value from the retry is not delivered to core code.
  3888. */
  3889. union wpa_event_data event;
  3890. wpa_printf(MSG_DEBUG, "nl80211: Authentication retry "
  3891. "failed");
  3892. os_memset(&event, 0, sizeof(event));
  3893. os_memcpy(event.timeout_event.addr, drv->auth_bssid_,
  3894. ETH_ALEN);
  3895. wpa_supplicant_event(drv->ctx, EVENT_AUTH_TIMED_OUT,
  3896. &event);
  3897. }
  3898. goto nla_put_failure;
  3899. }
  3900. ret = 0;
  3901. wpa_printf(MSG_DEBUG, "nl80211: Authentication request send "
  3902. "successfully");
  3903. nla_put_failure:
  3904. nlmsg_free(msg);
  3905. return ret;
  3906. }
  3907. static int wpa_driver_nl80211_authenticate_retry(
  3908. struct wpa_driver_nl80211_data *drv)
  3909. {
  3910. struct wpa_driver_auth_params params;
  3911. struct i802_bss *bss = &drv->first_bss;
  3912. int i;
  3913. wpa_printf(MSG_DEBUG, "nl80211: Try to authenticate again");
  3914. os_memset(&params, 0, sizeof(params));
  3915. params.freq = drv->auth_freq;
  3916. params.auth_alg = drv->auth_alg;
  3917. params.wep_tx_keyidx = drv->auth_wep_tx_keyidx;
  3918. params.local_state_change = drv->auth_local_state_change;
  3919. params.p2p = drv->auth_p2p;
  3920. if (!is_zero_ether_addr(drv->auth_bssid_))
  3921. params.bssid = drv->auth_bssid_;
  3922. if (drv->auth_ssid_len) {
  3923. params.ssid = drv->auth_ssid;
  3924. params.ssid_len = drv->auth_ssid_len;
  3925. }
  3926. params.ie = drv->auth_ie;
  3927. params.ie_len = drv->auth_ie_len;
  3928. for (i = 0; i < 4; i++) {
  3929. if (drv->auth_wep_key_len[i]) {
  3930. params.wep_key[i] = drv->auth_wep_key[i];
  3931. params.wep_key_len[i] = drv->auth_wep_key_len[i];
  3932. }
  3933. }
  3934. drv->retry_auth = 1;
  3935. return wpa_driver_nl80211_authenticate(bss, &params);
  3936. }
  3937. struct phy_info_arg {
  3938. u16 *num_modes;
  3939. struct hostapd_hw_modes *modes;
  3940. };
  3941. static int phy_info_handler(struct nl_msg *msg, void *arg)
  3942. {
  3943. struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
  3944. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  3945. struct phy_info_arg *phy_info = arg;
  3946. struct nlattr *tb_band[NL80211_BAND_ATTR_MAX + 1];
  3947. struct nlattr *tb_freq[NL80211_FREQUENCY_ATTR_MAX + 1];
  3948. static struct nla_policy freq_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
  3949. [NL80211_FREQUENCY_ATTR_FREQ] = { .type = NLA_U32 },
  3950. [NL80211_FREQUENCY_ATTR_DISABLED] = { .type = NLA_FLAG },
  3951. [NL80211_FREQUENCY_ATTR_PASSIVE_SCAN] = { .type = NLA_FLAG },
  3952. [NL80211_FREQUENCY_ATTR_NO_IBSS] = { .type = NLA_FLAG },
  3953. [NL80211_FREQUENCY_ATTR_RADAR] = { .type = NLA_FLAG },
  3954. [NL80211_FREQUENCY_ATTR_MAX_TX_POWER] = { .type = NLA_U32 },
  3955. };
  3956. struct nlattr *tb_rate[NL80211_BITRATE_ATTR_MAX + 1];
  3957. static struct nla_policy rate_policy[NL80211_BITRATE_ATTR_MAX + 1] = {
  3958. [NL80211_BITRATE_ATTR_RATE] = { .type = NLA_U32 },
  3959. [NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE] = { .type = NLA_FLAG },
  3960. };
  3961. struct nlattr *nl_band;
  3962. struct nlattr *nl_freq;
  3963. struct nlattr *nl_rate;
  3964. int rem_band, rem_freq, rem_rate;
  3965. struct hostapd_hw_modes *mode;
  3966. int idx, mode_is_set;
  3967. nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  3968. genlmsg_attrlen(gnlh, 0), NULL);
  3969. if (!tb_msg[NL80211_ATTR_WIPHY_BANDS])
  3970. return NL_SKIP;
  3971. nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band) {
  3972. mode = os_realloc(phy_info->modes, (*phy_info->num_modes + 1) * sizeof(*mode));
  3973. if (!mode)
  3974. return NL_SKIP;
  3975. phy_info->modes = mode;
  3976. mode_is_set = 0;
  3977. mode = &phy_info->modes[*(phy_info->num_modes)];
  3978. memset(mode, 0, sizeof(*mode));
  3979. mode->flags = HOSTAPD_MODE_FLAG_HT_INFO_KNOWN;
  3980. *(phy_info->num_modes) += 1;
  3981. nla_parse(tb_band, NL80211_BAND_ATTR_MAX, nla_data(nl_band),
  3982. nla_len(nl_band), NULL);
  3983. if (tb_band[NL80211_BAND_ATTR_HT_CAPA]) {
  3984. mode->ht_capab = nla_get_u16(
  3985. tb_band[NL80211_BAND_ATTR_HT_CAPA]);
  3986. }
  3987. if (tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR]) {
  3988. mode->a_mpdu_params |= nla_get_u8(
  3989. tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR]) &
  3990. 0x03;
  3991. }
  3992. if (tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY]) {
  3993. mode->a_mpdu_params |= nla_get_u8(
  3994. tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY]) <<
  3995. 2;
  3996. }
  3997. if (tb_band[NL80211_BAND_ATTR_HT_MCS_SET] &&
  3998. nla_len(tb_band[NL80211_BAND_ATTR_HT_MCS_SET])) {
  3999. u8 *mcs;
  4000. mcs = nla_data(tb_band[NL80211_BAND_ATTR_HT_MCS_SET]);
  4001. os_memcpy(mode->mcs_set, mcs, 16);
  4002. }
  4003. if (tb_band[NL80211_BAND_ATTR_VHT_CAPA]) {
  4004. mode->vht_capab = nla_get_u32(
  4005. tb_band[NL80211_BAND_ATTR_VHT_CAPA]);
  4006. }
  4007. if (tb_band[NL80211_BAND_ATTR_VHT_MCS_SET] &&
  4008. nla_len(tb_band[NL80211_BAND_ATTR_VHT_MCS_SET])) {
  4009. u8 *mcs;
  4010. mcs = nla_data(tb_band[NL80211_BAND_ATTR_VHT_MCS_SET]);
  4011. os_memcpy(mode->vht_mcs_set, mcs, 8);
  4012. }
  4013. nla_for_each_nested(nl_freq, tb_band[NL80211_BAND_ATTR_FREQS], rem_freq) {
  4014. nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX, nla_data(nl_freq),
  4015. nla_len(nl_freq), freq_policy);
  4016. if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
  4017. continue;
  4018. mode->num_channels++;
  4019. }
  4020. mode->channels = os_zalloc(mode->num_channels * sizeof(struct hostapd_channel_data));
  4021. if (!mode->channels)
  4022. return NL_SKIP;
  4023. idx = 0;
  4024. nla_for_each_nested(nl_freq, tb_band[NL80211_BAND_ATTR_FREQS], rem_freq) {
  4025. nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX, nla_data(nl_freq),
  4026. nla_len(nl_freq), freq_policy);
  4027. if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
  4028. continue;
  4029. mode->channels[idx].freq = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_FREQ]);
  4030. mode->channels[idx].flag = 0;
  4031. if (!mode_is_set) {
  4032. /* crude heuristic */
  4033. if (mode->channels[idx].freq < 4000)
  4034. mode->mode = HOSTAPD_MODE_IEEE80211B;
  4035. else
  4036. mode->mode = HOSTAPD_MODE_IEEE80211A;
  4037. mode_is_set = 1;
  4038. }
  4039. /* crude heuristic */
  4040. if (mode->channels[idx].freq < 4000)
  4041. if (mode->channels[idx].freq == 2484)
  4042. mode->channels[idx].chan = 14;
  4043. else
  4044. mode->channels[idx].chan = (mode->channels[idx].freq - 2407) / 5;
  4045. else
  4046. mode->channels[idx].chan = mode->channels[idx].freq/5 - 1000;
  4047. if (tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
  4048. mode->channels[idx].flag |=
  4049. HOSTAPD_CHAN_DISABLED;
  4050. if (tb_freq[NL80211_FREQUENCY_ATTR_PASSIVE_SCAN])
  4051. mode->channels[idx].flag |=
  4052. HOSTAPD_CHAN_PASSIVE_SCAN;
  4053. if (tb_freq[NL80211_FREQUENCY_ATTR_NO_IBSS])
  4054. mode->channels[idx].flag |=
  4055. HOSTAPD_CHAN_NO_IBSS;
  4056. if (tb_freq[NL80211_FREQUENCY_ATTR_RADAR])
  4057. mode->channels[idx].flag |=
  4058. HOSTAPD_CHAN_RADAR;
  4059. if (tb_freq[NL80211_FREQUENCY_ATTR_MAX_TX_POWER] &&
  4060. !tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
  4061. mode->channels[idx].max_tx_power =
  4062. nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_MAX_TX_POWER]) / 100;
  4063. idx++;
  4064. }
  4065. nla_for_each_nested(nl_rate, tb_band[NL80211_BAND_ATTR_RATES], rem_rate) {
  4066. nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX, nla_data(nl_rate),
  4067. nla_len(nl_rate), rate_policy);
  4068. if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
  4069. continue;
  4070. mode->num_rates++;
  4071. }
  4072. mode->rates = os_zalloc(mode->num_rates * sizeof(int));
  4073. if (!mode->rates)
  4074. return NL_SKIP;
  4075. idx = 0;
  4076. nla_for_each_nested(nl_rate, tb_band[NL80211_BAND_ATTR_RATES], rem_rate) {
  4077. nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX, nla_data(nl_rate),
  4078. nla_len(nl_rate), rate_policy);
  4079. if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
  4080. continue;
  4081. mode->rates[idx] = nla_get_u32(tb_rate[NL80211_BITRATE_ATTR_RATE]);
  4082. /* crude heuristic */
  4083. if (mode->mode == HOSTAPD_MODE_IEEE80211B &&
  4084. mode->rates[idx] > 200)
  4085. mode->mode = HOSTAPD_MODE_IEEE80211G;
  4086. idx++;
  4087. }
  4088. }
  4089. return NL_SKIP;
  4090. }
  4091. static struct hostapd_hw_modes *
  4092. wpa_driver_nl80211_add_11b(struct hostapd_hw_modes *modes, u16 *num_modes)
  4093. {
  4094. u16 m;
  4095. struct hostapd_hw_modes *mode11g = NULL, *nmodes, *mode;
  4096. int i, mode11g_idx = -1;
  4097. /* If only 802.11g mode is included, use it to construct matching
  4098. * 802.11b mode data. */
  4099. for (m = 0; m < *num_modes; m++) {
  4100. if (modes[m].mode == HOSTAPD_MODE_IEEE80211B)
  4101. return modes; /* 802.11b already included */
  4102. if (modes[m].mode == HOSTAPD_MODE_IEEE80211G)
  4103. mode11g_idx = m;
  4104. }
  4105. if (mode11g_idx < 0)
  4106. return modes; /* 2.4 GHz band not supported at all */
  4107. nmodes = os_realloc(modes, (*num_modes + 1) * sizeof(*nmodes));
  4108. if (nmodes == NULL)
  4109. return modes; /* Could not add 802.11b mode */
  4110. mode = &nmodes[*num_modes];
  4111. os_memset(mode, 0, sizeof(*mode));
  4112. (*num_modes)++;
  4113. modes = nmodes;
  4114. mode->mode = HOSTAPD_MODE_IEEE80211B;
  4115. mode11g = &modes[mode11g_idx];
  4116. mode->num_channels = mode11g->num_channels;
  4117. mode->channels = os_malloc(mode11g->num_channels *
  4118. sizeof(struct hostapd_channel_data));
  4119. if (mode->channels == NULL) {
  4120. (*num_modes)--;
  4121. return modes; /* Could not add 802.11b mode */
  4122. }
  4123. os_memcpy(mode->channels, mode11g->channels,
  4124. mode11g->num_channels * sizeof(struct hostapd_channel_data));
  4125. mode->num_rates = 0;
  4126. mode->rates = os_malloc(4 * sizeof(int));
  4127. if (mode->rates == NULL) {
  4128. os_free(mode->channels);
  4129. (*num_modes)--;
  4130. return modes; /* Could not add 802.11b mode */
  4131. }
  4132. for (i = 0; i < mode11g->num_rates; i++) {
  4133. if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 &&
  4134. mode11g->rates[i] != 55 && mode11g->rates[i] != 110)
  4135. continue;
  4136. mode->rates[mode->num_rates] = mode11g->rates[i];
  4137. mode->num_rates++;
  4138. if (mode->num_rates == 4)
  4139. break;
  4140. }
  4141. if (mode->num_rates == 0) {
  4142. os_free(mode->channels);
  4143. os_free(mode->rates);
  4144. (*num_modes)--;
  4145. return modes; /* No 802.11b rates */
  4146. }
  4147. wpa_printf(MSG_DEBUG, "nl80211: Added 802.11b mode based on 802.11g "
  4148. "information");
  4149. return modes;
  4150. }
  4151. static void nl80211_set_ht40_mode(struct hostapd_hw_modes *mode, int start,
  4152. int end)
  4153. {
  4154. int c;
  4155. for (c = 0; c < mode->num_channels; c++) {
  4156. struct hostapd_channel_data *chan = &mode->channels[c];
  4157. if (chan->freq - 10 >= start && chan->freq + 10 <= end)
  4158. chan->flag |= HOSTAPD_CHAN_HT40;
  4159. }
  4160. }
  4161. static void nl80211_set_ht40_mode_sec(struct hostapd_hw_modes *mode, int start,
  4162. int end)
  4163. {
  4164. int c;
  4165. for (c = 0; c < mode->num_channels; c++) {
  4166. struct hostapd_channel_data *chan = &mode->channels[c];
  4167. if (!(chan->flag & HOSTAPD_CHAN_HT40))
  4168. continue;
  4169. if (chan->freq - 30 >= start && chan->freq - 10 <= end)
  4170. chan->flag |= HOSTAPD_CHAN_HT40MINUS;
  4171. if (chan->freq + 10 >= start && chan->freq + 30 <= end)
  4172. chan->flag |= HOSTAPD_CHAN_HT40PLUS;
  4173. }
  4174. }
  4175. static void nl80211_reg_rule_ht40(struct nlattr *tb[],
  4176. struct phy_info_arg *results)
  4177. {
  4178. u32 start, end, max_bw;
  4179. u16 m;
  4180. if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
  4181. tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
  4182. tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
  4183. return;
  4184. start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
  4185. end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
  4186. max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
  4187. wpa_printf(MSG_DEBUG, "nl80211: %u-%u @ %u MHz",
  4188. start, end, max_bw);
  4189. if (max_bw < 40)
  4190. return;
  4191. for (m = 0; m < *results->num_modes; m++) {
  4192. if (!(results->modes[m].ht_capab &
  4193. HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
  4194. continue;
  4195. nl80211_set_ht40_mode(&results->modes[m], start, end);
  4196. }
  4197. }
  4198. static void nl80211_reg_rule_sec(struct nlattr *tb[],
  4199. struct phy_info_arg *results)
  4200. {
  4201. u32 start, end, max_bw;
  4202. u16 m;
  4203. if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
  4204. tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
  4205. tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
  4206. return;
  4207. start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
  4208. end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
  4209. max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
  4210. if (max_bw < 20)
  4211. return;
  4212. for (m = 0; m < *results->num_modes; m++) {
  4213. if (!(results->modes[m].ht_capab &
  4214. HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
  4215. continue;
  4216. nl80211_set_ht40_mode_sec(&results->modes[m], start, end);
  4217. }
  4218. }
  4219. static int nl80211_get_reg(struct nl_msg *msg, void *arg)
  4220. {
  4221. struct phy_info_arg *results = arg;
  4222. struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
  4223. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  4224. struct nlattr *nl_rule;
  4225. struct nlattr *tb_rule[NL80211_FREQUENCY_ATTR_MAX + 1];
  4226. int rem_rule;
  4227. static struct nla_policy reg_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
  4228. [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
  4229. [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
  4230. [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
  4231. [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
  4232. [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
  4233. [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
  4234. };
  4235. nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  4236. genlmsg_attrlen(gnlh, 0), NULL);
  4237. if (!tb_msg[NL80211_ATTR_REG_ALPHA2] ||
  4238. !tb_msg[NL80211_ATTR_REG_RULES]) {
  4239. wpa_printf(MSG_DEBUG, "nl80211: No regulatory information "
  4240. "available");
  4241. return NL_SKIP;
  4242. }
  4243. wpa_printf(MSG_DEBUG, "nl80211: Regulatory information - country=%s",
  4244. (char *) nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]));
  4245. nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
  4246. {
  4247. nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
  4248. nla_data(nl_rule), nla_len(nl_rule), reg_policy);
  4249. nl80211_reg_rule_ht40(tb_rule, results);
  4250. }
  4251. nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
  4252. {
  4253. nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
  4254. nla_data(nl_rule), nla_len(nl_rule), reg_policy);
  4255. nl80211_reg_rule_sec(tb_rule, results);
  4256. }
  4257. return NL_SKIP;
  4258. }
  4259. static int nl80211_set_ht40_flags(struct wpa_driver_nl80211_data *drv,
  4260. struct phy_info_arg *results)
  4261. {
  4262. struct nl_msg *msg;
  4263. msg = nlmsg_alloc();
  4264. if (!msg)
  4265. return -ENOMEM;
  4266. nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
  4267. return send_and_recv_msgs(drv, msg, nl80211_get_reg, results);
  4268. }
  4269. static struct hostapd_hw_modes *
  4270. wpa_driver_nl80211_get_hw_feature_data(void *priv, u16 *num_modes, u16 *flags)
  4271. {
  4272. struct i802_bss *bss = priv;
  4273. struct wpa_driver_nl80211_data *drv = bss->drv;
  4274. struct nl_msg *msg;
  4275. struct phy_info_arg result = {
  4276. .num_modes = num_modes,
  4277. .modes = NULL,
  4278. };
  4279. *num_modes = 0;
  4280. *flags = 0;
  4281. msg = nlmsg_alloc();
  4282. if (!msg)
  4283. return NULL;
  4284. nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
  4285. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  4286. if (send_and_recv_msgs(drv, msg, phy_info_handler, &result) == 0) {
  4287. nl80211_set_ht40_flags(drv, &result);
  4288. return wpa_driver_nl80211_add_11b(result.modes, num_modes);
  4289. }
  4290. msg = NULL;
  4291. nla_put_failure:
  4292. nlmsg_free(msg);
  4293. return NULL;
  4294. }
  4295. static int wpa_driver_nl80211_send_mntr(struct wpa_driver_nl80211_data *drv,
  4296. const void *data, size_t len,
  4297. int encrypt, int noack)
  4298. {
  4299. __u8 rtap_hdr[] = {
  4300. 0x00, 0x00, /* radiotap version */
  4301. 0x0e, 0x00, /* radiotap length */
  4302. 0x02, 0xc0, 0x00, 0x00, /* bmap: flags, tx and rx flags */
  4303. IEEE80211_RADIOTAP_F_FRAG, /* F_FRAG (fragment if required) */
  4304. 0x00, /* padding */
  4305. 0x00, 0x00, /* RX and TX flags to indicate that */
  4306. 0x00, 0x00, /* this is the injected frame directly */
  4307. };
  4308. struct iovec iov[2] = {
  4309. {
  4310. .iov_base = &rtap_hdr,
  4311. .iov_len = sizeof(rtap_hdr),
  4312. },
  4313. {
  4314. .iov_base = (void *) data,
  4315. .iov_len = len,
  4316. }
  4317. };
  4318. struct msghdr msg = {
  4319. .msg_name = NULL,
  4320. .msg_namelen = 0,
  4321. .msg_iov = iov,
  4322. .msg_iovlen = 2,
  4323. .msg_control = NULL,
  4324. .msg_controllen = 0,
  4325. .msg_flags = 0,
  4326. };
  4327. int res;
  4328. u16 txflags = 0;
  4329. if (encrypt)
  4330. rtap_hdr[8] |= IEEE80211_RADIOTAP_F_WEP;
  4331. if (drv->monitor_sock < 0) {
  4332. wpa_printf(MSG_DEBUG, "nl80211: No monitor socket available "
  4333. "for %s", __func__);
  4334. return -1;
  4335. }
  4336. if (noack)
  4337. txflags |= IEEE80211_RADIOTAP_F_TX_NOACK;
  4338. *(le16 *) &rtap_hdr[12] = host_to_le16(txflags);
  4339. res = sendmsg(drv->monitor_sock, &msg, 0);
  4340. if (res < 0) {
  4341. wpa_printf(MSG_INFO, "nl80211: sendmsg: %s", strerror(errno));
  4342. return -1;
  4343. }
  4344. return 0;
  4345. }
  4346. static int wpa_driver_nl80211_send_frame(struct i802_bss *bss,
  4347. const void *data, size_t len,
  4348. int encrypt, int noack,
  4349. unsigned int freq, int no_cck,
  4350. int offchanok, unsigned int wait_time)
  4351. {
  4352. struct wpa_driver_nl80211_data *drv = bss->drv;
  4353. u64 cookie;
  4354. if (freq == 0)
  4355. freq = bss->freq;
  4356. if (drv->use_monitor)
  4357. return wpa_driver_nl80211_send_mntr(drv, data, len,
  4358. encrypt, noack);
  4359. return nl80211_send_frame_cmd(bss, freq, wait_time, data, len,
  4360. &cookie, no_cck, noack, offchanok);
  4361. }
  4362. static int wpa_driver_nl80211_send_mlme_freq(struct i802_bss *bss,
  4363. const u8 *data,
  4364. size_t data_len, int noack,
  4365. unsigned int freq, int no_cck,
  4366. int offchanok,
  4367. unsigned int wait_time)
  4368. {
  4369. struct wpa_driver_nl80211_data *drv = bss->drv;
  4370. struct ieee80211_mgmt *mgmt;
  4371. int encrypt = 1;
  4372. u16 fc;
  4373. mgmt = (struct ieee80211_mgmt *) data;
  4374. fc = le_to_host16(mgmt->frame_control);
  4375. if (is_sta_interface(drv->nlmode) &&
  4376. WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  4377. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_RESP) {
  4378. /*
  4379. * The use of last_mgmt_freq is a bit of a hack,
  4380. * but it works due to the single-threaded nature
  4381. * of wpa_supplicant.
  4382. */
  4383. if (freq == 0)
  4384. freq = drv->last_mgmt_freq;
  4385. return nl80211_send_frame_cmd(bss, freq, 0,
  4386. data, data_len, NULL, 1, noack,
  4387. 1);
  4388. }
  4389. if (drv->device_ap_sme && is_ap_interface(drv->nlmode)) {
  4390. if (freq == 0)
  4391. freq = bss->freq;
  4392. return nl80211_send_frame_cmd(bss, freq,
  4393. (int) freq == bss->freq ? 0 :
  4394. wait_time,
  4395. data, data_len,
  4396. &drv->send_action_cookie,
  4397. no_cck, noack, offchanok);
  4398. }
  4399. if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
  4400. WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_AUTH) {
  4401. /*
  4402. * Only one of the authentication frame types is encrypted.
  4403. * In order for static WEP encryption to work properly (i.e.,
  4404. * to not encrypt the frame), we need to tell mac80211 about
  4405. * the frames that must not be encrypted.
  4406. */
  4407. u16 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
  4408. u16 auth_trans = le_to_host16(mgmt->u.auth.auth_transaction);
  4409. if (auth_alg != WLAN_AUTH_SHARED_KEY || auth_trans != 3)
  4410. encrypt = 0;
  4411. }
  4412. return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt,
  4413. noack, freq, no_cck, offchanok,
  4414. wait_time);
  4415. }
  4416. static int wpa_driver_nl80211_send_mlme(void *priv, const u8 *data,
  4417. size_t data_len, int noack)
  4418. {
  4419. struct i802_bss *bss = priv;
  4420. return wpa_driver_nl80211_send_mlme_freq(bss, data, data_len, noack,
  4421. 0, 0, 0, 0);
  4422. }
  4423. static int nl80211_set_bss(struct i802_bss *bss, int cts, int preamble,
  4424. int slot, int ht_opmode, int ap_isolate,
  4425. int *basic_rates)
  4426. {
  4427. struct wpa_driver_nl80211_data *drv = bss->drv;
  4428. struct nl_msg *msg;
  4429. msg = nlmsg_alloc();
  4430. if (!msg)
  4431. return -ENOMEM;
  4432. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_BSS);
  4433. if (cts >= 0)
  4434. NLA_PUT_U8(msg, NL80211_ATTR_BSS_CTS_PROT, cts);
  4435. if (preamble >= 0)
  4436. NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_PREAMBLE, preamble);
  4437. if (slot >= 0)
  4438. NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_SLOT_TIME, slot);
  4439. if (ht_opmode >= 0)
  4440. NLA_PUT_U16(msg, NL80211_ATTR_BSS_HT_OPMODE, ht_opmode);
  4441. if (ap_isolate >= 0)
  4442. NLA_PUT_U8(msg, NL80211_ATTR_AP_ISOLATE, ap_isolate);
  4443. if (basic_rates) {
  4444. u8 rates[NL80211_MAX_SUPP_RATES];
  4445. u8 rates_len = 0;
  4446. int i;
  4447. for (i = 0; i < NL80211_MAX_SUPP_RATES && basic_rates[i] >= 0;
  4448. i++)
  4449. rates[rates_len++] = basic_rates[i] / 5;
  4450. NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES, rates_len, rates);
  4451. }
  4452. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
  4453. return send_and_recv_msgs(drv, msg, NULL, NULL);
  4454. nla_put_failure:
  4455. nlmsg_free(msg);
  4456. return -ENOBUFS;
  4457. }
  4458. static int wpa_driver_nl80211_set_ap(void *priv,
  4459. struct wpa_driver_ap_params *params)
  4460. {
  4461. struct i802_bss *bss = priv;
  4462. struct wpa_driver_nl80211_data *drv = bss->drv;
  4463. struct nl_msg *msg;
  4464. u8 cmd = NL80211_CMD_NEW_BEACON;
  4465. int ret;
  4466. int beacon_set;
  4467. int ifindex = if_nametoindex(bss->ifname);
  4468. int num_suites;
  4469. u32 suites[10];
  4470. u32 ver;
  4471. beacon_set = bss->beacon_set;
  4472. msg = nlmsg_alloc();
  4473. if (!msg)
  4474. return -ENOMEM;
  4475. wpa_printf(MSG_DEBUG, "nl80211: Set beacon (beacon_set=%d)",
  4476. beacon_set);
  4477. if (beacon_set)
  4478. cmd = NL80211_CMD_SET_BEACON;
  4479. nl80211_cmd(drv, msg, 0, cmd);
  4480. NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD, params->head_len, params->head);
  4481. NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL, params->tail_len, params->tail);
  4482. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
  4483. NLA_PUT_U32(msg, NL80211_ATTR_BEACON_INTERVAL, params->beacon_int);
  4484. NLA_PUT_U32(msg, NL80211_ATTR_DTIM_PERIOD, params->dtim_period);
  4485. NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
  4486. params->ssid);
  4487. if (params->proberesp && params->proberesp_len)
  4488. NLA_PUT(msg, NL80211_ATTR_PROBE_RESP, params->proberesp_len,
  4489. params->proberesp);
  4490. switch (params->hide_ssid) {
  4491. case NO_SSID_HIDING:
  4492. NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
  4493. NL80211_HIDDEN_SSID_NOT_IN_USE);
  4494. break;
  4495. case HIDDEN_SSID_ZERO_LEN:
  4496. NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
  4497. NL80211_HIDDEN_SSID_ZERO_LEN);
  4498. break;
  4499. case HIDDEN_SSID_ZERO_CONTENTS:
  4500. NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
  4501. NL80211_HIDDEN_SSID_ZERO_CONTENTS);
  4502. break;
  4503. }
  4504. if (params->privacy)
  4505. NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
  4506. if ((params->auth_algs & (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) ==
  4507. (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) {
  4508. /* Leave out the attribute */
  4509. } else if (params->auth_algs & WPA_AUTH_ALG_SHARED)
  4510. NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
  4511. NL80211_AUTHTYPE_SHARED_KEY);
  4512. else
  4513. NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
  4514. NL80211_AUTHTYPE_OPEN_SYSTEM);
  4515. ver = 0;
  4516. if (params->wpa_version & WPA_PROTO_WPA)
  4517. ver |= NL80211_WPA_VERSION_1;
  4518. if (params->wpa_version & WPA_PROTO_RSN)
  4519. ver |= NL80211_WPA_VERSION_2;
  4520. if (ver)
  4521. NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
  4522. num_suites = 0;
  4523. if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X)
  4524. suites[num_suites++] = WLAN_AKM_SUITE_8021X;
  4525. if (params->key_mgmt_suites & WPA_KEY_MGMT_PSK)
  4526. suites[num_suites++] = WLAN_AKM_SUITE_PSK;
  4527. if (num_suites) {
  4528. NLA_PUT(msg, NL80211_ATTR_AKM_SUITES,
  4529. num_suites * sizeof(u32), suites);
  4530. }
  4531. if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X &&
  4532. params->pairwise_ciphers & (WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40))
  4533. NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT);
  4534. num_suites = 0;
  4535. if (params->pairwise_ciphers & WPA_CIPHER_CCMP)
  4536. suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP;
  4537. if (params->pairwise_ciphers & WPA_CIPHER_TKIP)
  4538. suites[num_suites++] = WLAN_CIPHER_SUITE_TKIP;
  4539. if (params->pairwise_ciphers & WPA_CIPHER_WEP104)
  4540. suites[num_suites++] = WLAN_CIPHER_SUITE_WEP104;
  4541. if (params->pairwise_ciphers & WPA_CIPHER_WEP40)
  4542. suites[num_suites++] = WLAN_CIPHER_SUITE_WEP40;
  4543. if (num_suites) {
  4544. NLA_PUT(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE,
  4545. num_suites * sizeof(u32), suites);
  4546. }
  4547. switch (params->group_cipher) {
  4548. case WPA_CIPHER_CCMP:
  4549. NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
  4550. WLAN_CIPHER_SUITE_CCMP);
  4551. break;
  4552. case WPA_CIPHER_TKIP:
  4553. NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
  4554. WLAN_CIPHER_SUITE_TKIP);
  4555. break;
  4556. case WPA_CIPHER_WEP104:
  4557. NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
  4558. WLAN_CIPHER_SUITE_WEP104);
  4559. break;
  4560. case WPA_CIPHER_WEP40:
  4561. NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
  4562. WLAN_CIPHER_SUITE_WEP40);
  4563. break;
  4564. }
  4565. if (params->beacon_ies) {
  4566. NLA_PUT(msg, NL80211_ATTR_IE, wpabuf_len(params->beacon_ies),
  4567. wpabuf_head(params->beacon_ies));
  4568. }
  4569. if (params->proberesp_ies) {
  4570. NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
  4571. wpabuf_len(params->proberesp_ies),
  4572. wpabuf_head(params->proberesp_ies));
  4573. }
  4574. if (params->assocresp_ies) {
  4575. NLA_PUT(msg, NL80211_ATTR_IE_ASSOC_RESP,
  4576. wpabuf_len(params->assocresp_ies),
  4577. wpabuf_head(params->assocresp_ies));
  4578. }
  4579. if (drv->capa.flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER) {
  4580. NLA_PUT_U16(msg, NL80211_ATTR_INACTIVITY_TIMEOUT,
  4581. params->ap_max_inactivity);
  4582. }
  4583. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  4584. if (ret) {
  4585. wpa_printf(MSG_DEBUG, "nl80211: Beacon set failed: %d (%s)",
  4586. ret, strerror(-ret));
  4587. } else {
  4588. bss->beacon_set = 1;
  4589. nl80211_set_bss(bss, params->cts_protect, params->preamble,
  4590. params->short_slot_time, params->ht_opmode,
  4591. params->isolate, params->basic_rates);
  4592. }
  4593. return ret;
  4594. nla_put_failure:
  4595. nlmsg_free(msg);
  4596. return -ENOBUFS;
  4597. }
  4598. static int wpa_driver_nl80211_set_freq(struct i802_bss *bss,
  4599. int freq, int ht_enabled,
  4600. int sec_channel_offset)
  4601. {
  4602. struct wpa_driver_nl80211_data *drv = bss->drv;
  4603. struct nl_msg *msg;
  4604. int ret;
  4605. wpa_printf(MSG_DEBUG, "nl80211: Set freq %d (ht_enabled=%d "
  4606. "sec_channel_offset=%d)",
  4607. freq, ht_enabled, sec_channel_offset);
  4608. msg = nlmsg_alloc();
  4609. if (!msg)
  4610. return -1;
  4611. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
  4612. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  4613. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
  4614. if (ht_enabled) {
  4615. switch (sec_channel_offset) {
  4616. case -1:
  4617. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
  4618. NL80211_CHAN_HT40MINUS);
  4619. break;
  4620. case 1:
  4621. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
  4622. NL80211_CHAN_HT40PLUS);
  4623. break;
  4624. default:
  4625. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
  4626. NL80211_CHAN_HT20);
  4627. break;
  4628. }
  4629. }
  4630. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  4631. msg = NULL;
  4632. if (ret == 0) {
  4633. bss->freq = freq;
  4634. return 0;
  4635. }
  4636. wpa_printf(MSG_DEBUG, "nl80211: Failed to set channel (freq=%d): "
  4637. "%d (%s)", freq, ret, strerror(-ret));
  4638. nla_put_failure:
  4639. nlmsg_free(msg);
  4640. return -1;
  4641. }
  4642. static u32 sta_flags_nl80211(int flags)
  4643. {
  4644. u32 f = 0;
  4645. if (flags & WPA_STA_AUTHORIZED)
  4646. f |= BIT(NL80211_STA_FLAG_AUTHORIZED);
  4647. if (flags & WPA_STA_WMM)
  4648. f |= BIT(NL80211_STA_FLAG_WME);
  4649. if (flags & WPA_STA_SHORT_PREAMBLE)
  4650. f |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
  4651. if (flags & WPA_STA_MFP)
  4652. f |= BIT(NL80211_STA_FLAG_MFP);
  4653. if (flags & WPA_STA_TDLS_PEER)
  4654. f |= BIT(NL80211_STA_FLAG_TDLS_PEER);
  4655. return f;
  4656. }
  4657. static int wpa_driver_nl80211_sta_add(void *priv,
  4658. struct hostapd_sta_add_params *params)
  4659. {
  4660. struct i802_bss *bss = priv;
  4661. struct wpa_driver_nl80211_data *drv = bss->drv;
  4662. struct nl_msg *msg, *wme = NULL;
  4663. struct nl80211_sta_flag_update upd;
  4664. int ret = -ENOBUFS;
  4665. if ((params->flags & WPA_STA_TDLS_PEER) &&
  4666. !(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
  4667. return -EOPNOTSUPP;
  4668. msg = nlmsg_alloc();
  4669. if (!msg)
  4670. return -ENOMEM;
  4671. nl80211_cmd(drv, msg, 0, params->set ? NL80211_CMD_SET_STATION :
  4672. NL80211_CMD_NEW_STATION);
  4673. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
  4674. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->addr);
  4675. NLA_PUT(msg, NL80211_ATTR_STA_SUPPORTED_RATES, params->supp_rates_len,
  4676. params->supp_rates);
  4677. if (!params->set) {
  4678. NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, params->aid);
  4679. NLA_PUT_U16(msg, NL80211_ATTR_STA_LISTEN_INTERVAL,
  4680. params->listen_interval);
  4681. }
  4682. if (params->ht_capabilities) {
  4683. NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY,
  4684. sizeof(*params->ht_capabilities),
  4685. params->ht_capabilities);
  4686. }
  4687. os_memset(&upd, 0, sizeof(upd));
  4688. upd.mask = sta_flags_nl80211(params->flags);
  4689. upd.set = upd.mask;
  4690. NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
  4691. if (params->flags & WPA_STA_WMM) {
  4692. wme = nlmsg_alloc();
  4693. if (!wme)
  4694. goto nla_put_failure;
  4695. NLA_PUT_U8(wme, NL80211_STA_WME_UAPSD_QUEUES,
  4696. params->qosinfo & WMM_QOSINFO_STA_AC_MASK);
  4697. NLA_PUT_U8(wme, NL80211_STA_WME_MAX_SP,
  4698. (params->qosinfo > WMM_QOSINFO_STA_SP_SHIFT) &
  4699. WMM_QOSINFO_STA_SP_MASK);
  4700. nla_put_nested(msg, NL80211_ATTR_STA_WME, wme);
  4701. }
  4702. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  4703. msg = NULL;
  4704. if (ret)
  4705. wpa_printf(MSG_DEBUG, "nl80211: NL80211_CMD_%s_STATION "
  4706. "result: %d (%s)", params->set ? "SET" : "NEW", ret,
  4707. strerror(-ret));
  4708. if (ret == -EEXIST)
  4709. ret = 0;
  4710. nla_put_failure:
  4711. nlmsg_free(wme);
  4712. nlmsg_free(msg);
  4713. return ret;
  4714. }
  4715. static int wpa_driver_nl80211_sta_remove(void *priv, const u8 *addr)
  4716. {
  4717. struct i802_bss *bss = priv;
  4718. struct wpa_driver_nl80211_data *drv = bss->drv;
  4719. struct nl_msg *msg;
  4720. int ret;
  4721. msg = nlmsg_alloc();
  4722. if (!msg)
  4723. return -ENOMEM;
  4724. nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
  4725. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
  4726. if_nametoindex(bss->ifname));
  4727. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  4728. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  4729. if (ret == -ENOENT)
  4730. return 0;
  4731. return ret;
  4732. nla_put_failure:
  4733. nlmsg_free(msg);
  4734. return -ENOBUFS;
  4735. }
  4736. static void nl80211_remove_iface(struct wpa_driver_nl80211_data *drv,
  4737. int ifidx)
  4738. {
  4739. struct nl_msg *msg;
  4740. wpa_printf(MSG_DEBUG, "nl80211: Remove interface ifindex=%d", ifidx);
  4741. /* stop listening for EAPOL on this interface */
  4742. del_ifidx(drv, ifidx);
  4743. msg = nlmsg_alloc();
  4744. if (!msg)
  4745. goto nla_put_failure;
  4746. nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_INTERFACE);
  4747. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifidx);
  4748. if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
  4749. return;
  4750. msg = NULL;
  4751. nla_put_failure:
  4752. nlmsg_free(msg);
  4753. wpa_printf(MSG_ERROR, "Failed to remove interface (ifidx=%d)", ifidx);
  4754. }
  4755. static const char * nl80211_iftype_str(enum nl80211_iftype mode)
  4756. {
  4757. switch (mode) {
  4758. case NL80211_IFTYPE_ADHOC:
  4759. return "ADHOC";
  4760. case NL80211_IFTYPE_STATION:
  4761. return "STATION";
  4762. case NL80211_IFTYPE_AP:
  4763. return "AP";
  4764. case NL80211_IFTYPE_MONITOR:
  4765. return "MONITOR";
  4766. case NL80211_IFTYPE_P2P_CLIENT:
  4767. return "P2P_CLIENT";
  4768. case NL80211_IFTYPE_P2P_GO:
  4769. return "P2P_GO";
  4770. default:
  4771. return "unknown";
  4772. }
  4773. }
  4774. static int nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv,
  4775. const char *ifname,
  4776. enum nl80211_iftype iftype,
  4777. const u8 *addr, int wds)
  4778. {
  4779. struct nl_msg *msg, *flags = NULL;
  4780. int ifidx;
  4781. int ret = -ENOBUFS;
  4782. wpa_printf(MSG_DEBUG, "nl80211: Create interface iftype %d (%s)",
  4783. iftype, nl80211_iftype_str(iftype));
  4784. msg = nlmsg_alloc();
  4785. if (!msg)
  4786. return -1;
  4787. nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_INTERFACE);
  4788. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  4789. NLA_PUT_STRING(msg, NL80211_ATTR_IFNAME, ifname);
  4790. NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, iftype);
  4791. if (iftype == NL80211_IFTYPE_MONITOR) {
  4792. int err;
  4793. flags = nlmsg_alloc();
  4794. if (!flags)
  4795. goto nla_put_failure;
  4796. NLA_PUT_FLAG(flags, NL80211_MNTR_FLAG_COOK_FRAMES);
  4797. err = nla_put_nested(msg, NL80211_ATTR_MNTR_FLAGS, flags);
  4798. nlmsg_free(flags);
  4799. if (err)
  4800. goto nla_put_failure;
  4801. } else if (wds) {
  4802. NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds);
  4803. }
  4804. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  4805. msg = NULL;
  4806. if (ret) {
  4807. nla_put_failure:
  4808. nlmsg_free(msg);
  4809. wpa_printf(MSG_ERROR, "Failed to create interface %s: %d (%s)",
  4810. ifname, ret, strerror(-ret));
  4811. return ret;
  4812. }
  4813. ifidx = if_nametoindex(ifname);
  4814. wpa_printf(MSG_DEBUG, "nl80211: New interface %s created: ifindex=%d",
  4815. ifname, ifidx);
  4816. if (ifidx <= 0)
  4817. return -1;
  4818. /* start listening for EAPOL on this interface */
  4819. add_ifidx(drv, ifidx);
  4820. if (addr && iftype != NL80211_IFTYPE_MONITOR &&
  4821. linux_set_ifhwaddr(drv->global->ioctl_sock, ifname, addr)) {
  4822. nl80211_remove_iface(drv, ifidx);
  4823. return -1;
  4824. }
  4825. return ifidx;
  4826. }
  4827. static int nl80211_create_iface(struct wpa_driver_nl80211_data *drv,
  4828. const char *ifname, enum nl80211_iftype iftype,
  4829. const u8 *addr, int wds)
  4830. {
  4831. int ret;
  4832. ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds);
  4833. /* if error occurred and interface exists already */
  4834. if (ret == -ENFILE && if_nametoindex(ifname)) {
  4835. wpa_printf(MSG_INFO, "Try to remove and re-create %s", ifname);
  4836. /* Try to remove the interface that was already there. */
  4837. nl80211_remove_iface(drv, if_nametoindex(ifname));
  4838. /* Try to create the interface again */
  4839. ret = nl80211_create_iface_once(drv, ifname, iftype, addr,
  4840. wds);
  4841. }
  4842. if (ret >= 0 && is_p2p_interface(iftype))
  4843. nl80211_disable_11b_rates(drv, ret, 1);
  4844. return ret;
  4845. }
  4846. static void handle_tx_callback(void *ctx, u8 *buf, size_t len, int ok)
  4847. {
  4848. struct ieee80211_hdr *hdr;
  4849. u16 fc;
  4850. union wpa_event_data event;
  4851. hdr = (struct ieee80211_hdr *) buf;
  4852. fc = le_to_host16(hdr->frame_control);
  4853. os_memset(&event, 0, sizeof(event));
  4854. event.tx_status.type = WLAN_FC_GET_TYPE(fc);
  4855. event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
  4856. event.tx_status.dst = hdr->addr1;
  4857. event.tx_status.data = buf;
  4858. event.tx_status.data_len = len;
  4859. event.tx_status.ack = ok;
  4860. wpa_supplicant_event(ctx, EVENT_TX_STATUS, &event);
  4861. }
  4862. static void from_unknown_sta(struct wpa_driver_nl80211_data *drv,
  4863. u8 *buf, size_t len)
  4864. {
  4865. struct ieee80211_hdr *hdr = (void *)buf;
  4866. u16 fc;
  4867. union wpa_event_data event;
  4868. if (len < sizeof(*hdr))
  4869. return;
  4870. fc = le_to_host16(hdr->frame_control);
  4871. os_memset(&event, 0, sizeof(event));
  4872. event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
  4873. event.rx_from_unknown.addr = hdr->addr2;
  4874. event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) ==
  4875. (WLAN_FC_FROMDS | WLAN_FC_TODS);
  4876. wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
  4877. }
  4878. static void handle_frame(struct wpa_driver_nl80211_data *drv,
  4879. u8 *buf, size_t len, int datarate, int ssi_signal)
  4880. {
  4881. struct ieee80211_hdr *hdr;
  4882. u16 fc;
  4883. union wpa_event_data event;
  4884. hdr = (struct ieee80211_hdr *) buf;
  4885. fc = le_to_host16(hdr->frame_control);
  4886. switch (WLAN_FC_GET_TYPE(fc)) {
  4887. case WLAN_FC_TYPE_MGMT:
  4888. os_memset(&event, 0, sizeof(event));
  4889. event.rx_mgmt.frame = buf;
  4890. event.rx_mgmt.frame_len = len;
  4891. event.rx_mgmt.datarate = datarate;
  4892. event.rx_mgmt.ssi_signal = ssi_signal;
  4893. wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
  4894. break;
  4895. case WLAN_FC_TYPE_CTRL:
  4896. /* can only get here with PS-Poll frames */
  4897. wpa_printf(MSG_DEBUG, "CTRL");
  4898. from_unknown_sta(drv, buf, len);
  4899. break;
  4900. case WLAN_FC_TYPE_DATA:
  4901. from_unknown_sta(drv, buf, len);
  4902. break;
  4903. }
  4904. }
  4905. static void handle_monitor_read(int sock, void *eloop_ctx, void *sock_ctx)
  4906. {
  4907. struct wpa_driver_nl80211_data *drv = eloop_ctx;
  4908. int len;
  4909. unsigned char buf[3000];
  4910. struct ieee80211_radiotap_iterator iter;
  4911. int ret;
  4912. int datarate = 0, ssi_signal = 0;
  4913. int injected = 0, failed = 0, rxflags = 0;
  4914. len = recv(sock, buf, sizeof(buf), 0);
  4915. if (len < 0) {
  4916. perror("recv");
  4917. return;
  4918. }
  4919. if (ieee80211_radiotap_iterator_init(&iter, (void*)buf, len)) {
  4920. printf("received invalid radiotap frame\n");
  4921. return;
  4922. }
  4923. while (1) {
  4924. ret = ieee80211_radiotap_iterator_next(&iter);
  4925. if (ret == -ENOENT)
  4926. break;
  4927. if (ret) {
  4928. printf("received invalid radiotap frame (%d)\n", ret);
  4929. return;
  4930. }
  4931. switch (iter.this_arg_index) {
  4932. case IEEE80211_RADIOTAP_FLAGS:
  4933. if (*iter.this_arg & IEEE80211_RADIOTAP_F_FCS)
  4934. len -= 4;
  4935. break;
  4936. case IEEE80211_RADIOTAP_RX_FLAGS:
  4937. rxflags = 1;
  4938. break;
  4939. case IEEE80211_RADIOTAP_TX_FLAGS:
  4940. injected = 1;
  4941. failed = le_to_host16((*(uint16_t *) iter.this_arg)) &
  4942. IEEE80211_RADIOTAP_F_TX_FAIL;
  4943. break;
  4944. case IEEE80211_RADIOTAP_DATA_RETRIES:
  4945. break;
  4946. case IEEE80211_RADIOTAP_CHANNEL:
  4947. /* TODO: convert from freq/flags to channel number */
  4948. break;
  4949. case IEEE80211_RADIOTAP_RATE:
  4950. datarate = *iter.this_arg * 5;
  4951. break;
  4952. case IEEE80211_RADIOTAP_DBM_ANTSIGNAL:
  4953. ssi_signal = (s8) *iter.this_arg;
  4954. break;
  4955. }
  4956. }
  4957. if (rxflags && injected)
  4958. return;
  4959. if (!injected)
  4960. handle_frame(drv, buf + iter.max_length,
  4961. len - iter.max_length, datarate, ssi_signal);
  4962. else
  4963. handle_tx_callback(drv->ctx, buf + iter.max_length,
  4964. len - iter.max_length, !failed);
  4965. }
  4966. /*
  4967. * we post-process the filter code later and rewrite
  4968. * this to the offset to the last instruction
  4969. */
  4970. #define PASS 0xFF
  4971. #define FAIL 0xFE
  4972. static struct sock_filter msock_filter_insns[] = {
  4973. /*
  4974. * do a little-endian load of the radiotap length field
  4975. */
  4976. /* load lower byte into A */
  4977. BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 2),
  4978. /* put it into X (== index register) */
  4979. BPF_STMT(BPF_MISC| BPF_TAX, 0),
  4980. /* load upper byte into A */
  4981. BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 3),
  4982. /* left-shift it by 8 */
  4983. BPF_STMT(BPF_ALU | BPF_LSH | BPF_K, 8),
  4984. /* or with X */
  4985. BPF_STMT(BPF_ALU | BPF_OR | BPF_X, 0),
  4986. /* put result into X */
  4987. BPF_STMT(BPF_MISC| BPF_TAX, 0),
  4988. /*
  4989. * Allow management frames through, this also gives us those
  4990. * management frames that we sent ourselves with status
  4991. */
  4992. /* load the lower byte of the IEEE 802.11 frame control field */
  4993. BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
  4994. /* mask off frame type and version */
  4995. BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0xF),
  4996. /* accept frame if it's both 0, fall through otherwise */
  4997. BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0, PASS, 0),
  4998. /*
  4999. * TODO: add a bit to radiotap RX flags that indicates
  5000. * that the sending station is not associated, then
  5001. * add a filter here that filters on our DA and that flag
  5002. * to allow us to deauth frames to that bad station.
  5003. *
  5004. * For now allow all To DS data frames through.
  5005. */
  5006. /* load the IEEE 802.11 frame control field */
  5007. BPF_STMT(BPF_LD | BPF_H | BPF_IND, 0),
  5008. /* mask off frame type, version and DS status */
  5009. BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0F03),
  5010. /* accept frame if version 0, type 2 and To DS, fall through otherwise
  5011. */
  5012. BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0801, PASS, 0),
  5013. #if 0
  5014. /*
  5015. * drop non-data frames
  5016. */
  5017. /* load the lower byte of the frame control field */
  5018. BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
  5019. /* mask off QoS bit */
  5020. BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0c),
  5021. /* drop non-data frames */
  5022. BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 8, 0, FAIL),
  5023. #endif
  5024. /* load the upper byte of the frame control field */
  5025. BPF_STMT(BPF_LD | BPF_B | BPF_IND, 1),
  5026. /* mask off toDS/fromDS */
  5027. BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x03),
  5028. /* accept WDS frames */
  5029. BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 3, PASS, 0),
  5030. /*
  5031. * add header length to index
  5032. */
  5033. /* load the lower byte of the frame control field */
  5034. BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
  5035. /* mask off QoS bit */
  5036. BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x80),
  5037. /* right shift it by 6 to give 0 or 2 */
  5038. BPF_STMT(BPF_ALU | BPF_RSH | BPF_K, 6),
  5039. /* add data frame header length */
  5040. BPF_STMT(BPF_ALU | BPF_ADD | BPF_K, 24),
  5041. /* add index, was start of 802.11 header */
  5042. BPF_STMT(BPF_ALU | BPF_ADD | BPF_X, 0),
  5043. /* move to index, now start of LL header */
  5044. BPF_STMT(BPF_MISC | BPF_TAX, 0),
  5045. /*
  5046. * Accept empty data frames, we use those for
  5047. * polling activity.
  5048. */
  5049. BPF_STMT(BPF_LD | BPF_W | BPF_LEN, 0),
  5050. BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_X, 0, PASS, 0),
  5051. /*
  5052. * Accept EAPOL frames
  5053. */
  5054. BPF_STMT(BPF_LD | BPF_W | BPF_IND, 0),
  5055. BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0xAAAA0300, 0, FAIL),
  5056. BPF_STMT(BPF_LD | BPF_W | BPF_IND, 4),
  5057. BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0000888E, PASS, FAIL),
  5058. /* keep these last two statements or change the code below */
  5059. /* return 0 == "DROP" */
  5060. BPF_STMT(BPF_RET | BPF_K, 0),
  5061. /* return ~0 == "keep all" */
  5062. BPF_STMT(BPF_RET | BPF_K, ~0),
  5063. };
  5064. static struct sock_fprog msock_filter = {
  5065. .len = sizeof(msock_filter_insns)/sizeof(msock_filter_insns[0]),
  5066. .filter = msock_filter_insns,
  5067. };
  5068. static int add_monitor_filter(int s)
  5069. {
  5070. int idx;
  5071. /* rewrite all PASS/FAIL jump offsets */
  5072. for (idx = 0; idx < msock_filter.len; idx++) {
  5073. struct sock_filter *insn = &msock_filter_insns[idx];
  5074. if (BPF_CLASS(insn->code) == BPF_JMP) {
  5075. if (insn->code == (BPF_JMP|BPF_JA)) {
  5076. if (insn->k == PASS)
  5077. insn->k = msock_filter.len - idx - 2;
  5078. else if (insn->k == FAIL)
  5079. insn->k = msock_filter.len - idx - 3;
  5080. }
  5081. if (insn->jt == PASS)
  5082. insn->jt = msock_filter.len - idx - 2;
  5083. else if (insn->jt == FAIL)
  5084. insn->jt = msock_filter.len - idx - 3;
  5085. if (insn->jf == PASS)
  5086. insn->jf = msock_filter.len - idx - 2;
  5087. else if (insn->jf == FAIL)
  5088. insn->jf = msock_filter.len - idx - 3;
  5089. }
  5090. }
  5091. if (setsockopt(s, SOL_SOCKET, SO_ATTACH_FILTER,
  5092. &msock_filter, sizeof(msock_filter))) {
  5093. perror("SO_ATTACH_FILTER");
  5094. return -1;
  5095. }
  5096. return 0;
  5097. }
  5098. static void nl80211_remove_monitor_interface(
  5099. struct wpa_driver_nl80211_data *drv)
  5100. {
  5101. drv->monitor_refcount--;
  5102. if (drv->monitor_refcount > 0)
  5103. return;
  5104. if (drv->monitor_ifidx >= 0) {
  5105. nl80211_remove_iface(drv, drv->monitor_ifidx);
  5106. drv->monitor_ifidx = -1;
  5107. }
  5108. if (drv->monitor_sock >= 0) {
  5109. eloop_unregister_read_sock(drv->monitor_sock);
  5110. close(drv->monitor_sock);
  5111. drv->monitor_sock = -1;
  5112. }
  5113. }
  5114. static int
  5115. nl80211_create_monitor_interface(struct wpa_driver_nl80211_data *drv)
  5116. {
  5117. char buf[IFNAMSIZ];
  5118. struct sockaddr_ll ll;
  5119. int optval;
  5120. socklen_t optlen;
  5121. if (drv->monitor_ifidx >= 0) {
  5122. drv->monitor_refcount++;
  5123. return 0;
  5124. }
  5125. if (os_strncmp(drv->first_bss.ifname, "p2p-", 4) == 0) {
  5126. /*
  5127. * P2P interface name is of the format p2p-%s-%d. For monitor
  5128. * interface name corresponding to P2P GO, replace "p2p-" with
  5129. * "mon-" to retain the same interface name length and to
  5130. * indicate that it is a monitor interface.
  5131. */
  5132. snprintf(buf, IFNAMSIZ, "mon-%s", drv->first_bss.ifname + 4);
  5133. } else {
  5134. /* Non-P2P interface with AP functionality. */
  5135. snprintf(buf, IFNAMSIZ, "mon.%s", drv->first_bss.ifname);
  5136. }
  5137. buf[IFNAMSIZ - 1] = '\0';
  5138. drv->monitor_ifidx =
  5139. nl80211_create_iface(drv, buf, NL80211_IFTYPE_MONITOR, NULL,
  5140. 0);
  5141. if (drv->monitor_ifidx == -EOPNOTSUPP) {
  5142. /*
  5143. * This is backward compatibility for a few versions of
  5144. * the kernel only that didn't advertise the right
  5145. * attributes for the only driver that then supported
  5146. * AP mode w/o monitor -- ath6kl.
  5147. */
  5148. wpa_printf(MSG_DEBUG, "nl80211: Driver does not support "
  5149. "monitor interface type - try to run without it");
  5150. drv->device_ap_sme = 1;
  5151. }
  5152. if (drv->monitor_ifidx < 0)
  5153. return -1;
  5154. if (linux_set_iface_flags(drv->global->ioctl_sock, buf, 1))
  5155. goto error;
  5156. memset(&ll, 0, sizeof(ll));
  5157. ll.sll_family = AF_PACKET;
  5158. ll.sll_ifindex = drv->monitor_ifidx;
  5159. drv->monitor_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
  5160. if (drv->monitor_sock < 0) {
  5161. perror("socket[PF_PACKET,SOCK_RAW]");
  5162. goto error;
  5163. }
  5164. if (add_monitor_filter(drv->monitor_sock)) {
  5165. wpa_printf(MSG_INFO, "Failed to set socket filter for monitor "
  5166. "interface; do filtering in user space");
  5167. /* This works, but will cost in performance. */
  5168. }
  5169. if (bind(drv->monitor_sock, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
  5170. perror("monitor socket bind");
  5171. goto error;
  5172. }
  5173. optlen = sizeof(optval);
  5174. optval = 20;
  5175. if (setsockopt
  5176. (drv->monitor_sock, SOL_SOCKET, SO_PRIORITY, &optval, optlen)) {
  5177. perror("Failed to set socket priority");
  5178. goto error;
  5179. }
  5180. if (eloop_register_read_sock(drv->monitor_sock, handle_monitor_read,
  5181. drv, NULL)) {
  5182. printf("Could not register monitor read socket\n");
  5183. goto error;
  5184. }
  5185. return 0;
  5186. error:
  5187. nl80211_remove_monitor_interface(drv);
  5188. return -1;
  5189. }
  5190. static int nl80211_setup_ap(struct i802_bss *bss)
  5191. {
  5192. struct wpa_driver_nl80211_data *drv = bss->drv;
  5193. wpa_printf(MSG_DEBUG, "nl80211: Setup AP - device_ap_sme=%d "
  5194. "use_monitor=%d", drv->device_ap_sme, drv->use_monitor);
  5195. /*
  5196. * Disable Probe Request reporting unless we need it in this way for
  5197. * devices that include the AP SME, in the other case (unless using
  5198. * monitor iface) we'll get it through the nl_mgmt socket instead.
  5199. */
  5200. if (!drv->device_ap_sme)
  5201. wpa_driver_nl80211_probe_req_report(bss, 0);
  5202. if (!drv->device_ap_sme && !drv->use_monitor)
  5203. if (nl80211_mgmt_subscribe_ap(bss))
  5204. return -1;
  5205. if (drv->device_ap_sme && !drv->use_monitor)
  5206. if (nl80211_mgmt_subscribe_ap_dev_sme(bss))
  5207. return -1;
  5208. if (!drv->device_ap_sme && drv->use_monitor &&
  5209. nl80211_create_monitor_interface(drv) &&
  5210. !drv->device_ap_sme)
  5211. return -1;
  5212. if (drv->device_ap_sme &&
  5213. wpa_driver_nl80211_probe_req_report(bss, 1) < 0) {
  5214. wpa_printf(MSG_DEBUG, "nl80211: Failed to enable "
  5215. "Probe Request frame reporting in AP mode");
  5216. /* Try to survive without this */
  5217. }
  5218. return 0;
  5219. }
  5220. static void nl80211_teardown_ap(struct i802_bss *bss)
  5221. {
  5222. struct wpa_driver_nl80211_data *drv = bss->drv;
  5223. if (drv->device_ap_sme) {
  5224. wpa_driver_nl80211_probe_req_report(bss, 0);
  5225. if (!drv->use_monitor)
  5226. nl80211_mgmt_unsubscribe(bss, "AP teardown (dev SME)");
  5227. } else if (drv->use_monitor)
  5228. nl80211_remove_monitor_interface(drv);
  5229. else
  5230. nl80211_mgmt_unsubscribe(bss, "AP teardown");
  5231. bss->beacon_set = 0;
  5232. }
  5233. static int nl80211_send_eapol_data(struct i802_bss *bss,
  5234. const u8 *addr, const u8 *data,
  5235. size_t data_len)
  5236. {
  5237. struct sockaddr_ll ll;
  5238. int ret;
  5239. if (bss->drv->eapol_tx_sock < 0) {
  5240. wpa_printf(MSG_DEBUG, "nl80211: No socket to send EAPOL");
  5241. return -1;
  5242. }
  5243. os_memset(&ll, 0, sizeof(ll));
  5244. ll.sll_family = AF_PACKET;
  5245. ll.sll_ifindex = bss->ifindex;
  5246. ll.sll_protocol = htons(ETH_P_PAE);
  5247. ll.sll_halen = ETH_ALEN;
  5248. os_memcpy(ll.sll_addr, addr, ETH_ALEN);
  5249. ret = sendto(bss->drv->eapol_tx_sock, data, data_len, 0,
  5250. (struct sockaddr *) &ll, sizeof(ll));
  5251. if (ret < 0)
  5252. wpa_printf(MSG_ERROR, "nl80211: EAPOL TX: %s",
  5253. strerror(errno));
  5254. return ret;
  5255. }
  5256. static const u8 rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
  5257. static int wpa_driver_nl80211_hapd_send_eapol(
  5258. void *priv, const u8 *addr, const u8 *data,
  5259. size_t data_len, int encrypt, const u8 *own_addr, u32 flags)
  5260. {
  5261. struct i802_bss *bss = priv;
  5262. struct wpa_driver_nl80211_data *drv = bss->drv;
  5263. struct ieee80211_hdr *hdr;
  5264. size_t len;
  5265. u8 *pos;
  5266. int res;
  5267. int qos = flags & WPA_STA_WMM;
  5268. if (drv->device_ap_sme || !drv->use_monitor)
  5269. return nl80211_send_eapol_data(bss, addr, data, data_len);
  5270. len = sizeof(*hdr) + (qos ? 2 : 0) + sizeof(rfc1042_header) + 2 +
  5271. data_len;
  5272. hdr = os_zalloc(len);
  5273. if (hdr == NULL) {
  5274. printf("malloc() failed for i802_send_data(len=%lu)\n",
  5275. (unsigned long) len);
  5276. return -1;
  5277. }
  5278. hdr->frame_control =
  5279. IEEE80211_FC(WLAN_FC_TYPE_DATA, WLAN_FC_STYPE_DATA);
  5280. hdr->frame_control |= host_to_le16(WLAN_FC_FROMDS);
  5281. if (encrypt)
  5282. hdr->frame_control |= host_to_le16(WLAN_FC_ISWEP);
  5283. if (qos) {
  5284. hdr->frame_control |=
  5285. host_to_le16(WLAN_FC_STYPE_QOS_DATA << 4);
  5286. }
  5287. memcpy(hdr->IEEE80211_DA_FROMDS, addr, ETH_ALEN);
  5288. memcpy(hdr->IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
  5289. memcpy(hdr->IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
  5290. pos = (u8 *) (hdr + 1);
  5291. if (qos) {
  5292. /* add an empty QoS header if needed */
  5293. pos[0] = 0;
  5294. pos[1] = 0;
  5295. pos += 2;
  5296. }
  5297. memcpy(pos, rfc1042_header, sizeof(rfc1042_header));
  5298. pos += sizeof(rfc1042_header);
  5299. WPA_PUT_BE16(pos, ETH_P_PAE);
  5300. pos += 2;
  5301. memcpy(pos, data, data_len);
  5302. res = wpa_driver_nl80211_send_frame(bss, (u8 *) hdr, len, encrypt, 0,
  5303. 0, 0, 0, 0);
  5304. if (res < 0) {
  5305. wpa_printf(MSG_ERROR, "i802_send_eapol - packet len: %lu - "
  5306. "failed: %d (%s)",
  5307. (unsigned long) len, errno, strerror(errno));
  5308. }
  5309. os_free(hdr);
  5310. return res;
  5311. }
  5312. static int wpa_driver_nl80211_sta_set_flags(void *priv, const u8 *addr,
  5313. int total_flags,
  5314. int flags_or, int flags_and)
  5315. {
  5316. struct i802_bss *bss = priv;
  5317. struct wpa_driver_nl80211_data *drv = bss->drv;
  5318. struct nl_msg *msg, *flags = NULL;
  5319. struct nl80211_sta_flag_update upd;
  5320. msg = nlmsg_alloc();
  5321. if (!msg)
  5322. return -ENOMEM;
  5323. flags = nlmsg_alloc();
  5324. if (!flags) {
  5325. nlmsg_free(msg);
  5326. return -ENOMEM;
  5327. }
  5328. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
  5329. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
  5330. if_nametoindex(bss->ifname));
  5331. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  5332. /*
  5333. * Backwards compatibility version using NL80211_ATTR_STA_FLAGS. This
  5334. * can be removed eventually.
  5335. */
  5336. if (total_flags & WPA_STA_AUTHORIZED)
  5337. NLA_PUT_FLAG(flags, NL80211_STA_FLAG_AUTHORIZED);
  5338. if (total_flags & WPA_STA_WMM)
  5339. NLA_PUT_FLAG(flags, NL80211_STA_FLAG_WME);
  5340. if (total_flags & WPA_STA_SHORT_PREAMBLE)
  5341. NLA_PUT_FLAG(flags, NL80211_STA_FLAG_SHORT_PREAMBLE);
  5342. if (total_flags & WPA_STA_MFP)
  5343. NLA_PUT_FLAG(flags, NL80211_STA_FLAG_MFP);
  5344. if (total_flags & WPA_STA_TDLS_PEER)
  5345. NLA_PUT_FLAG(flags, NL80211_STA_FLAG_TDLS_PEER);
  5346. if (nla_put_nested(msg, NL80211_ATTR_STA_FLAGS, flags))
  5347. goto nla_put_failure;
  5348. os_memset(&upd, 0, sizeof(upd));
  5349. upd.mask = sta_flags_nl80211(flags_or | ~flags_and);
  5350. upd.set = sta_flags_nl80211(flags_or);
  5351. NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
  5352. nlmsg_free(flags);
  5353. return send_and_recv_msgs(drv, msg, NULL, NULL);
  5354. nla_put_failure:
  5355. nlmsg_free(msg);
  5356. nlmsg_free(flags);
  5357. return -ENOBUFS;
  5358. }
  5359. static int wpa_driver_nl80211_ap(struct wpa_driver_nl80211_data *drv,
  5360. struct wpa_driver_associate_params *params)
  5361. {
  5362. enum nl80211_iftype nlmode;
  5363. if (params->p2p) {
  5364. wpa_printf(MSG_DEBUG, "nl80211: Setup AP operations for P2P "
  5365. "group (GO)");
  5366. nlmode = NL80211_IFTYPE_P2P_GO;
  5367. } else
  5368. nlmode = NL80211_IFTYPE_AP;
  5369. if (wpa_driver_nl80211_set_mode(&drv->first_bss, nlmode) ||
  5370. wpa_driver_nl80211_set_freq(&drv->first_bss, params->freq, 0, 0)) {
  5371. nl80211_remove_monitor_interface(drv);
  5372. return -1;
  5373. }
  5374. return 0;
  5375. }
  5376. static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv)
  5377. {
  5378. struct nl_msg *msg;
  5379. int ret = -1;
  5380. msg = nlmsg_alloc();
  5381. if (!msg)
  5382. return -1;
  5383. nl80211_cmd(drv, msg, 0, NL80211_CMD_LEAVE_IBSS);
  5384. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  5385. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  5386. msg = NULL;
  5387. if (ret) {
  5388. wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS failed: ret=%d "
  5389. "(%s)", ret, strerror(-ret));
  5390. goto nla_put_failure;
  5391. }
  5392. ret = 0;
  5393. wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS request sent successfully");
  5394. nla_put_failure:
  5395. nlmsg_free(msg);
  5396. return ret;
  5397. }
  5398. static int wpa_driver_nl80211_ibss(struct wpa_driver_nl80211_data *drv,
  5399. struct wpa_driver_associate_params *params)
  5400. {
  5401. struct nl_msg *msg;
  5402. int ret = -1;
  5403. int count = 0;
  5404. wpa_printf(MSG_DEBUG, "nl80211: Join IBSS (ifindex=%d)", drv->ifindex);
  5405. if (wpa_driver_nl80211_set_mode(&drv->first_bss,
  5406. NL80211_IFTYPE_ADHOC)) {
  5407. wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
  5408. "IBSS mode");
  5409. return -1;
  5410. }
  5411. retry:
  5412. msg = nlmsg_alloc();
  5413. if (!msg)
  5414. return -1;
  5415. nl80211_cmd(drv, msg, 0, NL80211_CMD_JOIN_IBSS);
  5416. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  5417. if (params->ssid == NULL || params->ssid_len > sizeof(drv->ssid))
  5418. goto nla_put_failure;
  5419. wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
  5420. params->ssid, params->ssid_len);
  5421. NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
  5422. params->ssid);
  5423. os_memcpy(drv->ssid, params->ssid, params->ssid_len);
  5424. drv->ssid_len = params->ssid_len;
  5425. wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
  5426. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
  5427. ret = nl80211_set_conn_keys(params, msg);
  5428. if (ret)
  5429. goto nla_put_failure;
  5430. if (params->bssid && params->fixed_bssid) {
  5431. wpa_printf(MSG_DEBUG, " * BSSID=" MACSTR,
  5432. MAC2STR(params->bssid));
  5433. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
  5434. }
  5435. if (params->key_mgmt_suite == KEY_MGMT_802_1X ||
  5436. params->key_mgmt_suite == KEY_MGMT_PSK ||
  5437. params->key_mgmt_suite == KEY_MGMT_802_1X_SHA256 ||
  5438. params->key_mgmt_suite == KEY_MGMT_PSK_SHA256) {
  5439. wpa_printf(MSG_DEBUG, " * control port");
  5440. NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
  5441. }
  5442. if (params->wpa_ie) {
  5443. wpa_hexdump(MSG_DEBUG,
  5444. " * Extra IEs for Beacon/Probe Response frames",
  5445. params->wpa_ie, params->wpa_ie_len);
  5446. NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
  5447. params->wpa_ie);
  5448. }
  5449. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  5450. msg = NULL;
  5451. if (ret) {
  5452. wpa_printf(MSG_DEBUG, "nl80211: Join IBSS failed: ret=%d (%s)",
  5453. ret, strerror(-ret));
  5454. count++;
  5455. if (ret == -EALREADY && count == 1) {
  5456. wpa_printf(MSG_DEBUG, "nl80211: Retry IBSS join after "
  5457. "forced leave");
  5458. nl80211_leave_ibss(drv);
  5459. nlmsg_free(msg);
  5460. goto retry;
  5461. }
  5462. goto nla_put_failure;
  5463. }
  5464. ret = 0;
  5465. wpa_printf(MSG_DEBUG, "nl80211: Join IBSS request sent successfully");
  5466. nla_put_failure:
  5467. nlmsg_free(msg);
  5468. return ret;
  5469. }
  5470. static unsigned int nl80211_get_assoc_bssid(struct wpa_driver_nl80211_data *drv,
  5471. u8 *bssid)
  5472. {
  5473. struct nl_msg *msg;
  5474. int ret;
  5475. struct nl80211_bss_info_arg arg;
  5476. os_memset(&arg, 0, sizeof(arg));
  5477. msg = nlmsg_alloc();
  5478. if (!msg)
  5479. goto nla_put_failure;
  5480. nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
  5481. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  5482. arg.drv = drv;
  5483. ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
  5484. msg = NULL;
  5485. if (ret == 0) {
  5486. if (is_zero_ether_addr(arg.assoc_bssid))
  5487. return -ENOTCONN;
  5488. os_memcpy(bssid, arg.assoc_bssid, ETH_ALEN);
  5489. return 0;
  5490. }
  5491. wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
  5492. "(%s)", ret, strerror(-ret));
  5493. nla_put_failure:
  5494. nlmsg_free(msg);
  5495. return drv->assoc_freq;
  5496. }
  5497. static int nl80211_disconnect(struct wpa_driver_nl80211_data *drv,
  5498. const u8 *bssid)
  5499. {
  5500. u8 addr[ETH_ALEN];
  5501. if (bssid == NULL) {
  5502. int res = nl80211_get_assoc_bssid(drv, addr);
  5503. if (res)
  5504. return res;
  5505. bssid = addr;
  5506. }
  5507. return wpa_driver_nl80211_disconnect(drv, bssid,
  5508. WLAN_REASON_PREV_AUTH_NOT_VALID);
  5509. }
  5510. static int wpa_driver_nl80211_connect(
  5511. struct wpa_driver_nl80211_data *drv,
  5512. struct wpa_driver_associate_params *params)
  5513. {
  5514. struct nl_msg *msg;
  5515. enum nl80211_auth_type type;
  5516. int ret = 0;
  5517. int algs;
  5518. msg = nlmsg_alloc();
  5519. if (!msg)
  5520. return -1;
  5521. wpa_printf(MSG_DEBUG, "nl80211: Connect (ifindex=%d)", drv->ifindex);
  5522. nl80211_cmd(drv, msg, 0, NL80211_CMD_CONNECT);
  5523. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  5524. if (params->bssid) {
  5525. wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
  5526. MAC2STR(params->bssid));
  5527. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
  5528. }
  5529. if (params->freq) {
  5530. wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
  5531. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
  5532. }
  5533. if (params->bg_scan_period >= 0) {
  5534. wpa_printf(MSG_DEBUG, " * bg scan period=%d",
  5535. params->bg_scan_period);
  5536. NLA_PUT_U16(msg, NL80211_ATTR_BG_SCAN_PERIOD,
  5537. params->bg_scan_period);
  5538. }
  5539. if (params->ssid) {
  5540. wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
  5541. params->ssid, params->ssid_len);
  5542. NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
  5543. params->ssid);
  5544. if (params->ssid_len > sizeof(drv->ssid))
  5545. goto nla_put_failure;
  5546. os_memcpy(drv->ssid, params->ssid, params->ssid_len);
  5547. drv->ssid_len = params->ssid_len;
  5548. }
  5549. wpa_hexdump(MSG_DEBUG, " * IEs", params->wpa_ie, params->wpa_ie_len);
  5550. if (params->wpa_ie)
  5551. NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
  5552. params->wpa_ie);
  5553. algs = 0;
  5554. if (params->auth_alg & WPA_AUTH_ALG_OPEN)
  5555. algs++;
  5556. if (params->auth_alg & WPA_AUTH_ALG_SHARED)
  5557. algs++;
  5558. if (params->auth_alg & WPA_AUTH_ALG_LEAP)
  5559. algs++;
  5560. if (algs > 1) {
  5561. wpa_printf(MSG_DEBUG, " * Leave out Auth Type for automatic "
  5562. "selection");
  5563. goto skip_auth_type;
  5564. }
  5565. if (params->auth_alg & WPA_AUTH_ALG_OPEN)
  5566. type = NL80211_AUTHTYPE_OPEN_SYSTEM;
  5567. else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
  5568. type = NL80211_AUTHTYPE_SHARED_KEY;
  5569. else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
  5570. type = NL80211_AUTHTYPE_NETWORK_EAP;
  5571. else if (params->auth_alg & WPA_AUTH_ALG_FT)
  5572. type = NL80211_AUTHTYPE_FT;
  5573. else
  5574. goto nla_put_failure;
  5575. wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
  5576. NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
  5577. skip_auth_type:
  5578. if (params->wpa_proto) {
  5579. enum nl80211_wpa_versions ver = 0;
  5580. if (params->wpa_proto & WPA_PROTO_WPA)
  5581. ver |= NL80211_WPA_VERSION_1;
  5582. if (params->wpa_proto & WPA_PROTO_RSN)
  5583. ver |= NL80211_WPA_VERSION_2;
  5584. wpa_printf(MSG_DEBUG, " * WPA Versions 0x%x", ver);
  5585. NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
  5586. }
  5587. if (params->pairwise_suite != CIPHER_NONE) {
  5588. int cipher;
  5589. switch (params->pairwise_suite) {
  5590. case CIPHER_WEP40:
  5591. cipher = WLAN_CIPHER_SUITE_WEP40;
  5592. break;
  5593. case CIPHER_WEP104:
  5594. cipher = WLAN_CIPHER_SUITE_WEP104;
  5595. break;
  5596. case CIPHER_CCMP:
  5597. cipher = WLAN_CIPHER_SUITE_CCMP;
  5598. break;
  5599. case CIPHER_TKIP:
  5600. default:
  5601. cipher = WLAN_CIPHER_SUITE_TKIP;
  5602. break;
  5603. }
  5604. NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
  5605. }
  5606. if (params->group_suite != CIPHER_NONE) {
  5607. int cipher;
  5608. switch (params->group_suite) {
  5609. case CIPHER_WEP40:
  5610. cipher = WLAN_CIPHER_SUITE_WEP40;
  5611. break;
  5612. case CIPHER_WEP104:
  5613. cipher = WLAN_CIPHER_SUITE_WEP104;
  5614. break;
  5615. case CIPHER_CCMP:
  5616. cipher = WLAN_CIPHER_SUITE_CCMP;
  5617. break;
  5618. case CIPHER_TKIP:
  5619. default:
  5620. cipher = WLAN_CIPHER_SUITE_TKIP;
  5621. break;
  5622. }
  5623. NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
  5624. }
  5625. if (params->key_mgmt_suite == KEY_MGMT_802_1X ||
  5626. params->key_mgmt_suite == KEY_MGMT_PSK) {
  5627. int mgmt = WLAN_AKM_SUITE_PSK;
  5628. switch (params->key_mgmt_suite) {
  5629. case KEY_MGMT_802_1X:
  5630. mgmt = WLAN_AKM_SUITE_8021X;
  5631. break;
  5632. case KEY_MGMT_PSK:
  5633. default:
  5634. mgmt = WLAN_AKM_SUITE_PSK;
  5635. break;
  5636. }
  5637. NLA_PUT_U32(msg, NL80211_ATTR_AKM_SUITES, mgmt);
  5638. }
  5639. if (params->disable_ht)
  5640. NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_HT);
  5641. if (params->htcaps && params->htcaps_mask) {
  5642. int sz = sizeof(struct ieee80211_ht_capabilities);
  5643. NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY, sz, params->htcaps);
  5644. NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY_MASK, sz,
  5645. params->htcaps_mask);
  5646. }
  5647. ret = nl80211_set_conn_keys(params, msg);
  5648. if (ret)
  5649. goto nla_put_failure;
  5650. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  5651. msg = NULL;
  5652. if (ret) {
  5653. wpa_printf(MSG_DEBUG, "nl80211: MLME connect failed: ret=%d "
  5654. "(%s)", ret, strerror(-ret));
  5655. /*
  5656. * cfg80211 does not currently accept new connection if we are
  5657. * already connected. As a workaround, force disconnection and
  5658. * try again once the driver indicates it completed
  5659. * disconnection.
  5660. */
  5661. if (ret == -EALREADY)
  5662. nl80211_disconnect(drv, params->bssid);
  5663. goto nla_put_failure;
  5664. }
  5665. ret = 0;
  5666. wpa_printf(MSG_DEBUG, "nl80211: Connect request send successfully");
  5667. nla_put_failure:
  5668. nlmsg_free(msg);
  5669. return ret;
  5670. }
  5671. static int wpa_driver_nl80211_associate(
  5672. void *priv, struct wpa_driver_associate_params *params)
  5673. {
  5674. struct i802_bss *bss = priv;
  5675. struct wpa_driver_nl80211_data *drv = bss->drv;
  5676. int ret = -1;
  5677. struct nl_msg *msg;
  5678. if (params->mode == IEEE80211_MODE_AP)
  5679. return wpa_driver_nl80211_ap(drv, params);
  5680. if (params->mode == IEEE80211_MODE_IBSS)
  5681. return wpa_driver_nl80211_ibss(drv, params);
  5682. if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME)) {
  5683. enum nl80211_iftype nlmode = params->p2p ?
  5684. NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
  5685. if (wpa_driver_nl80211_set_mode(priv, nlmode) < 0)
  5686. return -1;
  5687. return wpa_driver_nl80211_connect(drv, params);
  5688. }
  5689. drv->associated = 0;
  5690. msg = nlmsg_alloc();
  5691. if (!msg)
  5692. return -1;
  5693. wpa_printf(MSG_DEBUG, "nl80211: Associate (ifindex=%d)",
  5694. drv->ifindex);
  5695. nl80211_cmd(drv, msg, 0, NL80211_CMD_ASSOCIATE);
  5696. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  5697. if (params->bssid) {
  5698. wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
  5699. MAC2STR(params->bssid));
  5700. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
  5701. }
  5702. if (params->freq) {
  5703. wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
  5704. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
  5705. drv->assoc_freq = params->freq;
  5706. } else
  5707. drv->assoc_freq = 0;
  5708. if (params->bg_scan_period >= 0) {
  5709. wpa_printf(MSG_DEBUG, " * bg scan period=%d",
  5710. params->bg_scan_period);
  5711. NLA_PUT_U16(msg, NL80211_ATTR_BG_SCAN_PERIOD,
  5712. params->bg_scan_period);
  5713. }
  5714. if (params->ssid) {
  5715. wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
  5716. params->ssid, params->ssid_len);
  5717. NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
  5718. params->ssid);
  5719. if (params->ssid_len > sizeof(drv->ssid))
  5720. goto nla_put_failure;
  5721. os_memcpy(drv->ssid, params->ssid, params->ssid_len);
  5722. drv->ssid_len = params->ssid_len;
  5723. }
  5724. wpa_hexdump(MSG_DEBUG, " * IEs", params->wpa_ie, params->wpa_ie_len);
  5725. if (params->wpa_ie)
  5726. NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
  5727. params->wpa_ie);
  5728. if (params->pairwise_suite != CIPHER_NONE) {
  5729. int cipher;
  5730. switch (params->pairwise_suite) {
  5731. case CIPHER_WEP40:
  5732. cipher = WLAN_CIPHER_SUITE_WEP40;
  5733. break;
  5734. case CIPHER_WEP104:
  5735. cipher = WLAN_CIPHER_SUITE_WEP104;
  5736. break;
  5737. case CIPHER_CCMP:
  5738. cipher = WLAN_CIPHER_SUITE_CCMP;
  5739. break;
  5740. case CIPHER_TKIP:
  5741. default:
  5742. cipher = WLAN_CIPHER_SUITE_TKIP;
  5743. break;
  5744. }
  5745. wpa_printf(MSG_DEBUG, " * pairwise=0x%x", cipher);
  5746. NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
  5747. }
  5748. if (params->group_suite != CIPHER_NONE) {
  5749. int cipher;
  5750. switch (params->group_suite) {
  5751. case CIPHER_WEP40:
  5752. cipher = WLAN_CIPHER_SUITE_WEP40;
  5753. break;
  5754. case CIPHER_WEP104:
  5755. cipher = WLAN_CIPHER_SUITE_WEP104;
  5756. break;
  5757. case CIPHER_CCMP:
  5758. cipher = WLAN_CIPHER_SUITE_CCMP;
  5759. break;
  5760. case CIPHER_TKIP:
  5761. default:
  5762. cipher = WLAN_CIPHER_SUITE_TKIP;
  5763. break;
  5764. }
  5765. wpa_printf(MSG_DEBUG, " * group=0x%x", cipher);
  5766. NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
  5767. }
  5768. #ifdef CONFIG_IEEE80211W
  5769. if (params->mgmt_frame_protection == MGMT_FRAME_PROTECTION_REQUIRED)
  5770. NLA_PUT_U32(msg, NL80211_ATTR_USE_MFP, NL80211_MFP_REQUIRED);
  5771. #endif /* CONFIG_IEEE80211W */
  5772. NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
  5773. if (params->prev_bssid) {
  5774. wpa_printf(MSG_DEBUG, " * prev_bssid=" MACSTR,
  5775. MAC2STR(params->prev_bssid));
  5776. NLA_PUT(msg, NL80211_ATTR_PREV_BSSID, ETH_ALEN,
  5777. params->prev_bssid);
  5778. }
  5779. if (params->disable_ht)
  5780. NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_HT);
  5781. if (params->htcaps && params->htcaps_mask) {
  5782. int sz = sizeof(struct ieee80211_ht_capabilities);
  5783. NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY, sz, params->htcaps);
  5784. NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY_MASK, sz,
  5785. params->htcaps_mask);
  5786. }
  5787. if (params->p2p)
  5788. wpa_printf(MSG_DEBUG, " * P2P group");
  5789. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  5790. msg = NULL;
  5791. if (ret) {
  5792. wpa_dbg(drv->ctx, MSG_DEBUG,
  5793. "nl80211: MLME command failed (assoc): ret=%d (%s)",
  5794. ret, strerror(-ret));
  5795. nl80211_dump_scan(drv);
  5796. goto nla_put_failure;
  5797. }
  5798. ret = 0;
  5799. wpa_printf(MSG_DEBUG, "nl80211: Association request send "
  5800. "successfully");
  5801. nla_put_failure:
  5802. nlmsg_free(msg);
  5803. return ret;
  5804. }
  5805. static int nl80211_set_mode(struct wpa_driver_nl80211_data *drv,
  5806. int ifindex, enum nl80211_iftype mode)
  5807. {
  5808. struct nl_msg *msg;
  5809. int ret = -ENOBUFS;
  5810. wpa_printf(MSG_DEBUG, "nl80211: Set mode ifindex %d iftype %d (%s)",
  5811. ifindex, mode, nl80211_iftype_str(mode));
  5812. msg = nlmsg_alloc();
  5813. if (!msg)
  5814. return -ENOMEM;
  5815. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_INTERFACE);
  5816. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
  5817. NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, mode);
  5818. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  5819. msg = NULL;
  5820. if (!ret)
  5821. return 0;
  5822. nla_put_failure:
  5823. nlmsg_free(msg);
  5824. wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface %d to mode %d:"
  5825. " %d (%s)", ifindex, mode, ret, strerror(-ret));
  5826. return ret;
  5827. }
  5828. static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
  5829. enum nl80211_iftype nlmode)
  5830. {
  5831. struct wpa_driver_nl80211_data *drv = bss->drv;
  5832. int ret = -1;
  5833. int i;
  5834. int was_ap = is_ap_interface(drv->nlmode);
  5835. int res;
  5836. res = nl80211_set_mode(drv, drv->ifindex, nlmode);
  5837. if (res == 0) {
  5838. drv->nlmode = nlmode;
  5839. ret = 0;
  5840. goto done;
  5841. }
  5842. if (res == -ENODEV)
  5843. return -1;
  5844. if (nlmode == drv->nlmode) {
  5845. wpa_printf(MSG_DEBUG, "nl80211: Interface already in "
  5846. "requested mode - ignore error");
  5847. ret = 0;
  5848. goto done; /* Already in the requested mode */
  5849. }
  5850. /* mac80211 doesn't allow mode changes while the device is up, so
  5851. * take the device down, try to set the mode again, and bring the
  5852. * device back up.
  5853. */
  5854. wpa_printf(MSG_DEBUG, "nl80211: Try mode change after setting "
  5855. "interface down");
  5856. for (i = 0; i < 10; i++) {
  5857. res = linux_set_iface_flags(drv->global->ioctl_sock,
  5858. bss->ifname, 0);
  5859. if (res == -EACCES || res == -ENODEV)
  5860. break;
  5861. if (res == 0) {
  5862. /* Try to set the mode again while the interface is
  5863. * down */
  5864. ret = nl80211_set_mode(drv, drv->ifindex, nlmode);
  5865. if (ret == -EACCES)
  5866. break;
  5867. res = linux_set_iface_flags(drv->global->ioctl_sock,
  5868. bss->ifname, 1);
  5869. if (res && !ret)
  5870. ret = -1;
  5871. else if (ret != -EBUSY)
  5872. break;
  5873. } else
  5874. wpa_printf(MSG_DEBUG, "nl80211: Failed to set "
  5875. "interface down");
  5876. os_sleep(0, 100000);
  5877. }
  5878. if (!ret) {
  5879. wpa_printf(MSG_DEBUG, "nl80211: Mode change succeeded while "
  5880. "interface is down");
  5881. drv->nlmode = nlmode;
  5882. drv->ignore_if_down_event = 1;
  5883. }
  5884. done:
  5885. if (ret) {
  5886. wpa_printf(MSG_DEBUG, "nl80211: Interface mode change to %d "
  5887. "from %d failed", nlmode, drv->nlmode);
  5888. return ret;
  5889. }
  5890. if (is_ap_interface(nlmode)) {
  5891. nl80211_mgmt_unsubscribe(bss, "start AP");
  5892. /* Setup additional AP mode functionality if needed */
  5893. if (nl80211_setup_ap(bss))
  5894. return -1;
  5895. } else if (was_ap) {
  5896. /* Remove additional AP mode functionality */
  5897. nl80211_teardown_ap(bss);
  5898. } else {
  5899. nl80211_mgmt_unsubscribe(bss, "mode change");
  5900. }
  5901. if (!bss->in_deinit && !is_ap_interface(nlmode) &&
  5902. nl80211_mgmt_subscribe_non_ap(bss) < 0)
  5903. wpa_printf(MSG_DEBUG, "nl80211: Failed to register Action "
  5904. "frame processing - ignore for now");
  5905. return 0;
  5906. }
  5907. static int wpa_driver_nl80211_get_capa(void *priv,
  5908. struct wpa_driver_capa *capa)
  5909. {
  5910. struct i802_bss *bss = priv;
  5911. struct wpa_driver_nl80211_data *drv = bss->drv;
  5912. if (!drv->has_capability)
  5913. return -1;
  5914. os_memcpy(capa, &drv->capa, sizeof(*capa));
  5915. return 0;
  5916. }
  5917. static int wpa_driver_nl80211_set_operstate(void *priv, int state)
  5918. {
  5919. struct i802_bss *bss = priv;
  5920. struct wpa_driver_nl80211_data *drv = bss->drv;
  5921. wpa_printf(MSG_DEBUG, "%s: operstate %d->%d (%s)",
  5922. __func__, drv->operstate, state, state ? "UP" : "DORMANT");
  5923. drv->operstate = state;
  5924. return netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, -1,
  5925. state ? IF_OPER_UP : IF_OPER_DORMANT);
  5926. }
  5927. static int wpa_driver_nl80211_set_supp_port(void *priv, int authorized)
  5928. {
  5929. struct i802_bss *bss = priv;
  5930. struct wpa_driver_nl80211_data *drv = bss->drv;
  5931. struct nl_msg *msg;
  5932. struct nl80211_sta_flag_update upd;
  5933. msg = nlmsg_alloc();
  5934. if (!msg)
  5935. return -ENOMEM;
  5936. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
  5937. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
  5938. if_nametoindex(bss->ifname));
  5939. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
  5940. os_memset(&upd, 0, sizeof(upd));
  5941. upd.mask = BIT(NL80211_STA_FLAG_AUTHORIZED);
  5942. if (authorized)
  5943. upd.set = BIT(NL80211_STA_FLAG_AUTHORIZED);
  5944. NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
  5945. return send_and_recv_msgs(drv, msg, NULL, NULL);
  5946. nla_put_failure:
  5947. nlmsg_free(msg);
  5948. return -ENOBUFS;
  5949. }
  5950. /* Set kernel driver on given frequency (MHz) */
  5951. static int i802_set_freq(void *priv, struct hostapd_freq_params *freq)
  5952. {
  5953. struct i802_bss *bss = priv;
  5954. return wpa_driver_nl80211_set_freq(bss, freq->freq, freq->ht_enabled,
  5955. freq->sec_channel_offset);
  5956. }
  5957. #if defined(HOSTAPD) || defined(CONFIG_AP)
  5958. static inline int min_int(int a, int b)
  5959. {
  5960. if (a < b)
  5961. return a;
  5962. return b;
  5963. }
  5964. static int get_key_handler(struct nl_msg *msg, void *arg)
  5965. {
  5966. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  5967. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  5968. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  5969. genlmsg_attrlen(gnlh, 0), NULL);
  5970. /*
  5971. * TODO: validate the key index and mac address!
  5972. * Otherwise, there's a race condition as soon as
  5973. * the kernel starts sending key notifications.
  5974. */
  5975. if (tb[NL80211_ATTR_KEY_SEQ])
  5976. memcpy(arg, nla_data(tb[NL80211_ATTR_KEY_SEQ]),
  5977. min_int(nla_len(tb[NL80211_ATTR_KEY_SEQ]), 6));
  5978. return NL_SKIP;
  5979. }
  5980. static int i802_get_seqnum(const char *iface, void *priv, const u8 *addr,
  5981. int idx, u8 *seq)
  5982. {
  5983. struct i802_bss *bss = priv;
  5984. struct wpa_driver_nl80211_data *drv = bss->drv;
  5985. struct nl_msg *msg;
  5986. msg = nlmsg_alloc();
  5987. if (!msg)
  5988. return -ENOMEM;
  5989. nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_KEY);
  5990. if (addr)
  5991. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  5992. NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, idx);
  5993. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(iface));
  5994. memset(seq, 0, 6);
  5995. return send_and_recv_msgs(drv, msg, get_key_handler, seq);
  5996. nla_put_failure:
  5997. nlmsg_free(msg);
  5998. return -ENOBUFS;
  5999. }
  6000. static int i802_set_rts(void *priv, int rts)
  6001. {
  6002. struct i802_bss *bss = priv;
  6003. struct wpa_driver_nl80211_data *drv = bss->drv;
  6004. struct nl_msg *msg;
  6005. int ret = -ENOBUFS;
  6006. u32 val;
  6007. msg = nlmsg_alloc();
  6008. if (!msg)
  6009. return -ENOMEM;
  6010. if (rts >= 2347)
  6011. val = (u32) -1;
  6012. else
  6013. val = rts;
  6014. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
  6015. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  6016. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, val);
  6017. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  6018. msg = NULL;
  6019. if (!ret)
  6020. return 0;
  6021. nla_put_failure:
  6022. nlmsg_free(msg);
  6023. wpa_printf(MSG_DEBUG, "nl80211: Failed to set RTS threshold %d: "
  6024. "%d (%s)", rts, ret, strerror(-ret));
  6025. return ret;
  6026. }
  6027. static int i802_set_frag(void *priv, int frag)
  6028. {
  6029. struct i802_bss *bss = priv;
  6030. struct wpa_driver_nl80211_data *drv = bss->drv;
  6031. struct nl_msg *msg;
  6032. int ret = -ENOBUFS;
  6033. u32 val;
  6034. msg = nlmsg_alloc();
  6035. if (!msg)
  6036. return -ENOMEM;
  6037. if (frag >= 2346)
  6038. val = (u32) -1;
  6039. else
  6040. val = frag;
  6041. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
  6042. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  6043. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD, val);
  6044. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  6045. msg = NULL;
  6046. if (!ret)
  6047. return 0;
  6048. nla_put_failure:
  6049. nlmsg_free(msg);
  6050. wpa_printf(MSG_DEBUG, "nl80211: Failed to set fragmentation threshold "
  6051. "%d: %d (%s)", frag, ret, strerror(-ret));
  6052. return ret;
  6053. }
  6054. static int i802_flush(void *priv)
  6055. {
  6056. struct i802_bss *bss = priv;
  6057. struct wpa_driver_nl80211_data *drv = bss->drv;
  6058. struct nl_msg *msg;
  6059. int res;
  6060. msg = nlmsg_alloc();
  6061. if (!msg)
  6062. return -1;
  6063. nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
  6064. /*
  6065. * XXX: FIX! this needs to flush all VLANs too
  6066. */
  6067. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
  6068. if_nametoindex(bss->ifname));
  6069. res = send_and_recv_msgs(drv, msg, NULL, NULL);
  6070. if (res) {
  6071. wpa_printf(MSG_DEBUG, "nl80211: Station flush failed: ret=%d "
  6072. "(%s)", res, strerror(-res));
  6073. }
  6074. return res;
  6075. nla_put_failure:
  6076. nlmsg_free(msg);
  6077. return -ENOBUFS;
  6078. }
  6079. static int get_sta_handler(struct nl_msg *msg, void *arg)
  6080. {
  6081. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  6082. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  6083. struct hostap_sta_driver_data *data = arg;
  6084. struct nlattr *stats[NL80211_STA_INFO_MAX + 1];
  6085. static struct nla_policy stats_policy[NL80211_STA_INFO_MAX + 1] = {
  6086. [NL80211_STA_INFO_INACTIVE_TIME] = { .type = NLA_U32 },
  6087. [NL80211_STA_INFO_RX_BYTES] = { .type = NLA_U32 },
  6088. [NL80211_STA_INFO_TX_BYTES] = { .type = NLA_U32 },
  6089. [NL80211_STA_INFO_RX_PACKETS] = { .type = NLA_U32 },
  6090. [NL80211_STA_INFO_TX_PACKETS] = { .type = NLA_U32 },
  6091. };
  6092. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  6093. genlmsg_attrlen(gnlh, 0), NULL);
  6094. /*
  6095. * TODO: validate the interface and mac address!
  6096. * Otherwise, there's a race condition as soon as
  6097. * the kernel starts sending station notifications.
  6098. */
  6099. if (!tb[NL80211_ATTR_STA_INFO]) {
  6100. wpa_printf(MSG_DEBUG, "sta stats missing!");
  6101. return NL_SKIP;
  6102. }
  6103. if (nla_parse_nested(stats, NL80211_STA_INFO_MAX,
  6104. tb[NL80211_ATTR_STA_INFO],
  6105. stats_policy)) {
  6106. wpa_printf(MSG_DEBUG, "failed to parse nested attributes!");
  6107. return NL_SKIP;
  6108. }
  6109. if (stats[NL80211_STA_INFO_INACTIVE_TIME])
  6110. data->inactive_msec =
  6111. nla_get_u32(stats[NL80211_STA_INFO_INACTIVE_TIME]);
  6112. if (stats[NL80211_STA_INFO_RX_BYTES])
  6113. data->rx_bytes = nla_get_u32(stats[NL80211_STA_INFO_RX_BYTES]);
  6114. if (stats[NL80211_STA_INFO_TX_BYTES])
  6115. data->tx_bytes = nla_get_u32(stats[NL80211_STA_INFO_TX_BYTES]);
  6116. if (stats[NL80211_STA_INFO_RX_PACKETS])
  6117. data->rx_packets =
  6118. nla_get_u32(stats[NL80211_STA_INFO_RX_PACKETS]);
  6119. if (stats[NL80211_STA_INFO_TX_PACKETS])
  6120. data->tx_packets =
  6121. nla_get_u32(stats[NL80211_STA_INFO_TX_PACKETS]);
  6122. return NL_SKIP;
  6123. }
  6124. static int i802_read_sta_data(void *priv, struct hostap_sta_driver_data *data,
  6125. const u8 *addr)
  6126. {
  6127. struct i802_bss *bss = priv;
  6128. struct wpa_driver_nl80211_data *drv = bss->drv;
  6129. struct nl_msg *msg;
  6130. os_memset(data, 0, sizeof(*data));
  6131. msg = nlmsg_alloc();
  6132. if (!msg)
  6133. return -ENOMEM;
  6134. nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
  6135. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  6136. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
  6137. return send_and_recv_msgs(drv, msg, get_sta_handler, data);
  6138. nla_put_failure:
  6139. nlmsg_free(msg);
  6140. return -ENOBUFS;
  6141. }
  6142. static int i802_set_tx_queue_params(void *priv, int queue, int aifs,
  6143. int cw_min, int cw_max, int burst_time)
  6144. {
  6145. struct i802_bss *bss = priv;
  6146. struct wpa_driver_nl80211_data *drv = bss->drv;
  6147. struct nl_msg *msg;
  6148. struct nlattr *txq, *params;
  6149. msg = nlmsg_alloc();
  6150. if (!msg)
  6151. return -1;
  6152. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
  6153. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
  6154. txq = nla_nest_start(msg, NL80211_ATTR_WIPHY_TXQ_PARAMS);
  6155. if (!txq)
  6156. goto nla_put_failure;
  6157. /* We are only sending parameters for a single TXQ at a time */
  6158. params = nla_nest_start(msg, 1);
  6159. if (!params)
  6160. goto nla_put_failure;
  6161. switch (queue) {
  6162. case 0:
  6163. NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VO);
  6164. break;
  6165. case 1:
  6166. NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VI);
  6167. break;
  6168. case 2:
  6169. NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BE);
  6170. break;
  6171. case 3:
  6172. NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BK);
  6173. break;
  6174. }
  6175. /* Burst time is configured in units of 0.1 msec and TXOP parameter in
  6176. * 32 usec, so need to convert the value here. */
  6177. NLA_PUT_U16(msg, NL80211_TXQ_ATTR_TXOP, (burst_time * 100 + 16) / 32);
  6178. NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMIN, cw_min);
  6179. NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMAX, cw_max);
  6180. NLA_PUT_U8(msg, NL80211_TXQ_ATTR_AIFS, aifs);
  6181. nla_nest_end(msg, params);
  6182. nla_nest_end(msg, txq);
  6183. if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
  6184. return 0;
  6185. msg = NULL;
  6186. nla_put_failure:
  6187. nlmsg_free(msg);
  6188. return -1;
  6189. }
  6190. static int i802_set_sta_vlan(void *priv, const u8 *addr,
  6191. const char *ifname, int vlan_id)
  6192. {
  6193. struct i802_bss *bss = priv;
  6194. struct wpa_driver_nl80211_data *drv = bss->drv;
  6195. struct nl_msg *msg;
  6196. int ret = -ENOBUFS;
  6197. msg = nlmsg_alloc();
  6198. if (!msg)
  6199. return -ENOMEM;
  6200. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
  6201. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
  6202. if_nametoindex(bss->ifname));
  6203. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  6204. NLA_PUT_U32(msg, NL80211_ATTR_STA_VLAN,
  6205. if_nametoindex(ifname));
  6206. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  6207. msg = NULL;
  6208. if (ret < 0) {
  6209. wpa_printf(MSG_ERROR, "nl80211: NL80211_ATTR_STA_VLAN (addr="
  6210. MACSTR " ifname=%s vlan_id=%d) failed: %d (%s)",
  6211. MAC2STR(addr), ifname, vlan_id, ret,
  6212. strerror(-ret));
  6213. }
  6214. nla_put_failure:
  6215. nlmsg_free(msg);
  6216. return ret;
  6217. }
  6218. static int i802_get_inact_sec(void *priv, const u8 *addr)
  6219. {
  6220. struct hostap_sta_driver_data data;
  6221. int ret;
  6222. data.inactive_msec = (unsigned long) -1;
  6223. ret = i802_read_sta_data(priv, &data, addr);
  6224. if (ret || data.inactive_msec == (unsigned long) -1)
  6225. return -1;
  6226. return data.inactive_msec / 1000;
  6227. }
  6228. static int i802_sta_clear_stats(void *priv, const u8 *addr)
  6229. {
  6230. #if 0
  6231. /* TODO */
  6232. #endif
  6233. return 0;
  6234. }
  6235. static int i802_sta_deauth(void *priv, const u8 *own_addr, const u8 *addr,
  6236. int reason)
  6237. {
  6238. struct i802_bss *bss = priv;
  6239. struct wpa_driver_nl80211_data *drv = bss->drv;
  6240. struct ieee80211_mgmt mgmt;
  6241. if (drv->device_ap_sme)
  6242. return wpa_driver_nl80211_sta_remove(bss, addr);
  6243. memset(&mgmt, 0, sizeof(mgmt));
  6244. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  6245. WLAN_FC_STYPE_DEAUTH);
  6246. memcpy(mgmt.da, addr, ETH_ALEN);
  6247. memcpy(mgmt.sa, own_addr, ETH_ALEN);
  6248. memcpy(mgmt.bssid, own_addr, ETH_ALEN);
  6249. mgmt.u.deauth.reason_code = host_to_le16(reason);
  6250. return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
  6251. IEEE80211_HDRLEN +
  6252. sizeof(mgmt.u.deauth), 0);
  6253. }
  6254. static int i802_sta_disassoc(void *priv, const u8 *own_addr, const u8 *addr,
  6255. int reason)
  6256. {
  6257. struct i802_bss *bss = priv;
  6258. struct wpa_driver_nl80211_data *drv = bss->drv;
  6259. struct ieee80211_mgmt mgmt;
  6260. if (drv->device_ap_sme)
  6261. return wpa_driver_nl80211_sta_remove(bss, addr);
  6262. memset(&mgmt, 0, sizeof(mgmt));
  6263. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  6264. WLAN_FC_STYPE_DISASSOC);
  6265. memcpy(mgmt.da, addr, ETH_ALEN);
  6266. memcpy(mgmt.sa, own_addr, ETH_ALEN);
  6267. memcpy(mgmt.bssid, own_addr, ETH_ALEN);
  6268. mgmt.u.disassoc.reason_code = host_to_le16(reason);
  6269. return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
  6270. IEEE80211_HDRLEN +
  6271. sizeof(mgmt.u.disassoc), 0);
  6272. }
  6273. #endif /* HOSTAPD || CONFIG_AP */
  6274. #ifdef HOSTAPD
  6275. static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
  6276. {
  6277. int i;
  6278. int *old;
  6279. wpa_printf(MSG_DEBUG, "nl80211: Add own interface ifindex %d",
  6280. ifidx);
  6281. for (i = 0; i < drv->num_if_indices; i++) {
  6282. if (drv->if_indices[i] == 0) {
  6283. drv->if_indices[i] = ifidx;
  6284. return;
  6285. }
  6286. }
  6287. if (drv->if_indices != drv->default_if_indices)
  6288. old = drv->if_indices;
  6289. else
  6290. old = NULL;
  6291. drv->if_indices = os_realloc(old,
  6292. sizeof(int) * (drv->num_if_indices + 1));
  6293. if (!drv->if_indices) {
  6294. if (!old)
  6295. drv->if_indices = drv->default_if_indices;
  6296. else
  6297. drv->if_indices = old;
  6298. wpa_printf(MSG_ERROR, "Failed to reallocate memory for "
  6299. "interfaces");
  6300. wpa_printf(MSG_ERROR, "Ignoring EAPOL on interface %d", ifidx);
  6301. return;
  6302. } else if (!old)
  6303. os_memcpy(drv->if_indices, drv->default_if_indices,
  6304. sizeof(drv->default_if_indices));
  6305. drv->if_indices[drv->num_if_indices] = ifidx;
  6306. drv->num_if_indices++;
  6307. }
  6308. static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
  6309. {
  6310. int i;
  6311. for (i = 0; i < drv->num_if_indices; i++) {
  6312. if (drv->if_indices[i] == ifidx) {
  6313. drv->if_indices[i] = 0;
  6314. break;
  6315. }
  6316. }
  6317. }
  6318. static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
  6319. {
  6320. int i;
  6321. for (i = 0; i < drv->num_if_indices; i++)
  6322. if (drv->if_indices[i] == ifidx)
  6323. return 1;
  6324. return 0;
  6325. }
  6326. static int i802_set_wds_sta(void *priv, const u8 *addr, int aid, int val,
  6327. const char *bridge_ifname)
  6328. {
  6329. struct i802_bss *bss = priv;
  6330. struct wpa_driver_nl80211_data *drv = bss->drv;
  6331. char name[IFNAMSIZ + 1];
  6332. os_snprintf(name, sizeof(name), "%s.sta%d", bss->ifname, aid);
  6333. wpa_printf(MSG_DEBUG, "nl80211: Set WDS STA addr=" MACSTR
  6334. " aid=%d val=%d name=%s", MAC2STR(addr), aid, val, name);
  6335. if (val) {
  6336. if (!if_nametoindex(name)) {
  6337. if (nl80211_create_iface(drv, name,
  6338. NL80211_IFTYPE_AP_VLAN,
  6339. NULL, 1) < 0)
  6340. return -1;
  6341. if (bridge_ifname &&
  6342. linux_br_add_if(drv->global->ioctl_sock,
  6343. bridge_ifname, name) < 0)
  6344. return -1;
  6345. }
  6346. linux_set_iface_flags(drv->global->ioctl_sock, name, 1);
  6347. return i802_set_sta_vlan(priv, addr, name, 0);
  6348. } else {
  6349. i802_set_sta_vlan(priv, addr, bss->ifname, 0);
  6350. return wpa_driver_nl80211_if_remove(priv, WPA_IF_AP_VLAN,
  6351. name);
  6352. }
  6353. }
  6354. static void handle_eapol(int sock, void *eloop_ctx, void *sock_ctx)
  6355. {
  6356. struct wpa_driver_nl80211_data *drv = eloop_ctx;
  6357. struct sockaddr_ll lladdr;
  6358. unsigned char buf[3000];
  6359. int len;
  6360. socklen_t fromlen = sizeof(lladdr);
  6361. len = recvfrom(sock, buf, sizeof(buf), 0,
  6362. (struct sockaddr *)&lladdr, &fromlen);
  6363. if (len < 0) {
  6364. perror("recv");
  6365. return;
  6366. }
  6367. if (have_ifidx(drv, lladdr.sll_ifindex))
  6368. drv_event_eapol_rx(drv->ctx, lladdr.sll_addr, buf, len);
  6369. }
  6370. static int i802_check_bridge(struct wpa_driver_nl80211_data *drv,
  6371. struct i802_bss *bss,
  6372. const char *brname, const char *ifname)
  6373. {
  6374. int ifindex;
  6375. char in_br[IFNAMSIZ];
  6376. os_strlcpy(bss->brname, brname, IFNAMSIZ);
  6377. ifindex = if_nametoindex(brname);
  6378. if (ifindex == 0) {
  6379. /*
  6380. * Bridge was configured, but the bridge device does
  6381. * not exist. Try to add it now.
  6382. */
  6383. if (linux_br_add(drv->global->ioctl_sock, brname) < 0) {
  6384. wpa_printf(MSG_ERROR, "nl80211: Failed to add the "
  6385. "bridge interface %s: %s",
  6386. brname, strerror(errno));
  6387. return -1;
  6388. }
  6389. bss->added_bridge = 1;
  6390. add_ifidx(drv, if_nametoindex(brname));
  6391. }
  6392. if (linux_br_get(in_br, ifname) == 0) {
  6393. if (os_strcmp(in_br, brname) == 0)
  6394. return 0; /* already in the bridge */
  6395. wpa_printf(MSG_DEBUG, "nl80211: Removing interface %s from "
  6396. "bridge %s", ifname, in_br);
  6397. if (linux_br_del_if(drv->global->ioctl_sock, in_br, ifname) <
  6398. 0) {
  6399. wpa_printf(MSG_ERROR, "nl80211: Failed to "
  6400. "remove interface %s from bridge "
  6401. "%s: %s",
  6402. ifname, brname, strerror(errno));
  6403. return -1;
  6404. }
  6405. }
  6406. wpa_printf(MSG_DEBUG, "nl80211: Adding interface %s into bridge %s",
  6407. ifname, brname);
  6408. if (linux_br_add_if(drv->global->ioctl_sock, brname, ifname) < 0) {
  6409. wpa_printf(MSG_ERROR, "nl80211: Failed to add interface %s "
  6410. "into bridge %s: %s",
  6411. ifname, brname, strerror(errno));
  6412. return -1;
  6413. }
  6414. bss->added_if_into_bridge = 1;
  6415. return 0;
  6416. }
  6417. static void *i802_init(struct hostapd_data *hapd,
  6418. struct wpa_init_params *params)
  6419. {
  6420. struct wpa_driver_nl80211_data *drv;
  6421. struct i802_bss *bss;
  6422. size_t i;
  6423. char brname[IFNAMSIZ];
  6424. int ifindex, br_ifindex;
  6425. int br_added = 0;
  6426. bss = wpa_driver_nl80211_init(hapd, params->ifname,
  6427. params->global_priv);
  6428. if (bss == NULL)
  6429. return NULL;
  6430. drv = bss->drv;
  6431. drv->nlmode = NL80211_IFTYPE_AP;
  6432. drv->eapol_sock = -1;
  6433. if (linux_br_get(brname, params->ifname) == 0) {
  6434. wpa_printf(MSG_DEBUG, "nl80211: Interface %s is in bridge %s",
  6435. params->ifname, brname);
  6436. br_ifindex = if_nametoindex(brname);
  6437. } else {
  6438. brname[0] = '\0';
  6439. br_ifindex = 0;
  6440. }
  6441. drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
  6442. drv->if_indices = drv->default_if_indices;
  6443. for (i = 0; i < params->num_bridge; i++) {
  6444. if (params->bridge[i]) {
  6445. ifindex = if_nametoindex(params->bridge[i]);
  6446. if (ifindex)
  6447. add_ifidx(drv, ifindex);
  6448. if (ifindex == br_ifindex)
  6449. br_added = 1;
  6450. }
  6451. }
  6452. if (!br_added && br_ifindex &&
  6453. (params->num_bridge == 0 || !params->bridge[0]))
  6454. add_ifidx(drv, br_ifindex);
  6455. /* start listening for EAPOL on the default AP interface */
  6456. add_ifidx(drv, drv->ifindex);
  6457. if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 0))
  6458. goto failed;
  6459. if (params->bssid) {
  6460. if (linux_set_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
  6461. params->bssid))
  6462. goto failed;
  6463. }
  6464. if (wpa_driver_nl80211_set_mode(bss, drv->nlmode)) {
  6465. wpa_printf(MSG_ERROR, "nl80211: Failed to set interface %s "
  6466. "into AP mode", bss->ifname);
  6467. goto failed;
  6468. }
  6469. if (params->num_bridge && params->bridge[0] &&
  6470. i802_check_bridge(drv, bss, params->bridge[0], params->ifname) < 0)
  6471. goto failed;
  6472. if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1))
  6473. goto failed;
  6474. drv->eapol_sock = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_PAE));
  6475. if (drv->eapol_sock < 0) {
  6476. perror("socket(PF_PACKET, SOCK_DGRAM, ETH_P_PAE)");
  6477. goto failed;
  6478. }
  6479. if (eloop_register_read_sock(drv->eapol_sock, handle_eapol, drv, NULL))
  6480. {
  6481. printf("Could not register read socket for eapol\n");
  6482. goto failed;
  6483. }
  6484. if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
  6485. params->own_addr))
  6486. goto failed;
  6487. memcpy(bss->addr, params->own_addr, ETH_ALEN);
  6488. return bss;
  6489. failed:
  6490. wpa_driver_nl80211_deinit(bss);
  6491. return NULL;
  6492. }
  6493. static void i802_deinit(void *priv)
  6494. {
  6495. wpa_driver_nl80211_deinit(priv);
  6496. }
  6497. #endif /* HOSTAPD */
  6498. static enum nl80211_iftype wpa_driver_nl80211_if_type(
  6499. enum wpa_driver_if_type type)
  6500. {
  6501. switch (type) {
  6502. case WPA_IF_STATION:
  6503. return NL80211_IFTYPE_STATION;
  6504. case WPA_IF_P2P_CLIENT:
  6505. case WPA_IF_P2P_GROUP:
  6506. return NL80211_IFTYPE_P2P_CLIENT;
  6507. case WPA_IF_AP_VLAN:
  6508. return NL80211_IFTYPE_AP_VLAN;
  6509. case WPA_IF_AP_BSS:
  6510. return NL80211_IFTYPE_AP;
  6511. case WPA_IF_P2P_GO:
  6512. return NL80211_IFTYPE_P2P_GO;
  6513. }
  6514. return -1;
  6515. }
  6516. #ifdef CONFIG_P2P
  6517. static int nl80211_addr_in_use(struct nl80211_global *global, const u8 *addr)
  6518. {
  6519. struct wpa_driver_nl80211_data *drv;
  6520. dl_list_for_each(drv, &global->interfaces,
  6521. struct wpa_driver_nl80211_data, list) {
  6522. if (os_memcmp(addr, drv->first_bss.addr, ETH_ALEN) == 0)
  6523. return 1;
  6524. }
  6525. return 0;
  6526. }
  6527. static int nl80211_p2p_interface_addr(struct wpa_driver_nl80211_data *drv,
  6528. u8 *new_addr)
  6529. {
  6530. unsigned int idx;
  6531. if (!drv->global)
  6532. return -1;
  6533. os_memcpy(new_addr, drv->first_bss.addr, ETH_ALEN);
  6534. for (idx = 0; idx < 64; idx++) {
  6535. new_addr[0] = drv->first_bss.addr[0] | 0x02;
  6536. new_addr[0] ^= idx << 2;
  6537. if (!nl80211_addr_in_use(drv->global, new_addr))
  6538. break;
  6539. }
  6540. if (idx == 64)
  6541. return -1;
  6542. wpa_printf(MSG_DEBUG, "nl80211: Assigned new P2P Interface Address "
  6543. MACSTR, MAC2STR(new_addr));
  6544. return 0;
  6545. }
  6546. #endif /* CONFIG_P2P */
  6547. static int wpa_driver_nl80211_if_add(void *priv, enum wpa_driver_if_type type,
  6548. const char *ifname, const u8 *addr,
  6549. void *bss_ctx, void **drv_priv,
  6550. char *force_ifname, u8 *if_addr,
  6551. const char *bridge)
  6552. {
  6553. struct i802_bss *bss = priv;
  6554. struct wpa_driver_nl80211_data *drv = bss->drv;
  6555. int ifidx;
  6556. #ifdef HOSTAPD
  6557. struct i802_bss *new_bss = NULL;
  6558. if (type == WPA_IF_AP_BSS) {
  6559. new_bss = os_zalloc(sizeof(*new_bss));
  6560. if (new_bss == NULL)
  6561. return -1;
  6562. }
  6563. #endif /* HOSTAPD */
  6564. if (addr)
  6565. os_memcpy(if_addr, addr, ETH_ALEN);
  6566. ifidx = nl80211_create_iface(drv, ifname,
  6567. wpa_driver_nl80211_if_type(type), addr,
  6568. 0);
  6569. if (ifidx < 0) {
  6570. #ifdef HOSTAPD
  6571. os_free(new_bss);
  6572. #endif /* HOSTAPD */
  6573. return -1;
  6574. }
  6575. if (!addr &&
  6576. linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
  6577. if_addr) < 0) {
  6578. nl80211_remove_iface(drv, ifidx);
  6579. return -1;
  6580. }
  6581. #ifdef CONFIG_P2P
  6582. if (!addr &&
  6583. (type == WPA_IF_P2P_CLIENT || type == WPA_IF_P2P_GROUP ||
  6584. type == WPA_IF_P2P_GO)) {
  6585. /* Enforce unique P2P Interface Address */
  6586. u8 new_addr[ETH_ALEN], own_addr[ETH_ALEN];
  6587. if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
  6588. own_addr) < 0 ||
  6589. linux_get_ifhwaddr(drv->global->ioctl_sock, ifname,
  6590. new_addr) < 0) {
  6591. nl80211_remove_iface(drv, ifidx);
  6592. return -1;
  6593. }
  6594. if (os_memcmp(own_addr, new_addr, ETH_ALEN) == 0) {
  6595. wpa_printf(MSG_DEBUG, "nl80211: Allocate new address "
  6596. "for P2P group interface");
  6597. if (nl80211_p2p_interface_addr(drv, new_addr) < 0) {
  6598. nl80211_remove_iface(drv, ifidx);
  6599. return -1;
  6600. }
  6601. if (linux_set_ifhwaddr(drv->global->ioctl_sock, ifname,
  6602. new_addr) < 0) {
  6603. nl80211_remove_iface(drv, ifidx);
  6604. return -1;
  6605. }
  6606. }
  6607. os_memcpy(if_addr, new_addr, ETH_ALEN);
  6608. }
  6609. #endif /* CONFIG_P2P */
  6610. #ifdef HOSTAPD
  6611. if (bridge &&
  6612. i802_check_bridge(drv, new_bss, bridge, ifname) < 0) {
  6613. wpa_printf(MSG_ERROR, "nl80211: Failed to add the new "
  6614. "interface %s to a bridge %s", ifname, bridge);
  6615. nl80211_remove_iface(drv, ifidx);
  6616. os_free(new_bss);
  6617. return -1;
  6618. }
  6619. if (type == WPA_IF_AP_BSS) {
  6620. if (linux_set_iface_flags(drv->global->ioctl_sock, ifname, 1))
  6621. {
  6622. nl80211_remove_iface(drv, ifidx);
  6623. os_free(new_bss);
  6624. return -1;
  6625. }
  6626. os_strlcpy(new_bss->ifname, ifname, IFNAMSIZ);
  6627. os_memcpy(new_bss->addr, if_addr, ETH_ALEN);
  6628. new_bss->ifindex = ifidx;
  6629. new_bss->drv = drv;
  6630. new_bss->next = drv->first_bss.next;
  6631. new_bss->freq = drv->first_bss.freq;
  6632. drv->first_bss.next = new_bss;
  6633. if (drv_priv)
  6634. *drv_priv = new_bss;
  6635. nl80211_init_bss(new_bss);
  6636. /* Subscribe management frames for this WPA_IF_AP_BSS */
  6637. if (nl80211_setup_ap(new_bss))
  6638. return -1;
  6639. }
  6640. #endif /* HOSTAPD */
  6641. if (drv->global)
  6642. drv->global->if_add_ifindex = ifidx;
  6643. return 0;
  6644. }
  6645. static int wpa_driver_nl80211_if_remove(void *priv,
  6646. enum wpa_driver_if_type type,
  6647. const char *ifname)
  6648. {
  6649. struct i802_bss *bss = priv;
  6650. struct wpa_driver_nl80211_data *drv = bss->drv;
  6651. int ifindex = if_nametoindex(ifname);
  6652. wpa_printf(MSG_DEBUG, "nl80211: %s(type=%d ifname=%s) ifindex=%d",
  6653. __func__, type, ifname, ifindex);
  6654. if (ifindex <= 0)
  6655. return -1;
  6656. #ifdef HOSTAPD
  6657. if (bss->added_if_into_bridge) {
  6658. if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
  6659. bss->ifname) < 0)
  6660. wpa_printf(MSG_INFO, "nl80211: Failed to remove "
  6661. "interface %s from bridge %s: %s",
  6662. bss->ifname, bss->brname, strerror(errno));
  6663. }
  6664. if (bss->added_bridge) {
  6665. if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
  6666. wpa_printf(MSG_INFO, "nl80211: Failed to remove "
  6667. "bridge %s: %s",
  6668. bss->brname, strerror(errno));
  6669. }
  6670. #endif /* HOSTAPD */
  6671. nl80211_remove_iface(drv, ifindex);
  6672. #ifdef HOSTAPD
  6673. if (type != WPA_IF_AP_BSS)
  6674. return 0;
  6675. if (bss != &drv->first_bss) {
  6676. struct i802_bss *tbss;
  6677. for (tbss = &drv->first_bss; tbss; tbss = tbss->next) {
  6678. if (tbss->next == bss) {
  6679. tbss->next = bss->next;
  6680. /* Unsubscribe management frames */
  6681. nl80211_teardown_ap(bss);
  6682. nl80211_destroy_bss(bss);
  6683. os_free(bss);
  6684. bss = NULL;
  6685. break;
  6686. }
  6687. }
  6688. if (bss)
  6689. wpa_printf(MSG_INFO, "nl80211: %s - could not find "
  6690. "BSS %p in the list", __func__, bss);
  6691. }
  6692. #endif /* HOSTAPD */
  6693. return 0;
  6694. }
  6695. static int cookie_handler(struct nl_msg *msg, void *arg)
  6696. {
  6697. struct nlattr *tb[NL80211_ATTR_MAX + 1];
  6698. struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
  6699. u64 *cookie = arg;
  6700. nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
  6701. genlmsg_attrlen(gnlh, 0), NULL);
  6702. if (tb[NL80211_ATTR_COOKIE])
  6703. *cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
  6704. return NL_SKIP;
  6705. }
  6706. static int nl80211_send_frame_cmd(struct i802_bss *bss,
  6707. unsigned int freq, unsigned int wait,
  6708. const u8 *buf, size_t buf_len,
  6709. u64 *cookie_out, int no_cck, int no_ack,
  6710. int offchanok)
  6711. {
  6712. struct wpa_driver_nl80211_data *drv = bss->drv;
  6713. struct nl_msg *msg;
  6714. u64 cookie;
  6715. int ret = -1;
  6716. msg = nlmsg_alloc();
  6717. if (!msg)
  6718. return -1;
  6719. wpa_printf(MSG_DEBUG, "nl80211: CMD_FRAME freq=%u wait=%u no_cck=%d "
  6720. "no_ack=%d offchanok=%d",
  6721. freq, wait, no_cck, no_ack, offchanok);
  6722. nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME);
  6723. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
  6724. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
  6725. if (wait)
  6726. NLA_PUT_U32(msg, NL80211_ATTR_DURATION, wait);
  6727. if (offchanok && (drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX))
  6728. NLA_PUT_FLAG(msg, NL80211_ATTR_OFFCHANNEL_TX_OK);
  6729. if (no_cck)
  6730. NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
  6731. if (no_ack)
  6732. NLA_PUT_FLAG(msg, NL80211_ATTR_DONT_WAIT_FOR_ACK);
  6733. NLA_PUT(msg, NL80211_ATTR_FRAME, buf_len, buf);
  6734. cookie = 0;
  6735. ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
  6736. msg = NULL;
  6737. if (ret) {
  6738. wpa_printf(MSG_DEBUG, "nl80211: Frame command failed: ret=%d "
  6739. "(%s) (freq=%u wait=%u)", ret, strerror(-ret),
  6740. freq, wait);
  6741. goto nla_put_failure;
  6742. }
  6743. wpa_printf(MSG_DEBUG, "nl80211: Frame TX command accepted%s; "
  6744. "cookie 0x%llx", no_ack ? " (no ACK)" : "",
  6745. (long long unsigned int) cookie);
  6746. if (cookie_out)
  6747. *cookie_out = no_ack ? (u64) -1 : cookie;
  6748. nla_put_failure:
  6749. nlmsg_free(msg);
  6750. return ret;
  6751. }
  6752. static int wpa_driver_nl80211_send_action(void *priv, unsigned int freq,
  6753. unsigned int wait_time,
  6754. const u8 *dst, const u8 *src,
  6755. const u8 *bssid,
  6756. const u8 *data, size_t data_len,
  6757. int no_cck)
  6758. {
  6759. struct i802_bss *bss = priv;
  6760. struct wpa_driver_nl80211_data *drv = bss->drv;
  6761. int ret = -1;
  6762. u8 *buf;
  6763. struct ieee80211_hdr *hdr;
  6764. wpa_printf(MSG_DEBUG, "nl80211: Send Action frame (ifindex=%d, "
  6765. "freq=%u MHz wait=%d ms no_cck=%d)",
  6766. drv->ifindex, freq, wait_time, no_cck);
  6767. buf = os_zalloc(24 + data_len);
  6768. if (buf == NULL)
  6769. return ret;
  6770. os_memcpy(buf + 24, data, data_len);
  6771. hdr = (struct ieee80211_hdr *) buf;
  6772. hdr->frame_control =
  6773. IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_ACTION);
  6774. os_memcpy(hdr->addr1, dst, ETH_ALEN);
  6775. os_memcpy(hdr->addr2, src, ETH_ALEN);
  6776. os_memcpy(hdr->addr3, bssid, ETH_ALEN);
  6777. if (is_ap_interface(drv->nlmode))
  6778. ret = wpa_driver_nl80211_send_mlme_freq(priv, buf,
  6779. 24 + data_len,
  6780. 0, freq, no_cck, 1,
  6781. wait_time);
  6782. else
  6783. ret = nl80211_send_frame_cmd(bss, freq, wait_time, buf,
  6784. 24 + data_len,
  6785. &drv->send_action_cookie,
  6786. no_cck, 0, 1);
  6787. os_free(buf);
  6788. return ret;
  6789. }
  6790. static void wpa_driver_nl80211_send_action_cancel_wait(void *priv)
  6791. {
  6792. struct i802_bss *bss = priv;
  6793. struct wpa_driver_nl80211_data *drv = bss->drv;
  6794. struct nl_msg *msg;
  6795. int ret;
  6796. msg = nlmsg_alloc();
  6797. if (!msg)
  6798. return;
  6799. nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME_WAIT_CANCEL);
  6800. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  6801. NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->send_action_cookie);
  6802. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  6803. msg = NULL;
  6804. if (ret)
  6805. wpa_printf(MSG_DEBUG, "nl80211: wait cancel failed: ret=%d "
  6806. "(%s)", ret, strerror(-ret));
  6807. nla_put_failure:
  6808. nlmsg_free(msg);
  6809. }
  6810. static int wpa_driver_nl80211_remain_on_channel(void *priv, unsigned int freq,
  6811. unsigned int duration)
  6812. {
  6813. struct i802_bss *bss = priv;
  6814. struct wpa_driver_nl80211_data *drv = bss->drv;
  6815. struct nl_msg *msg;
  6816. int ret;
  6817. u64 cookie;
  6818. msg = nlmsg_alloc();
  6819. if (!msg)
  6820. return -1;
  6821. nl80211_cmd(drv, msg, 0, NL80211_CMD_REMAIN_ON_CHANNEL);
  6822. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  6823. NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
  6824. NLA_PUT_U32(msg, NL80211_ATTR_DURATION, duration);
  6825. cookie = 0;
  6826. ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
  6827. msg = NULL;
  6828. if (ret == 0) {
  6829. wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel cookie "
  6830. "0x%llx for freq=%u MHz duration=%u",
  6831. (long long unsigned int) cookie, freq, duration);
  6832. drv->remain_on_chan_cookie = cookie;
  6833. drv->pending_remain_on_chan = 1;
  6834. return 0;
  6835. }
  6836. wpa_printf(MSG_DEBUG, "nl80211: Failed to request remain-on-channel "
  6837. "(freq=%d duration=%u): %d (%s)",
  6838. freq, duration, ret, strerror(-ret));
  6839. nla_put_failure:
  6840. nlmsg_free(msg);
  6841. return -1;
  6842. }
  6843. static int wpa_driver_nl80211_cancel_remain_on_channel(void *priv)
  6844. {
  6845. struct i802_bss *bss = priv;
  6846. struct wpa_driver_nl80211_data *drv = bss->drv;
  6847. struct nl_msg *msg;
  6848. int ret;
  6849. if (!drv->pending_remain_on_chan) {
  6850. wpa_printf(MSG_DEBUG, "nl80211: No pending remain-on-channel "
  6851. "to cancel");
  6852. return -1;
  6853. }
  6854. wpa_printf(MSG_DEBUG, "nl80211: Cancel remain-on-channel with cookie "
  6855. "0x%llx",
  6856. (long long unsigned int) drv->remain_on_chan_cookie);
  6857. msg = nlmsg_alloc();
  6858. if (!msg)
  6859. return -1;
  6860. nl80211_cmd(drv, msg, 0, NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL);
  6861. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  6862. NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->remain_on_chan_cookie);
  6863. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  6864. msg = NULL;
  6865. if (ret == 0)
  6866. return 0;
  6867. wpa_printf(MSG_DEBUG, "nl80211: Failed to cancel remain-on-channel: "
  6868. "%d (%s)", ret, strerror(-ret));
  6869. nla_put_failure:
  6870. nlmsg_free(msg);
  6871. return -1;
  6872. }
  6873. static int wpa_driver_nl80211_probe_req_report(void *priv, int report)
  6874. {
  6875. struct i802_bss *bss = priv;
  6876. struct wpa_driver_nl80211_data *drv = bss->drv;
  6877. if (!report) {
  6878. if (bss->nl_preq && drv->device_ap_sme &&
  6879. is_ap_interface(drv->nlmode)) {
  6880. /*
  6881. * Do not disable Probe Request reporting that was
  6882. * enabled in nl80211_setup_ap().
  6883. */
  6884. wpa_printf(MSG_DEBUG, "nl80211: Skip disabling of "
  6885. "Probe Request reporting nl_preq=%p while "
  6886. "in AP mode", bss->nl_preq);
  6887. } else if (bss->nl_preq) {
  6888. wpa_printf(MSG_DEBUG, "nl80211: Disable Probe Request "
  6889. "reporting nl_preq=%p", bss->nl_preq);
  6890. eloop_unregister_read_sock(
  6891. nl_socket_get_fd(bss->nl_preq));
  6892. nl_destroy_handles(&bss->nl_preq);
  6893. }
  6894. return 0;
  6895. }
  6896. if (bss->nl_preq) {
  6897. wpa_printf(MSG_DEBUG, "nl80211: Probe Request reporting "
  6898. "already on! nl_preq=%p", bss->nl_preq);
  6899. return 0;
  6900. }
  6901. bss->nl_preq = nl_create_handle(drv->global->nl_cb, "preq");
  6902. if (bss->nl_preq == NULL)
  6903. return -1;
  6904. wpa_printf(MSG_DEBUG, "nl80211: Enable Probe Request "
  6905. "reporting nl_preq=%p", bss->nl_preq);
  6906. if (nl80211_register_frame(bss, bss->nl_preq,
  6907. (WLAN_FC_TYPE_MGMT << 2) |
  6908. (WLAN_FC_STYPE_PROBE_REQ << 4),
  6909. NULL, 0) < 0)
  6910. goto out_err;
  6911. eloop_register_read_sock(nl_socket_get_fd(bss->nl_preq),
  6912. wpa_driver_nl80211_event_receive, bss->nl_cb,
  6913. bss->nl_preq);
  6914. return 0;
  6915. out_err:
  6916. nl_destroy_handles(&bss->nl_preq);
  6917. return -1;
  6918. }
  6919. static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
  6920. int ifindex, int disabled)
  6921. {
  6922. struct nl_msg *msg;
  6923. struct nlattr *bands, *band;
  6924. int ret;
  6925. msg = nlmsg_alloc();
  6926. if (!msg)
  6927. return -1;
  6928. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_TX_BITRATE_MASK);
  6929. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
  6930. bands = nla_nest_start(msg, NL80211_ATTR_TX_RATES);
  6931. if (!bands)
  6932. goto nla_put_failure;
  6933. /*
  6934. * Disable 2 GHz rates 1, 2, 5.5, 11 Mbps by masking out everything
  6935. * else apart from 6, 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS
  6936. * rates. All 5 GHz rates are left enabled.
  6937. */
  6938. band = nla_nest_start(msg, NL80211_BAND_2GHZ);
  6939. if (!band)
  6940. goto nla_put_failure;
  6941. if (disabled) {
  6942. NLA_PUT(msg, NL80211_TXRATE_LEGACY, 8,
  6943. "\x0c\x12\x18\x24\x30\x48\x60\x6c");
  6944. }
  6945. nla_nest_end(msg, band);
  6946. nla_nest_end(msg, bands);
  6947. ret = send_and_recv_msgs(drv, msg, NULL, NULL);
  6948. msg = NULL;
  6949. if (ret) {
  6950. wpa_printf(MSG_DEBUG, "nl80211: Set TX rates failed: ret=%d "
  6951. "(%s)", ret, strerror(-ret));
  6952. }
  6953. return ret;
  6954. nla_put_failure:
  6955. nlmsg_free(msg);
  6956. return -1;
  6957. }
  6958. static int wpa_driver_nl80211_deinit_ap(void *priv)
  6959. {
  6960. struct i802_bss *bss = priv;
  6961. struct wpa_driver_nl80211_data *drv = bss->drv;
  6962. if (!is_ap_interface(drv->nlmode))
  6963. return -1;
  6964. wpa_driver_nl80211_del_beacon(drv);
  6965. return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
  6966. }
  6967. static int wpa_driver_nl80211_deinit_p2p_cli(void *priv)
  6968. {
  6969. struct i802_bss *bss = priv;
  6970. struct wpa_driver_nl80211_data *drv = bss->drv;
  6971. if (drv->nlmode != NL80211_IFTYPE_P2P_CLIENT)
  6972. return -1;
  6973. return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
  6974. }
  6975. static void wpa_driver_nl80211_resume(void *priv)
  6976. {
  6977. struct i802_bss *bss = priv;
  6978. struct wpa_driver_nl80211_data *drv = bss->drv;
  6979. if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1)) {
  6980. wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface up on "
  6981. "resume event");
  6982. }
  6983. }
  6984. static int nl80211_send_ft_action(void *priv, u8 action, const u8 *target_ap,
  6985. const u8 *ies, size_t ies_len)
  6986. {
  6987. struct i802_bss *bss = priv;
  6988. struct wpa_driver_nl80211_data *drv = bss->drv;
  6989. int ret;
  6990. u8 *data, *pos;
  6991. size_t data_len;
  6992. const u8 *own_addr = bss->addr;
  6993. if (action != 1) {
  6994. wpa_printf(MSG_ERROR, "nl80211: Unsupported send_ft_action "
  6995. "action %d", action);
  6996. return -1;
  6997. }
  6998. /*
  6999. * Action frame payload:
  7000. * Category[1] = 6 (Fast BSS Transition)
  7001. * Action[1] = 1 (Fast BSS Transition Request)
  7002. * STA Address
  7003. * Target AP Address
  7004. * FT IEs
  7005. */
  7006. data_len = 2 + 2 * ETH_ALEN + ies_len;
  7007. data = os_malloc(data_len);
  7008. if (data == NULL)
  7009. return -1;
  7010. pos = data;
  7011. *pos++ = 0x06; /* FT Action category */
  7012. *pos++ = action;
  7013. os_memcpy(pos, own_addr, ETH_ALEN);
  7014. pos += ETH_ALEN;
  7015. os_memcpy(pos, target_ap, ETH_ALEN);
  7016. pos += ETH_ALEN;
  7017. os_memcpy(pos, ies, ies_len);
  7018. ret = wpa_driver_nl80211_send_action(bss, drv->assoc_freq, 0,
  7019. drv->bssid, own_addr, drv->bssid,
  7020. data, data_len, 0);
  7021. os_free(data);
  7022. return ret;
  7023. }
  7024. static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis)
  7025. {
  7026. struct i802_bss *bss = priv;
  7027. struct wpa_driver_nl80211_data *drv = bss->drv;
  7028. struct nl_msg *msg, *cqm = NULL;
  7029. wpa_printf(MSG_DEBUG, "nl80211: Signal monitor threshold=%d "
  7030. "hysteresis=%d", threshold, hysteresis);
  7031. msg = nlmsg_alloc();
  7032. if (!msg)
  7033. return -1;
  7034. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_CQM);
  7035. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
  7036. cqm = nlmsg_alloc();
  7037. if (cqm == NULL)
  7038. return -1;
  7039. NLA_PUT_U32(cqm, NL80211_ATTR_CQM_RSSI_THOLD, threshold);
  7040. NLA_PUT_U32(cqm, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);
  7041. nla_put_nested(msg, NL80211_ATTR_CQM, cqm);
  7042. if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
  7043. return 0;
  7044. msg = NULL;
  7045. nla_put_failure:
  7046. nlmsg_free(cqm);
  7047. nlmsg_free(msg);
  7048. return -1;
  7049. }
  7050. static int nl80211_signal_poll(void *priv, struct wpa_signal_info *si)
  7051. {
  7052. struct i802_bss *bss = priv;
  7053. struct wpa_driver_nl80211_data *drv = bss->drv;
  7054. int res;
  7055. os_memset(si, 0, sizeof(*si));
  7056. res = nl80211_get_link_signal(drv, si);
  7057. if (res != 0)
  7058. return res;
  7059. return nl80211_get_link_noise(drv, si);
  7060. }
  7061. static int wpa_driver_nl80211_shared_freq(void *priv)
  7062. {
  7063. struct i802_bss *bss = priv;
  7064. struct wpa_driver_nl80211_data *drv = bss->drv;
  7065. struct wpa_driver_nl80211_data *driver;
  7066. int freq = 0;
  7067. /*
  7068. * If the same PHY is in connected state with some other interface,
  7069. * then retrieve the assoc freq.
  7070. */
  7071. wpa_printf(MSG_DEBUG, "nl80211: Get shared freq for PHY %s",
  7072. drv->phyname);
  7073. dl_list_for_each(driver, &drv->global->interfaces,
  7074. struct wpa_driver_nl80211_data, list) {
  7075. if (drv == driver ||
  7076. os_strcmp(drv->phyname, driver->phyname) != 0 ||
  7077. !driver->associated)
  7078. continue;
  7079. wpa_printf(MSG_DEBUG, "nl80211: Found a match for PHY %s - %s "
  7080. MACSTR,
  7081. driver->phyname, driver->first_bss.ifname,
  7082. MAC2STR(driver->first_bss.addr));
  7083. if (is_ap_interface(driver->nlmode))
  7084. freq = driver->first_bss.freq;
  7085. else
  7086. freq = nl80211_get_assoc_freq(driver);
  7087. wpa_printf(MSG_DEBUG, "nl80211: Shared freq for PHY %s: %d",
  7088. drv->phyname, freq);
  7089. }
  7090. if (!freq)
  7091. wpa_printf(MSG_DEBUG, "nl80211: No shared interface for "
  7092. "PHY (%s) in associated state", drv->phyname);
  7093. return freq;
  7094. }
  7095. static int nl80211_send_frame(void *priv, const u8 *data, size_t data_len,
  7096. int encrypt)
  7097. {
  7098. struct i802_bss *bss = priv;
  7099. return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt, 0,
  7100. 0, 0, 0, 0);
  7101. }
  7102. static int nl80211_set_param(void *priv, const char *param)
  7103. {
  7104. wpa_printf(MSG_DEBUG, "nl80211: driver param='%s'", param);
  7105. if (param == NULL)
  7106. return 0;
  7107. #ifdef CONFIG_P2P
  7108. if (os_strstr(param, "use_p2p_group_interface=1")) {
  7109. struct i802_bss *bss = priv;
  7110. struct wpa_driver_nl80211_data *drv = bss->drv;
  7111. wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
  7112. "interface");
  7113. drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
  7114. drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
  7115. }
  7116. #endif /* CONFIG_P2P */
  7117. return 0;
  7118. }
  7119. static void * nl80211_global_init(void)
  7120. {
  7121. struct nl80211_global *global;
  7122. struct netlink_config *cfg;
  7123. global = os_zalloc(sizeof(*global));
  7124. if (global == NULL)
  7125. return NULL;
  7126. global->ioctl_sock = -1;
  7127. dl_list_init(&global->interfaces);
  7128. global->if_add_ifindex = -1;
  7129. cfg = os_zalloc(sizeof(*cfg));
  7130. if (cfg == NULL)
  7131. goto err;
  7132. cfg->ctx = global;
  7133. cfg->newlink_cb = wpa_driver_nl80211_event_rtm_newlink;
  7134. cfg->dellink_cb = wpa_driver_nl80211_event_rtm_dellink;
  7135. global->netlink = netlink_init(cfg);
  7136. if (global->netlink == NULL) {
  7137. os_free(cfg);
  7138. goto err;
  7139. }
  7140. if (wpa_driver_nl80211_init_nl_global(global) < 0)
  7141. goto err;
  7142. global->ioctl_sock = socket(PF_INET, SOCK_DGRAM, 0);
  7143. if (global->ioctl_sock < 0) {
  7144. perror("socket(PF_INET,SOCK_DGRAM)");
  7145. goto err;
  7146. }
  7147. return global;
  7148. err:
  7149. nl80211_global_deinit(global);
  7150. return NULL;
  7151. }
  7152. static void nl80211_global_deinit(void *priv)
  7153. {
  7154. struct nl80211_global *global = priv;
  7155. if (global == NULL)
  7156. return;
  7157. if (!dl_list_empty(&global->interfaces)) {
  7158. wpa_printf(MSG_ERROR, "nl80211: %u interface(s) remain at "
  7159. "nl80211_global_deinit",
  7160. dl_list_len(&global->interfaces));
  7161. }
  7162. if (global->netlink)
  7163. netlink_deinit(global->netlink);
  7164. nl_destroy_handles(&global->nl);
  7165. if (global->nl_event) {
  7166. eloop_unregister_read_sock(
  7167. nl_socket_get_fd(global->nl_event));
  7168. nl_destroy_handles(&global->nl_event);
  7169. }
  7170. nl_cb_put(global->nl_cb);
  7171. if (global->ioctl_sock >= 0)
  7172. close(global->ioctl_sock);
  7173. os_free(global);
  7174. }
  7175. static const char * nl80211_get_radio_name(void *priv)
  7176. {
  7177. struct i802_bss *bss = priv;
  7178. struct wpa_driver_nl80211_data *drv = bss->drv;
  7179. return drv->phyname;
  7180. }
  7181. static int nl80211_pmkid(struct i802_bss *bss, int cmd, const u8 *bssid,
  7182. const u8 *pmkid)
  7183. {
  7184. struct nl_msg *msg;
  7185. msg = nlmsg_alloc();
  7186. if (!msg)
  7187. return -ENOMEM;
  7188. nl80211_cmd(bss->drv, msg, 0, cmd);
  7189. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
  7190. if (pmkid)
  7191. NLA_PUT(msg, NL80211_ATTR_PMKID, 16, pmkid);
  7192. if (bssid)
  7193. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid);
  7194. return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
  7195. nla_put_failure:
  7196. nlmsg_free(msg);
  7197. return -ENOBUFS;
  7198. }
  7199. static int nl80211_add_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
  7200. {
  7201. struct i802_bss *bss = priv;
  7202. wpa_printf(MSG_DEBUG, "nl80211: Add PMKID for " MACSTR, MAC2STR(bssid));
  7203. return nl80211_pmkid(bss, NL80211_CMD_SET_PMKSA, bssid, pmkid);
  7204. }
  7205. static int nl80211_remove_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
  7206. {
  7207. struct i802_bss *bss = priv;
  7208. wpa_printf(MSG_DEBUG, "nl80211: Delete PMKID for " MACSTR,
  7209. MAC2STR(bssid));
  7210. return nl80211_pmkid(bss, NL80211_CMD_DEL_PMKSA, bssid, pmkid);
  7211. }
  7212. static int nl80211_flush_pmkid(void *priv)
  7213. {
  7214. struct i802_bss *bss = priv;
  7215. wpa_printf(MSG_DEBUG, "nl80211: Flush PMKIDs");
  7216. return nl80211_pmkid(bss, NL80211_CMD_FLUSH_PMKSA, NULL, NULL);
  7217. }
  7218. static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck,
  7219. const u8 *replay_ctr)
  7220. {
  7221. struct i802_bss *bss = priv;
  7222. struct wpa_driver_nl80211_data *drv = bss->drv;
  7223. struct nlattr *replay_nested;
  7224. struct nl_msg *msg;
  7225. msg = nlmsg_alloc();
  7226. if (!msg)
  7227. return;
  7228. nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
  7229. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
  7230. replay_nested = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
  7231. if (!replay_nested)
  7232. goto nla_put_failure;
  7233. NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);
  7234. NLA_PUT(msg, NL80211_REKEY_DATA_KCK, NL80211_KCK_LEN, kck);
  7235. NLA_PUT(msg, NL80211_REKEY_DATA_REPLAY_CTR, NL80211_REPLAY_CTR_LEN,
  7236. replay_ctr);
  7237. nla_nest_end(msg, replay_nested);
  7238. send_and_recv_msgs(drv, msg, NULL, NULL);
  7239. return;
  7240. nla_put_failure:
  7241. nlmsg_free(msg);
  7242. }
  7243. static void nl80211_send_null_frame(struct i802_bss *bss, const u8 *own_addr,
  7244. const u8 *addr, int qos)
  7245. {
  7246. /* send data frame to poll STA and check whether
  7247. * this frame is ACKed */
  7248. struct {
  7249. struct ieee80211_hdr hdr;
  7250. u16 qos_ctl;
  7251. } STRUCT_PACKED nulldata;
  7252. size_t size;
  7253. /* Send data frame to poll STA and check whether this frame is ACKed */
  7254. os_memset(&nulldata, 0, sizeof(nulldata));
  7255. if (qos) {
  7256. nulldata.hdr.frame_control =
  7257. IEEE80211_FC(WLAN_FC_TYPE_DATA,
  7258. WLAN_FC_STYPE_QOS_NULL);
  7259. size = sizeof(nulldata);
  7260. } else {
  7261. nulldata.hdr.frame_control =
  7262. IEEE80211_FC(WLAN_FC_TYPE_DATA,
  7263. WLAN_FC_STYPE_NULLFUNC);
  7264. size = sizeof(struct ieee80211_hdr);
  7265. }
  7266. nulldata.hdr.frame_control |= host_to_le16(WLAN_FC_FROMDS);
  7267. os_memcpy(nulldata.hdr.IEEE80211_DA_FROMDS, addr, ETH_ALEN);
  7268. os_memcpy(nulldata.hdr.IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
  7269. os_memcpy(nulldata.hdr.IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
  7270. if (wpa_driver_nl80211_send_mlme(bss, (u8 *) &nulldata, size, 0) < 0)
  7271. wpa_printf(MSG_DEBUG, "nl80211_send_null_frame: Failed to "
  7272. "send poll frame");
  7273. }
  7274. static void nl80211_poll_client(void *priv, const u8 *own_addr, const u8 *addr,
  7275. int qos)
  7276. {
  7277. struct i802_bss *bss = priv;
  7278. struct wpa_driver_nl80211_data *drv = bss->drv;
  7279. struct nl_msg *msg;
  7280. if (!drv->poll_command_supported) {
  7281. nl80211_send_null_frame(bss, own_addr, addr, qos);
  7282. return;
  7283. }
  7284. msg = nlmsg_alloc();
  7285. if (!msg)
  7286. return;
  7287. nl80211_cmd(drv, msg, 0, NL80211_CMD_PROBE_CLIENT);
  7288. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
  7289. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
  7290. send_and_recv_msgs(drv, msg, NULL, NULL);
  7291. return;
  7292. nla_put_failure:
  7293. nlmsg_free(msg);
  7294. }
  7295. static int nl80211_set_power_save(struct i802_bss *bss, int enabled)
  7296. {
  7297. struct nl_msg *msg;
  7298. msg = nlmsg_alloc();
  7299. if (!msg)
  7300. return -ENOMEM;
  7301. nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_SET_POWER_SAVE);
  7302. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
  7303. NLA_PUT_U32(msg, NL80211_ATTR_PS_STATE,
  7304. enabled ? NL80211_PS_ENABLED : NL80211_PS_DISABLED);
  7305. return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
  7306. nla_put_failure:
  7307. nlmsg_free(msg);
  7308. return -ENOBUFS;
  7309. }
  7310. static int nl80211_set_p2p_powersave(void *priv, int legacy_ps, int opp_ps,
  7311. int ctwindow)
  7312. {
  7313. struct i802_bss *bss = priv;
  7314. wpa_printf(MSG_DEBUG, "nl80211: set_p2p_powersave (legacy_ps=%d "
  7315. "opp_ps=%d ctwindow=%d)", legacy_ps, opp_ps, ctwindow);
  7316. if (opp_ps != -1 || ctwindow != -1)
  7317. return -1; /* Not yet supported */
  7318. if (legacy_ps == -1)
  7319. return 0;
  7320. if (legacy_ps != 0 && legacy_ps != 1)
  7321. return -1; /* Not yet supported */
  7322. return nl80211_set_power_save(bss, legacy_ps);
  7323. }
  7324. #ifdef CONFIG_TDLS
  7325. static int nl80211_send_tdls_mgmt(void *priv, const u8 *dst, u8 action_code,
  7326. u8 dialog_token, u16 status_code,
  7327. const u8 *buf, size_t len)
  7328. {
  7329. struct i802_bss *bss = priv;
  7330. struct wpa_driver_nl80211_data *drv = bss->drv;
  7331. struct nl_msg *msg;
  7332. if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
  7333. return -EOPNOTSUPP;
  7334. if (!dst)
  7335. return -EINVAL;
  7336. msg = nlmsg_alloc();
  7337. if (!msg)
  7338. return -ENOMEM;
  7339. nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_MGMT);
  7340. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  7341. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, dst);
  7342. NLA_PUT_U8(msg, NL80211_ATTR_TDLS_ACTION, action_code);
  7343. NLA_PUT_U8(msg, NL80211_ATTR_TDLS_DIALOG_TOKEN, dialog_token);
  7344. NLA_PUT_U16(msg, NL80211_ATTR_STATUS_CODE, status_code);
  7345. NLA_PUT(msg, NL80211_ATTR_IE, len, buf);
  7346. return send_and_recv_msgs(drv, msg, NULL, NULL);
  7347. nla_put_failure:
  7348. nlmsg_free(msg);
  7349. return -ENOBUFS;
  7350. }
  7351. static int nl80211_tdls_oper(void *priv, enum tdls_oper oper, const u8 *peer)
  7352. {
  7353. struct i802_bss *bss = priv;
  7354. struct wpa_driver_nl80211_data *drv = bss->drv;
  7355. struct nl_msg *msg;
  7356. enum nl80211_tdls_operation nl80211_oper;
  7357. if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
  7358. return -EOPNOTSUPP;
  7359. switch (oper) {
  7360. case TDLS_DISCOVERY_REQ:
  7361. nl80211_oper = NL80211_TDLS_DISCOVERY_REQ;
  7362. break;
  7363. case TDLS_SETUP:
  7364. nl80211_oper = NL80211_TDLS_SETUP;
  7365. break;
  7366. case TDLS_TEARDOWN:
  7367. nl80211_oper = NL80211_TDLS_TEARDOWN;
  7368. break;
  7369. case TDLS_ENABLE_LINK:
  7370. nl80211_oper = NL80211_TDLS_ENABLE_LINK;
  7371. break;
  7372. case TDLS_DISABLE_LINK:
  7373. nl80211_oper = NL80211_TDLS_DISABLE_LINK;
  7374. break;
  7375. case TDLS_ENABLE:
  7376. return 0;
  7377. case TDLS_DISABLE:
  7378. return 0;
  7379. default:
  7380. return -EINVAL;
  7381. }
  7382. msg = nlmsg_alloc();
  7383. if (!msg)
  7384. return -ENOMEM;
  7385. nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_OPER);
  7386. NLA_PUT_U8(msg, NL80211_ATTR_TDLS_OPERATION, nl80211_oper);
  7387. NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
  7388. NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, peer);
  7389. return send_and_recv_msgs(drv, msg, NULL, NULL);
  7390. nla_put_failure:
  7391. nlmsg_free(msg);
  7392. return -ENOBUFS;
  7393. }
  7394. #endif /* CONFIG TDLS */
  7395. #ifdef ANDROID
  7396. typedef struct android_wifi_priv_cmd {
  7397. char *buf;
  7398. int used_len;
  7399. int total_len;
  7400. } android_wifi_priv_cmd;
  7401. static int drv_errors = 0;
  7402. static void wpa_driver_send_hang_msg(struct wpa_driver_nl80211_data *drv)
  7403. {
  7404. drv_errors++;
  7405. if (drv_errors > DRV_NUMBER_SEQUENTIAL_ERRORS) {
  7406. drv_errors = 0;
  7407. wpa_msg(drv->ctx, MSG_INFO, WPA_EVENT_DRIVER_STATE "HANGED");
  7408. }
  7409. }
  7410. static int android_priv_cmd(struct i802_bss *bss, const char *cmd)
  7411. {
  7412. struct wpa_driver_nl80211_data *drv = bss->drv;
  7413. struct ifreq ifr;
  7414. android_wifi_priv_cmd priv_cmd;
  7415. char buf[MAX_DRV_CMD_SIZE];
  7416. int ret;
  7417. os_memset(&ifr, 0, sizeof(ifr));
  7418. os_memset(&priv_cmd, 0, sizeof(priv_cmd));
  7419. os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
  7420. os_memset(buf, 0, sizeof(buf));
  7421. os_strlcpy(buf, cmd, sizeof(buf));
  7422. priv_cmd.buf = buf;
  7423. priv_cmd.used_len = sizeof(buf);
  7424. priv_cmd.total_len = sizeof(buf);
  7425. ifr.ifr_data = &priv_cmd;
  7426. ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
  7427. if (ret < 0) {
  7428. wpa_printf(MSG_ERROR, "%s: failed to issue private commands",
  7429. __func__);
  7430. wpa_driver_send_hang_msg(drv);
  7431. return ret;
  7432. }
  7433. drv_errors = 0;
  7434. return 0;
  7435. }
  7436. static int android_pno_start(struct i802_bss *bss,
  7437. struct wpa_driver_scan_params *params)
  7438. {
  7439. struct wpa_driver_nl80211_data *drv = bss->drv;
  7440. struct ifreq ifr;
  7441. android_wifi_priv_cmd priv_cmd;
  7442. int ret = 0, i = 0, bp;
  7443. char buf[WEXT_PNO_MAX_COMMAND_SIZE];
  7444. bp = WEXT_PNOSETUP_HEADER_SIZE;
  7445. os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp);
  7446. buf[bp++] = WEXT_PNO_TLV_PREFIX;
  7447. buf[bp++] = WEXT_PNO_TLV_VERSION;
  7448. buf[bp++] = WEXT_PNO_TLV_SUBVERSION;
  7449. buf[bp++] = WEXT_PNO_TLV_RESERVED;
  7450. while (i < WEXT_PNO_AMOUNT && (size_t) i < params->num_ssids) {
  7451. /* Check that there is enough space needed for 1 more SSID, the
  7452. * other sections and null termination */
  7453. if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN +
  7454. WEXT_PNO_NONSSID_SECTIONS_SIZE + 1) >= (int) sizeof(buf))
  7455. break;
  7456. wpa_hexdump_ascii(MSG_DEBUG, "For PNO Scan",
  7457. params->ssids[i].ssid,
  7458. params->ssids[i].ssid_len);
  7459. buf[bp++] = WEXT_PNO_SSID_SECTION;
  7460. buf[bp++] = params->ssids[i].ssid_len;
  7461. os_memcpy(&buf[bp], params->ssids[i].ssid,
  7462. params->ssids[i].ssid_len);
  7463. bp += params->ssids[i].ssid_len;
  7464. i++;
  7465. }
  7466. buf[bp++] = WEXT_PNO_SCAN_INTERVAL_SECTION;
  7467. os_snprintf(&buf[bp], WEXT_PNO_SCAN_INTERVAL_LENGTH + 1, "%x",
  7468. WEXT_PNO_SCAN_INTERVAL);
  7469. bp += WEXT_PNO_SCAN_INTERVAL_LENGTH;
  7470. buf[bp++] = WEXT_PNO_REPEAT_SECTION;
  7471. os_snprintf(&buf[bp], WEXT_PNO_REPEAT_LENGTH + 1, "%x",
  7472. WEXT_PNO_REPEAT);
  7473. bp += WEXT_PNO_REPEAT_LENGTH;
  7474. buf[bp++] = WEXT_PNO_MAX_REPEAT_SECTION;
  7475. os_snprintf(&buf[bp], WEXT_PNO_MAX_REPEAT_LENGTH + 1, "%x",
  7476. WEXT_PNO_MAX_REPEAT);
  7477. bp += WEXT_PNO_MAX_REPEAT_LENGTH + 1;
  7478. memset(&ifr, 0, sizeof(ifr));
  7479. memset(&priv_cmd, 0, sizeof(priv_cmd));
  7480. os_strncpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
  7481. priv_cmd.buf = buf;
  7482. priv_cmd.used_len = bp;
  7483. priv_cmd.total_len = bp;
  7484. ifr.ifr_data = &priv_cmd;
  7485. ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
  7486. if (ret < 0) {
  7487. wpa_printf(MSG_ERROR, "ioctl[SIOCSIWPRIV] (pnosetup): %d",
  7488. ret);
  7489. wpa_driver_send_hang_msg(drv);
  7490. return ret;
  7491. }
  7492. drv_errors = 0;
  7493. return android_priv_cmd(bss, "PNOFORCE 1");
  7494. }
  7495. static int android_pno_stop(struct i802_bss *bss)
  7496. {
  7497. return android_priv_cmd(bss, "PNOFORCE 0");
  7498. }
  7499. #endif /* ANDROID */
  7500. const struct wpa_driver_ops wpa_driver_nl80211_ops = {
  7501. .name = "nl80211",
  7502. .desc = "Linux nl80211/cfg80211",
  7503. .get_bssid = wpa_driver_nl80211_get_bssid,
  7504. .get_ssid = wpa_driver_nl80211_get_ssid,
  7505. .set_key = wpa_driver_nl80211_set_key,
  7506. .scan2 = wpa_driver_nl80211_scan,
  7507. .sched_scan = wpa_driver_nl80211_sched_scan,
  7508. .stop_sched_scan = wpa_driver_nl80211_stop_sched_scan,
  7509. .get_scan_results2 = wpa_driver_nl80211_get_scan_results,
  7510. .deauthenticate = wpa_driver_nl80211_deauthenticate,
  7511. .disassociate = wpa_driver_nl80211_disassociate,
  7512. .authenticate = wpa_driver_nl80211_authenticate,
  7513. .associate = wpa_driver_nl80211_associate,
  7514. .global_init = nl80211_global_init,
  7515. .global_deinit = nl80211_global_deinit,
  7516. .init2 = wpa_driver_nl80211_init,
  7517. .deinit = wpa_driver_nl80211_deinit,
  7518. .get_capa = wpa_driver_nl80211_get_capa,
  7519. .set_operstate = wpa_driver_nl80211_set_operstate,
  7520. .set_supp_port = wpa_driver_nl80211_set_supp_port,
  7521. .set_country = wpa_driver_nl80211_set_country,
  7522. .set_ap = wpa_driver_nl80211_set_ap,
  7523. .if_add = wpa_driver_nl80211_if_add,
  7524. .if_remove = wpa_driver_nl80211_if_remove,
  7525. .send_mlme = wpa_driver_nl80211_send_mlme,
  7526. .get_hw_feature_data = wpa_driver_nl80211_get_hw_feature_data,
  7527. .sta_add = wpa_driver_nl80211_sta_add,
  7528. .sta_remove = wpa_driver_nl80211_sta_remove,
  7529. .hapd_send_eapol = wpa_driver_nl80211_hapd_send_eapol,
  7530. .sta_set_flags = wpa_driver_nl80211_sta_set_flags,
  7531. #ifdef HOSTAPD
  7532. .hapd_init = i802_init,
  7533. .hapd_deinit = i802_deinit,
  7534. .set_wds_sta = i802_set_wds_sta,
  7535. #endif /* HOSTAPD */
  7536. #if defined(HOSTAPD) || defined(CONFIG_AP)
  7537. .get_seqnum = i802_get_seqnum,
  7538. .flush = i802_flush,
  7539. .read_sta_data = i802_read_sta_data,
  7540. .get_inact_sec = i802_get_inact_sec,
  7541. .sta_clear_stats = i802_sta_clear_stats,
  7542. .set_rts = i802_set_rts,
  7543. .set_frag = i802_set_frag,
  7544. .set_tx_queue_params = i802_set_tx_queue_params,
  7545. .set_sta_vlan = i802_set_sta_vlan,
  7546. .sta_deauth = i802_sta_deauth,
  7547. .sta_disassoc = i802_sta_disassoc,
  7548. #endif /* HOSTAPD || CONFIG_AP */
  7549. .set_freq = i802_set_freq,
  7550. .send_action = wpa_driver_nl80211_send_action,
  7551. .send_action_cancel_wait = wpa_driver_nl80211_send_action_cancel_wait,
  7552. .remain_on_channel = wpa_driver_nl80211_remain_on_channel,
  7553. .cancel_remain_on_channel =
  7554. wpa_driver_nl80211_cancel_remain_on_channel,
  7555. .probe_req_report = wpa_driver_nl80211_probe_req_report,
  7556. .deinit_ap = wpa_driver_nl80211_deinit_ap,
  7557. .deinit_p2p_cli = wpa_driver_nl80211_deinit_p2p_cli,
  7558. .resume = wpa_driver_nl80211_resume,
  7559. .send_ft_action = nl80211_send_ft_action,
  7560. .signal_monitor = nl80211_signal_monitor,
  7561. .signal_poll = nl80211_signal_poll,
  7562. .send_frame = nl80211_send_frame,
  7563. .shared_freq = wpa_driver_nl80211_shared_freq,
  7564. .set_param = nl80211_set_param,
  7565. .get_radio_name = nl80211_get_radio_name,
  7566. .add_pmkid = nl80211_add_pmkid,
  7567. .remove_pmkid = nl80211_remove_pmkid,
  7568. .flush_pmkid = nl80211_flush_pmkid,
  7569. .set_rekey_info = nl80211_set_rekey_info,
  7570. .poll_client = nl80211_poll_client,
  7571. .set_p2p_powersave = nl80211_set_p2p_powersave,
  7572. #ifdef CONFIG_TDLS
  7573. .send_tdls_mgmt = nl80211_send_tdls_mgmt,
  7574. .tdls_oper = nl80211_tdls_oper,
  7575. #endif /* CONFIG_TDLS */
  7576. };