wpa_supplicant.c 189 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978
  1. /*
  2. * WPA Supplicant
  3. * Copyright (c) 2003-2017, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. *
  8. * This file implements functions for registering and unregistering
  9. * %wpa_supplicant interfaces. In addition, this file contains number of
  10. * functions for managing network connections.
  11. */
  12. #include "includes.h"
  13. #ifdef CONFIG_MATCH_IFACE
  14. #include <net/if.h>
  15. #include <fnmatch.h>
  16. #endif /* CONFIG_MATCH_IFACE */
  17. #include "common.h"
  18. #include "crypto/random.h"
  19. #include "crypto/sha1.h"
  20. #include "eapol_supp/eapol_supp_sm.h"
  21. #include "eap_peer/eap.h"
  22. #include "eap_peer/eap_proxy.h"
  23. #include "eap_server/eap_methods.h"
  24. #include "rsn_supp/wpa.h"
  25. #include "eloop.h"
  26. #include "config.h"
  27. #include "utils/ext_password.h"
  28. #include "l2_packet/l2_packet.h"
  29. #include "wpa_supplicant_i.h"
  30. #include "driver_i.h"
  31. #include "ctrl_iface.h"
  32. #include "pcsc_funcs.h"
  33. #include "common/version.h"
  34. #include "rsn_supp/preauth.h"
  35. #include "rsn_supp/pmksa_cache.h"
  36. #include "common/wpa_ctrl.h"
  37. #include "common/ieee802_11_defs.h"
  38. #include "common/hw_features_common.h"
  39. #include "common/gas_server.h"
  40. #include "p2p/p2p.h"
  41. #include "fst/fst.h"
  42. #include "blacklist.h"
  43. #include "wpas_glue.h"
  44. #include "wps_supplicant.h"
  45. #include "ibss_rsn.h"
  46. #include "sme.h"
  47. #include "gas_query.h"
  48. #include "ap.h"
  49. #include "p2p_supplicant.h"
  50. #include "wifi_display.h"
  51. #include "notify.h"
  52. #include "bgscan.h"
  53. #include "autoscan.h"
  54. #include "bss.h"
  55. #include "scan.h"
  56. #include "offchannel.h"
  57. #include "hs20_supplicant.h"
  58. #include "wnm_sta.h"
  59. #include "wpas_kay.h"
  60. #include "mesh.h"
  61. #include "dpp_supplicant.h"
  62. #ifdef CONFIG_MESH
  63. #include "ap/ap_config.h"
  64. #include "ap/hostapd.h"
  65. #endif /* CONFIG_MESH */
  66. const char *const wpa_supplicant_version =
  67. "wpa_supplicant v" VERSION_STR "\n"
  68. "Copyright (c) 2003-2017, Jouni Malinen <j@w1.fi> and contributors";
  69. const char *const wpa_supplicant_license =
  70. "This software may be distributed under the terms of the BSD license.\n"
  71. "See README for more details.\n"
  72. #ifdef EAP_TLS_OPENSSL
  73. "\nThis product includes software developed by the OpenSSL Project\n"
  74. "for use in the OpenSSL Toolkit (http://www.openssl.org/)\n"
  75. #endif /* EAP_TLS_OPENSSL */
  76. ;
  77. #ifndef CONFIG_NO_STDOUT_DEBUG
  78. /* Long text divided into parts in order to fit in C89 strings size limits. */
  79. const char *const wpa_supplicant_full_license1 =
  80. "";
  81. const char *const wpa_supplicant_full_license2 =
  82. "This software may be distributed under the terms of the BSD license.\n"
  83. "\n"
  84. "Redistribution and use in source and binary forms, with or without\n"
  85. "modification, are permitted provided that the following conditions are\n"
  86. "met:\n"
  87. "\n";
  88. const char *const wpa_supplicant_full_license3 =
  89. "1. Redistributions of source code must retain the above copyright\n"
  90. " notice, this list of conditions and the following disclaimer.\n"
  91. "\n"
  92. "2. Redistributions in binary form must reproduce the above copyright\n"
  93. " notice, this list of conditions and the following disclaimer in the\n"
  94. " documentation and/or other materials provided with the distribution.\n"
  95. "\n";
  96. const char *const wpa_supplicant_full_license4 =
  97. "3. Neither the name(s) of the above-listed copyright holder(s) nor the\n"
  98. " names of its contributors may be used to endorse or promote products\n"
  99. " derived from this software without specific prior written permission.\n"
  100. "\n"
  101. "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n"
  102. "\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n"
  103. "LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n"
  104. "A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n";
  105. const char *const wpa_supplicant_full_license5 =
  106. "OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n"
  107. "SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n"
  108. "LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n"
  109. "DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n"
  110. "THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n"
  111. "(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n"
  112. "OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  113. "\n";
  114. #endif /* CONFIG_NO_STDOUT_DEBUG */
  115. static void wpa_bss_tmp_disallow_timeout(void *eloop_ctx, void *timeout_ctx);
  116. #if defined(CONFIG_FILS) && defined(IEEE8021X_EAPOL)
  117. static void wpas_update_fils_connect_params(struct wpa_supplicant *wpa_s);
  118. #endif /* CONFIG_FILS && IEEE8021X_EAPOL */
  119. /* Configure default/group WEP keys for static WEP */
  120. int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
  121. {
  122. int i, set = 0;
  123. for (i = 0; i < NUM_WEP_KEYS; i++) {
  124. if (ssid->wep_key_len[i] == 0)
  125. continue;
  126. set = 1;
  127. wpa_drv_set_key(wpa_s, WPA_ALG_WEP, NULL,
  128. i, i == ssid->wep_tx_keyidx, NULL, 0,
  129. ssid->wep_key[i], ssid->wep_key_len[i]);
  130. }
  131. return set;
  132. }
  133. int wpa_supplicant_set_wpa_none_key(struct wpa_supplicant *wpa_s,
  134. struct wpa_ssid *ssid)
  135. {
  136. u8 key[32];
  137. size_t keylen;
  138. enum wpa_alg alg;
  139. u8 seq[6] = { 0 };
  140. int ret;
  141. /* IBSS/WPA-None uses only one key (Group) for both receiving and
  142. * sending unicast and multicast packets. */
  143. if (ssid->mode != WPAS_MODE_IBSS) {
  144. wpa_msg(wpa_s, MSG_INFO, "WPA: Invalid mode %d (not "
  145. "IBSS/ad-hoc) for WPA-None", ssid->mode);
  146. return -1;
  147. }
  148. if (!ssid->psk_set) {
  149. wpa_msg(wpa_s, MSG_INFO, "WPA: No PSK configured for "
  150. "WPA-None");
  151. return -1;
  152. }
  153. switch (wpa_s->group_cipher) {
  154. case WPA_CIPHER_CCMP:
  155. os_memcpy(key, ssid->psk, 16);
  156. keylen = 16;
  157. alg = WPA_ALG_CCMP;
  158. break;
  159. case WPA_CIPHER_GCMP:
  160. os_memcpy(key, ssid->psk, 16);
  161. keylen = 16;
  162. alg = WPA_ALG_GCMP;
  163. break;
  164. case WPA_CIPHER_TKIP:
  165. /* WPA-None uses the same Michael MIC key for both TX and RX */
  166. os_memcpy(key, ssid->psk, 16 + 8);
  167. os_memcpy(key + 16 + 8, ssid->psk + 16, 8);
  168. keylen = 32;
  169. alg = WPA_ALG_TKIP;
  170. break;
  171. default:
  172. wpa_msg(wpa_s, MSG_INFO, "WPA: Invalid group cipher %d for "
  173. "WPA-None", wpa_s->group_cipher);
  174. return -1;
  175. }
  176. /* TODO: should actually remember the previously used seq#, both for TX
  177. * and RX from each STA.. */
  178. ret = wpa_drv_set_key(wpa_s, alg, NULL, 0, 1, seq, 6, key, keylen);
  179. os_memset(key, 0, sizeof(key));
  180. return ret;
  181. }
  182. static void wpa_supplicant_timeout(void *eloop_ctx, void *timeout_ctx)
  183. {
  184. struct wpa_supplicant *wpa_s = eloop_ctx;
  185. const u8 *bssid = wpa_s->bssid;
  186. if (!is_zero_ether_addr(wpa_s->pending_bssid) &&
  187. (wpa_s->wpa_state == WPA_AUTHENTICATING ||
  188. wpa_s->wpa_state == WPA_ASSOCIATING))
  189. bssid = wpa_s->pending_bssid;
  190. wpa_msg(wpa_s, MSG_INFO, "Authentication with " MACSTR " timed out.",
  191. MAC2STR(bssid));
  192. wpa_blacklist_add(wpa_s, bssid);
  193. wpa_sm_notify_disassoc(wpa_s->wpa);
  194. wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  195. wpa_s->reassociate = 1;
  196. /*
  197. * If we timed out, the AP or the local radio may be busy.
  198. * So, wait a second until scanning again.
  199. */
  200. wpa_supplicant_req_scan(wpa_s, 1, 0);
  201. }
  202. /**
  203. * wpa_supplicant_req_auth_timeout - Schedule a timeout for authentication
  204. * @wpa_s: Pointer to wpa_supplicant data
  205. * @sec: Number of seconds after which to time out authentication
  206. * @usec: Number of microseconds after which to time out authentication
  207. *
  208. * This function is used to schedule a timeout for the current authentication
  209. * attempt.
  210. */
  211. void wpa_supplicant_req_auth_timeout(struct wpa_supplicant *wpa_s,
  212. int sec, int usec)
  213. {
  214. if (wpa_s->conf->ap_scan == 0 &&
  215. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED))
  216. return;
  217. wpa_dbg(wpa_s, MSG_DEBUG, "Setting authentication timeout: %d sec "
  218. "%d usec", sec, usec);
  219. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  220. eloop_register_timeout(sec, usec, wpa_supplicant_timeout, wpa_s, NULL);
  221. }
  222. /**
  223. * wpa_supplicant_cancel_auth_timeout - Cancel authentication timeout
  224. * @wpa_s: Pointer to wpa_supplicant data
  225. *
  226. * This function is used to cancel authentication timeout scheduled with
  227. * wpa_supplicant_req_auth_timeout() and it is called when authentication has
  228. * been completed.
  229. */
  230. void wpa_supplicant_cancel_auth_timeout(struct wpa_supplicant *wpa_s)
  231. {
  232. wpa_dbg(wpa_s, MSG_DEBUG, "Cancelling authentication timeout");
  233. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  234. wpa_blacklist_del(wpa_s, wpa_s->bssid);
  235. }
  236. /**
  237. * wpa_supplicant_initiate_eapol - Configure EAPOL state machine
  238. * @wpa_s: Pointer to wpa_supplicant data
  239. *
  240. * This function is used to configure EAPOL state machine based on the selected
  241. * authentication mode.
  242. */
  243. void wpa_supplicant_initiate_eapol(struct wpa_supplicant *wpa_s)
  244. {
  245. #ifdef IEEE8021X_EAPOL
  246. struct eapol_config eapol_conf;
  247. struct wpa_ssid *ssid = wpa_s->current_ssid;
  248. #ifdef CONFIG_IBSS_RSN
  249. if (ssid->mode == WPAS_MODE_IBSS &&
  250. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  251. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE) {
  252. /*
  253. * RSN IBSS authentication is per-STA and we can disable the
  254. * per-BSSID EAPOL authentication.
  255. */
  256. eapol_sm_notify_portControl(wpa_s->eapol, ForceAuthorized);
  257. eapol_sm_notify_eap_success(wpa_s->eapol, TRUE);
  258. eapol_sm_notify_eap_fail(wpa_s->eapol, FALSE);
  259. return;
  260. }
  261. #endif /* CONFIG_IBSS_RSN */
  262. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  263. eapol_sm_notify_eap_fail(wpa_s->eapol, FALSE);
  264. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  265. wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE)
  266. eapol_sm_notify_portControl(wpa_s->eapol, ForceAuthorized);
  267. else
  268. eapol_sm_notify_portControl(wpa_s->eapol, Auto);
  269. os_memset(&eapol_conf, 0, sizeof(eapol_conf));
  270. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  271. eapol_conf.accept_802_1x_keys = 1;
  272. eapol_conf.required_keys = 0;
  273. if (ssid->eapol_flags & EAPOL_FLAG_REQUIRE_KEY_UNICAST) {
  274. eapol_conf.required_keys |= EAPOL_REQUIRE_KEY_UNICAST;
  275. }
  276. if (ssid->eapol_flags & EAPOL_FLAG_REQUIRE_KEY_BROADCAST) {
  277. eapol_conf.required_keys |=
  278. EAPOL_REQUIRE_KEY_BROADCAST;
  279. }
  280. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED)
  281. eapol_conf.required_keys = 0;
  282. }
  283. eapol_conf.fast_reauth = wpa_s->conf->fast_reauth;
  284. eapol_conf.workaround = ssid->eap_workaround;
  285. eapol_conf.eap_disabled =
  286. !wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) &&
  287. wpa_s->key_mgmt != WPA_KEY_MGMT_IEEE8021X_NO_WPA &&
  288. wpa_s->key_mgmt != WPA_KEY_MGMT_WPS;
  289. eapol_conf.external_sim = wpa_s->conf->external_sim;
  290. #ifdef CONFIG_WPS
  291. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) {
  292. eapol_conf.wps |= EAPOL_LOCAL_WPS_IN_USE;
  293. if (wpa_s->current_bss) {
  294. struct wpabuf *ie;
  295. ie = wpa_bss_get_vendor_ie_multi(wpa_s->current_bss,
  296. WPS_IE_VENDOR_TYPE);
  297. if (ie) {
  298. if (wps_is_20(ie))
  299. eapol_conf.wps |=
  300. EAPOL_PEER_IS_WPS20_AP;
  301. wpabuf_free(ie);
  302. }
  303. }
  304. }
  305. #endif /* CONFIG_WPS */
  306. eapol_sm_notify_config(wpa_s->eapol, &ssid->eap, &eapol_conf);
  307. #ifdef CONFIG_MACSEC
  308. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE && ssid->mka_psk_set)
  309. ieee802_1x_create_preshared_mka(wpa_s, ssid);
  310. else
  311. ieee802_1x_alloc_kay_sm(wpa_s, ssid);
  312. #endif /* CONFIG_MACSEC */
  313. #endif /* IEEE8021X_EAPOL */
  314. }
  315. /**
  316. * wpa_supplicant_set_non_wpa_policy - Set WPA parameters to non-WPA mode
  317. * @wpa_s: Pointer to wpa_supplicant data
  318. * @ssid: Configuration data for the network
  319. *
  320. * This function is used to configure WPA state machine and related parameters
  321. * to a mode where WPA is not enabled. This is called as part of the
  322. * authentication configuration when the selected network does not use WPA.
  323. */
  324. void wpa_supplicant_set_non_wpa_policy(struct wpa_supplicant *wpa_s,
  325. struct wpa_ssid *ssid)
  326. {
  327. int i;
  328. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
  329. wpa_s->key_mgmt = WPA_KEY_MGMT_WPS;
  330. else if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA)
  331. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_NO_WPA;
  332. else
  333. wpa_s->key_mgmt = WPA_KEY_MGMT_NONE;
  334. wpa_sm_set_ap_wpa_ie(wpa_s->wpa, NULL, 0);
  335. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, NULL, 0);
  336. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  337. wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
  338. wpa_s->group_cipher = WPA_CIPHER_NONE;
  339. wpa_s->mgmt_group_cipher = 0;
  340. for (i = 0; i < NUM_WEP_KEYS; i++) {
  341. if (ssid->wep_key_len[i] > 5) {
  342. wpa_s->pairwise_cipher = WPA_CIPHER_WEP104;
  343. wpa_s->group_cipher = WPA_CIPHER_WEP104;
  344. break;
  345. } else if (ssid->wep_key_len[i] > 0) {
  346. wpa_s->pairwise_cipher = WPA_CIPHER_WEP40;
  347. wpa_s->group_cipher = WPA_CIPHER_WEP40;
  348. break;
  349. }
  350. }
  351. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_RSN_ENABLED, 0);
  352. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_KEY_MGMT, wpa_s->key_mgmt);
  353. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PAIRWISE,
  354. wpa_s->pairwise_cipher);
  355. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
  356. #ifdef CONFIG_IEEE80211W
  357. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MGMT_GROUP,
  358. wpa_s->mgmt_group_cipher);
  359. #endif /* CONFIG_IEEE80211W */
  360. pmksa_cache_clear_current(wpa_s->wpa);
  361. }
  362. void free_hw_features(struct wpa_supplicant *wpa_s)
  363. {
  364. int i;
  365. if (wpa_s->hw.modes == NULL)
  366. return;
  367. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  368. os_free(wpa_s->hw.modes[i].channels);
  369. os_free(wpa_s->hw.modes[i].rates);
  370. }
  371. os_free(wpa_s->hw.modes);
  372. wpa_s->hw.modes = NULL;
  373. }
  374. static void free_bss_tmp_disallowed(struct wpa_supplicant *wpa_s)
  375. {
  376. struct wpa_bss_tmp_disallowed *bss, *prev;
  377. dl_list_for_each_safe(bss, prev, &wpa_s->bss_tmp_disallowed,
  378. struct wpa_bss_tmp_disallowed, list) {
  379. eloop_cancel_timeout(wpa_bss_tmp_disallow_timeout, wpa_s, bss);
  380. dl_list_del(&bss->list);
  381. os_free(bss);
  382. }
  383. }
  384. void wpas_flush_fils_hlp_req(struct wpa_supplicant *wpa_s)
  385. {
  386. struct fils_hlp_req *req;
  387. while ((req = dl_list_first(&wpa_s->fils_hlp_req, struct fils_hlp_req,
  388. list)) != NULL) {
  389. dl_list_del(&req->list);
  390. wpabuf_free(req->pkt);
  391. os_free(req);
  392. }
  393. }
  394. static void wpa_supplicant_cleanup(struct wpa_supplicant *wpa_s)
  395. {
  396. int i;
  397. bgscan_deinit(wpa_s);
  398. autoscan_deinit(wpa_s);
  399. scard_deinit(wpa_s->scard);
  400. wpa_s->scard = NULL;
  401. wpa_sm_set_scard_ctx(wpa_s->wpa, NULL);
  402. eapol_sm_register_scard_ctx(wpa_s->eapol, NULL);
  403. l2_packet_deinit(wpa_s->l2);
  404. wpa_s->l2 = NULL;
  405. if (wpa_s->l2_br) {
  406. l2_packet_deinit(wpa_s->l2_br);
  407. wpa_s->l2_br = NULL;
  408. }
  409. #ifdef CONFIG_TESTING_OPTIONS
  410. l2_packet_deinit(wpa_s->l2_test);
  411. wpa_s->l2_test = NULL;
  412. os_free(wpa_s->get_pref_freq_list_override);
  413. wpa_s->get_pref_freq_list_override = NULL;
  414. wpabuf_free(wpa_s->last_assoc_req_wpa_ie);
  415. wpa_s->last_assoc_req_wpa_ie = NULL;
  416. #endif /* CONFIG_TESTING_OPTIONS */
  417. if (wpa_s->conf != NULL) {
  418. struct wpa_ssid *ssid;
  419. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  420. wpas_notify_network_removed(wpa_s, ssid);
  421. }
  422. os_free(wpa_s->confname);
  423. wpa_s->confname = NULL;
  424. os_free(wpa_s->confanother);
  425. wpa_s->confanother = NULL;
  426. wpa_sm_set_eapol(wpa_s->wpa, NULL);
  427. eapol_sm_deinit(wpa_s->eapol);
  428. wpa_s->eapol = NULL;
  429. rsn_preauth_deinit(wpa_s->wpa);
  430. #ifdef CONFIG_TDLS
  431. wpa_tdls_deinit(wpa_s->wpa);
  432. #endif /* CONFIG_TDLS */
  433. wmm_ac_clear_saved_tspecs(wpa_s);
  434. pmksa_candidate_free(wpa_s->wpa);
  435. wpa_sm_deinit(wpa_s->wpa);
  436. wpa_s->wpa = NULL;
  437. wpa_blacklist_clear(wpa_s);
  438. wpa_bss_deinit(wpa_s);
  439. wpa_supplicant_cancel_delayed_sched_scan(wpa_s);
  440. wpa_supplicant_cancel_scan(wpa_s);
  441. wpa_supplicant_cancel_auth_timeout(wpa_s);
  442. eloop_cancel_timeout(wpa_supplicant_stop_countermeasures, wpa_s, NULL);
  443. #ifdef CONFIG_DELAYED_MIC_ERROR_REPORT
  444. eloop_cancel_timeout(wpa_supplicant_delayed_mic_error_report,
  445. wpa_s, NULL);
  446. #endif /* CONFIG_DELAYED_MIC_ERROR_REPORT */
  447. eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
  448. wpas_wps_deinit(wpa_s);
  449. wpabuf_free(wpa_s->pending_eapol_rx);
  450. wpa_s->pending_eapol_rx = NULL;
  451. #ifdef CONFIG_IBSS_RSN
  452. ibss_rsn_deinit(wpa_s->ibss_rsn);
  453. wpa_s->ibss_rsn = NULL;
  454. #endif /* CONFIG_IBSS_RSN */
  455. sme_deinit(wpa_s);
  456. #ifdef CONFIG_AP
  457. wpa_supplicant_ap_deinit(wpa_s);
  458. #endif /* CONFIG_AP */
  459. wpas_p2p_deinit(wpa_s);
  460. #ifdef CONFIG_OFFCHANNEL
  461. offchannel_deinit(wpa_s);
  462. #endif /* CONFIG_OFFCHANNEL */
  463. wpa_supplicant_cancel_sched_scan(wpa_s);
  464. os_free(wpa_s->next_scan_freqs);
  465. wpa_s->next_scan_freqs = NULL;
  466. os_free(wpa_s->manual_scan_freqs);
  467. wpa_s->manual_scan_freqs = NULL;
  468. os_free(wpa_s->select_network_scan_freqs);
  469. wpa_s->select_network_scan_freqs = NULL;
  470. os_free(wpa_s->manual_sched_scan_freqs);
  471. wpa_s->manual_sched_scan_freqs = NULL;
  472. wpas_mac_addr_rand_scan_clear(wpa_s, MAC_ADDR_RAND_ALL);
  473. /*
  474. * Need to remove any pending gas-query radio work before the
  475. * gas_query_deinit() call because gas_query::work has not yet been set
  476. * for works that have not been started. gas_query_free() will be unable
  477. * to cancel such pending radio works and once the pending gas-query
  478. * radio work eventually gets removed, the deinit notification call to
  479. * gas_query_start_cb() would result in dereferencing freed memory.
  480. */
  481. if (wpa_s->radio)
  482. radio_remove_works(wpa_s, "gas-query", 0);
  483. gas_query_deinit(wpa_s->gas);
  484. wpa_s->gas = NULL;
  485. gas_server_deinit(wpa_s->gas_server);
  486. wpa_s->gas_server = NULL;
  487. free_hw_features(wpa_s);
  488. ieee802_1x_dealloc_kay_sm(wpa_s);
  489. os_free(wpa_s->bssid_filter);
  490. wpa_s->bssid_filter = NULL;
  491. os_free(wpa_s->disallow_aps_bssid);
  492. wpa_s->disallow_aps_bssid = NULL;
  493. os_free(wpa_s->disallow_aps_ssid);
  494. wpa_s->disallow_aps_ssid = NULL;
  495. wnm_bss_keep_alive_deinit(wpa_s);
  496. #ifdef CONFIG_WNM
  497. wnm_deallocate_memory(wpa_s);
  498. #endif /* CONFIG_WNM */
  499. ext_password_deinit(wpa_s->ext_pw);
  500. wpa_s->ext_pw = NULL;
  501. wpabuf_free(wpa_s->last_gas_resp);
  502. wpa_s->last_gas_resp = NULL;
  503. wpabuf_free(wpa_s->prev_gas_resp);
  504. wpa_s->prev_gas_resp = NULL;
  505. os_free(wpa_s->last_scan_res);
  506. wpa_s->last_scan_res = NULL;
  507. #ifdef CONFIG_HS20
  508. if (wpa_s->drv_priv)
  509. wpa_drv_configure_frame_filters(wpa_s, 0);
  510. hs20_deinit(wpa_s);
  511. #endif /* CONFIG_HS20 */
  512. for (i = 0; i < NUM_VENDOR_ELEM_FRAMES; i++) {
  513. wpabuf_free(wpa_s->vendor_elem[i]);
  514. wpa_s->vendor_elem[i] = NULL;
  515. }
  516. wmm_ac_notify_disassoc(wpa_s);
  517. wpa_s->sched_scan_plans_num = 0;
  518. os_free(wpa_s->sched_scan_plans);
  519. wpa_s->sched_scan_plans = NULL;
  520. #ifdef CONFIG_MBO
  521. wpa_s->non_pref_chan_num = 0;
  522. os_free(wpa_s->non_pref_chan);
  523. wpa_s->non_pref_chan = NULL;
  524. #endif /* CONFIG_MBO */
  525. free_bss_tmp_disallowed(wpa_s);
  526. wpabuf_free(wpa_s->lci);
  527. wpa_s->lci = NULL;
  528. wpas_clear_beacon_rep_data(wpa_s);
  529. #ifdef CONFIG_PMKSA_CACHE_EXTERNAL
  530. #ifdef CONFIG_MESH
  531. {
  532. struct external_pmksa_cache *entry;
  533. while ((entry = dl_list_last(&wpa_s->mesh_external_pmksa_cache,
  534. struct external_pmksa_cache,
  535. list)) != NULL) {
  536. dl_list_del(&entry->list);
  537. os_free(entry->pmksa_cache);
  538. os_free(entry);
  539. }
  540. }
  541. #endif /* CONFIG_MESH */
  542. #endif /* CONFIG_PMKSA_CACHE_EXTERNAL */
  543. wpas_flush_fils_hlp_req(wpa_s);
  544. wpabuf_free(wpa_s->ric_ies);
  545. wpa_s->ric_ies = NULL;
  546. #ifdef CONFIG_DPP
  547. wpas_dpp_deinit(wpa_s);
  548. #endif /* CONFIG_DPP */
  549. }
  550. /**
  551. * wpa_clear_keys - Clear keys configured for the driver
  552. * @wpa_s: Pointer to wpa_supplicant data
  553. * @addr: Previously used BSSID or %NULL if not available
  554. *
  555. * This function clears the encryption keys that has been previously configured
  556. * for the driver.
  557. */
  558. void wpa_clear_keys(struct wpa_supplicant *wpa_s, const u8 *addr)
  559. {
  560. int i, max;
  561. #ifdef CONFIG_IEEE80211W
  562. max = 6;
  563. #else /* CONFIG_IEEE80211W */
  564. max = 4;
  565. #endif /* CONFIG_IEEE80211W */
  566. /* MLME-DELETEKEYS.request */
  567. for (i = 0; i < max; i++) {
  568. if (wpa_s->keys_cleared & BIT(i))
  569. continue;
  570. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, NULL, i, 0, NULL, 0,
  571. NULL, 0);
  572. }
  573. if (!(wpa_s->keys_cleared & BIT(0)) && addr &&
  574. !is_zero_ether_addr(addr)) {
  575. wpa_drv_set_key(wpa_s, WPA_ALG_NONE, addr, 0, 0, NULL, 0, NULL,
  576. 0);
  577. /* MLME-SETPROTECTION.request(None) */
  578. wpa_drv_mlme_setprotection(
  579. wpa_s, addr,
  580. MLME_SETPROTECTION_PROTECT_TYPE_NONE,
  581. MLME_SETPROTECTION_KEY_TYPE_PAIRWISE);
  582. }
  583. wpa_s->keys_cleared = (u32) -1;
  584. }
  585. /**
  586. * wpa_supplicant_state_txt - Get the connection state name as a text string
  587. * @state: State (wpa_state; WPA_*)
  588. * Returns: The state name as a printable text string
  589. */
  590. const char * wpa_supplicant_state_txt(enum wpa_states state)
  591. {
  592. switch (state) {
  593. case WPA_DISCONNECTED:
  594. return "DISCONNECTED";
  595. case WPA_INACTIVE:
  596. return "INACTIVE";
  597. case WPA_INTERFACE_DISABLED:
  598. return "INTERFACE_DISABLED";
  599. case WPA_SCANNING:
  600. return "SCANNING";
  601. case WPA_AUTHENTICATING:
  602. return "AUTHENTICATING";
  603. case WPA_ASSOCIATING:
  604. return "ASSOCIATING";
  605. case WPA_ASSOCIATED:
  606. return "ASSOCIATED";
  607. case WPA_4WAY_HANDSHAKE:
  608. return "4WAY_HANDSHAKE";
  609. case WPA_GROUP_HANDSHAKE:
  610. return "GROUP_HANDSHAKE";
  611. case WPA_COMPLETED:
  612. return "COMPLETED";
  613. default:
  614. return "UNKNOWN";
  615. }
  616. }
  617. #ifdef CONFIG_BGSCAN
  618. static void wpa_supplicant_start_bgscan(struct wpa_supplicant *wpa_s)
  619. {
  620. const char *name;
  621. if (wpa_s->current_ssid && wpa_s->current_ssid->bgscan)
  622. name = wpa_s->current_ssid->bgscan;
  623. else
  624. name = wpa_s->conf->bgscan;
  625. if (name == NULL || name[0] == '\0')
  626. return;
  627. if (wpas_driver_bss_selection(wpa_s))
  628. return;
  629. if (wpa_s->current_ssid == wpa_s->bgscan_ssid)
  630. return;
  631. #ifdef CONFIG_P2P
  632. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
  633. return;
  634. #endif /* CONFIG_P2P */
  635. bgscan_deinit(wpa_s);
  636. if (wpa_s->current_ssid) {
  637. if (bgscan_init(wpa_s, wpa_s->current_ssid, name)) {
  638. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize "
  639. "bgscan");
  640. /*
  641. * Live without bgscan; it is only used as a roaming
  642. * optimization, so the initial connection is not
  643. * affected.
  644. */
  645. } else {
  646. struct wpa_scan_results *scan_res;
  647. wpa_s->bgscan_ssid = wpa_s->current_ssid;
  648. scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL,
  649. 0);
  650. if (scan_res) {
  651. bgscan_notify_scan(wpa_s, scan_res);
  652. wpa_scan_results_free(scan_res);
  653. }
  654. }
  655. } else
  656. wpa_s->bgscan_ssid = NULL;
  657. }
  658. static void wpa_supplicant_stop_bgscan(struct wpa_supplicant *wpa_s)
  659. {
  660. if (wpa_s->bgscan_ssid != NULL) {
  661. bgscan_deinit(wpa_s);
  662. wpa_s->bgscan_ssid = NULL;
  663. }
  664. }
  665. #endif /* CONFIG_BGSCAN */
  666. static void wpa_supplicant_start_autoscan(struct wpa_supplicant *wpa_s)
  667. {
  668. if (autoscan_init(wpa_s, 0))
  669. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize autoscan");
  670. }
  671. static void wpa_supplicant_stop_autoscan(struct wpa_supplicant *wpa_s)
  672. {
  673. autoscan_deinit(wpa_s);
  674. }
  675. void wpa_supplicant_reinit_autoscan(struct wpa_supplicant *wpa_s)
  676. {
  677. if (wpa_s->wpa_state == WPA_DISCONNECTED ||
  678. wpa_s->wpa_state == WPA_SCANNING) {
  679. autoscan_deinit(wpa_s);
  680. wpa_supplicant_start_autoscan(wpa_s);
  681. }
  682. }
  683. /**
  684. * wpa_supplicant_set_state - Set current connection state
  685. * @wpa_s: Pointer to wpa_supplicant data
  686. * @state: The new connection state
  687. *
  688. * This function is called whenever the connection state changes, e.g.,
  689. * association is completed for WPA/WPA2 4-Way Handshake is started.
  690. */
  691. void wpa_supplicant_set_state(struct wpa_supplicant *wpa_s,
  692. enum wpa_states state)
  693. {
  694. enum wpa_states old_state = wpa_s->wpa_state;
  695. wpa_dbg(wpa_s, MSG_DEBUG, "State: %s -> %s",
  696. wpa_supplicant_state_txt(wpa_s->wpa_state),
  697. wpa_supplicant_state_txt(state));
  698. if (state == WPA_INTERFACE_DISABLED) {
  699. /* Assure normal scan when interface is restored */
  700. wpa_s->normal_scans = 0;
  701. }
  702. if (state == WPA_COMPLETED) {
  703. wpas_connect_work_done(wpa_s);
  704. /* Reinitialize normal_scan counter */
  705. wpa_s->normal_scans = 0;
  706. }
  707. #ifdef CONFIG_P2P
  708. /*
  709. * P2PS client has to reply to Probe Request frames received on the
  710. * group operating channel. Enable Probe Request frame reporting for
  711. * P2P connected client in case p2p_cli_probe configuration property is
  712. * set to 1.
  713. */
  714. if (wpa_s->conf->p2p_cli_probe && wpa_s->current_ssid &&
  715. wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  716. wpa_s->current_ssid->p2p_group) {
  717. if (state == WPA_COMPLETED && !wpa_s->p2p_cli_probe) {
  718. wpa_dbg(wpa_s, MSG_DEBUG,
  719. "P2P: Enable CLI Probe Request RX reporting");
  720. wpa_s->p2p_cli_probe =
  721. wpa_drv_probe_req_report(wpa_s, 1) >= 0;
  722. } else if (state != WPA_COMPLETED && wpa_s->p2p_cli_probe) {
  723. wpa_dbg(wpa_s, MSG_DEBUG,
  724. "P2P: Disable CLI Probe Request RX reporting");
  725. wpa_s->p2p_cli_probe = 0;
  726. wpa_drv_probe_req_report(wpa_s, 0);
  727. }
  728. }
  729. #endif /* CONFIG_P2P */
  730. if (state != WPA_SCANNING)
  731. wpa_supplicant_notify_scanning(wpa_s, 0);
  732. if (state == WPA_COMPLETED && wpa_s->new_connection) {
  733. struct wpa_ssid *ssid = wpa_s->current_ssid;
  734. int fils_hlp_sent = 0;
  735. #ifdef CONFIG_SME
  736. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
  737. wpa_auth_alg_fils(wpa_s->sme.auth_alg))
  738. fils_hlp_sent = 1;
  739. #endif /* CONFIG_SME */
  740. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
  741. wpa_auth_alg_fils(wpa_s->auth_alg))
  742. fils_hlp_sent = 1;
  743. #if defined(CONFIG_CTRL_IFACE) || !defined(CONFIG_NO_STDOUT_DEBUG)
  744. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED "- Connection to "
  745. MACSTR " completed [id=%d id_str=%s%s]",
  746. MAC2STR(wpa_s->bssid),
  747. ssid ? ssid->id : -1,
  748. ssid && ssid->id_str ? ssid->id_str : "",
  749. fils_hlp_sent ? " FILS_HLP_SENT" : "");
  750. #endif /* CONFIG_CTRL_IFACE || !CONFIG_NO_STDOUT_DEBUG */
  751. wpas_clear_temp_disabled(wpa_s, ssid, 1);
  752. wpa_blacklist_clear(wpa_s);
  753. wpa_s->extra_blacklist_count = 0;
  754. wpa_s->new_connection = 0;
  755. wpa_drv_set_operstate(wpa_s, 1);
  756. #ifndef IEEE8021X_EAPOL
  757. wpa_drv_set_supp_port(wpa_s, 1);
  758. #endif /* IEEE8021X_EAPOL */
  759. wpa_s->after_wps = 0;
  760. wpa_s->known_wps_freq = 0;
  761. wpas_p2p_completed(wpa_s);
  762. sme_sched_obss_scan(wpa_s, 1);
  763. #if defined(CONFIG_FILS) && defined(IEEE8021X_EAPOL)
  764. if (!fils_hlp_sent && ssid && ssid->eap.erp)
  765. wpas_update_fils_connect_params(wpa_s);
  766. #endif /* CONFIG_FILS && IEEE8021X_EAPOL */
  767. } else if (state == WPA_DISCONNECTED || state == WPA_ASSOCIATING ||
  768. state == WPA_ASSOCIATED) {
  769. wpa_s->new_connection = 1;
  770. wpa_drv_set_operstate(wpa_s, 0);
  771. #ifndef IEEE8021X_EAPOL
  772. wpa_drv_set_supp_port(wpa_s, 0);
  773. #endif /* IEEE8021X_EAPOL */
  774. sme_sched_obss_scan(wpa_s, 0);
  775. }
  776. wpa_s->wpa_state = state;
  777. #ifdef CONFIG_BGSCAN
  778. if (state == WPA_COMPLETED)
  779. wpa_supplicant_start_bgscan(wpa_s);
  780. else if (state < WPA_ASSOCIATED)
  781. wpa_supplicant_stop_bgscan(wpa_s);
  782. #endif /* CONFIG_BGSCAN */
  783. if (state == WPA_AUTHENTICATING)
  784. wpa_supplicant_stop_autoscan(wpa_s);
  785. if (state == WPA_DISCONNECTED || state == WPA_INACTIVE)
  786. wpa_supplicant_start_autoscan(wpa_s);
  787. if (old_state >= WPA_ASSOCIATED && wpa_s->wpa_state < WPA_ASSOCIATED)
  788. wmm_ac_notify_disassoc(wpa_s);
  789. if (wpa_s->wpa_state != old_state) {
  790. wpas_notify_state_changed(wpa_s, wpa_s->wpa_state, old_state);
  791. /*
  792. * Notify the P2P Device interface about a state change in one
  793. * of the interfaces.
  794. */
  795. wpas_p2p_indicate_state_change(wpa_s);
  796. if (wpa_s->wpa_state == WPA_COMPLETED ||
  797. old_state == WPA_COMPLETED)
  798. wpas_notify_auth_changed(wpa_s);
  799. }
  800. }
  801. void wpa_supplicant_terminate_proc(struct wpa_global *global)
  802. {
  803. int pending = 0;
  804. #ifdef CONFIG_WPS
  805. struct wpa_supplicant *wpa_s = global->ifaces;
  806. while (wpa_s) {
  807. struct wpa_supplicant *next = wpa_s->next;
  808. if (wpas_wps_terminate_pending(wpa_s) == 1)
  809. pending = 1;
  810. #ifdef CONFIG_P2P
  811. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE ||
  812. (wpa_s->current_ssid && wpa_s->current_ssid->p2p_group))
  813. wpas_p2p_disconnect(wpa_s);
  814. #endif /* CONFIG_P2P */
  815. wpa_s = next;
  816. }
  817. #endif /* CONFIG_WPS */
  818. if (pending)
  819. return;
  820. eloop_terminate();
  821. }
  822. static void wpa_supplicant_terminate(int sig, void *signal_ctx)
  823. {
  824. struct wpa_global *global = signal_ctx;
  825. wpa_supplicant_terminate_proc(global);
  826. }
  827. void wpa_supplicant_clear_status(struct wpa_supplicant *wpa_s)
  828. {
  829. enum wpa_states old_state = wpa_s->wpa_state;
  830. wpa_s->pairwise_cipher = 0;
  831. wpa_s->group_cipher = 0;
  832. wpa_s->mgmt_group_cipher = 0;
  833. wpa_s->key_mgmt = 0;
  834. if (wpa_s->wpa_state != WPA_INTERFACE_DISABLED)
  835. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  836. if (wpa_s->wpa_state != old_state)
  837. wpas_notify_state_changed(wpa_s, wpa_s->wpa_state, old_state);
  838. }
  839. /**
  840. * wpa_supplicant_reload_configuration - Reload configuration data
  841. * @wpa_s: Pointer to wpa_supplicant data
  842. * Returns: 0 on success or -1 if configuration parsing failed
  843. *
  844. * This function can be used to request that the configuration data is reloaded
  845. * (e.g., after configuration file change). This function is reloading
  846. * configuration only for one interface, so this may need to be called multiple
  847. * times if %wpa_supplicant is controlling multiple interfaces and all
  848. * interfaces need reconfiguration.
  849. */
  850. int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s)
  851. {
  852. struct wpa_config *conf;
  853. int reconf_ctrl;
  854. int old_ap_scan;
  855. if (wpa_s->confname == NULL)
  856. return -1;
  857. conf = wpa_config_read(wpa_s->confname, NULL);
  858. if (conf == NULL) {
  859. wpa_msg(wpa_s, MSG_ERROR, "Failed to parse the configuration "
  860. "file '%s' - exiting", wpa_s->confname);
  861. return -1;
  862. }
  863. wpa_config_read(wpa_s->confanother, conf);
  864. conf->changed_parameters = (unsigned int) -1;
  865. reconf_ctrl = !!conf->ctrl_interface != !!wpa_s->conf->ctrl_interface
  866. || (conf->ctrl_interface && wpa_s->conf->ctrl_interface &&
  867. os_strcmp(conf->ctrl_interface,
  868. wpa_s->conf->ctrl_interface) != 0);
  869. if (reconf_ctrl && wpa_s->ctrl_iface) {
  870. wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
  871. wpa_s->ctrl_iface = NULL;
  872. }
  873. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  874. if (wpa_s->current_ssid) {
  875. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  876. wpa_s->own_disconnect_req = 1;
  877. wpa_supplicant_deauthenticate(wpa_s,
  878. WLAN_REASON_DEAUTH_LEAVING);
  879. }
  880. /*
  881. * TODO: should notify EAPOL SM about changes in opensc_engine_path,
  882. * pkcs11_engine_path, pkcs11_module_path, openssl_ciphers.
  883. */
  884. if (wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) ||
  885. wpa_s->key_mgmt == WPA_KEY_MGMT_OWE ||
  886. wpa_s->key_mgmt == WPA_KEY_MGMT_DPP) {
  887. /*
  888. * Clear forced success to clear EAP state for next
  889. * authentication.
  890. */
  891. eapol_sm_notify_eap_success(wpa_s->eapol, FALSE);
  892. }
  893. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  894. wpa_sm_set_config(wpa_s->wpa, NULL);
  895. wpa_sm_pmksa_cache_flush(wpa_s->wpa, NULL);
  896. wpa_sm_set_fast_reauth(wpa_s->wpa, wpa_s->conf->fast_reauth);
  897. rsn_preauth_deinit(wpa_s->wpa);
  898. old_ap_scan = wpa_s->conf->ap_scan;
  899. wpa_config_free(wpa_s->conf);
  900. wpa_s->conf = conf;
  901. if (old_ap_scan != wpa_s->conf->ap_scan)
  902. wpas_notify_ap_scan_changed(wpa_s);
  903. if (reconf_ctrl)
  904. wpa_s->ctrl_iface = wpa_supplicant_ctrl_iface_init(wpa_s);
  905. wpa_supplicant_update_config(wpa_s);
  906. wpa_supplicant_clear_status(wpa_s);
  907. if (wpa_supplicant_enabled_networks(wpa_s)) {
  908. wpa_s->reassociate = 1;
  909. wpa_supplicant_req_scan(wpa_s, 0, 0);
  910. }
  911. wpa_dbg(wpa_s, MSG_DEBUG, "Reconfiguration completed");
  912. return 0;
  913. }
  914. static void wpa_supplicant_reconfig(int sig, void *signal_ctx)
  915. {
  916. struct wpa_global *global = signal_ctx;
  917. struct wpa_supplicant *wpa_s;
  918. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  919. wpa_dbg(wpa_s, MSG_DEBUG, "Signal %d received - reconfiguring",
  920. sig);
  921. if (wpa_supplicant_reload_configuration(wpa_s) < 0) {
  922. wpa_supplicant_terminate_proc(global);
  923. }
  924. }
  925. if (wpa_debug_reopen_file() < 0) {
  926. /* Ignore errors since we cannot really do much to fix this */
  927. wpa_printf(MSG_DEBUG, "Could not reopen debug log file");
  928. }
  929. }
  930. static int wpa_supplicant_suites_from_ai(struct wpa_supplicant *wpa_s,
  931. struct wpa_ssid *ssid,
  932. struct wpa_ie_data *ie)
  933. {
  934. int ret = wpa_sm_parse_own_wpa_ie(wpa_s->wpa, ie);
  935. if (ret) {
  936. if (ret == -2) {
  937. wpa_msg(wpa_s, MSG_INFO, "WPA: Failed to parse WPA IE "
  938. "from association info");
  939. }
  940. return -1;
  941. }
  942. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Using WPA IE from AssocReq to set "
  943. "cipher suites");
  944. if (!(ie->group_cipher & ssid->group_cipher)) {
  945. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled group "
  946. "cipher 0x%x (mask 0x%x) - reject",
  947. ie->group_cipher, ssid->group_cipher);
  948. return -1;
  949. }
  950. if (!(ie->pairwise_cipher & ssid->pairwise_cipher)) {
  951. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled pairwise "
  952. "cipher 0x%x (mask 0x%x) - reject",
  953. ie->pairwise_cipher, ssid->pairwise_cipher);
  954. return -1;
  955. }
  956. if (!(ie->key_mgmt & ssid->key_mgmt)) {
  957. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver used disabled key "
  958. "management 0x%x (mask 0x%x) - reject",
  959. ie->key_mgmt, ssid->key_mgmt);
  960. return -1;
  961. }
  962. #ifdef CONFIG_IEEE80211W
  963. if (!(ie->capabilities & WPA_CAPABILITY_MFPC) &&
  964. wpas_get_ssid_pmf(wpa_s, ssid) == MGMT_FRAME_PROTECTION_REQUIRED) {
  965. wpa_msg(wpa_s, MSG_INFO, "WPA: Driver associated with an AP "
  966. "that does not support management frame protection - "
  967. "reject");
  968. return -1;
  969. }
  970. #endif /* CONFIG_IEEE80211W */
  971. return 0;
  972. }
  973. /**
  974. * wpa_supplicant_set_suites - Set authentication and encryption parameters
  975. * @wpa_s: Pointer to wpa_supplicant data
  976. * @bss: Scan results for the selected BSS, or %NULL if not available
  977. * @ssid: Configuration data for the selected network
  978. * @wpa_ie: Buffer for the WPA/RSN IE
  979. * @wpa_ie_len: Maximum wpa_ie buffer size on input. This is changed to be the
  980. * used buffer length in case the functions returns success.
  981. * Returns: 0 on success or -1 on failure
  982. *
  983. * This function is used to configure authentication and encryption parameters
  984. * based on the network configuration and scan result for the selected BSS (if
  985. * available).
  986. */
  987. int wpa_supplicant_set_suites(struct wpa_supplicant *wpa_s,
  988. struct wpa_bss *bss, struct wpa_ssid *ssid,
  989. u8 *wpa_ie, size_t *wpa_ie_len)
  990. {
  991. struct wpa_ie_data ie;
  992. int sel, proto;
  993. const u8 *bss_wpa, *bss_rsn, *bss_osen;
  994. if (bss) {
  995. bss_wpa = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  996. bss_rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  997. bss_osen = wpa_bss_get_vendor_ie(bss, OSEN_IE_VENDOR_TYPE);
  998. } else
  999. bss_wpa = bss_rsn = bss_osen = NULL;
  1000. if (bss_rsn && (ssid->proto & WPA_PROTO_RSN) &&
  1001. wpa_parse_wpa_ie(bss_rsn, 2 + bss_rsn[1], &ie) == 0 &&
  1002. (ie.group_cipher & ssid->group_cipher) &&
  1003. (ie.pairwise_cipher & ssid->pairwise_cipher) &&
  1004. (ie.key_mgmt & ssid->key_mgmt)) {
  1005. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using IEEE 802.11i/D9.0");
  1006. proto = WPA_PROTO_RSN;
  1007. } else if (bss_wpa && (ssid->proto & WPA_PROTO_WPA) &&
  1008. wpa_parse_wpa_ie(bss_wpa, 2 + bss_wpa[1], &ie) == 0 &&
  1009. (ie.group_cipher & ssid->group_cipher) &&
  1010. (ie.pairwise_cipher & ssid->pairwise_cipher) &&
  1011. (ie.key_mgmt & ssid->key_mgmt)) {
  1012. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using IEEE 802.11i/D3.0");
  1013. proto = WPA_PROTO_WPA;
  1014. #ifdef CONFIG_HS20
  1015. } else if (bss_osen && (ssid->proto & WPA_PROTO_OSEN)) {
  1016. wpa_dbg(wpa_s, MSG_DEBUG, "HS 2.0: using OSEN");
  1017. /* TODO: parse OSEN element */
  1018. os_memset(&ie, 0, sizeof(ie));
  1019. ie.group_cipher = WPA_CIPHER_CCMP;
  1020. ie.pairwise_cipher = WPA_CIPHER_CCMP;
  1021. ie.key_mgmt = WPA_KEY_MGMT_OSEN;
  1022. proto = WPA_PROTO_OSEN;
  1023. #endif /* CONFIG_HS20 */
  1024. } else if (bss) {
  1025. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select WPA/RSN");
  1026. wpa_dbg(wpa_s, MSG_DEBUG,
  1027. "WPA: ssid proto=0x%x pairwise_cipher=0x%x group_cipher=0x%x key_mgmt=0x%x",
  1028. ssid->proto, ssid->pairwise_cipher, ssid->group_cipher,
  1029. ssid->key_mgmt);
  1030. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: BSS " MACSTR " ssid='%s'%s%s%s",
  1031. MAC2STR(bss->bssid),
  1032. wpa_ssid_txt(bss->ssid, bss->ssid_len),
  1033. bss_wpa ? " WPA" : "",
  1034. bss_rsn ? " RSN" : "",
  1035. bss_osen ? " OSEN" : "");
  1036. if (bss_rsn) {
  1037. wpa_hexdump(MSG_DEBUG, "RSN", bss_rsn, 2 + bss_rsn[1]);
  1038. if (wpa_parse_wpa_ie(bss_rsn, 2 + bss_rsn[1], &ie)) {
  1039. wpa_dbg(wpa_s, MSG_DEBUG,
  1040. "Could not parse RSN element");
  1041. } else {
  1042. wpa_dbg(wpa_s, MSG_DEBUG,
  1043. "RSN: pairwise_cipher=0x%x group_cipher=0x%x key_mgmt=0x%x",
  1044. ie.pairwise_cipher, ie.group_cipher,
  1045. ie.key_mgmt);
  1046. }
  1047. }
  1048. if (bss_wpa) {
  1049. wpa_hexdump(MSG_DEBUG, "WPA", bss_wpa, 2 + bss_wpa[1]);
  1050. if (wpa_parse_wpa_ie(bss_wpa, 2 + bss_wpa[1], &ie)) {
  1051. wpa_dbg(wpa_s, MSG_DEBUG,
  1052. "Could not parse WPA element");
  1053. } else {
  1054. wpa_dbg(wpa_s, MSG_DEBUG,
  1055. "WPA: pairwise_cipher=0x%x group_cipher=0x%x key_mgmt=0x%x",
  1056. ie.pairwise_cipher, ie.group_cipher,
  1057. ie.key_mgmt);
  1058. }
  1059. }
  1060. return -1;
  1061. } else {
  1062. if (ssid->proto & WPA_PROTO_OSEN)
  1063. proto = WPA_PROTO_OSEN;
  1064. else if (ssid->proto & WPA_PROTO_RSN)
  1065. proto = WPA_PROTO_RSN;
  1066. else
  1067. proto = WPA_PROTO_WPA;
  1068. if (wpa_supplicant_suites_from_ai(wpa_s, ssid, &ie) < 0) {
  1069. os_memset(&ie, 0, sizeof(ie));
  1070. ie.group_cipher = ssid->group_cipher;
  1071. ie.pairwise_cipher = ssid->pairwise_cipher;
  1072. ie.key_mgmt = ssid->key_mgmt;
  1073. #ifdef CONFIG_IEEE80211W
  1074. ie.mgmt_group_cipher = 0;
  1075. if (ssid->ieee80211w != NO_MGMT_FRAME_PROTECTION) {
  1076. if (ssid->group_mgmt_cipher &
  1077. WPA_CIPHER_BIP_GMAC_256)
  1078. ie.mgmt_group_cipher =
  1079. WPA_CIPHER_BIP_GMAC_256;
  1080. else if (ssid->group_mgmt_cipher &
  1081. WPA_CIPHER_BIP_CMAC_256)
  1082. ie.mgmt_group_cipher =
  1083. WPA_CIPHER_BIP_CMAC_256;
  1084. else if (ssid->group_mgmt_cipher &
  1085. WPA_CIPHER_BIP_GMAC_128)
  1086. ie.mgmt_group_cipher =
  1087. WPA_CIPHER_BIP_GMAC_128;
  1088. else
  1089. ie.mgmt_group_cipher =
  1090. WPA_CIPHER_AES_128_CMAC;
  1091. }
  1092. #endif /* CONFIG_IEEE80211W */
  1093. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Set cipher suites "
  1094. "based on configuration");
  1095. } else
  1096. proto = ie.proto;
  1097. }
  1098. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected cipher suites: group %d "
  1099. "pairwise %d key_mgmt %d proto %d",
  1100. ie.group_cipher, ie.pairwise_cipher, ie.key_mgmt, proto);
  1101. #ifdef CONFIG_IEEE80211W
  1102. if (ssid->ieee80211w) {
  1103. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected mgmt group cipher %d",
  1104. ie.mgmt_group_cipher);
  1105. }
  1106. #endif /* CONFIG_IEEE80211W */
  1107. wpa_s->wpa_proto = proto;
  1108. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PROTO, proto);
  1109. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_RSN_ENABLED,
  1110. !!(ssid->proto & (WPA_PROTO_RSN | WPA_PROTO_OSEN)));
  1111. if (bss || !wpa_s->ap_ies_from_associnfo) {
  1112. if (wpa_sm_set_ap_wpa_ie(wpa_s->wpa, bss_wpa,
  1113. bss_wpa ? 2 + bss_wpa[1] : 0) ||
  1114. wpa_sm_set_ap_rsn_ie(wpa_s->wpa, bss_rsn,
  1115. bss_rsn ? 2 + bss_rsn[1] : 0))
  1116. return -1;
  1117. }
  1118. #ifdef CONFIG_NO_WPA
  1119. wpa_s->group_cipher = WPA_CIPHER_NONE;
  1120. wpa_s->pairwise_cipher = WPA_CIPHER_NONE;
  1121. #else /* CONFIG_NO_WPA */
  1122. sel = ie.group_cipher & ssid->group_cipher;
  1123. wpa_s->group_cipher = wpa_pick_group_cipher(sel);
  1124. if (wpa_s->group_cipher < 0) {
  1125. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select group "
  1126. "cipher");
  1127. return -1;
  1128. }
  1129. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using GTK %s",
  1130. wpa_cipher_txt(wpa_s->group_cipher));
  1131. sel = ie.pairwise_cipher & ssid->pairwise_cipher;
  1132. wpa_s->pairwise_cipher = wpa_pick_pairwise_cipher(sel, 1);
  1133. if (wpa_s->pairwise_cipher < 0) {
  1134. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select pairwise "
  1135. "cipher");
  1136. return -1;
  1137. }
  1138. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using PTK %s",
  1139. wpa_cipher_txt(wpa_s->pairwise_cipher));
  1140. #endif /* CONFIG_NO_WPA */
  1141. sel = ie.key_mgmt & ssid->key_mgmt;
  1142. #ifdef CONFIG_SAE
  1143. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SAE))
  1144. sel &= ~(WPA_KEY_MGMT_SAE | WPA_KEY_MGMT_FT_SAE);
  1145. #endif /* CONFIG_SAE */
  1146. if (0) {
  1147. #ifdef CONFIG_SUITEB192
  1148. } else if (sel & WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
  1149. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_SUITE_B_192;
  1150. wpa_dbg(wpa_s, MSG_DEBUG,
  1151. "WPA: using KEY_MGMT 802.1X with Suite B (192-bit)");
  1152. #endif /* CONFIG_SUITEB192 */
  1153. #ifdef CONFIG_SUITEB
  1154. } else if (sel & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
  1155. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_SUITE_B;
  1156. wpa_dbg(wpa_s, MSG_DEBUG,
  1157. "WPA: using KEY_MGMT 802.1X with Suite B");
  1158. #endif /* CONFIG_SUITEB */
  1159. #ifdef CONFIG_FILS
  1160. #ifdef CONFIG_IEEE80211R
  1161. } else if (sel & WPA_KEY_MGMT_FT_FILS_SHA384) {
  1162. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_FILS_SHA384;
  1163. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT-FILS-SHA384");
  1164. } else if (sel & WPA_KEY_MGMT_FT_FILS_SHA256) {
  1165. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_FILS_SHA256;
  1166. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT-FILS-SHA256");
  1167. #endif /* CONFIG_IEEE80211R */
  1168. } else if (sel & WPA_KEY_MGMT_FILS_SHA384) {
  1169. wpa_s->key_mgmt = WPA_KEY_MGMT_FILS_SHA384;
  1170. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FILS-SHA384");
  1171. } else if (sel & WPA_KEY_MGMT_FILS_SHA256) {
  1172. wpa_s->key_mgmt = WPA_KEY_MGMT_FILS_SHA256;
  1173. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FILS-SHA256");
  1174. #endif /* CONFIG_FILS */
  1175. #ifdef CONFIG_IEEE80211R
  1176. } else if (sel & WPA_KEY_MGMT_FT_IEEE8021X) {
  1177. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_IEEE8021X;
  1178. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/802.1X");
  1179. } else if (sel & WPA_KEY_MGMT_FT_PSK) {
  1180. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_PSK;
  1181. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT FT/PSK");
  1182. #endif /* CONFIG_IEEE80211R */
  1183. #ifdef CONFIG_SAE
  1184. } else if (sel & WPA_KEY_MGMT_SAE) {
  1185. wpa_s->key_mgmt = WPA_KEY_MGMT_SAE;
  1186. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using KEY_MGMT SAE");
  1187. } else if (sel & WPA_KEY_MGMT_FT_SAE) {
  1188. wpa_s->key_mgmt = WPA_KEY_MGMT_FT_SAE;
  1189. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using KEY_MGMT FT/SAE");
  1190. #endif /* CONFIG_SAE */
  1191. #ifdef CONFIG_IEEE80211W
  1192. } else if (sel & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  1193. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X_SHA256;
  1194. wpa_dbg(wpa_s, MSG_DEBUG,
  1195. "WPA: using KEY_MGMT 802.1X with SHA256");
  1196. } else if (sel & WPA_KEY_MGMT_PSK_SHA256) {
  1197. wpa_s->key_mgmt = WPA_KEY_MGMT_PSK_SHA256;
  1198. wpa_dbg(wpa_s, MSG_DEBUG,
  1199. "WPA: using KEY_MGMT PSK with SHA256");
  1200. #endif /* CONFIG_IEEE80211W */
  1201. } else if (sel & WPA_KEY_MGMT_IEEE8021X) {
  1202. wpa_s->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
  1203. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT 802.1X");
  1204. } else if (sel & WPA_KEY_MGMT_PSK) {
  1205. wpa_s->key_mgmt = WPA_KEY_MGMT_PSK;
  1206. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-PSK");
  1207. } else if (sel & WPA_KEY_MGMT_WPA_NONE) {
  1208. wpa_s->key_mgmt = WPA_KEY_MGMT_WPA_NONE;
  1209. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using KEY_MGMT WPA-NONE");
  1210. #ifdef CONFIG_HS20
  1211. } else if (sel & WPA_KEY_MGMT_OSEN) {
  1212. wpa_s->key_mgmt = WPA_KEY_MGMT_OSEN;
  1213. wpa_dbg(wpa_s, MSG_DEBUG, "HS 2.0: using KEY_MGMT OSEN");
  1214. #endif /* CONFIG_HS20 */
  1215. #ifdef CONFIG_OWE
  1216. } else if (sel & WPA_KEY_MGMT_OWE) {
  1217. wpa_s->key_mgmt = WPA_KEY_MGMT_OWE;
  1218. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using KEY_MGMT OWE");
  1219. #endif /* CONFIG_OWE */
  1220. #ifdef CONFIG_DPP
  1221. } else if (sel & WPA_KEY_MGMT_DPP) {
  1222. wpa_s->key_mgmt = WPA_KEY_MGMT_DPP;
  1223. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: using KEY_MGMT DPP");
  1224. #endif /* CONFIG_DPP */
  1225. } else {
  1226. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to select "
  1227. "authenticated key management type");
  1228. return -1;
  1229. }
  1230. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_KEY_MGMT, wpa_s->key_mgmt);
  1231. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_PAIRWISE,
  1232. wpa_s->pairwise_cipher);
  1233. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_GROUP, wpa_s->group_cipher);
  1234. #ifdef CONFIG_IEEE80211W
  1235. sel = ie.mgmt_group_cipher;
  1236. if (ssid->group_mgmt_cipher)
  1237. sel &= ssid->group_mgmt_cipher;
  1238. if (wpas_get_ssid_pmf(wpa_s, ssid) == NO_MGMT_FRAME_PROTECTION ||
  1239. !(ie.capabilities & WPA_CAPABILITY_MFPC))
  1240. sel = 0;
  1241. if (sel & WPA_CIPHER_AES_128_CMAC) {
  1242. wpa_s->mgmt_group_cipher = WPA_CIPHER_AES_128_CMAC;
  1243. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  1244. "AES-128-CMAC");
  1245. } else if (sel & WPA_CIPHER_BIP_GMAC_128) {
  1246. wpa_s->mgmt_group_cipher = WPA_CIPHER_BIP_GMAC_128;
  1247. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  1248. "BIP-GMAC-128");
  1249. } else if (sel & WPA_CIPHER_BIP_GMAC_256) {
  1250. wpa_s->mgmt_group_cipher = WPA_CIPHER_BIP_GMAC_256;
  1251. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  1252. "BIP-GMAC-256");
  1253. } else if (sel & WPA_CIPHER_BIP_CMAC_256) {
  1254. wpa_s->mgmt_group_cipher = WPA_CIPHER_BIP_CMAC_256;
  1255. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: using MGMT group cipher "
  1256. "BIP-CMAC-256");
  1257. } else {
  1258. wpa_s->mgmt_group_cipher = 0;
  1259. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: not using MGMT group cipher");
  1260. }
  1261. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MGMT_GROUP,
  1262. wpa_s->mgmt_group_cipher);
  1263. wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_MFP,
  1264. wpas_get_ssid_pmf(wpa_s, ssid));
  1265. #endif /* CONFIG_IEEE80211W */
  1266. if (wpa_sm_set_assoc_wpa_ie_default(wpa_s->wpa, wpa_ie, wpa_ie_len)) {
  1267. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to generate WPA IE");
  1268. return -1;
  1269. }
  1270. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt)) {
  1271. int psk_set = 0;
  1272. if (ssid->psk_set) {
  1273. wpa_sm_set_pmk(wpa_s->wpa, ssid->psk, PMK_LEN, NULL,
  1274. NULL);
  1275. psk_set = 1;
  1276. }
  1277. if (wpa_key_mgmt_sae(ssid->key_mgmt) && ssid->sae_password)
  1278. psk_set = 1;
  1279. #ifndef CONFIG_NO_PBKDF2
  1280. if (bss && ssid->bssid_set && ssid->ssid_len == 0 &&
  1281. ssid->passphrase) {
  1282. u8 psk[PMK_LEN];
  1283. pbkdf2_sha1(ssid->passphrase, bss->ssid, bss->ssid_len,
  1284. 4096, psk, PMK_LEN);
  1285. wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
  1286. psk, PMK_LEN);
  1287. wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN, NULL, NULL);
  1288. psk_set = 1;
  1289. os_memset(psk, 0, sizeof(psk));
  1290. }
  1291. #endif /* CONFIG_NO_PBKDF2 */
  1292. #ifdef CONFIG_EXT_PASSWORD
  1293. if (ssid->ext_psk) {
  1294. struct wpabuf *pw = ext_password_get(wpa_s->ext_pw,
  1295. ssid->ext_psk);
  1296. char pw_str[64 + 1];
  1297. u8 psk[PMK_LEN];
  1298. if (pw == NULL) {
  1299. wpa_msg(wpa_s, MSG_INFO, "EXT PW: No PSK "
  1300. "found from external storage");
  1301. return -1;
  1302. }
  1303. if (wpabuf_len(pw) < 8 || wpabuf_len(pw) > 64) {
  1304. wpa_msg(wpa_s, MSG_INFO, "EXT PW: Unexpected "
  1305. "PSK length %d in external storage",
  1306. (int) wpabuf_len(pw));
  1307. ext_password_free(pw);
  1308. return -1;
  1309. }
  1310. os_memcpy(pw_str, wpabuf_head(pw), wpabuf_len(pw));
  1311. pw_str[wpabuf_len(pw)] = '\0';
  1312. #ifndef CONFIG_NO_PBKDF2
  1313. if (wpabuf_len(pw) >= 8 && wpabuf_len(pw) < 64 && bss)
  1314. {
  1315. pbkdf2_sha1(pw_str, bss->ssid, bss->ssid_len,
  1316. 4096, psk, PMK_LEN);
  1317. os_memset(pw_str, 0, sizeof(pw_str));
  1318. wpa_hexdump_key(MSG_MSGDUMP, "PSK (from "
  1319. "external passphrase)",
  1320. psk, PMK_LEN);
  1321. wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN, NULL,
  1322. NULL);
  1323. psk_set = 1;
  1324. os_memset(psk, 0, sizeof(psk));
  1325. } else
  1326. #endif /* CONFIG_NO_PBKDF2 */
  1327. if (wpabuf_len(pw) == 2 * PMK_LEN) {
  1328. if (hexstr2bin(pw_str, psk, PMK_LEN) < 0) {
  1329. wpa_msg(wpa_s, MSG_INFO, "EXT PW: "
  1330. "Invalid PSK hex string");
  1331. os_memset(pw_str, 0, sizeof(pw_str));
  1332. ext_password_free(pw);
  1333. return -1;
  1334. }
  1335. wpa_sm_set_pmk(wpa_s->wpa, psk, PMK_LEN, NULL,
  1336. NULL);
  1337. psk_set = 1;
  1338. os_memset(psk, 0, sizeof(psk));
  1339. } else {
  1340. wpa_msg(wpa_s, MSG_INFO, "EXT PW: No suitable "
  1341. "PSK available");
  1342. os_memset(pw_str, 0, sizeof(pw_str));
  1343. ext_password_free(pw);
  1344. return -1;
  1345. }
  1346. os_memset(pw_str, 0, sizeof(pw_str));
  1347. ext_password_free(pw);
  1348. }
  1349. #endif /* CONFIG_EXT_PASSWORD */
  1350. if (!psk_set) {
  1351. wpa_msg(wpa_s, MSG_INFO,
  1352. "No PSK available for association");
  1353. return -1;
  1354. }
  1355. #ifdef CONFIG_OWE
  1356. } else if (wpa_s->key_mgmt == WPA_KEY_MGMT_OWE) {
  1357. /* OWE Diffie-Hellman exchange in (Re)Association
  1358. * Request/Response frames set the PMK, so do not override it
  1359. * here. */
  1360. #endif /* CONFIG_OWE */
  1361. } else
  1362. wpa_sm_set_pmk_from_pmksa(wpa_s->wpa);
  1363. return 0;
  1364. }
  1365. static void wpas_ext_capab_byte(struct wpa_supplicant *wpa_s, u8 *pos, int idx)
  1366. {
  1367. *pos = 0x00;
  1368. switch (idx) {
  1369. case 0: /* Bits 0-7 */
  1370. break;
  1371. case 1: /* Bits 8-15 */
  1372. break;
  1373. case 2: /* Bits 16-23 */
  1374. #ifdef CONFIG_WNM
  1375. *pos |= 0x02; /* Bit 17 - WNM-Sleep Mode */
  1376. *pos |= 0x08; /* Bit 19 - BSS Transition */
  1377. #endif /* CONFIG_WNM */
  1378. break;
  1379. case 3: /* Bits 24-31 */
  1380. #ifdef CONFIG_WNM
  1381. *pos |= 0x02; /* Bit 25 - SSID List */
  1382. #endif /* CONFIG_WNM */
  1383. #ifdef CONFIG_INTERWORKING
  1384. if (wpa_s->conf->interworking)
  1385. *pos |= 0x80; /* Bit 31 - Interworking */
  1386. #endif /* CONFIG_INTERWORKING */
  1387. break;
  1388. case 4: /* Bits 32-39 */
  1389. #ifdef CONFIG_INTERWORKING
  1390. if (wpa_s->drv_flags / WPA_DRIVER_FLAGS_QOS_MAPPING)
  1391. *pos |= 0x01; /* Bit 32 - QoS Map */
  1392. #endif /* CONFIG_INTERWORKING */
  1393. break;
  1394. case 5: /* Bits 40-47 */
  1395. #ifdef CONFIG_HS20
  1396. if (wpa_s->conf->hs20)
  1397. *pos |= 0x40; /* Bit 46 - WNM-Notification */
  1398. #endif /* CONFIG_HS20 */
  1399. #ifdef CONFIG_MBO
  1400. *pos |= 0x40; /* Bit 46 - WNM-Notification */
  1401. #endif /* CONFIG_MBO */
  1402. break;
  1403. case 6: /* Bits 48-55 */
  1404. break;
  1405. case 7: /* Bits 56-63 */
  1406. break;
  1407. case 8: /* Bits 64-71 */
  1408. if (wpa_s->conf->ftm_responder)
  1409. *pos |= 0x40; /* Bit 70 - FTM responder */
  1410. if (wpa_s->conf->ftm_initiator)
  1411. *pos |= 0x80; /* Bit 71 - FTM initiator */
  1412. break;
  1413. case 9: /* Bits 72-79 */
  1414. #ifdef CONFIG_FILS
  1415. *pos |= 0x01;
  1416. #endif /* CONFIG_FILS */
  1417. break;
  1418. }
  1419. }
  1420. int wpas_build_ext_capab(struct wpa_supplicant *wpa_s, u8 *buf, size_t buflen)
  1421. {
  1422. u8 *pos = buf;
  1423. u8 len = 10, i;
  1424. if (len < wpa_s->extended_capa_len)
  1425. len = wpa_s->extended_capa_len;
  1426. if (buflen < (size_t) len + 2) {
  1427. wpa_printf(MSG_INFO,
  1428. "Not enough room for building extended capabilities element");
  1429. return -1;
  1430. }
  1431. *pos++ = WLAN_EID_EXT_CAPAB;
  1432. *pos++ = len;
  1433. for (i = 0; i < len; i++, pos++) {
  1434. wpas_ext_capab_byte(wpa_s, pos, i);
  1435. if (i < wpa_s->extended_capa_len) {
  1436. *pos &= ~wpa_s->extended_capa_mask[i];
  1437. *pos |= wpa_s->extended_capa[i];
  1438. }
  1439. }
  1440. while (len > 0 && buf[1 + len] == 0) {
  1441. len--;
  1442. buf[1] = len;
  1443. }
  1444. if (len == 0)
  1445. return 0;
  1446. return 2 + len;
  1447. }
  1448. static int wpas_valid_bss(struct wpa_supplicant *wpa_s,
  1449. struct wpa_bss *test_bss)
  1450. {
  1451. struct wpa_bss *bss;
  1452. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1453. if (bss == test_bss)
  1454. return 1;
  1455. }
  1456. return 0;
  1457. }
  1458. static int wpas_valid_ssid(struct wpa_supplicant *wpa_s,
  1459. struct wpa_ssid *test_ssid)
  1460. {
  1461. struct wpa_ssid *ssid;
  1462. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1463. if (ssid == test_ssid)
  1464. return 1;
  1465. }
  1466. return 0;
  1467. }
  1468. int wpas_valid_bss_ssid(struct wpa_supplicant *wpa_s, struct wpa_bss *test_bss,
  1469. struct wpa_ssid *test_ssid)
  1470. {
  1471. if (test_bss && !wpas_valid_bss(wpa_s, test_bss))
  1472. return 0;
  1473. return test_ssid == NULL || wpas_valid_ssid(wpa_s, test_ssid);
  1474. }
  1475. void wpas_connect_work_free(struct wpa_connect_work *cwork)
  1476. {
  1477. if (cwork == NULL)
  1478. return;
  1479. os_free(cwork);
  1480. }
  1481. void wpas_connect_work_done(struct wpa_supplicant *wpa_s)
  1482. {
  1483. struct wpa_connect_work *cwork;
  1484. struct wpa_radio_work *work = wpa_s->connect_work;
  1485. if (!work)
  1486. return;
  1487. wpa_s->connect_work = NULL;
  1488. cwork = work->ctx;
  1489. work->ctx = NULL;
  1490. wpas_connect_work_free(cwork);
  1491. radio_work_done(work);
  1492. }
  1493. int wpas_update_random_addr(struct wpa_supplicant *wpa_s, int style)
  1494. {
  1495. struct os_reltime now;
  1496. u8 addr[ETH_ALEN];
  1497. os_get_reltime(&now);
  1498. if (wpa_s->last_mac_addr_style == style &&
  1499. wpa_s->last_mac_addr_change.sec != 0 &&
  1500. !os_reltime_expired(&now, &wpa_s->last_mac_addr_change,
  1501. wpa_s->conf->rand_addr_lifetime)) {
  1502. wpa_msg(wpa_s, MSG_DEBUG,
  1503. "Previously selected random MAC address has not yet expired");
  1504. return 0;
  1505. }
  1506. switch (style) {
  1507. case 1:
  1508. if (random_mac_addr(addr) < 0)
  1509. return -1;
  1510. break;
  1511. case 2:
  1512. os_memcpy(addr, wpa_s->perm_addr, ETH_ALEN);
  1513. if (random_mac_addr_keep_oui(addr) < 0)
  1514. return -1;
  1515. break;
  1516. default:
  1517. return -1;
  1518. }
  1519. if (wpa_drv_set_mac_addr(wpa_s, addr) < 0) {
  1520. wpa_msg(wpa_s, MSG_INFO,
  1521. "Failed to set random MAC address");
  1522. return -1;
  1523. }
  1524. os_get_reltime(&wpa_s->last_mac_addr_change);
  1525. wpa_s->mac_addr_changed = 1;
  1526. wpa_s->last_mac_addr_style = style;
  1527. if (wpa_supplicant_update_mac_addr(wpa_s) < 0) {
  1528. wpa_msg(wpa_s, MSG_INFO,
  1529. "Could not update MAC address information");
  1530. return -1;
  1531. }
  1532. wpa_msg(wpa_s, MSG_DEBUG, "Using random MAC address " MACSTR,
  1533. MAC2STR(addr));
  1534. return 0;
  1535. }
  1536. int wpas_update_random_addr_disassoc(struct wpa_supplicant *wpa_s)
  1537. {
  1538. if (wpa_s->wpa_state >= WPA_AUTHENTICATING ||
  1539. !wpa_s->conf->preassoc_mac_addr)
  1540. return 0;
  1541. return wpas_update_random_addr(wpa_s, wpa_s->conf->preassoc_mac_addr);
  1542. }
  1543. static void wpas_start_assoc_cb(struct wpa_radio_work *work, int deinit);
  1544. /**
  1545. * wpa_supplicant_associate - Request association
  1546. * @wpa_s: Pointer to wpa_supplicant data
  1547. * @bss: Scan results for the selected BSS, or %NULL if not available
  1548. * @ssid: Configuration data for the selected network
  1549. *
  1550. * This function is used to request %wpa_supplicant to associate with a BSS.
  1551. */
  1552. void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
  1553. struct wpa_bss *bss, struct wpa_ssid *ssid)
  1554. {
  1555. struct wpa_connect_work *cwork;
  1556. int rand_style;
  1557. wpa_s->own_disconnect_req = 0;
  1558. /*
  1559. * If we are starting a new connection, any previously pending EAPOL
  1560. * RX cannot be valid anymore.
  1561. */
  1562. wpabuf_free(wpa_s->pending_eapol_rx);
  1563. wpa_s->pending_eapol_rx = NULL;
  1564. if (ssid->mac_addr == -1)
  1565. rand_style = wpa_s->conf->mac_addr;
  1566. else
  1567. rand_style = ssid->mac_addr;
  1568. wmm_ac_clear_saved_tspecs(wpa_s);
  1569. wpa_s->reassoc_same_bss = 0;
  1570. wpa_s->reassoc_same_ess = 0;
  1571. #ifdef CONFIG_TESTING_OPTIONS
  1572. wpa_s->testing_resend_assoc = 0;
  1573. #endif /* CONFIG_TESTING_OPTIONS */
  1574. if (wpa_s->last_ssid == ssid) {
  1575. wpa_dbg(wpa_s, MSG_DEBUG, "Re-association to the same ESS");
  1576. wpa_s->reassoc_same_ess = 1;
  1577. if (wpa_s->current_bss && wpa_s->current_bss == bss) {
  1578. wmm_ac_save_tspecs(wpa_s);
  1579. wpa_s->reassoc_same_bss = 1;
  1580. }
  1581. }
  1582. if (rand_style > 0 && !wpa_s->reassoc_same_ess) {
  1583. if (wpas_update_random_addr(wpa_s, rand_style) < 0)
  1584. return;
  1585. wpa_sm_pmksa_cache_flush(wpa_s->wpa, ssid);
  1586. } else if (rand_style == 0 && wpa_s->mac_addr_changed) {
  1587. if (wpa_drv_set_mac_addr(wpa_s, NULL) < 0) {
  1588. wpa_msg(wpa_s, MSG_INFO,
  1589. "Could not restore permanent MAC address");
  1590. return;
  1591. }
  1592. wpa_s->mac_addr_changed = 0;
  1593. if (wpa_supplicant_update_mac_addr(wpa_s) < 0) {
  1594. wpa_msg(wpa_s, MSG_INFO,
  1595. "Could not update MAC address information");
  1596. return;
  1597. }
  1598. wpa_msg(wpa_s, MSG_DEBUG, "Using permanent MAC address");
  1599. }
  1600. wpa_s->last_ssid = ssid;
  1601. #ifdef CONFIG_IBSS_RSN
  1602. ibss_rsn_deinit(wpa_s->ibss_rsn);
  1603. wpa_s->ibss_rsn = NULL;
  1604. #else /* CONFIG_IBSS_RSN */
  1605. if (ssid->mode == WPAS_MODE_IBSS &&
  1606. !(ssid->key_mgmt & (WPA_KEY_MGMT_NONE | WPA_KEY_MGMT_WPA_NONE))) {
  1607. wpa_msg(wpa_s, MSG_INFO,
  1608. "IBSS RSN not supported in the build");
  1609. return;
  1610. }
  1611. #endif /* CONFIG_IBSS_RSN */
  1612. if (ssid->mode == WPAS_MODE_AP || ssid->mode == WPAS_MODE_P2P_GO ||
  1613. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  1614. #ifdef CONFIG_AP
  1615. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_AP)) {
  1616. wpa_msg(wpa_s, MSG_INFO, "Driver does not support AP "
  1617. "mode");
  1618. return;
  1619. }
  1620. if (wpa_supplicant_create_ap(wpa_s, ssid) < 0) {
  1621. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  1622. if (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION)
  1623. wpas_p2p_ap_setup_failed(wpa_s);
  1624. return;
  1625. }
  1626. wpa_s->current_bss = bss;
  1627. #else /* CONFIG_AP */
  1628. wpa_msg(wpa_s, MSG_ERROR, "AP mode support not included in "
  1629. "the build");
  1630. #endif /* CONFIG_AP */
  1631. return;
  1632. }
  1633. if (ssid->mode == WPAS_MODE_MESH) {
  1634. #ifdef CONFIG_MESH
  1635. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_MESH)) {
  1636. wpa_msg(wpa_s, MSG_INFO,
  1637. "Driver does not support mesh mode");
  1638. return;
  1639. }
  1640. if (bss)
  1641. ssid->frequency = bss->freq;
  1642. if (wpa_supplicant_join_mesh(wpa_s, ssid) < 0) {
  1643. wpa_msg(wpa_s, MSG_ERROR, "Could not join mesh");
  1644. return;
  1645. }
  1646. wpa_s->current_bss = bss;
  1647. wpa_msg(wpa_s, MSG_INFO, MESH_GROUP_STARTED "ssid=\"%s\" id=%d",
  1648. wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  1649. ssid->id);
  1650. wpas_notify_mesh_group_started(wpa_s, ssid);
  1651. #else /* CONFIG_MESH */
  1652. wpa_msg(wpa_s, MSG_ERROR,
  1653. "mesh mode support not included in the build");
  1654. #endif /* CONFIG_MESH */
  1655. return;
  1656. }
  1657. /*
  1658. * Set WPA state machine configuration to match the selected network now
  1659. * so that the information is available before wpas_start_assoc_cb()
  1660. * gets called. This is needed at least for RSN pre-authentication where
  1661. * candidate APs are added to a list based on scan result processing
  1662. * before completion of the first association.
  1663. */
  1664. wpa_supplicant_rsn_supp_set_config(wpa_s, ssid);
  1665. #ifdef CONFIG_DPP
  1666. if (wpas_dpp_check_connect(wpa_s, ssid, bss) != 0)
  1667. return;
  1668. #endif /* CONFIG_DPP */
  1669. #ifdef CONFIG_TDLS
  1670. if (bss)
  1671. wpa_tdls_ap_ies(wpa_s->wpa, (const u8 *) (bss + 1),
  1672. bss->ie_len);
  1673. #endif /* CONFIG_TDLS */
  1674. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME) &&
  1675. ssid->mode == IEEE80211_MODE_INFRA) {
  1676. sme_authenticate(wpa_s, bss, ssid);
  1677. return;
  1678. }
  1679. if (wpa_s->connect_work) {
  1680. wpa_dbg(wpa_s, MSG_DEBUG, "Reject wpa_supplicant_associate() call since connect_work exist");
  1681. return;
  1682. }
  1683. if (radio_work_pending(wpa_s, "connect")) {
  1684. wpa_dbg(wpa_s, MSG_DEBUG, "Reject wpa_supplicant_associate() call since pending work exist");
  1685. return;
  1686. }
  1687. #ifdef CONFIG_SME
  1688. if (ssid->mode == WPAS_MODE_IBSS || ssid->mode == WPAS_MODE_MESH) {
  1689. /* Clear possibly set auth_alg, if any, from last attempt. */
  1690. wpa_s->sme.auth_alg = WPA_AUTH_ALG_OPEN;
  1691. }
  1692. #endif /* CONFIG_SME */
  1693. wpas_abort_ongoing_scan(wpa_s);
  1694. cwork = os_zalloc(sizeof(*cwork));
  1695. if (cwork == NULL)
  1696. return;
  1697. cwork->bss = bss;
  1698. cwork->ssid = ssid;
  1699. if (radio_add_work(wpa_s, bss ? bss->freq : 0, "connect", 1,
  1700. wpas_start_assoc_cb, cwork) < 0) {
  1701. os_free(cwork);
  1702. }
  1703. }
  1704. static int bss_is_ibss(struct wpa_bss *bss)
  1705. {
  1706. return (bss->caps & (IEEE80211_CAP_ESS | IEEE80211_CAP_IBSS)) ==
  1707. IEEE80211_CAP_IBSS;
  1708. }
  1709. static int drv_supports_vht(struct wpa_supplicant *wpa_s,
  1710. const struct wpa_ssid *ssid)
  1711. {
  1712. enum hostapd_hw_mode hw_mode;
  1713. struct hostapd_hw_modes *mode = NULL;
  1714. u8 channel;
  1715. int i;
  1716. hw_mode = ieee80211_freq_to_chan(ssid->frequency, &channel);
  1717. if (hw_mode == NUM_HOSTAPD_MODES)
  1718. return 0;
  1719. for (i = 0; wpa_s->hw.modes && i < wpa_s->hw.num_modes; i++) {
  1720. if (wpa_s->hw.modes[i].mode == hw_mode) {
  1721. mode = &wpa_s->hw.modes[i];
  1722. break;
  1723. }
  1724. }
  1725. if (!mode)
  1726. return 0;
  1727. return mode->vht_capab != 0;
  1728. }
  1729. void ibss_mesh_setup_freq(struct wpa_supplicant *wpa_s,
  1730. const struct wpa_ssid *ssid,
  1731. struct hostapd_freq_params *freq)
  1732. {
  1733. enum hostapd_hw_mode hw_mode;
  1734. struct hostapd_hw_modes *mode = NULL;
  1735. int ht40plus[] = { 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157,
  1736. 184, 192 };
  1737. int vht80[] = { 36, 52, 100, 116, 132, 149 };
  1738. struct hostapd_channel_data *pri_chan = NULL, *sec_chan = NULL;
  1739. u8 channel;
  1740. int i, chan_idx, ht40 = -1, res, obss_scan = 1;
  1741. unsigned int j, k;
  1742. struct hostapd_freq_params vht_freq;
  1743. int chwidth, seg0, seg1;
  1744. u32 vht_caps = 0;
  1745. freq->freq = ssid->frequency;
  1746. for (j = 0; j < wpa_s->last_scan_res_used; j++) {
  1747. struct wpa_bss *bss = wpa_s->last_scan_res[j];
  1748. if (ssid->mode != WPAS_MODE_IBSS)
  1749. break;
  1750. /* Don't adjust control freq in case of fixed_freq */
  1751. if (ssid->fixed_freq)
  1752. break;
  1753. if (!bss_is_ibss(bss))
  1754. continue;
  1755. if (ssid->ssid_len == bss->ssid_len &&
  1756. os_memcmp(ssid->ssid, bss->ssid, bss->ssid_len) == 0) {
  1757. wpa_printf(MSG_DEBUG,
  1758. "IBSS already found in scan results, adjust control freq: %d",
  1759. bss->freq);
  1760. freq->freq = bss->freq;
  1761. obss_scan = 0;
  1762. break;
  1763. }
  1764. }
  1765. /* For IBSS check HT_IBSS flag */
  1766. if (ssid->mode == WPAS_MODE_IBSS &&
  1767. !(wpa_s->drv_flags & WPA_DRIVER_FLAGS_HT_IBSS))
  1768. return;
  1769. if (wpa_s->group_cipher == WPA_CIPHER_WEP40 ||
  1770. wpa_s->group_cipher == WPA_CIPHER_WEP104 ||
  1771. wpa_s->pairwise_cipher == WPA_CIPHER_TKIP) {
  1772. wpa_printf(MSG_DEBUG,
  1773. "IBSS: WEP/TKIP detected, do not try to enable HT");
  1774. return;
  1775. }
  1776. hw_mode = ieee80211_freq_to_chan(freq->freq, &channel);
  1777. for (i = 0; wpa_s->hw.modes && i < wpa_s->hw.num_modes; i++) {
  1778. if (wpa_s->hw.modes[i].mode == hw_mode) {
  1779. mode = &wpa_s->hw.modes[i];
  1780. break;
  1781. }
  1782. }
  1783. if (!mode)
  1784. return;
  1785. #ifdef CONFIG_HT_OVERRIDES
  1786. if (ssid->disable_ht) {
  1787. freq->ht_enabled = 0;
  1788. return;
  1789. }
  1790. #endif /* CONFIG_HT_OVERRIDES */
  1791. freq->ht_enabled = ht_supported(mode);
  1792. if (!freq->ht_enabled)
  1793. return;
  1794. /* Setup higher BW only for 5 GHz */
  1795. if (mode->mode != HOSTAPD_MODE_IEEE80211A)
  1796. return;
  1797. for (chan_idx = 0; chan_idx < mode->num_channels; chan_idx++) {
  1798. pri_chan = &mode->channels[chan_idx];
  1799. if (pri_chan->chan == channel)
  1800. break;
  1801. pri_chan = NULL;
  1802. }
  1803. if (!pri_chan)
  1804. return;
  1805. /* Check primary channel flags */
  1806. if (pri_chan->flag & (HOSTAPD_CHAN_DISABLED | HOSTAPD_CHAN_NO_IR))
  1807. return;
  1808. #ifdef CONFIG_HT_OVERRIDES
  1809. if (ssid->disable_ht40)
  1810. return;
  1811. #endif /* CONFIG_HT_OVERRIDES */
  1812. /* Check/setup HT40+/HT40- */
  1813. for (j = 0; j < ARRAY_SIZE(ht40plus); j++) {
  1814. if (ht40plus[j] == channel) {
  1815. ht40 = 1;
  1816. break;
  1817. }
  1818. }
  1819. /* Find secondary channel */
  1820. for (i = 0; i < mode->num_channels; i++) {
  1821. sec_chan = &mode->channels[i];
  1822. if (sec_chan->chan == channel + ht40 * 4)
  1823. break;
  1824. sec_chan = NULL;
  1825. }
  1826. if (!sec_chan)
  1827. return;
  1828. /* Check secondary channel flags */
  1829. if (sec_chan->flag & (HOSTAPD_CHAN_DISABLED | HOSTAPD_CHAN_NO_IR))
  1830. return;
  1831. freq->channel = pri_chan->chan;
  1832. if (ht40 == -1) {
  1833. if (!(pri_chan->flag & HOSTAPD_CHAN_HT40MINUS))
  1834. return;
  1835. } else {
  1836. if (!(pri_chan->flag & HOSTAPD_CHAN_HT40PLUS))
  1837. return;
  1838. }
  1839. freq->sec_channel_offset = ht40;
  1840. if (obss_scan) {
  1841. struct wpa_scan_results *scan_res;
  1842. scan_res = wpa_supplicant_get_scan_results(wpa_s, NULL, 0);
  1843. if (scan_res == NULL) {
  1844. /* Back to HT20 */
  1845. freq->sec_channel_offset = 0;
  1846. return;
  1847. }
  1848. res = check_40mhz_5g(mode, scan_res, pri_chan->chan,
  1849. sec_chan->chan);
  1850. switch (res) {
  1851. case 0:
  1852. /* Back to HT20 */
  1853. freq->sec_channel_offset = 0;
  1854. break;
  1855. case 1:
  1856. /* Configuration allowed */
  1857. break;
  1858. case 2:
  1859. /* Switch pri/sec channels */
  1860. freq->freq = hw_get_freq(mode, sec_chan->chan);
  1861. freq->sec_channel_offset = -freq->sec_channel_offset;
  1862. freq->channel = sec_chan->chan;
  1863. break;
  1864. default:
  1865. freq->sec_channel_offset = 0;
  1866. break;
  1867. }
  1868. wpa_scan_results_free(scan_res);
  1869. }
  1870. wpa_printf(MSG_DEBUG,
  1871. "IBSS/mesh: setup freq channel %d, sec_channel_offset %d",
  1872. freq->channel, freq->sec_channel_offset);
  1873. if (!drv_supports_vht(wpa_s, ssid))
  1874. return;
  1875. /* For IBSS check VHT_IBSS flag */
  1876. if (ssid->mode == WPAS_MODE_IBSS &&
  1877. !(wpa_s->drv_flags & WPA_DRIVER_FLAGS_VHT_IBSS))
  1878. return;
  1879. vht_freq = *freq;
  1880. #ifdef CONFIG_VHT_OVERRIDES
  1881. if (ssid->disable_vht) {
  1882. freq->vht_enabled = 0;
  1883. return;
  1884. }
  1885. #endif /* CONFIG_VHT_OVERRIDES */
  1886. vht_freq.vht_enabled = vht_supported(mode);
  1887. if (!vht_freq.vht_enabled)
  1888. return;
  1889. /* setup center_freq1, bandwidth */
  1890. for (j = 0; j < ARRAY_SIZE(vht80); j++) {
  1891. if (freq->channel >= vht80[j] &&
  1892. freq->channel < vht80[j] + 16)
  1893. break;
  1894. }
  1895. if (j == ARRAY_SIZE(vht80))
  1896. return;
  1897. for (i = vht80[j]; i < vht80[j] + 16; i += 4) {
  1898. struct hostapd_channel_data *chan;
  1899. chan = hw_get_channel_chan(mode, i, NULL);
  1900. if (!chan)
  1901. return;
  1902. /* Back to HT configuration if channel not usable */
  1903. if (chan->flag & (HOSTAPD_CHAN_DISABLED | HOSTAPD_CHAN_NO_IR))
  1904. return;
  1905. }
  1906. chwidth = VHT_CHANWIDTH_80MHZ;
  1907. seg0 = vht80[j] + 6;
  1908. seg1 = 0;
  1909. if (ssid->max_oper_chwidth == VHT_CHANWIDTH_80P80MHZ) {
  1910. /* setup center_freq2, bandwidth */
  1911. for (k = 0; k < ARRAY_SIZE(vht80); k++) {
  1912. /* Only accept 80 MHz segments separated by a gap */
  1913. if (j == k || abs(vht80[j] - vht80[k]) == 16)
  1914. continue;
  1915. for (i = vht80[k]; i < vht80[k] + 16; i += 4) {
  1916. struct hostapd_channel_data *chan;
  1917. chan = hw_get_channel_chan(mode, i, NULL);
  1918. if (!chan)
  1919. continue;
  1920. if (chan->flag & (HOSTAPD_CHAN_DISABLED |
  1921. HOSTAPD_CHAN_NO_IR |
  1922. HOSTAPD_CHAN_RADAR))
  1923. continue;
  1924. /* Found a suitable second segment for 80+80 */
  1925. chwidth = VHT_CHANWIDTH_80P80MHZ;
  1926. vht_caps |=
  1927. VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
  1928. seg1 = vht80[k] + 6;
  1929. }
  1930. if (chwidth == VHT_CHANWIDTH_80P80MHZ)
  1931. break;
  1932. }
  1933. } else if (ssid->max_oper_chwidth == VHT_CHANWIDTH_160MHZ) {
  1934. if (freq->freq == 5180) {
  1935. chwidth = VHT_CHANWIDTH_160MHZ;
  1936. vht_caps |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
  1937. seg0 = 50;
  1938. } else if (freq->freq == 5520) {
  1939. chwidth = VHT_CHANWIDTH_160MHZ;
  1940. vht_caps |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
  1941. seg0 = 114;
  1942. }
  1943. }
  1944. if (hostapd_set_freq_params(&vht_freq, mode->mode, freq->freq,
  1945. freq->channel, freq->ht_enabled,
  1946. vht_freq.vht_enabled,
  1947. freq->sec_channel_offset,
  1948. chwidth, seg0, seg1, vht_caps) != 0)
  1949. return;
  1950. *freq = vht_freq;
  1951. wpa_printf(MSG_DEBUG, "IBSS: VHT setup freq cf1 %d, cf2 %d, bw %d",
  1952. freq->center_freq1, freq->center_freq2, freq->bandwidth);
  1953. }
  1954. #ifdef CONFIG_FILS
  1955. static size_t wpas_add_fils_hlp_req(struct wpa_supplicant *wpa_s, u8 *ie_buf,
  1956. size_t ie_buf_len)
  1957. {
  1958. struct fils_hlp_req *req;
  1959. size_t rem_len, hdr_len, hlp_len, len, ie_len = 0;
  1960. const u8 *pos;
  1961. u8 *buf = ie_buf;
  1962. dl_list_for_each(req, &wpa_s->fils_hlp_req, struct fils_hlp_req,
  1963. list) {
  1964. rem_len = ie_buf_len - ie_len;
  1965. pos = wpabuf_head(req->pkt);
  1966. hdr_len = 1 + 2 * ETH_ALEN + 6;
  1967. hlp_len = wpabuf_len(req->pkt);
  1968. if (rem_len < 2 + hdr_len + hlp_len) {
  1969. wpa_printf(MSG_ERROR,
  1970. "FILS: Cannot fit HLP - rem_len=%lu to_fill=%lu",
  1971. (unsigned long) rem_len,
  1972. (unsigned long) (2 + hdr_len + hlp_len));
  1973. break;
  1974. }
  1975. len = (hdr_len + hlp_len) > 255 ? 255 : hdr_len + hlp_len;
  1976. /* Element ID */
  1977. *buf++ = WLAN_EID_EXTENSION;
  1978. /* Length */
  1979. *buf++ = len;
  1980. /* Element ID Extension */
  1981. *buf++ = WLAN_EID_EXT_FILS_HLP_CONTAINER;
  1982. /* Destination MAC address */
  1983. os_memcpy(buf, req->dst, ETH_ALEN);
  1984. buf += ETH_ALEN;
  1985. /* Source MAC address */
  1986. os_memcpy(buf, wpa_s->own_addr, ETH_ALEN);
  1987. buf += ETH_ALEN;
  1988. /* LLC/SNAP Header */
  1989. os_memcpy(buf, "\xaa\xaa\x03\x00\x00\x00", 6);
  1990. buf += 6;
  1991. /* HLP Packet */
  1992. os_memcpy(buf, pos, len - hdr_len);
  1993. buf += len - hdr_len;
  1994. pos += len - hdr_len;
  1995. hlp_len -= len - hdr_len;
  1996. ie_len += 2 + len;
  1997. rem_len -= 2 + len;
  1998. while (hlp_len) {
  1999. len = (hlp_len > 255) ? 255 : hlp_len;
  2000. if (rem_len < 2 + len)
  2001. break;
  2002. *buf++ = WLAN_EID_FRAGMENT;
  2003. *buf++ = len;
  2004. os_memcpy(buf, pos, len);
  2005. buf += len;
  2006. pos += len;
  2007. hlp_len -= len;
  2008. ie_len += 2 + len;
  2009. rem_len -= 2 + len;
  2010. }
  2011. }
  2012. return ie_len;
  2013. }
  2014. #endif /* CONFIG_FILS */
  2015. static u8 * wpas_populate_assoc_ies(
  2016. struct wpa_supplicant *wpa_s,
  2017. struct wpa_bss *bss, struct wpa_ssid *ssid,
  2018. struct wpa_driver_associate_params *params,
  2019. enum wpa_drv_update_connect_params_mask *mask)
  2020. {
  2021. u8 *wpa_ie;
  2022. size_t max_wpa_ie_len = 500;
  2023. size_t wpa_ie_len;
  2024. int algs = WPA_AUTH_ALG_OPEN;
  2025. #ifdef CONFIG_FILS
  2026. const u8 *realm, *username, *rrk;
  2027. size_t realm_len, username_len, rrk_len;
  2028. u16 next_seq_num;
  2029. struct fils_hlp_req *req;
  2030. dl_list_for_each(req, &wpa_s->fils_hlp_req, struct fils_hlp_req,
  2031. list) {
  2032. max_wpa_ie_len += 3 + 2 * ETH_ALEN + 6 + wpabuf_len(req->pkt) +
  2033. 2 + 2 * wpabuf_len(req->pkt) / 255;
  2034. }
  2035. #endif /* CONFIG_FILS */
  2036. wpa_ie = os_malloc(max_wpa_ie_len);
  2037. if (!wpa_ie) {
  2038. wpa_printf(MSG_ERROR,
  2039. "Failed to allocate connect IE buffer for %lu bytes",
  2040. (unsigned long) max_wpa_ie_len);
  2041. return NULL;
  2042. }
  2043. if (bss && (wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE) ||
  2044. wpa_bss_get_ie(bss, WLAN_EID_RSN)) &&
  2045. wpa_key_mgmt_wpa(ssid->key_mgmt)) {
  2046. int try_opportunistic;
  2047. const u8 *cache_id = NULL;
  2048. try_opportunistic = (ssid->proactive_key_caching < 0 ?
  2049. wpa_s->conf->okc :
  2050. ssid->proactive_key_caching) &&
  2051. (ssid->proto & WPA_PROTO_RSN);
  2052. #ifdef CONFIG_FILS
  2053. if (wpa_key_mgmt_fils(ssid->key_mgmt))
  2054. cache_id = wpa_bss_get_fils_cache_id(bss);
  2055. #endif /* CONFIG_FILS */
  2056. if (pmksa_cache_set_current(wpa_s->wpa, NULL, bss->bssid,
  2057. ssid, try_opportunistic,
  2058. cache_id) == 0)
  2059. eapol_sm_notify_pmkid_attempt(wpa_s->eapol);
  2060. wpa_ie_len = max_wpa_ie_len;
  2061. if (wpa_supplicant_set_suites(wpa_s, bss, ssid,
  2062. wpa_ie, &wpa_ie_len)) {
  2063. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to set WPA "
  2064. "key management and encryption suites");
  2065. os_free(wpa_ie);
  2066. return NULL;
  2067. }
  2068. } else if ((ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) && bss &&
  2069. wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt)) {
  2070. /*
  2071. * Both WPA and non-WPA IEEE 802.1X enabled in configuration -
  2072. * use non-WPA since the scan results did not indicate that the
  2073. * AP is using WPA or WPA2.
  2074. */
  2075. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  2076. wpa_ie_len = 0;
  2077. wpa_s->wpa_proto = 0;
  2078. } else if (wpa_key_mgmt_wpa_any(ssid->key_mgmt)) {
  2079. wpa_ie_len = max_wpa_ie_len;
  2080. if (wpa_supplicant_set_suites(wpa_s, NULL, ssid,
  2081. wpa_ie, &wpa_ie_len)) {
  2082. wpa_msg(wpa_s, MSG_WARNING, "WPA: Failed to set WPA "
  2083. "key management and encryption suites (no "
  2084. "scan results)");
  2085. os_free(wpa_ie);
  2086. return NULL;
  2087. }
  2088. #ifdef CONFIG_WPS
  2089. } else if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  2090. struct wpabuf *wps_ie;
  2091. wps_ie = wps_build_assoc_req_ie(wpas_wps_get_req_type(ssid));
  2092. if (wps_ie && wpabuf_len(wps_ie) <= max_wpa_ie_len) {
  2093. wpa_ie_len = wpabuf_len(wps_ie);
  2094. os_memcpy(wpa_ie, wpabuf_head(wps_ie), wpa_ie_len);
  2095. } else
  2096. wpa_ie_len = 0;
  2097. wpabuf_free(wps_ie);
  2098. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  2099. if (!bss || (bss->caps & IEEE80211_CAP_PRIVACY))
  2100. params->wps = WPS_MODE_PRIVACY;
  2101. else
  2102. params->wps = WPS_MODE_OPEN;
  2103. wpa_s->wpa_proto = 0;
  2104. #endif /* CONFIG_WPS */
  2105. } else {
  2106. wpa_supplicant_set_non_wpa_policy(wpa_s, ssid);
  2107. wpa_ie_len = 0;
  2108. wpa_s->wpa_proto = 0;
  2109. }
  2110. #ifdef IEEE8021X_EAPOL
  2111. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  2112. if (ssid->leap) {
  2113. if (ssid->non_leap == 0)
  2114. algs = WPA_AUTH_ALG_LEAP;
  2115. else
  2116. algs |= WPA_AUTH_ALG_LEAP;
  2117. }
  2118. }
  2119. #ifdef CONFIG_FILS
  2120. /* Clear FILS association */
  2121. wpa_sm_set_reset_fils_completed(wpa_s->wpa, 0);
  2122. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_FILS_SK_OFFLOAD) &&
  2123. ssid->eap.erp && wpa_key_mgmt_fils(wpa_s->key_mgmt) &&
  2124. eapol_sm_get_erp_info(wpa_s->eapol, &ssid->eap, &username,
  2125. &username_len, &realm, &realm_len,
  2126. &next_seq_num, &rrk, &rrk_len) == 0) {
  2127. algs = WPA_AUTH_ALG_FILS;
  2128. params->fils_erp_username = username;
  2129. params->fils_erp_username_len = username_len;
  2130. params->fils_erp_realm = realm;
  2131. params->fils_erp_realm_len = realm_len;
  2132. params->fils_erp_next_seq_num = next_seq_num;
  2133. params->fils_erp_rrk = rrk;
  2134. params->fils_erp_rrk_len = rrk_len;
  2135. if (mask)
  2136. *mask |= WPA_DRV_UPDATE_FILS_ERP_INFO;
  2137. }
  2138. #endif /* CONFIG_FILS */
  2139. #endif /* IEEE8021X_EAPOL */
  2140. wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x", algs);
  2141. if (ssid->auth_alg) {
  2142. algs = ssid->auth_alg;
  2143. wpa_dbg(wpa_s, MSG_DEBUG,
  2144. "Overriding auth_alg selection: 0x%x", algs);
  2145. }
  2146. #ifdef CONFIG_P2P
  2147. if (wpa_s->global->p2p) {
  2148. u8 *pos;
  2149. size_t len;
  2150. int res;
  2151. pos = wpa_ie + wpa_ie_len;
  2152. len = max_wpa_ie_len - wpa_ie_len;
  2153. res = wpas_p2p_assoc_req_ie(wpa_s, bss, pos, len,
  2154. ssid->p2p_group);
  2155. if (res >= 0)
  2156. wpa_ie_len += res;
  2157. }
  2158. wpa_s->cross_connect_disallowed = 0;
  2159. if (bss) {
  2160. struct wpabuf *p2p;
  2161. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  2162. if (p2p) {
  2163. wpa_s->cross_connect_disallowed =
  2164. p2p_get_cross_connect_disallowed(p2p);
  2165. wpabuf_free(p2p);
  2166. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: WLAN AP %s cross "
  2167. "connection",
  2168. wpa_s->cross_connect_disallowed ?
  2169. "disallows" : "allows");
  2170. }
  2171. }
  2172. os_memset(wpa_s->p2p_ip_addr_info, 0, sizeof(wpa_s->p2p_ip_addr_info));
  2173. #endif /* CONFIG_P2P */
  2174. if (bss) {
  2175. wpa_ie_len += wpas_supp_op_class_ie(wpa_s, bss->freq,
  2176. wpa_ie + wpa_ie_len,
  2177. max_wpa_ie_len -
  2178. wpa_ie_len);
  2179. }
  2180. /*
  2181. * Workaround: Add Extended Capabilities element only if the AP
  2182. * included this element in Beacon/Probe Response frames. Some older
  2183. * APs seem to have interoperability issues if this element is
  2184. * included, so while the standard may require us to include the
  2185. * element in all cases, it is justifiable to skip it to avoid
  2186. * interoperability issues.
  2187. */
  2188. if (ssid->p2p_group)
  2189. wpa_drv_get_ext_capa(wpa_s, WPA_IF_P2P_CLIENT);
  2190. else
  2191. wpa_drv_get_ext_capa(wpa_s, WPA_IF_STATION);
  2192. if (!bss || wpa_bss_get_ie(bss, WLAN_EID_EXT_CAPAB)) {
  2193. u8 ext_capab[18];
  2194. int ext_capab_len;
  2195. ext_capab_len = wpas_build_ext_capab(wpa_s, ext_capab,
  2196. sizeof(ext_capab));
  2197. if (ext_capab_len > 0 &&
  2198. wpa_ie_len + ext_capab_len <= max_wpa_ie_len) {
  2199. u8 *pos = wpa_ie;
  2200. if (wpa_ie_len > 0 && pos[0] == WLAN_EID_RSN)
  2201. pos += 2 + pos[1];
  2202. os_memmove(pos + ext_capab_len, pos,
  2203. wpa_ie_len - (pos - wpa_ie));
  2204. wpa_ie_len += ext_capab_len;
  2205. os_memcpy(pos, ext_capab, ext_capab_len);
  2206. }
  2207. }
  2208. #ifdef CONFIG_HS20
  2209. if (is_hs20_network(wpa_s, ssid, bss)) {
  2210. struct wpabuf *hs20;
  2211. hs20 = wpabuf_alloc(20);
  2212. if (hs20) {
  2213. int pps_mo_id = hs20_get_pps_mo_id(wpa_s, ssid);
  2214. size_t len;
  2215. wpas_hs20_add_indication(hs20, pps_mo_id);
  2216. len = max_wpa_ie_len - wpa_ie_len;
  2217. if (wpabuf_len(hs20) <= len) {
  2218. os_memcpy(wpa_ie + wpa_ie_len,
  2219. wpabuf_head(hs20), wpabuf_len(hs20));
  2220. wpa_ie_len += wpabuf_len(hs20);
  2221. }
  2222. wpabuf_free(hs20);
  2223. hs20_configure_frame_filters(wpa_s);
  2224. }
  2225. }
  2226. #endif /* CONFIG_HS20 */
  2227. if (wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ]) {
  2228. struct wpabuf *buf = wpa_s->vendor_elem[VENDOR_ELEM_ASSOC_REQ];
  2229. size_t len;
  2230. len = max_wpa_ie_len - wpa_ie_len;
  2231. if (wpabuf_len(buf) <= len) {
  2232. os_memcpy(wpa_ie + wpa_ie_len,
  2233. wpabuf_head(buf), wpabuf_len(buf));
  2234. wpa_ie_len += wpabuf_len(buf);
  2235. }
  2236. }
  2237. #ifdef CONFIG_FST
  2238. if (wpa_s->fst_ies) {
  2239. int fst_ies_len = wpabuf_len(wpa_s->fst_ies);
  2240. if (wpa_ie_len + fst_ies_len <= max_wpa_ie_len) {
  2241. os_memcpy(wpa_ie + wpa_ie_len,
  2242. wpabuf_head(wpa_s->fst_ies), fst_ies_len);
  2243. wpa_ie_len += fst_ies_len;
  2244. }
  2245. }
  2246. #endif /* CONFIG_FST */
  2247. #ifdef CONFIG_MBO
  2248. if (bss && wpa_bss_get_vendor_ie(bss, MBO_IE_VENDOR_TYPE)) {
  2249. int len;
  2250. len = wpas_mbo_ie(wpa_s, wpa_ie + wpa_ie_len,
  2251. max_wpa_ie_len - wpa_ie_len);
  2252. if (len >= 0)
  2253. wpa_ie_len += len;
  2254. }
  2255. #endif /* CONFIG_MBO */
  2256. #ifdef CONFIG_FILS
  2257. if (algs == WPA_AUTH_ALG_FILS) {
  2258. size_t len;
  2259. len = wpas_add_fils_hlp_req(wpa_s, wpa_ie + wpa_ie_len,
  2260. max_wpa_ie_len - wpa_ie_len);
  2261. wpa_ie_len += len;
  2262. }
  2263. #endif /* CONFIG_FILS */
  2264. #ifdef CONFIG_OWE
  2265. if (algs == WPA_AUTH_ALG_OPEN &&
  2266. ssid->key_mgmt == WPA_KEY_MGMT_OWE) {
  2267. struct wpabuf *owe_ie;
  2268. u16 group = OWE_DH_GROUP;
  2269. if (ssid->owe_group)
  2270. group = ssid->owe_group;
  2271. owe_ie = owe_build_assoc_req(wpa_s->wpa, group);
  2272. if (owe_ie &&
  2273. wpabuf_len(owe_ie) <= max_wpa_ie_len - wpa_ie_len) {
  2274. os_memcpy(wpa_ie + wpa_ie_len,
  2275. wpabuf_head(owe_ie), wpabuf_len(owe_ie));
  2276. wpa_ie_len += wpabuf_len(owe_ie);
  2277. wpabuf_free(owe_ie);
  2278. }
  2279. }
  2280. #endif /* CONFIG_OWE */
  2281. params->wpa_ie = wpa_ie;
  2282. params->wpa_ie_len = wpa_ie_len;
  2283. params->auth_alg = algs;
  2284. if (mask)
  2285. *mask |= WPA_DRV_UPDATE_ASSOC_IES | WPA_DRV_UPDATE_AUTH_TYPE;
  2286. return wpa_ie;
  2287. }
  2288. #if defined(CONFIG_FILS) && defined(IEEE8021X_EAPOL)
  2289. static void wpas_update_fils_connect_params(struct wpa_supplicant *wpa_s)
  2290. {
  2291. struct wpa_driver_associate_params params;
  2292. enum wpa_drv_update_connect_params_mask mask = 0;
  2293. u8 *wpa_ie;
  2294. if (wpa_s->auth_alg != WPA_AUTH_ALG_OPEN)
  2295. return; /* nothing to do */
  2296. os_memset(&params, 0, sizeof(params));
  2297. wpa_ie = wpas_populate_assoc_ies(wpa_s, wpa_s->current_bss,
  2298. wpa_s->current_ssid, &params, &mask);
  2299. if (!wpa_ie)
  2300. return;
  2301. if (params.auth_alg != WPA_AUTH_ALG_FILS) {
  2302. os_free(wpa_ie);
  2303. return;
  2304. }
  2305. wpa_s->auth_alg = params.auth_alg;
  2306. wpa_drv_update_connect_params(wpa_s, &params, mask);
  2307. os_free(wpa_ie);
  2308. }
  2309. #endif /* CONFIG_FILS && IEEE8021X_EAPOL */
  2310. static void wpas_start_assoc_cb(struct wpa_radio_work *work, int deinit)
  2311. {
  2312. struct wpa_connect_work *cwork = work->ctx;
  2313. struct wpa_bss *bss = cwork->bss;
  2314. struct wpa_ssid *ssid = cwork->ssid;
  2315. struct wpa_supplicant *wpa_s = work->wpa_s;
  2316. u8 *wpa_ie;
  2317. int use_crypt, ret, i, bssid_changed;
  2318. unsigned int cipher_pairwise, cipher_group, cipher_group_mgmt;
  2319. struct wpa_driver_associate_params params;
  2320. int wep_keys_set = 0;
  2321. int assoc_failed = 0;
  2322. struct wpa_ssid *old_ssid;
  2323. u8 prev_bssid[ETH_ALEN];
  2324. #ifdef CONFIG_HT_OVERRIDES
  2325. struct ieee80211_ht_capabilities htcaps;
  2326. struct ieee80211_ht_capabilities htcaps_mask;
  2327. #endif /* CONFIG_HT_OVERRIDES */
  2328. #ifdef CONFIG_VHT_OVERRIDES
  2329. struct ieee80211_vht_capabilities vhtcaps;
  2330. struct ieee80211_vht_capabilities vhtcaps_mask;
  2331. #endif /* CONFIG_VHT_OVERRIDES */
  2332. if (deinit) {
  2333. if (work->started) {
  2334. wpa_s->connect_work = NULL;
  2335. /* cancel possible auth. timeout */
  2336. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s,
  2337. NULL);
  2338. }
  2339. wpas_connect_work_free(cwork);
  2340. return;
  2341. }
  2342. wpa_s->connect_work = work;
  2343. if (cwork->bss_removed || !wpas_valid_bss_ssid(wpa_s, bss, ssid) ||
  2344. wpas_network_disabled(wpa_s, ssid)) {
  2345. wpa_dbg(wpa_s, MSG_DEBUG, "BSS/SSID entry for association not valid anymore - drop connection attempt");
  2346. wpas_connect_work_done(wpa_s);
  2347. return;
  2348. }
  2349. os_memcpy(prev_bssid, wpa_s->bssid, ETH_ALEN);
  2350. os_memset(&params, 0, sizeof(params));
  2351. wpa_s->reassociate = 0;
  2352. wpa_s->eap_expected_failure = 0;
  2353. if (bss &&
  2354. (!wpas_driver_bss_selection(wpa_s) || wpas_wps_searching(wpa_s))) {
  2355. #ifdef CONFIG_IEEE80211R
  2356. const u8 *ie, *md = NULL;
  2357. #endif /* CONFIG_IEEE80211R */
  2358. wpa_msg(wpa_s, MSG_INFO, "Trying to associate with " MACSTR
  2359. " (SSID='%s' freq=%d MHz)", MAC2STR(bss->bssid),
  2360. wpa_ssid_txt(bss->ssid, bss->ssid_len), bss->freq);
  2361. bssid_changed = !is_zero_ether_addr(wpa_s->bssid);
  2362. os_memset(wpa_s->bssid, 0, ETH_ALEN);
  2363. os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
  2364. if (bssid_changed)
  2365. wpas_notify_bssid_changed(wpa_s);
  2366. #ifdef CONFIG_IEEE80211R
  2367. ie = wpa_bss_get_ie(bss, WLAN_EID_MOBILITY_DOMAIN);
  2368. if (ie && ie[1] >= MOBILITY_DOMAIN_ID_LEN)
  2369. md = ie + 2;
  2370. wpa_sm_set_ft_params(wpa_s->wpa, ie, ie ? 2 + ie[1] : 0);
  2371. if (md) {
  2372. /* Prepare for the next transition */
  2373. wpa_ft_prepare_auth_request(wpa_s->wpa, ie);
  2374. }
  2375. #endif /* CONFIG_IEEE80211R */
  2376. #ifdef CONFIG_WPS
  2377. } else if ((ssid->ssid == NULL || ssid->ssid_len == 0) &&
  2378. wpa_s->conf->ap_scan == 2 &&
  2379. (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  2380. /* Use ap_scan==1 style network selection to find the network
  2381. */
  2382. wpas_connect_work_done(wpa_s);
  2383. wpa_s->scan_req = MANUAL_SCAN_REQ;
  2384. wpa_s->reassociate = 1;
  2385. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2386. return;
  2387. #endif /* CONFIG_WPS */
  2388. } else {
  2389. wpa_msg(wpa_s, MSG_INFO, "Trying to associate with SSID '%s'",
  2390. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  2391. if (bss)
  2392. os_memcpy(wpa_s->pending_bssid, bss->bssid, ETH_ALEN);
  2393. else
  2394. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  2395. }
  2396. if (!wpa_s->pno)
  2397. wpa_supplicant_cancel_sched_scan(wpa_s);
  2398. wpa_supplicant_cancel_scan(wpa_s);
  2399. /* Starting new association, so clear the possibly used WPA IE from the
  2400. * previous association. */
  2401. wpa_sm_set_assoc_wpa_ie(wpa_s->wpa, NULL, 0);
  2402. wpa_ie = wpas_populate_assoc_ies(wpa_s, bss, ssid, &params, NULL);
  2403. if (!wpa_ie) {
  2404. wpas_connect_work_done(wpa_s);
  2405. return;
  2406. }
  2407. wpa_clear_keys(wpa_s, bss ? bss->bssid : NULL);
  2408. use_crypt = 1;
  2409. cipher_pairwise = wpa_s->pairwise_cipher;
  2410. cipher_group = wpa_s->group_cipher;
  2411. cipher_group_mgmt = wpa_s->mgmt_group_cipher;
  2412. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE ||
  2413. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  2414. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE)
  2415. use_crypt = 0;
  2416. if (wpa_set_wep_keys(wpa_s, ssid)) {
  2417. use_crypt = 1;
  2418. wep_keys_set = 1;
  2419. }
  2420. }
  2421. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS)
  2422. use_crypt = 0;
  2423. #ifdef IEEE8021X_EAPOL
  2424. if (wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  2425. if ((ssid->eapol_flags &
  2426. (EAPOL_FLAG_REQUIRE_KEY_UNICAST |
  2427. EAPOL_FLAG_REQUIRE_KEY_BROADCAST)) == 0 &&
  2428. !wep_keys_set) {
  2429. use_crypt = 0;
  2430. } else {
  2431. /* Assume that dynamic WEP-104 keys will be used and
  2432. * set cipher suites in order for drivers to expect
  2433. * encryption. */
  2434. cipher_pairwise = cipher_group = WPA_CIPHER_WEP104;
  2435. }
  2436. }
  2437. #endif /* IEEE8021X_EAPOL */
  2438. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  2439. /* Set the key before (and later after) association */
  2440. wpa_supplicant_set_wpa_none_key(wpa_s, ssid);
  2441. }
  2442. wpa_supplicant_set_state(wpa_s, WPA_ASSOCIATING);
  2443. if (bss) {
  2444. params.ssid = bss->ssid;
  2445. params.ssid_len = bss->ssid_len;
  2446. if (!wpas_driver_bss_selection(wpa_s) || ssid->bssid_set ||
  2447. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) {
  2448. wpa_printf(MSG_DEBUG, "Limit connection to BSSID "
  2449. MACSTR " freq=%u MHz based on scan results "
  2450. "(bssid_set=%d wps=%d)",
  2451. MAC2STR(bss->bssid), bss->freq,
  2452. ssid->bssid_set,
  2453. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS);
  2454. params.bssid = bss->bssid;
  2455. params.freq.freq = bss->freq;
  2456. }
  2457. params.bssid_hint = bss->bssid;
  2458. params.freq_hint = bss->freq;
  2459. params.pbss = bss_is_pbss(bss);
  2460. } else {
  2461. if (ssid->bssid_hint_set)
  2462. params.bssid_hint = ssid->bssid_hint;
  2463. params.ssid = ssid->ssid;
  2464. params.ssid_len = ssid->ssid_len;
  2465. params.pbss = (ssid->pbss != 2) ? ssid->pbss : 0;
  2466. }
  2467. if (ssid->mode == WPAS_MODE_IBSS && ssid->bssid_set &&
  2468. wpa_s->conf->ap_scan == 2) {
  2469. params.bssid = ssid->bssid;
  2470. params.fixed_bssid = 1;
  2471. }
  2472. /* Initial frequency for IBSS/mesh */
  2473. if ((ssid->mode == WPAS_MODE_IBSS || ssid->mode == WPAS_MODE_MESH) &&
  2474. ssid->frequency > 0 && params.freq.freq == 0)
  2475. ibss_mesh_setup_freq(wpa_s, ssid, &params.freq);
  2476. if (ssid->mode == WPAS_MODE_IBSS) {
  2477. params.fixed_freq = ssid->fixed_freq;
  2478. if (ssid->beacon_int)
  2479. params.beacon_int = ssid->beacon_int;
  2480. else
  2481. params.beacon_int = wpa_s->conf->beacon_int;
  2482. }
  2483. params.pairwise_suite = cipher_pairwise;
  2484. params.group_suite = cipher_group;
  2485. params.mgmt_group_suite = cipher_group_mgmt;
  2486. params.key_mgmt_suite = wpa_s->key_mgmt;
  2487. params.wpa_proto = wpa_s->wpa_proto;
  2488. wpa_s->auth_alg = params.auth_alg;
  2489. params.mode = ssid->mode;
  2490. params.bg_scan_period = ssid->bg_scan_period;
  2491. for (i = 0; i < NUM_WEP_KEYS; i++) {
  2492. if (ssid->wep_key_len[i])
  2493. params.wep_key[i] = ssid->wep_key[i];
  2494. params.wep_key_len[i] = ssid->wep_key_len[i];
  2495. }
  2496. params.wep_tx_keyidx = ssid->wep_tx_keyidx;
  2497. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) &&
  2498. (params.key_mgmt_suite == WPA_KEY_MGMT_PSK ||
  2499. params.key_mgmt_suite == WPA_KEY_MGMT_FT_PSK)) {
  2500. params.passphrase = ssid->passphrase;
  2501. if (ssid->psk_set)
  2502. params.psk = ssid->psk;
  2503. }
  2504. if (wpa_s->conf->key_mgmt_offload) {
  2505. if (params.key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X ||
  2506. params.key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X_SHA256 ||
  2507. params.key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X_SUITE_B ||
  2508. params.key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X_SUITE_B_192)
  2509. params.req_key_mgmt_offload =
  2510. ssid->proactive_key_caching < 0 ?
  2511. wpa_s->conf->okc : ssid->proactive_key_caching;
  2512. else
  2513. params.req_key_mgmt_offload = 1;
  2514. if ((params.key_mgmt_suite == WPA_KEY_MGMT_PSK ||
  2515. params.key_mgmt_suite == WPA_KEY_MGMT_PSK_SHA256 ||
  2516. params.key_mgmt_suite == WPA_KEY_MGMT_FT_PSK) &&
  2517. ssid->psk_set)
  2518. params.psk = ssid->psk;
  2519. }
  2520. params.drop_unencrypted = use_crypt;
  2521. #ifdef CONFIG_IEEE80211W
  2522. params.mgmt_frame_protection = wpas_get_ssid_pmf(wpa_s, ssid);
  2523. if (params.mgmt_frame_protection != NO_MGMT_FRAME_PROTECTION && bss) {
  2524. const u8 *rsn = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  2525. struct wpa_ie_data ie;
  2526. if (rsn && wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie) == 0 &&
  2527. ie.capabilities &
  2528. (WPA_CAPABILITY_MFPC | WPA_CAPABILITY_MFPR)) {
  2529. wpa_dbg(wpa_s, MSG_DEBUG, "WPA: Selected AP supports "
  2530. "MFP: require MFP");
  2531. params.mgmt_frame_protection =
  2532. MGMT_FRAME_PROTECTION_REQUIRED;
  2533. }
  2534. }
  2535. #endif /* CONFIG_IEEE80211W */
  2536. params.p2p = ssid->p2p_group;
  2537. if (wpa_s->p2pdev->set_sta_uapsd)
  2538. params.uapsd = wpa_s->p2pdev->sta_uapsd;
  2539. else
  2540. params.uapsd = -1;
  2541. #ifdef CONFIG_HT_OVERRIDES
  2542. os_memset(&htcaps, 0, sizeof(htcaps));
  2543. os_memset(&htcaps_mask, 0, sizeof(htcaps_mask));
  2544. params.htcaps = (u8 *) &htcaps;
  2545. params.htcaps_mask = (u8 *) &htcaps_mask;
  2546. wpa_supplicant_apply_ht_overrides(wpa_s, ssid, &params);
  2547. #endif /* CONFIG_HT_OVERRIDES */
  2548. #ifdef CONFIG_VHT_OVERRIDES
  2549. os_memset(&vhtcaps, 0, sizeof(vhtcaps));
  2550. os_memset(&vhtcaps_mask, 0, sizeof(vhtcaps_mask));
  2551. params.vhtcaps = &vhtcaps;
  2552. params.vhtcaps_mask = &vhtcaps_mask;
  2553. wpa_supplicant_apply_vht_overrides(wpa_s, ssid, &params);
  2554. #endif /* CONFIG_VHT_OVERRIDES */
  2555. #ifdef CONFIG_P2P
  2556. /*
  2557. * If multi-channel concurrency is not supported, check for any
  2558. * frequency conflict. In case of any frequency conflict, remove the
  2559. * least prioritized connection.
  2560. */
  2561. if (wpa_s->num_multichan_concurrent < 2) {
  2562. int freq, num;
  2563. num = get_shared_radio_freqs(wpa_s, &freq, 1);
  2564. if (num > 0 && freq > 0 && freq != params.freq.freq) {
  2565. wpa_printf(MSG_DEBUG,
  2566. "Assoc conflicting freq found (%d != %d)",
  2567. freq, params.freq.freq);
  2568. if (wpas_p2p_handle_frequency_conflicts(
  2569. wpa_s, params.freq.freq, ssid) < 0) {
  2570. wpas_connect_work_done(wpa_s);
  2571. os_free(wpa_ie);
  2572. return;
  2573. }
  2574. }
  2575. }
  2576. #endif /* CONFIG_P2P */
  2577. if (wpa_s->reassoc_same_ess && !is_zero_ether_addr(prev_bssid) &&
  2578. wpa_s->current_ssid)
  2579. params.prev_bssid = prev_bssid;
  2580. ret = wpa_drv_associate(wpa_s, &params);
  2581. os_free(wpa_ie);
  2582. if (ret < 0) {
  2583. wpa_msg(wpa_s, MSG_INFO, "Association request to the driver "
  2584. "failed");
  2585. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SANE_ERROR_CODES) {
  2586. /*
  2587. * The driver is known to mean what is saying, so we
  2588. * can stop right here; the association will not
  2589. * succeed.
  2590. */
  2591. wpas_connection_failed(wpa_s, wpa_s->pending_bssid);
  2592. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  2593. os_memset(wpa_s->pending_bssid, 0, ETH_ALEN);
  2594. return;
  2595. }
  2596. /* try to continue anyway; new association will be tried again
  2597. * after timeout */
  2598. assoc_failed = 1;
  2599. }
  2600. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPA_NONE) {
  2601. /* Set the key after the association just in case association
  2602. * cleared the previously configured key. */
  2603. wpa_supplicant_set_wpa_none_key(wpa_s, ssid);
  2604. /* No need to timeout authentication since there is no key
  2605. * management. */
  2606. wpa_supplicant_cancel_auth_timeout(wpa_s);
  2607. wpa_supplicant_set_state(wpa_s, WPA_COMPLETED);
  2608. #ifdef CONFIG_IBSS_RSN
  2609. } else if (ssid->mode == WPAS_MODE_IBSS &&
  2610. wpa_s->key_mgmt != WPA_KEY_MGMT_NONE &&
  2611. wpa_s->key_mgmt != WPA_KEY_MGMT_WPA_NONE) {
  2612. /*
  2613. * RSN IBSS authentication is per-STA and we can disable the
  2614. * per-BSSID authentication.
  2615. */
  2616. wpa_supplicant_cancel_auth_timeout(wpa_s);
  2617. #endif /* CONFIG_IBSS_RSN */
  2618. } else {
  2619. /* Timeout for IEEE 802.11 authentication and association */
  2620. int timeout = 60;
  2621. if (assoc_failed) {
  2622. /* give IBSS a bit more time */
  2623. timeout = ssid->mode == WPAS_MODE_IBSS ? 10 : 5;
  2624. } else if (wpa_s->conf->ap_scan == 1) {
  2625. /* give IBSS a bit more time */
  2626. timeout = ssid->mode == WPAS_MODE_IBSS ? 20 : 10;
  2627. }
  2628. wpa_supplicant_req_auth_timeout(wpa_s, timeout, 0);
  2629. }
  2630. if (wep_keys_set &&
  2631. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC)) {
  2632. /* Set static WEP keys again */
  2633. wpa_set_wep_keys(wpa_s, ssid);
  2634. }
  2635. if (wpa_s->current_ssid && wpa_s->current_ssid != ssid) {
  2636. /*
  2637. * Do not allow EAP session resumption between different
  2638. * network configurations.
  2639. */
  2640. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  2641. }
  2642. old_ssid = wpa_s->current_ssid;
  2643. wpa_s->current_ssid = ssid;
  2644. if (!wpas_driver_bss_selection(wpa_s) || ssid->bssid_set) {
  2645. wpa_s->current_bss = bss;
  2646. #ifdef CONFIG_HS20
  2647. hs20_configure_frame_filters(wpa_s);
  2648. #endif /* CONFIG_HS20 */
  2649. }
  2650. wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
  2651. wpa_supplicant_initiate_eapol(wpa_s);
  2652. if (old_ssid != wpa_s->current_ssid)
  2653. wpas_notify_network_changed(wpa_s);
  2654. }
  2655. static void wpa_supplicant_clear_connection(struct wpa_supplicant *wpa_s,
  2656. const u8 *addr)
  2657. {
  2658. struct wpa_ssid *old_ssid;
  2659. wpas_connect_work_done(wpa_s);
  2660. wpa_clear_keys(wpa_s, addr);
  2661. old_ssid = wpa_s->current_ssid;
  2662. wpa_supplicant_mark_disassoc(wpa_s);
  2663. wpa_sm_set_config(wpa_s->wpa, NULL);
  2664. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  2665. if (old_ssid != wpa_s->current_ssid)
  2666. wpas_notify_network_changed(wpa_s);
  2667. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  2668. }
  2669. /**
  2670. * wpa_supplicant_deauthenticate - Deauthenticate the current connection
  2671. * @wpa_s: Pointer to wpa_supplicant data
  2672. * @reason_code: IEEE 802.11 reason code for the deauthenticate frame
  2673. *
  2674. * This function is used to request %wpa_supplicant to deauthenticate from the
  2675. * current AP.
  2676. */
  2677. void wpa_supplicant_deauthenticate(struct wpa_supplicant *wpa_s,
  2678. int reason_code)
  2679. {
  2680. u8 *addr = NULL;
  2681. union wpa_event_data event;
  2682. int zero_addr = 0;
  2683. wpa_dbg(wpa_s, MSG_DEBUG, "Request to deauthenticate - bssid=" MACSTR
  2684. " pending_bssid=" MACSTR " reason=%d state=%s",
  2685. MAC2STR(wpa_s->bssid), MAC2STR(wpa_s->pending_bssid),
  2686. reason_code, wpa_supplicant_state_txt(wpa_s->wpa_state));
  2687. if (!is_zero_ether_addr(wpa_s->pending_bssid) &&
  2688. (wpa_s->wpa_state == WPA_AUTHENTICATING ||
  2689. wpa_s->wpa_state == WPA_ASSOCIATING))
  2690. addr = wpa_s->pending_bssid;
  2691. else if (!is_zero_ether_addr(wpa_s->bssid))
  2692. addr = wpa_s->bssid;
  2693. else if (wpa_s->wpa_state == WPA_ASSOCIATING) {
  2694. /*
  2695. * When using driver-based BSS selection, we may not know the
  2696. * BSSID with which we are currently trying to associate. We
  2697. * need to notify the driver of this disconnection even in such
  2698. * a case, so use the all zeros address here.
  2699. */
  2700. addr = wpa_s->bssid;
  2701. zero_addr = 1;
  2702. }
  2703. #ifdef CONFIG_TDLS
  2704. wpa_tdls_teardown_peers(wpa_s->wpa);
  2705. #endif /* CONFIG_TDLS */
  2706. #ifdef CONFIG_MESH
  2707. if (wpa_s->ifmsh) {
  2708. struct mesh_conf *mconf;
  2709. mconf = wpa_s->ifmsh->mconf;
  2710. wpa_msg(wpa_s, MSG_INFO, MESH_GROUP_REMOVED "%s",
  2711. wpa_s->ifname);
  2712. wpas_notify_mesh_group_removed(wpa_s, mconf->meshid,
  2713. mconf->meshid_len, reason_code);
  2714. wpa_supplicant_leave_mesh(wpa_s);
  2715. }
  2716. #endif /* CONFIG_MESH */
  2717. if (addr) {
  2718. wpa_drv_deauthenticate(wpa_s, addr, reason_code);
  2719. os_memset(&event, 0, sizeof(event));
  2720. event.deauth_info.reason_code = (u16) reason_code;
  2721. event.deauth_info.locally_generated = 1;
  2722. wpa_supplicant_event(wpa_s, EVENT_DEAUTH, &event);
  2723. if (zero_addr)
  2724. addr = NULL;
  2725. }
  2726. wpa_supplicant_clear_connection(wpa_s, addr);
  2727. }
  2728. static void wpa_supplicant_enable_one_network(struct wpa_supplicant *wpa_s,
  2729. struct wpa_ssid *ssid)
  2730. {
  2731. if (!ssid || !ssid->disabled || ssid->disabled == 2)
  2732. return;
  2733. ssid->disabled = 0;
  2734. wpas_clear_temp_disabled(wpa_s, ssid, 1);
  2735. wpas_notify_network_enabled_changed(wpa_s, ssid);
  2736. /*
  2737. * Try to reassociate since there is no current configuration and a new
  2738. * network was made available.
  2739. */
  2740. if (!wpa_s->current_ssid && !wpa_s->disconnected)
  2741. wpa_s->reassociate = 1;
  2742. }
  2743. /**
  2744. * wpa_supplicant_add_network - Add a new network
  2745. * @wpa_s: wpa_supplicant structure for a network interface
  2746. * Returns: The new network configuration or %NULL if operation failed
  2747. *
  2748. * This function performs the following operations:
  2749. * 1. Adds a new network.
  2750. * 2. Send network addition notification.
  2751. * 3. Marks the network disabled.
  2752. * 4. Set network default parameters.
  2753. */
  2754. struct wpa_ssid * wpa_supplicant_add_network(struct wpa_supplicant *wpa_s)
  2755. {
  2756. struct wpa_ssid *ssid;
  2757. ssid = wpa_config_add_network(wpa_s->conf);
  2758. if (!ssid)
  2759. return NULL;
  2760. wpas_notify_network_added(wpa_s, ssid);
  2761. ssid->disabled = 1;
  2762. wpa_config_set_network_defaults(ssid);
  2763. return ssid;
  2764. }
  2765. /**
  2766. * wpa_supplicant_remove_network - Remove a configured network based on id
  2767. * @wpa_s: wpa_supplicant structure for a network interface
  2768. * @id: Unique network id to search for
  2769. * Returns: 0 on success, or -1 if the network was not found, -2 if the network
  2770. * could not be removed
  2771. *
  2772. * This function performs the following operations:
  2773. * 1. Removes the network.
  2774. * 2. Send network removal notification.
  2775. * 3. Update internal state machines.
  2776. * 4. Stop any running sched scans.
  2777. */
  2778. int wpa_supplicant_remove_network(struct wpa_supplicant *wpa_s, int id)
  2779. {
  2780. struct wpa_ssid *ssid;
  2781. int was_disabled;
  2782. ssid = wpa_config_get_network(wpa_s->conf, id);
  2783. if (!ssid)
  2784. return -1;
  2785. wpas_notify_network_removed(wpa_s, ssid);
  2786. if (wpa_s->last_ssid == ssid)
  2787. wpa_s->last_ssid = NULL;
  2788. if (ssid == wpa_s->current_ssid || !wpa_s->current_ssid) {
  2789. #ifdef CONFIG_SME
  2790. wpa_s->sme.prev_bssid_set = 0;
  2791. #endif /* CONFIG_SME */
  2792. /*
  2793. * Invalidate the EAP session cache if the current or
  2794. * previously used network is removed.
  2795. */
  2796. eapol_sm_invalidate_cached_session(wpa_s->eapol);
  2797. }
  2798. if (ssid == wpa_s->current_ssid) {
  2799. wpa_sm_set_config(wpa_s->wpa, NULL);
  2800. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  2801. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  2802. wpa_s->own_disconnect_req = 1;
  2803. wpa_supplicant_deauthenticate(wpa_s,
  2804. WLAN_REASON_DEAUTH_LEAVING);
  2805. }
  2806. was_disabled = ssid->disabled;
  2807. if (wpa_config_remove_network(wpa_s->conf, id) < 0)
  2808. return -2;
  2809. if (!was_disabled && wpa_s->sched_scanning) {
  2810. wpa_printf(MSG_DEBUG,
  2811. "Stop ongoing sched_scan to remove network from filters");
  2812. wpa_supplicant_cancel_sched_scan(wpa_s);
  2813. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2814. }
  2815. return 0;
  2816. }
  2817. /**
  2818. * wpa_supplicant_enable_network - Mark a configured network as enabled
  2819. * @wpa_s: wpa_supplicant structure for a network interface
  2820. * @ssid: wpa_ssid structure for a configured network or %NULL
  2821. *
  2822. * Enables the specified network or all networks if no network specified.
  2823. */
  2824. void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
  2825. struct wpa_ssid *ssid)
  2826. {
  2827. if (ssid == NULL) {
  2828. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  2829. wpa_supplicant_enable_one_network(wpa_s, ssid);
  2830. } else
  2831. wpa_supplicant_enable_one_network(wpa_s, ssid);
  2832. if (wpa_s->reassociate && !wpa_s->disconnected &&
  2833. (!wpa_s->current_ssid ||
  2834. wpa_s->wpa_state == WPA_DISCONNECTED ||
  2835. wpa_s->wpa_state == WPA_SCANNING)) {
  2836. if (wpa_s->sched_scanning) {
  2837. wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan to add "
  2838. "new network to scan filters");
  2839. wpa_supplicant_cancel_sched_scan(wpa_s);
  2840. }
  2841. if (wpa_supplicant_fast_associate(wpa_s) != 1) {
  2842. wpa_s->scan_req = NORMAL_SCAN_REQ;
  2843. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2844. }
  2845. }
  2846. }
  2847. /**
  2848. * wpa_supplicant_disable_network - Mark a configured network as disabled
  2849. * @wpa_s: wpa_supplicant structure for a network interface
  2850. * @ssid: wpa_ssid structure for a configured network or %NULL
  2851. *
  2852. * Disables the specified network or all networks if no network specified.
  2853. */
  2854. void wpa_supplicant_disable_network(struct wpa_supplicant *wpa_s,
  2855. struct wpa_ssid *ssid)
  2856. {
  2857. struct wpa_ssid *other_ssid;
  2858. int was_disabled;
  2859. if (ssid == NULL) {
  2860. if (wpa_s->sched_scanning)
  2861. wpa_supplicant_cancel_sched_scan(wpa_s);
  2862. for (other_ssid = wpa_s->conf->ssid; other_ssid;
  2863. other_ssid = other_ssid->next) {
  2864. was_disabled = other_ssid->disabled;
  2865. if (was_disabled == 2)
  2866. continue; /* do not change persistent P2P group
  2867. * data */
  2868. other_ssid->disabled = 1;
  2869. if (was_disabled != other_ssid->disabled)
  2870. wpas_notify_network_enabled_changed(
  2871. wpa_s, other_ssid);
  2872. }
  2873. if (wpa_s->current_ssid) {
  2874. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  2875. wpa_s->own_disconnect_req = 1;
  2876. wpa_supplicant_deauthenticate(
  2877. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  2878. }
  2879. } else if (ssid->disabled != 2) {
  2880. if (ssid == wpa_s->current_ssid) {
  2881. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  2882. wpa_s->own_disconnect_req = 1;
  2883. wpa_supplicant_deauthenticate(
  2884. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  2885. }
  2886. was_disabled = ssid->disabled;
  2887. ssid->disabled = 1;
  2888. if (was_disabled != ssid->disabled) {
  2889. wpas_notify_network_enabled_changed(wpa_s, ssid);
  2890. if (wpa_s->sched_scanning) {
  2891. wpa_printf(MSG_DEBUG, "Stop ongoing sched_scan "
  2892. "to remove network from filters");
  2893. wpa_supplicant_cancel_sched_scan(wpa_s);
  2894. wpa_supplicant_req_scan(wpa_s, 0, 0);
  2895. }
  2896. }
  2897. }
  2898. }
  2899. /**
  2900. * wpa_supplicant_select_network - Attempt association with a network
  2901. * @wpa_s: wpa_supplicant structure for a network interface
  2902. * @ssid: wpa_ssid structure for a configured network or %NULL for any network
  2903. */
  2904. void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
  2905. struct wpa_ssid *ssid)
  2906. {
  2907. struct wpa_ssid *other_ssid;
  2908. int disconnected = 0;
  2909. if (ssid && ssid != wpa_s->current_ssid && wpa_s->current_ssid) {
  2910. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  2911. wpa_s->own_disconnect_req = 1;
  2912. wpa_supplicant_deauthenticate(
  2913. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  2914. disconnected = 1;
  2915. }
  2916. if (ssid)
  2917. wpas_clear_temp_disabled(wpa_s, ssid, 1);
  2918. /*
  2919. * Mark all other networks disabled or mark all networks enabled if no
  2920. * network specified.
  2921. */
  2922. for (other_ssid = wpa_s->conf->ssid; other_ssid;
  2923. other_ssid = other_ssid->next) {
  2924. int was_disabled = other_ssid->disabled;
  2925. if (was_disabled == 2)
  2926. continue; /* do not change persistent P2P group data */
  2927. other_ssid->disabled = ssid ? (ssid->id != other_ssid->id) : 0;
  2928. if (was_disabled && !other_ssid->disabled)
  2929. wpas_clear_temp_disabled(wpa_s, other_ssid, 0);
  2930. if (was_disabled != other_ssid->disabled)
  2931. wpas_notify_network_enabled_changed(wpa_s, other_ssid);
  2932. }
  2933. if (ssid && ssid == wpa_s->current_ssid && wpa_s->current_ssid &&
  2934. wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  2935. /* We are already associated with the selected network */
  2936. wpa_printf(MSG_DEBUG, "Already associated with the "
  2937. "selected network - do nothing");
  2938. return;
  2939. }
  2940. if (ssid) {
  2941. wpa_s->current_ssid = ssid;
  2942. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  2943. wpa_s->connect_without_scan =
  2944. (ssid->mode == WPAS_MODE_MESH) ? ssid : NULL;
  2945. /*
  2946. * Don't optimize next scan freqs since a new ESS has been
  2947. * selected.
  2948. */
  2949. os_free(wpa_s->next_scan_freqs);
  2950. wpa_s->next_scan_freqs = NULL;
  2951. } else {
  2952. wpa_s->connect_without_scan = NULL;
  2953. }
  2954. wpa_s->disconnected = 0;
  2955. wpa_s->reassociate = 1;
  2956. if (wpa_s->connect_without_scan ||
  2957. wpa_supplicant_fast_associate(wpa_s) != 1) {
  2958. wpa_s->scan_req = NORMAL_SCAN_REQ;
  2959. wpas_scan_reset_sched_scan(wpa_s);
  2960. wpa_supplicant_req_scan(wpa_s, 0, disconnected ? 100000 : 0);
  2961. }
  2962. if (ssid)
  2963. wpas_notify_network_selected(wpa_s, ssid);
  2964. }
  2965. /**
  2966. * wpas_set_pkcs11_engine_and_module_path - Set PKCS #11 engine and module path
  2967. * @wpa_s: wpa_supplicant structure for a network interface
  2968. * @pkcs11_engine_path: PKCS #11 engine path or NULL
  2969. * @pkcs11_module_path: PKCS #11 module path or NULL
  2970. * Returns: 0 on success; -1 on failure
  2971. *
  2972. * Sets the PKCS #11 engine and module path. Both have to be NULL or a valid
  2973. * path. If resetting the EAPOL state machine with the new PKCS #11 engine and
  2974. * module path fails the paths will be reset to the default value (NULL).
  2975. */
  2976. int wpas_set_pkcs11_engine_and_module_path(struct wpa_supplicant *wpa_s,
  2977. const char *pkcs11_engine_path,
  2978. const char *pkcs11_module_path)
  2979. {
  2980. char *pkcs11_engine_path_copy = NULL;
  2981. char *pkcs11_module_path_copy = NULL;
  2982. if (pkcs11_engine_path != NULL) {
  2983. pkcs11_engine_path_copy = os_strdup(pkcs11_engine_path);
  2984. if (pkcs11_engine_path_copy == NULL)
  2985. return -1;
  2986. }
  2987. if (pkcs11_module_path != NULL) {
  2988. pkcs11_module_path_copy = os_strdup(pkcs11_module_path);
  2989. if (pkcs11_module_path_copy == NULL) {
  2990. os_free(pkcs11_engine_path_copy);
  2991. return -1;
  2992. }
  2993. }
  2994. os_free(wpa_s->conf->pkcs11_engine_path);
  2995. os_free(wpa_s->conf->pkcs11_module_path);
  2996. wpa_s->conf->pkcs11_engine_path = pkcs11_engine_path_copy;
  2997. wpa_s->conf->pkcs11_module_path = pkcs11_module_path_copy;
  2998. wpa_sm_set_eapol(wpa_s->wpa, NULL);
  2999. eapol_sm_deinit(wpa_s->eapol);
  3000. wpa_s->eapol = NULL;
  3001. if (wpa_supplicant_init_eapol(wpa_s)) {
  3002. /* Error -> Reset paths to the default value (NULL) once. */
  3003. if (pkcs11_engine_path != NULL && pkcs11_module_path != NULL)
  3004. wpas_set_pkcs11_engine_and_module_path(wpa_s, NULL,
  3005. NULL);
  3006. return -1;
  3007. }
  3008. wpa_sm_set_eapol(wpa_s->wpa, wpa_s->eapol);
  3009. return 0;
  3010. }
  3011. /**
  3012. * wpa_supplicant_set_ap_scan - Set AP scan mode for interface
  3013. * @wpa_s: wpa_supplicant structure for a network interface
  3014. * @ap_scan: AP scan mode
  3015. * Returns: 0 if succeed or -1 if ap_scan has an invalid value
  3016. *
  3017. */
  3018. int wpa_supplicant_set_ap_scan(struct wpa_supplicant *wpa_s, int ap_scan)
  3019. {
  3020. int old_ap_scan;
  3021. if (ap_scan < 0 || ap_scan > 2)
  3022. return -1;
  3023. if (ap_scan == 2 && os_strcmp(wpa_s->driver->name, "nl80211") == 0) {
  3024. wpa_printf(MSG_INFO,
  3025. "Note: nl80211 driver interface is not designed to be used with ap_scan=2; this can result in connection failures");
  3026. }
  3027. #ifdef ANDROID
  3028. if (ap_scan == 2 && ap_scan != wpa_s->conf->ap_scan &&
  3029. wpa_s->wpa_state >= WPA_ASSOCIATING &&
  3030. wpa_s->wpa_state < WPA_COMPLETED) {
  3031. wpa_printf(MSG_ERROR, "ap_scan = %d (%d) rejected while "
  3032. "associating", wpa_s->conf->ap_scan, ap_scan);
  3033. return 0;
  3034. }
  3035. #endif /* ANDROID */
  3036. old_ap_scan = wpa_s->conf->ap_scan;
  3037. wpa_s->conf->ap_scan = ap_scan;
  3038. if (old_ap_scan != wpa_s->conf->ap_scan)
  3039. wpas_notify_ap_scan_changed(wpa_s);
  3040. return 0;
  3041. }
  3042. /**
  3043. * wpa_supplicant_set_bss_expiration_age - Set BSS entry expiration age
  3044. * @wpa_s: wpa_supplicant structure for a network interface
  3045. * @expire_age: Expiration age in seconds
  3046. * Returns: 0 if succeed or -1 if expire_age has an invalid value
  3047. *
  3048. */
  3049. int wpa_supplicant_set_bss_expiration_age(struct wpa_supplicant *wpa_s,
  3050. unsigned int bss_expire_age)
  3051. {
  3052. if (bss_expire_age < 10) {
  3053. wpa_msg(wpa_s, MSG_ERROR, "Invalid bss expiration age %u",
  3054. bss_expire_age);
  3055. return -1;
  3056. }
  3057. wpa_msg(wpa_s, MSG_DEBUG, "Setting bss expiration age: %d sec",
  3058. bss_expire_age);
  3059. wpa_s->conf->bss_expiration_age = bss_expire_age;
  3060. return 0;
  3061. }
  3062. /**
  3063. * wpa_supplicant_set_bss_expiration_count - Set BSS entry expiration scan count
  3064. * @wpa_s: wpa_supplicant structure for a network interface
  3065. * @expire_count: number of scans after which an unseen BSS is reclaimed
  3066. * Returns: 0 if succeed or -1 if expire_count has an invalid value
  3067. *
  3068. */
  3069. int wpa_supplicant_set_bss_expiration_count(struct wpa_supplicant *wpa_s,
  3070. unsigned int bss_expire_count)
  3071. {
  3072. if (bss_expire_count < 1) {
  3073. wpa_msg(wpa_s, MSG_ERROR, "Invalid bss expiration count %u",
  3074. bss_expire_count);
  3075. return -1;
  3076. }
  3077. wpa_msg(wpa_s, MSG_DEBUG, "Setting bss expiration scan count: %u",
  3078. bss_expire_count);
  3079. wpa_s->conf->bss_expiration_scan_count = bss_expire_count;
  3080. return 0;
  3081. }
  3082. /**
  3083. * wpa_supplicant_set_scan_interval - Set scan interval
  3084. * @wpa_s: wpa_supplicant structure for a network interface
  3085. * @scan_interval: scan interval in seconds
  3086. * Returns: 0 if succeed or -1 if scan_interval has an invalid value
  3087. *
  3088. */
  3089. int wpa_supplicant_set_scan_interval(struct wpa_supplicant *wpa_s,
  3090. int scan_interval)
  3091. {
  3092. if (scan_interval < 0) {
  3093. wpa_msg(wpa_s, MSG_ERROR, "Invalid scan interval %d",
  3094. scan_interval);
  3095. return -1;
  3096. }
  3097. wpa_msg(wpa_s, MSG_DEBUG, "Setting scan interval: %d sec",
  3098. scan_interval);
  3099. wpa_supplicant_update_scan_int(wpa_s, scan_interval);
  3100. return 0;
  3101. }
  3102. /**
  3103. * wpa_supplicant_set_debug_params - Set global debug params
  3104. * @global: wpa_global structure
  3105. * @debug_level: debug level
  3106. * @debug_timestamp: determines if show timestamp in debug data
  3107. * @debug_show_keys: determines if show keys in debug data
  3108. * Returns: 0 if succeed or -1 if debug_level has wrong value
  3109. */
  3110. int wpa_supplicant_set_debug_params(struct wpa_global *global, int debug_level,
  3111. int debug_timestamp, int debug_show_keys)
  3112. {
  3113. int old_level, old_timestamp, old_show_keys;
  3114. /* check for allowed debuglevels */
  3115. if (debug_level != MSG_EXCESSIVE &&
  3116. debug_level != MSG_MSGDUMP &&
  3117. debug_level != MSG_DEBUG &&
  3118. debug_level != MSG_INFO &&
  3119. debug_level != MSG_WARNING &&
  3120. debug_level != MSG_ERROR)
  3121. return -1;
  3122. old_level = wpa_debug_level;
  3123. old_timestamp = wpa_debug_timestamp;
  3124. old_show_keys = wpa_debug_show_keys;
  3125. wpa_debug_level = debug_level;
  3126. wpa_debug_timestamp = debug_timestamp ? 1 : 0;
  3127. wpa_debug_show_keys = debug_show_keys ? 1 : 0;
  3128. if (wpa_debug_level != old_level)
  3129. wpas_notify_debug_level_changed(global);
  3130. if (wpa_debug_timestamp != old_timestamp)
  3131. wpas_notify_debug_timestamp_changed(global);
  3132. if (wpa_debug_show_keys != old_show_keys)
  3133. wpas_notify_debug_show_keys_changed(global);
  3134. return 0;
  3135. }
  3136. #ifdef CONFIG_OWE
  3137. static int owe_trans_ssid_match(struct wpa_supplicant *wpa_s, const u8 *bssid,
  3138. const u8 *entry_ssid, size_t entry_ssid_len)
  3139. {
  3140. const u8 *owe, *pos, *end;
  3141. u8 ssid_len;
  3142. struct wpa_bss *bss;
  3143. /* Check network profile SSID aganst the SSID in the
  3144. * OWE Transition Mode element. */
  3145. bss = wpa_bss_get_bssid_latest(wpa_s, bssid);
  3146. if (!bss)
  3147. return 0;
  3148. owe = wpa_bss_get_vendor_ie(bss, OWE_IE_VENDOR_TYPE);
  3149. if (!owe)
  3150. return 0;
  3151. pos = owe + 6;
  3152. end = owe + 2 + owe[1];
  3153. if (end - pos < ETH_ALEN + 1)
  3154. return 0;
  3155. pos += ETH_ALEN;
  3156. ssid_len = *pos++;
  3157. if (end - pos < ssid_len || ssid_len > SSID_MAX_LEN)
  3158. return 0;
  3159. return entry_ssid_len == ssid_len &&
  3160. os_memcmp(pos, entry_ssid, ssid_len) == 0;
  3161. }
  3162. #endif /* CONFIG_OWE */
  3163. /**
  3164. * wpa_supplicant_get_ssid - Get a pointer to the current network structure
  3165. * @wpa_s: Pointer to wpa_supplicant data
  3166. * Returns: A pointer to the current network structure or %NULL on failure
  3167. */
  3168. struct wpa_ssid * wpa_supplicant_get_ssid(struct wpa_supplicant *wpa_s)
  3169. {
  3170. struct wpa_ssid *entry;
  3171. u8 ssid[SSID_MAX_LEN];
  3172. int res;
  3173. size_t ssid_len;
  3174. u8 bssid[ETH_ALEN];
  3175. int wired;
  3176. res = wpa_drv_get_ssid(wpa_s, ssid);
  3177. if (res < 0) {
  3178. wpa_msg(wpa_s, MSG_WARNING, "Could not read SSID from "
  3179. "driver");
  3180. return NULL;
  3181. }
  3182. ssid_len = res;
  3183. if (wpa_drv_get_bssid(wpa_s, bssid) < 0) {
  3184. wpa_msg(wpa_s, MSG_WARNING, "Could not read BSSID from "
  3185. "driver");
  3186. return NULL;
  3187. }
  3188. wired = wpa_s->conf->ap_scan == 0 &&
  3189. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_WIRED);
  3190. entry = wpa_s->conf->ssid;
  3191. while (entry) {
  3192. if (!wpas_network_disabled(wpa_s, entry) &&
  3193. ((ssid_len == entry->ssid_len &&
  3194. os_memcmp(ssid, entry->ssid, ssid_len) == 0) || wired) &&
  3195. (!entry->bssid_set ||
  3196. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
  3197. return entry;
  3198. #ifdef CONFIG_WPS
  3199. if (!wpas_network_disabled(wpa_s, entry) &&
  3200. (entry->key_mgmt & WPA_KEY_MGMT_WPS) &&
  3201. (entry->ssid == NULL || entry->ssid_len == 0) &&
  3202. (!entry->bssid_set ||
  3203. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
  3204. return entry;
  3205. #endif /* CONFIG_WPS */
  3206. #ifdef CONFIG_OWE
  3207. if (!wpas_network_disabled(wpa_s, entry) &&
  3208. owe_trans_ssid_match(wpa_s, bssid, entry->ssid,
  3209. entry->ssid_len) &&
  3210. (!entry->bssid_set ||
  3211. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0))
  3212. return entry;
  3213. #endif /* CONFIG_OWE */
  3214. if (!wpas_network_disabled(wpa_s, entry) && entry->bssid_set &&
  3215. entry->ssid_len == 0 &&
  3216. os_memcmp(bssid, entry->bssid, ETH_ALEN) == 0)
  3217. return entry;
  3218. entry = entry->next;
  3219. }
  3220. return NULL;
  3221. }
  3222. static int select_driver(struct wpa_supplicant *wpa_s, int i)
  3223. {
  3224. struct wpa_global *global = wpa_s->global;
  3225. if (wpa_drivers[i]->global_init && global->drv_priv[i] == NULL) {
  3226. global->drv_priv[i] = wpa_drivers[i]->global_init(global);
  3227. if (global->drv_priv[i] == NULL) {
  3228. wpa_printf(MSG_ERROR, "Failed to initialize driver "
  3229. "'%s'", wpa_drivers[i]->name);
  3230. return -1;
  3231. }
  3232. }
  3233. wpa_s->driver = wpa_drivers[i];
  3234. wpa_s->global_drv_priv = global->drv_priv[i];
  3235. return 0;
  3236. }
  3237. static int wpa_supplicant_set_driver(struct wpa_supplicant *wpa_s,
  3238. const char *name)
  3239. {
  3240. int i;
  3241. size_t len;
  3242. const char *pos, *driver = name;
  3243. if (wpa_s == NULL)
  3244. return -1;
  3245. if (wpa_drivers[0] == NULL) {
  3246. wpa_msg(wpa_s, MSG_ERROR, "No driver interfaces build into "
  3247. "wpa_supplicant");
  3248. return -1;
  3249. }
  3250. if (name == NULL) {
  3251. /* default to first driver in the list */
  3252. return select_driver(wpa_s, 0);
  3253. }
  3254. do {
  3255. pos = os_strchr(driver, ',');
  3256. if (pos)
  3257. len = pos - driver;
  3258. else
  3259. len = os_strlen(driver);
  3260. for (i = 0; wpa_drivers[i]; i++) {
  3261. if (os_strlen(wpa_drivers[i]->name) == len &&
  3262. os_strncmp(driver, wpa_drivers[i]->name, len) ==
  3263. 0) {
  3264. /* First driver that succeeds wins */
  3265. if (select_driver(wpa_s, i) == 0)
  3266. return 0;
  3267. }
  3268. }
  3269. driver = pos + 1;
  3270. } while (pos);
  3271. wpa_msg(wpa_s, MSG_ERROR, "Unsupported driver '%s'", name);
  3272. return -1;
  3273. }
  3274. /**
  3275. * wpa_supplicant_rx_eapol - Deliver a received EAPOL frame to wpa_supplicant
  3276. * @ctx: Context pointer (wpa_s); this is the ctx variable registered
  3277. * with struct wpa_driver_ops::init()
  3278. * @src_addr: Source address of the EAPOL frame
  3279. * @buf: EAPOL data starting from the EAPOL header (i.e., no Ethernet header)
  3280. * @len: Length of the EAPOL data
  3281. *
  3282. * This function is called for each received EAPOL frame. Most driver
  3283. * interfaces rely on more generic OS mechanism for receiving frames through
  3284. * l2_packet, but if such a mechanism is not available, the driver wrapper may
  3285. * take care of received EAPOL frames and deliver them to the core supplicant
  3286. * code by calling this function.
  3287. */
  3288. void wpa_supplicant_rx_eapol(void *ctx, const u8 *src_addr,
  3289. const u8 *buf, size_t len)
  3290. {
  3291. struct wpa_supplicant *wpa_s = ctx;
  3292. wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR, MAC2STR(src_addr));
  3293. wpa_hexdump(MSG_MSGDUMP, "RX EAPOL", buf, len);
  3294. #ifdef CONFIG_TESTING_OPTIONS
  3295. if (wpa_s->ignore_auth_resp) {
  3296. wpa_printf(MSG_INFO, "RX EAPOL - ignore_auth_resp active!");
  3297. return;
  3298. }
  3299. #endif /* CONFIG_TESTING_OPTIONS */
  3300. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  3301. (wpa_s->last_eapol_matches_bssid &&
  3302. #ifdef CONFIG_AP
  3303. !wpa_s->ap_iface &&
  3304. #endif /* CONFIG_AP */
  3305. os_memcmp(src_addr, wpa_s->bssid, ETH_ALEN) != 0)) {
  3306. /*
  3307. * There is possible race condition between receiving the
  3308. * association event and the EAPOL frame since they are coming
  3309. * through different paths from the driver. In order to avoid
  3310. * issues in trying to process the EAPOL frame before receiving
  3311. * association information, lets queue it for processing until
  3312. * the association event is received. This may also be needed in
  3313. * driver-based roaming case, so also use src_addr != BSSID as a
  3314. * trigger if we have previously confirmed that the
  3315. * Authenticator uses BSSID as the src_addr (which is not the
  3316. * case with wired IEEE 802.1X).
  3317. */
  3318. wpa_dbg(wpa_s, MSG_DEBUG, "Not associated - Delay processing "
  3319. "of received EAPOL frame (state=%s bssid=" MACSTR ")",
  3320. wpa_supplicant_state_txt(wpa_s->wpa_state),
  3321. MAC2STR(wpa_s->bssid));
  3322. wpabuf_free(wpa_s->pending_eapol_rx);
  3323. wpa_s->pending_eapol_rx = wpabuf_alloc_copy(buf, len);
  3324. if (wpa_s->pending_eapol_rx) {
  3325. os_get_reltime(&wpa_s->pending_eapol_rx_time);
  3326. os_memcpy(wpa_s->pending_eapol_rx_src, src_addr,
  3327. ETH_ALEN);
  3328. }
  3329. return;
  3330. }
  3331. wpa_s->last_eapol_matches_bssid =
  3332. os_memcmp(src_addr, wpa_s->bssid, ETH_ALEN) == 0;
  3333. #ifdef CONFIG_AP
  3334. if (wpa_s->ap_iface) {
  3335. wpa_supplicant_ap_rx_eapol(wpa_s, src_addr, buf, len);
  3336. return;
  3337. }
  3338. #endif /* CONFIG_AP */
  3339. if (wpa_s->key_mgmt == WPA_KEY_MGMT_NONE) {
  3340. wpa_dbg(wpa_s, MSG_DEBUG, "Ignored received EAPOL frame since "
  3341. "no key management is configured");
  3342. return;
  3343. }
  3344. if (wpa_s->eapol_received == 0 &&
  3345. (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE) ||
  3346. !wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) ||
  3347. wpa_s->wpa_state != WPA_COMPLETED) &&
  3348. (wpa_s->current_ssid == NULL ||
  3349. wpa_s->current_ssid->mode != IEEE80211_MODE_IBSS)) {
  3350. /* Timeout for completing IEEE 802.1X and WPA authentication */
  3351. int timeout = 10;
  3352. if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
  3353. wpa_s->key_mgmt == WPA_KEY_MGMT_IEEE8021X_NO_WPA ||
  3354. wpa_s->key_mgmt == WPA_KEY_MGMT_WPS) {
  3355. /* Use longer timeout for IEEE 802.1X/EAP */
  3356. timeout = 70;
  3357. }
  3358. #ifdef CONFIG_WPS
  3359. if (wpa_s->current_ssid && wpa_s->current_bss &&
  3360. (wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS) &&
  3361. eap_is_wps_pin_enrollee(&wpa_s->current_ssid->eap)) {
  3362. /*
  3363. * Use shorter timeout if going through WPS AP iteration
  3364. * for PIN config method with an AP that does not
  3365. * advertise Selected Registrar.
  3366. */
  3367. struct wpabuf *wps_ie;
  3368. wps_ie = wpa_bss_get_vendor_ie_multi(
  3369. wpa_s->current_bss, WPS_IE_VENDOR_TYPE);
  3370. if (wps_ie &&
  3371. !wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1))
  3372. timeout = 10;
  3373. wpabuf_free(wps_ie);
  3374. }
  3375. #endif /* CONFIG_WPS */
  3376. wpa_supplicant_req_auth_timeout(wpa_s, timeout, 0);
  3377. }
  3378. wpa_s->eapol_received++;
  3379. if (wpa_s->countermeasures) {
  3380. wpa_msg(wpa_s, MSG_INFO, "WPA: Countermeasures - dropped "
  3381. "EAPOL packet");
  3382. return;
  3383. }
  3384. #ifdef CONFIG_IBSS_RSN
  3385. if (wpa_s->current_ssid &&
  3386. wpa_s->current_ssid->mode == WPAS_MODE_IBSS) {
  3387. ibss_rsn_rx_eapol(wpa_s->ibss_rsn, src_addr, buf, len);
  3388. return;
  3389. }
  3390. #endif /* CONFIG_IBSS_RSN */
  3391. /* Source address of the incoming EAPOL frame could be compared to the
  3392. * current BSSID. However, it is possible that a centralized
  3393. * Authenticator could be using another MAC address than the BSSID of
  3394. * an AP, so just allow any address to be used for now. The replies are
  3395. * still sent to the current BSSID (if available), though. */
  3396. os_memcpy(wpa_s->last_eapol_src, src_addr, ETH_ALEN);
  3397. if (!wpa_key_mgmt_wpa_psk(wpa_s->key_mgmt) &&
  3398. wpa_s->key_mgmt != WPA_KEY_MGMT_OWE &&
  3399. wpa_s->key_mgmt != WPA_KEY_MGMT_DPP &&
  3400. eapol_sm_rx_eapol(wpa_s->eapol, src_addr, buf, len) > 0)
  3401. return;
  3402. wpa_drv_poll(wpa_s);
  3403. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_4WAY_HANDSHAKE))
  3404. wpa_sm_rx_eapol(wpa_s->wpa, src_addr, buf, len);
  3405. else if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt)) {
  3406. /*
  3407. * Set portValid = TRUE here since we are going to skip 4-way
  3408. * handshake processing which would normally set portValid. We
  3409. * need this to allow the EAPOL state machines to be completed
  3410. * without going through EAPOL-Key handshake.
  3411. */
  3412. eapol_sm_notify_portValid(wpa_s->eapol, TRUE);
  3413. }
  3414. }
  3415. int wpa_supplicant_update_mac_addr(struct wpa_supplicant *wpa_s)
  3416. {
  3417. if ((!wpa_s->p2p_mgmt ||
  3418. !(wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)) &&
  3419. !(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)) {
  3420. l2_packet_deinit(wpa_s->l2);
  3421. wpa_s->l2 = l2_packet_init(wpa_s->ifname,
  3422. wpa_drv_get_mac_addr(wpa_s),
  3423. ETH_P_EAPOL,
  3424. wpa_supplicant_rx_eapol, wpa_s, 0);
  3425. if (wpa_s->l2 == NULL)
  3426. return -1;
  3427. } else {
  3428. const u8 *addr = wpa_drv_get_mac_addr(wpa_s);
  3429. if (addr)
  3430. os_memcpy(wpa_s->own_addr, addr, ETH_ALEN);
  3431. }
  3432. if (wpa_s->l2 && l2_packet_get_own_addr(wpa_s->l2, wpa_s->own_addr)) {
  3433. wpa_msg(wpa_s, MSG_ERROR, "Failed to get own L2 address");
  3434. return -1;
  3435. }
  3436. wpa_sm_set_own_addr(wpa_s->wpa, wpa_s->own_addr);
  3437. return 0;
  3438. }
  3439. static void wpa_supplicant_rx_eapol_bridge(void *ctx, const u8 *src_addr,
  3440. const u8 *buf, size_t len)
  3441. {
  3442. struct wpa_supplicant *wpa_s = ctx;
  3443. const struct l2_ethhdr *eth;
  3444. if (len < sizeof(*eth))
  3445. return;
  3446. eth = (const struct l2_ethhdr *) buf;
  3447. if (os_memcmp(eth->h_dest, wpa_s->own_addr, ETH_ALEN) != 0 &&
  3448. !(eth->h_dest[0] & 0x01)) {
  3449. wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR " to " MACSTR
  3450. " (bridge - not for this interface - ignore)",
  3451. MAC2STR(src_addr), MAC2STR(eth->h_dest));
  3452. return;
  3453. }
  3454. wpa_dbg(wpa_s, MSG_DEBUG, "RX EAPOL from " MACSTR " to " MACSTR
  3455. " (bridge)", MAC2STR(src_addr), MAC2STR(eth->h_dest));
  3456. wpa_supplicant_rx_eapol(wpa_s, src_addr, buf + sizeof(*eth),
  3457. len - sizeof(*eth));
  3458. }
  3459. /**
  3460. * wpa_supplicant_driver_init - Initialize driver interface parameters
  3461. * @wpa_s: Pointer to wpa_supplicant data
  3462. * Returns: 0 on success, -1 on failure
  3463. *
  3464. * This function is called to initialize driver interface parameters.
  3465. * wpa_drv_init() must have been called before this function to initialize the
  3466. * driver interface.
  3467. */
  3468. int wpa_supplicant_driver_init(struct wpa_supplicant *wpa_s)
  3469. {
  3470. static int interface_count = 0;
  3471. if (wpa_supplicant_update_mac_addr(wpa_s) < 0)
  3472. return -1;
  3473. wpa_dbg(wpa_s, MSG_DEBUG, "Own MAC address: " MACSTR,
  3474. MAC2STR(wpa_s->own_addr));
  3475. os_memcpy(wpa_s->perm_addr, wpa_s->own_addr, ETH_ALEN);
  3476. wpa_sm_set_own_addr(wpa_s->wpa, wpa_s->own_addr);
  3477. if (wpa_s->bridge_ifname[0]) {
  3478. wpa_dbg(wpa_s, MSG_DEBUG, "Receiving packets from bridge "
  3479. "interface '%s'", wpa_s->bridge_ifname);
  3480. wpa_s->l2_br = l2_packet_init_bridge(
  3481. wpa_s->bridge_ifname, wpa_s->ifname, wpa_s->own_addr,
  3482. ETH_P_EAPOL, wpa_supplicant_rx_eapol_bridge, wpa_s, 1);
  3483. if (wpa_s->l2_br == NULL) {
  3484. wpa_msg(wpa_s, MSG_ERROR, "Failed to open l2_packet "
  3485. "connection for the bridge interface '%s'",
  3486. wpa_s->bridge_ifname);
  3487. return -1;
  3488. }
  3489. }
  3490. if (wpa_s->conf->ap_scan == 2 &&
  3491. os_strcmp(wpa_s->driver->name, "nl80211") == 0) {
  3492. wpa_printf(MSG_INFO,
  3493. "Note: nl80211 driver interface is not designed to be used with ap_scan=2; this can result in connection failures");
  3494. }
  3495. wpa_clear_keys(wpa_s, NULL);
  3496. /* Make sure that TKIP countermeasures are not left enabled (could
  3497. * happen if wpa_supplicant is killed during countermeasures. */
  3498. wpa_drv_set_countermeasures(wpa_s, 0);
  3499. wpa_dbg(wpa_s, MSG_DEBUG, "RSN: flushing PMKID list in the driver");
  3500. wpa_drv_flush_pmkid(wpa_s);
  3501. wpa_s->prev_scan_ssid = WILDCARD_SSID_SCAN;
  3502. wpa_s->prev_scan_wildcard = 0;
  3503. if (wpa_supplicant_enabled_networks(wpa_s)) {
  3504. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
  3505. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  3506. interface_count = 0;
  3507. }
  3508. #ifndef ANDROID
  3509. if (!wpa_s->p2p_mgmt &&
  3510. wpa_supplicant_delayed_sched_scan(wpa_s,
  3511. interface_count % 3,
  3512. 100000))
  3513. wpa_supplicant_req_scan(wpa_s, interface_count % 3,
  3514. 100000);
  3515. #endif /* ANDROID */
  3516. interface_count++;
  3517. } else
  3518. wpa_supplicant_set_state(wpa_s, WPA_INACTIVE);
  3519. return 0;
  3520. }
  3521. static int wpa_supplicant_daemon(const char *pid_file)
  3522. {
  3523. wpa_printf(MSG_DEBUG, "Daemonize..");
  3524. return os_daemonize(pid_file);
  3525. }
  3526. static struct wpa_supplicant *
  3527. wpa_supplicant_alloc(struct wpa_supplicant *parent)
  3528. {
  3529. struct wpa_supplicant *wpa_s;
  3530. wpa_s = os_zalloc(sizeof(*wpa_s));
  3531. if (wpa_s == NULL)
  3532. return NULL;
  3533. wpa_s->scan_req = INITIAL_SCAN_REQ;
  3534. wpa_s->scan_interval = 5;
  3535. wpa_s->new_connection = 1;
  3536. wpa_s->parent = parent ? parent : wpa_s;
  3537. wpa_s->p2pdev = wpa_s->parent;
  3538. wpa_s->sched_scanning = 0;
  3539. dl_list_init(&wpa_s->bss_tmp_disallowed);
  3540. dl_list_init(&wpa_s->fils_hlp_req);
  3541. return wpa_s;
  3542. }
  3543. #ifdef CONFIG_HT_OVERRIDES
  3544. static int wpa_set_htcap_mcs(struct wpa_supplicant *wpa_s,
  3545. struct ieee80211_ht_capabilities *htcaps,
  3546. struct ieee80211_ht_capabilities *htcaps_mask,
  3547. const char *ht_mcs)
  3548. {
  3549. /* parse ht_mcs into hex array */
  3550. int i;
  3551. const char *tmp = ht_mcs;
  3552. char *end = NULL;
  3553. /* If ht_mcs is null, do not set anything */
  3554. if (!ht_mcs)
  3555. return 0;
  3556. /* This is what we are setting in the kernel */
  3557. os_memset(&htcaps->supported_mcs_set, 0, IEEE80211_HT_MCS_MASK_LEN);
  3558. wpa_msg(wpa_s, MSG_DEBUG, "set_htcap, ht_mcs -:%s:-", ht_mcs);
  3559. for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++) {
  3560. long v;
  3561. errno = 0;
  3562. v = strtol(tmp, &end, 16);
  3563. if (errno == 0) {
  3564. wpa_msg(wpa_s, MSG_DEBUG,
  3565. "htcap value[%i]: %ld end: %p tmp: %p",
  3566. i, v, end, tmp);
  3567. if (end == tmp)
  3568. break;
  3569. htcaps->supported_mcs_set[i] = v;
  3570. tmp = end;
  3571. } else {
  3572. wpa_msg(wpa_s, MSG_ERROR,
  3573. "Failed to parse ht-mcs: %s, error: %s\n",
  3574. ht_mcs, strerror(errno));
  3575. return -1;
  3576. }
  3577. }
  3578. /*
  3579. * If we were able to parse any values, then set mask for the MCS set.
  3580. */
  3581. if (i) {
  3582. os_memset(&htcaps_mask->supported_mcs_set, 0xff,
  3583. IEEE80211_HT_MCS_MASK_LEN - 1);
  3584. /* skip the 3 reserved bits */
  3585. htcaps_mask->supported_mcs_set[IEEE80211_HT_MCS_MASK_LEN - 1] =
  3586. 0x1f;
  3587. }
  3588. return 0;
  3589. }
  3590. static int wpa_disable_max_amsdu(struct wpa_supplicant *wpa_s,
  3591. struct ieee80211_ht_capabilities *htcaps,
  3592. struct ieee80211_ht_capabilities *htcaps_mask,
  3593. int disabled)
  3594. {
  3595. le16 msk;
  3596. wpa_msg(wpa_s, MSG_DEBUG, "set_disable_max_amsdu: %d", disabled);
  3597. if (disabled == -1)
  3598. return 0;
  3599. msk = host_to_le16(HT_CAP_INFO_MAX_AMSDU_SIZE);
  3600. htcaps_mask->ht_capabilities_info |= msk;
  3601. if (disabled)
  3602. htcaps->ht_capabilities_info &= msk;
  3603. else
  3604. htcaps->ht_capabilities_info |= msk;
  3605. return 0;
  3606. }
  3607. static int wpa_set_ampdu_factor(struct wpa_supplicant *wpa_s,
  3608. struct ieee80211_ht_capabilities *htcaps,
  3609. struct ieee80211_ht_capabilities *htcaps_mask,
  3610. int factor)
  3611. {
  3612. wpa_msg(wpa_s, MSG_DEBUG, "set_ampdu_factor: %d", factor);
  3613. if (factor == -1)
  3614. return 0;
  3615. if (factor < 0 || factor > 3) {
  3616. wpa_msg(wpa_s, MSG_ERROR, "ampdu_factor: %d out of range. "
  3617. "Must be 0-3 or -1", factor);
  3618. return -EINVAL;
  3619. }
  3620. htcaps_mask->a_mpdu_params |= 0x3; /* 2 bits for factor */
  3621. htcaps->a_mpdu_params &= ~0x3;
  3622. htcaps->a_mpdu_params |= factor & 0x3;
  3623. return 0;
  3624. }
  3625. static int wpa_set_ampdu_density(struct wpa_supplicant *wpa_s,
  3626. struct ieee80211_ht_capabilities *htcaps,
  3627. struct ieee80211_ht_capabilities *htcaps_mask,
  3628. int density)
  3629. {
  3630. wpa_msg(wpa_s, MSG_DEBUG, "set_ampdu_density: %d", density);
  3631. if (density == -1)
  3632. return 0;
  3633. if (density < 0 || density > 7) {
  3634. wpa_msg(wpa_s, MSG_ERROR,
  3635. "ampdu_density: %d out of range. Must be 0-7 or -1.",
  3636. density);
  3637. return -EINVAL;
  3638. }
  3639. htcaps_mask->a_mpdu_params |= 0x1C;
  3640. htcaps->a_mpdu_params &= ~(0x1C);
  3641. htcaps->a_mpdu_params |= (density << 2) & 0x1C;
  3642. return 0;
  3643. }
  3644. static int wpa_set_disable_ht40(struct wpa_supplicant *wpa_s,
  3645. struct ieee80211_ht_capabilities *htcaps,
  3646. struct ieee80211_ht_capabilities *htcaps_mask,
  3647. int disabled)
  3648. {
  3649. wpa_msg(wpa_s, MSG_DEBUG, "set_disable_ht40: %d", disabled);
  3650. set_disable_ht40(htcaps, disabled);
  3651. set_disable_ht40(htcaps_mask, 0);
  3652. return 0;
  3653. }
  3654. static int wpa_set_disable_sgi(struct wpa_supplicant *wpa_s,
  3655. struct ieee80211_ht_capabilities *htcaps,
  3656. struct ieee80211_ht_capabilities *htcaps_mask,
  3657. int disabled)
  3658. {
  3659. /* Masking these out disables SGI */
  3660. le16 msk = host_to_le16(HT_CAP_INFO_SHORT_GI20MHZ |
  3661. HT_CAP_INFO_SHORT_GI40MHZ);
  3662. wpa_msg(wpa_s, MSG_DEBUG, "set_disable_sgi: %d", disabled);
  3663. if (disabled)
  3664. htcaps->ht_capabilities_info &= ~msk;
  3665. else
  3666. htcaps->ht_capabilities_info |= msk;
  3667. htcaps_mask->ht_capabilities_info |= msk;
  3668. return 0;
  3669. }
  3670. static int wpa_set_disable_ldpc(struct wpa_supplicant *wpa_s,
  3671. struct ieee80211_ht_capabilities *htcaps,
  3672. struct ieee80211_ht_capabilities *htcaps_mask,
  3673. int disabled)
  3674. {
  3675. /* Masking these out disables LDPC */
  3676. le16 msk = host_to_le16(HT_CAP_INFO_LDPC_CODING_CAP);
  3677. wpa_msg(wpa_s, MSG_DEBUG, "set_disable_ldpc: %d", disabled);
  3678. if (disabled)
  3679. htcaps->ht_capabilities_info &= ~msk;
  3680. else
  3681. htcaps->ht_capabilities_info |= msk;
  3682. htcaps_mask->ht_capabilities_info |= msk;
  3683. return 0;
  3684. }
  3685. void wpa_supplicant_apply_ht_overrides(
  3686. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  3687. struct wpa_driver_associate_params *params)
  3688. {
  3689. struct ieee80211_ht_capabilities *htcaps;
  3690. struct ieee80211_ht_capabilities *htcaps_mask;
  3691. if (!ssid)
  3692. return;
  3693. params->disable_ht = ssid->disable_ht;
  3694. if (!params->htcaps || !params->htcaps_mask)
  3695. return;
  3696. htcaps = (struct ieee80211_ht_capabilities *) params->htcaps;
  3697. htcaps_mask = (struct ieee80211_ht_capabilities *) params->htcaps_mask;
  3698. wpa_set_htcap_mcs(wpa_s, htcaps, htcaps_mask, ssid->ht_mcs);
  3699. wpa_disable_max_amsdu(wpa_s, htcaps, htcaps_mask,
  3700. ssid->disable_max_amsdu);
  3701. wpa_set_ampdu_factor(wpa_s, htcaps, htcaps_mask, ssid->ampdu_factor);
  3702. wpa_set_ampdu_density(wpa_s, htcaps, htcaps_mask, ssid->ampdu_density);
  3703. wpa_set_disable_ht40(wpa_s, htcaps, htcaps_mask, ssid->disable_ht40);
  3704. wpa_set_disable_sgi(wpa_s, htcaps, htcaps_mask, ssid->disable_sgi);
  3705. wpa_set_disable_ldpc(wpa_s, htcaps, htcaps_mask, ssid->disable_ldpc);
  3706. if (ssid->ht40_intolerant) {
  3707. le16 bit = host_to_le16(HT_CAP_INFO_40MHZ_INTOLERANT);
  3708. htcaps->ht_capabilities_info |= bit;
  3709. htcaps_mask->ht_capabilities_info |= bit;
  3710. }
  3711. }
  3712. #endif /* CONFIG_HT_OVERRIDES */
  3713. #ifdef CONFIG_VHT_OVERRIDES
  3714. void wpa_supplicant_apply_vht_overrides(
  3715. struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  3716. struct wpa_driver_associate_params *params)
  3717. {
  3718. struct ieee80211_vht_capabilities *vhtcaps;
  3719. struct ieee80211_vht_capabilities *vhtcaps_mask;
  3720. if (!ssid)
  3721. return;
  3722. params->disable_vht = ssid->disable_vht;
  3723. vhtcaps = (void *) params->vhtcaps;
  3724. vhtcaps_mask = (void *) params->vhtcaps_mask;
  3725. if (!vhtcaps || !vhtcaps_mask)
  3726. return;
  3727. vhtcaps->vht_capabilities_info = host_to_le32(ssid->vht_capa);
  3728. vhtcaps_mask->vht_capabilities_info = host_to_le32(ssid->vht_capa_mask);
  3729. #ifdef CONFIG_HT_OVERRIDES
  3730. /* if max ampdu is <= 3, we have to make the HT cap the same */
  3731. if (ssid->vht_capa_mask & VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX) {
  3732. int max_ampdu;
  3733. max_ampdu = (ssid->vht_capa &
  3734. VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX) >>
  3735. VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX_SHIFT;
  3736. max_ampdu = max_ampdu < 3 ? max_ampdu : 3;
  3737. wpa_set_ampdu_factor(wpa_s,
  3738. (void *) params->htcaps,
  3739. (void *) params->htcaps_mask,
  3740. max_ampdu);
  3741. }
  3742. #endif /* CONFIG_HT_OVERRIDES */
  3743. #define OVERRIDE_MCS(i) \
  3744. if (ssid->vht_tx_mcs_nss_ ##i >= 0) { \
  3745. vhtcaps_mask->vht_supported_mcs_set.tx_map |= \
  3746. host_to_le16(3 << 2 * (i - 1)); \
  3747. vhtcaps->vht_supported_mcs_set.tx_map |= \
  3748. host_to_le16(ssid->vht_tx_mcs_nss_ ##i << \
  3749. 2 * (i - 1)); \
  3750. } \
  3751. if (ssid->vht_rx_mcs_nss_ ##i >= 0) { \
  3752. vhtcaps_mask->vht_supported_mcs_set.rx_map |= \
  3753. host_to_le16(3 << 2 * (i - 1)); \
  3754. vhtcaps->vht_supported_mcs_set.rx_map |= \
  3755. host_to_le16(ssid->vht_rx_mcs_nss_ ##i << \
  3756. 2 * (i - 1)); \
  3757. }
  3758. OVERRIDE_MCS(1);
  3759. OVERRIDE_MCS(2);
  3760. OVERRIDE_MCS(3);
  3761. OVERRIDE_MCS(4);
  3762. OVERRIDE_MCS(5);
  3763. OVERRIDE_MCS(6);
  3764. OVERRIDE_MCS(7);
  3765. OVERRIDE_MCS(8);
  3766. }
  3767. #endif /* CONFIG_VHT_OVERRIDES */
  3768. static int pcsc_reader_init(struct wpa_supplicant *wpa_s)
  3769. {
  3770. #ifdef PCSC_FUNCS
  3771. size_t len;
  3772. if (!wpa_s->conf->pcsc_reader)
  3773. return 0;
  3774. wpa_s->scard = scard_init(wpa_s->conf->pcsc_reader);
  3775. if (!wpa_s->scard)
  3776. return 1;
  3777. if (wpa_s->conf->pcsc_pin &&
  3778. scard_set_pin(wpa_s->scard, wpa_s->conf->pcsc_pin) < 0) {
  3779. scard_deinit(wpa_s->scard);
  3780. wpa_s->scard = NULL;
  3781. wpa_msg(wpa_s, MSG_ERROR, "PC/SC PIN validation failed");
  3782. return -1;
  3783. }
  3784. len = sizeof(wpa_s->imsi) - 1;
  3785. if (scard_get_imsi(wpa_s->scard, wpa_s->imsi, &len)) {
  3786. scard_deinit(wpa_s->scard);
  3787. wpa_s->scard = NULL;
  3788. wpa_msg(wpa_s, MSG_ERROR, "Could not read IMSI");
  3789. return -1;
  3790. }
  3791. wpa_s->imsi[len] = '\0';
  3792. wpa_s->mnc_len = scard_get_mnc_len(wpa_s->scard);
  3793. wpa_printf(MSG_DEBUG, "SCARD: IMSI %s (MNC length %d)",
  3794. wpa_s->imsi, wpa_s->mnc_len);
  3795. wpa_sm_set_scard_ctx(wpa_s->wpa, wpa_s->scard);
  3796. eapol_sm_register_scard_ctx(wpa_s->eapol, wpa_s->scard);
  3797. #endif /* PCSC_FUNCS */
  3798. return 0;
  3799. }
  3800. int wpas_init_ext_pw(struct wpa_supplicant *wpa_s)
  3801. {
  3802. char *val, *pos;
  3803. ext_password_deinit(wpa_s->ext_pw);
  3804. wpa_s->ext_pw = NULL;
  3805. eapol_sm_set_ext_pw_ctx(wpa_s->eapol, NULL);
  3806. if (!wpa_s->conf->ext_password_backend)
  3807. return 0;
  3808. val = os_strdup(wpa_s->conf->ext_password_backend);
  3809. if (val == NULL)
  3810. return -1;
  3811. pos = os_strchr(val, ':');
  3812. if (pos)
  3813. *pos++ = '\0';
  3814. wpa_printf(MSG_DEBUG, "EXT PW: Initialize backend '%s'", val);
  3815. wpa_s->ext_pw = ext_password_init(val, pos);
  3816. os_free(val);
  3817. if (wpa_s->ext_pw == NULL) {
  3818. wpa_printf(MSG_DEBUG, "EXT PW: Failed to initialize backend");
  3819. return -1;
  3820. }
  3821. eapol_sm_set_ext_pw_ctx(wpa_s->eapol, wpa_s->ext_pw);
  3822. return 0;
  3823. }
  3824. #ifdef CONFIG_FST
  3825. static const u8 * wpas_fst_get_bssid_cb(void *ctx)
  3826. {
  3827. struct wpa_supplicant *wpa_s = ctx;
  3828. return (is_zero_ether_addr(wpa_s->bssid) ||
  3829. wpa_s->wpa_state != WPA_COMPLETED) ? NULL : wpa_s->bssid;
  3830. }
  3831. static void wpas_fst_get_channel_info_cb(void *ctx,
  3832. enum hostapd_hw_mode *hw_mode,
  3833. u8 *channel)
  3834. {
  3835. struct wpa_supplicant *wpa_s = ctx;
  3836. if (wpa_s->current_bss) {
  3837. *hw_mode = ieee80211_freq_to_chan(wpa_s->current_bss->freq,
  3838. channel);
  3839. } else if (wpa_s->hw.num_modes) {
  3840. *hw_mode = wpa_s->hw.modes[0].mode;
  3841. } else {
  3842. WPA_ASSERT(0);
  3843. *hw_mode = 0;
  3844. }
  3845. }
  3846. static int wpas_fst_get_hw_modes(void *ctx, struct hostapd_hw_modes **modes)
  3847. {
  3848. struct wpa_supplicant *wpa_s = ctx;
  3849. *modes = wpa_s->hw.modes;
  3850. return wpa_s->hw.num_modes;
  3851. }
  3852. static void wpas_fst_set_ies_cb(void *ctx, const struct wpabuf *fst_ies)
  3853. {
  3854. struct wpa_supplicant *wpa_s = ctx;
  3855. wpa_hexdump_buf(MSG_DEBUG, "FST: Set IEs", fst_ies);
  3856. wpa_s->fst_ies = fst_ies;
  3857. }
  3858. static int wpas_fst_send_action_cb(void *ctx, const u8 *da, struct wpabuf *data)
  3859. {
  3860. struct wpa_supplicant *wpa_s = ctx;
  3861. if (os_memcmp(wpa_s->bssid, da, ETH_ALEN) != 0) {
  3862. wpa_printf(MSG_INFO, "FST:%s:bssid=" MACSTR " != da=" MACSTR,
  3863. __func__, MAC2STR(wpa_s->bssid), MAC2STR(da));
  3864. return -1;
  3865. }
  3866. return wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0, wpa_s->bssid,
  3867. wpa_s->own_addr, wpa_s->bssid,
  3868. wpabuf_head(data), wpabuf_len(data),
  3869. 0);
  3870. }
  3871. static const struct wpabuf * wpas_fst_get_mb_ie_cb(void *ctx, const u8 *addr)
  3872. {
  3873. struct wpa_supplicant *wpa_s = ctx;
  3874. WPA_ASSERT(os_memcmp(wpa_s->bssid, addr, ETH_ALEN) == 0);
  3875. return wpa_s->received_mb_ies;
  3876. }
  3877. static void wpas_fst_update_mb_ie_cb(void *ctx, const u8 *addr,
  3878. const u8 *buf, size_t size)
  3879. {
  3880. struct wpa_supplicant *wpa_s = ctx;
  3881. struct mb_ies_info info;
  3882. WPA_ASSERT(os_memcmp(wpa_s->bssid, addr, ETH_ALEN) == 0);
  3883. if (!mb_ies_info_by_ies(&info, buf, size)) {
  3884. wpabuf_free(wpa_s->received_mb_ies);
  3885. wpa_s->received_mb_ies = mb_ies_by_info(&info);
  3886. }
  3887. }
  3888. static const u8 * wpas_fst_get_peer_first(void *ctx,
  3889. struct fst_get_peer_ctx **get_ctx,
  3890. Boolean mb_only)
  3891. {
  3892. struct wpa_supplicant *wpa_s = ctx;
  3893. *get_ctx = NULL;
  3894. if (!is_zero_ether_addr(wpa_s->bssid))
  3895. return (wpa_s->received_mb_ies || !mb_only) ?
  3896. wpa_s->bssid : NULL;
  3897. return NULL;
  3898. }
  3899. static const u8 * wpas_fst_get_peer_next(void *ctx,
  3900. struct fst_get_peer_ctx **get_ctx,
  3901. Boolean mb_only)
  3902. {
  3903. return NULL;
  3904. }
  3905. void fst_wpa_supplicant_fill_iface_obj(struct wpa_supplicant *wpa_s,
  3906. struct fst_wpa_obj *iface_obj)
  3907. {
  3908. iface_obj->ctx = wpa_s;
  3909. iface_obj->get_bssid = wpas_fst_get_bssid_cb;
  3910. iface_obj->get_channel_info = wpas_fst_get_channel_info_cb;
  3911. iface_obj->get_hw_modes = wpas_fst_get_hw_modes;
  3912. iface_obj->set_ies = wpas_fst_set_ies_cb;
  3913. iface_obj->send_action = wpas_fst_send_action_cb;
  3914. iface_obj->get_mb_ie = wpas_fst_get_mb_ie_cb;
  3915. iface_obj->update_mb_ie = wpas_fst_update_mb_ie_cb;
  3916. iface_obj->get_peer_first = wpas_fst_get_peer_first;
  3917. iface_obj->get_peer_next = wpas_fst_get_peer_next;
  3918. }
  3919. #endif /* CONFIG_FST */
  3920. static int wpas_set_wowlan_triggers(struct wpa_supplicant *wpa_s,
  3921. const struct wpa_driver_capa *capa)
  3922. {
  3923. struct wowlan_triggers *triggers;
  3924. int ret = 0;
  3925. if (!wpa_s->conf->wowlan_triggers)
  3926. return 0;
  3927. triggers = wpa_get_wowlan_triggers(wpa_s->conf->wowlan_triggers, capa);
  3928. if (triggers) {
  3929. ret = wpa_drv_wowlan(wpa_s, triggers);
  3930. os_free(triggers);
  3931. }
  3932. return ret;
  3933. }
  3934. enum wpa_radio_work_band wpas_freq_to_band(int freq)
  3935. {
  3936. if (freq < 3000)
  3937. return BAND_2_4_GHZ;
  3938. if (freq > 50000)
  3939. return BAND_60_GHZ;
  3940. return BAND_5_GHZ;
  3941. }
  3942. unsigned int wpas_get_bands(struct wpa_supplicant *wpa_s, const int *freqs)
  3943. {
  3944. int i;
  3945. unsigned int band = 0;
  3946. if (freqs) {
  3947. /* freqs are specified for the radio work */
  3948. for (i = 0; freqs[i]; i++)
  3949. band |= wpas_freq_to_band(freqs[i]);
  3950. } else {
  3951. /*
  3952. * freqs are not specified, implies all
  3953. * the supported freqs by HW
  3954. */
  3955. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  3956. if (wpa_s->hw.modes[i].num_channels != 0) {
  3957. if (wpa_s->hw.modes[i].mode ==
  3958. HOSTAPD_MODE_IEEE80211B ||
  3959. wpa_s->hw.modes[i].mode ==
  3960. HOSTAPD_MODE_IEEE80211G)
  3961. band |= BAND_2_4_GHZ;
  3962. else if (wpa_s->hw.modes[i].mode ==
  3963. HOSTAPD_MODE_IEEE80211A)
  3964. band |= BAND_5_GHZ;
  3965. else if (wpa_s->hw.modes[i].mode ==
  3966. HOSTAPD_MODE_IEEE80211AD)
  3967. band |= BAND_60_GHZ;
  3968. else if (wpa_s->hw.modes[i].mode ==
  3969. HOSTAPD_MODE_IEEE80211ANY)
  3970. band = BAND_2_4_GHZ | BAND_5_GHZ |
  3971. BAND_60_GHZ;
  3972. }
  3973. }
  3974. }
  3975. return band;
  3976. }
  3977. static struct wpa_radio * radio_add_interface(struct wpa_supplicant *wpa_s,
  3978. const char *rn)
  3979. {
  3980. struct wpa_supplicant *iface = wpa_s->global->ifaces;
  3981. struct wpa_radio *radio;
  3982. while (rn && iface) {
  3983. radio = iface->radio;
  3984. if (radio && os_strcmp(rn, radio->name) == 0) {
  3985. wpa_printf(MSG_DEBUG, "Add interface %s to existing radio %s",
  3986. wpa_s->ifname, rn);
  3987. dl_list_add(&radio->ifaces, &wpa_s->radio_list);
  3988. return radio;
  3989. }
  3990. iface = iface->next;
  3991. }
  3992. wpa_printf(MSG_DEBUG, "Add interface %s to a new radio %s",
  3993. wpa_s->ifname, rn ? rn : "N/A");
  3994. radio = os_zalloc(sizeof(*radio));
  3995. if (radio == NULL)
  3996. return NULL;
  3997. if (rn)
  3998. os_strlcpy(radio->name, rn, sizeof(radio->name));
  3999. dl_list_init(&radio->ifaces);
  4000. dl_list_init(&radio->work);
  4001. dl_list_add(&radio->ifaces, &wpa_s->radio_list);
  4002. return radio;
  4003. }
  4004. static void radio_work_free(struct wpa_radio_work *work)
  4005. {
  4006. if (work->wpa_s->scan_work == work) {
  4007. /* This should not really happen. */
  4008. wpa_dbg(work->wpa_s, MSG_INFO, "Freeing radio work '%s'@%p (started=%d) that is marked as scan_work",
  4009. work->type, work, work->started);
  4010. work->wpa_s->scan_work = NULL;
  4011. }
  4012. #ifdef CONFIG_P2P
  4013. if (work->wpa_s->p2p_scan_work == work) {
  4014. /* This should not really happen. */
  4015. wpa_dbg(work->wpa_s, MSG_INFO, "Freeing radio work '%s'@%p (started=%d) that is marked as p2p_scan_work",
  4016. work->type, work, work->started);
  4017. work->wpa_s->p2p_scan_work = NULL;
  4018. }
  4019. #endif /* CONFIG_P2P */
  4020. if (work->started) {
  4021. work->wpa_s->radio->num_active_works--;
  4022. wpa_dbg(work->wpa_s, MSG_DEBUG,
  4023. "radio_work_free('%s'@%p): num_active_works --> %u",
  4024. work->type, work,
  4025. work->wpa_s->radio->num_active_works);
  4026. }
  4027. dl_list_del(&work->list);
  4028. os_free(work);
  4029. }
  4030. static int radio_work_is_connect(struct wpa_radio_work *work)
  4031. {
  4032. return os_strcmp(work->type, "sme-connect") == 0 ||
  4033. os_strcmp(work->type, "connect") == 0;
  4034. }
  4035. static int radio_work_is_scan(struct wpa_radio_work *work)
  4036. {
  4037. return os_strcmp(work->type, "scan") == 0 ||
  4038. os_strcmp(work->type, "p2p-scan") == 0;
  4039. }
  4040. static struct wpa_radio_work * radio_work_get_next_work(struct wpa_radio *radio)
  4041. {
  4042. struct wpa_radio_work *active_work = NULL;
  4043. struct wpa_radio_work *tmp;
  4044. /* Get the active work to know the type and band. */
  4045. dl_list_for_each(tmp, &radio->work, struct wpa_radio_work, list) {
  4046. if (tmp->started) {
  4047. active_work = tmp;
  4048. break;
  4049. }
  4050. }
  4051. if (!active_work) {
  4052. /* No active work, start one */
  4053. radio->num_active_works = 0;
  4054. dl_list_for_each(tmp, &radio->work, struct wpa_radio_work,
  4055. list) {
  4056. if (os_strcmp(tmp->type, "scan") == 0 &&
  4057. radio->external_scan_running &&
  4058. (((struct wpa_driver_scan_params *)
  4059. tmp->ctx)->only_new_results ||
  4060. tmp->wpa_s->clear_driver_scan_cache))
  4061. continue;
  4062. return tmp;
  4063. }
  4064. return NULL;
  4065. }
  4066. if (radio_work_is_connect(active_work)) {
  4067. /*
  4068. * If the active work is either connect or sme-connect,
  4069. * do not parallelize them with other radio works.
  4070. */
  4071. wpa_dbg(active_work->wpa_s, MSG_DEBUG,
  4072. "Do not parallelize radio work with %s",
  4073. active_work->type);
  4074. return NULL;
  4075. }
  4076. dl_list_for_each(tmp, &radio->work, struct wpa_radio_work, list) {
  4077. if (tmp->started)
  4078. continue;
  4079. /*
  4080. * If connect or sme-connect are enqueued, parallelize only
  4081. * those operations ahead of them in the queue.
  4082. */
  4083. if (radio_work_is_connect(tmp))
  4084. break;
  4085. /* Serialize parallel scan and p2p_scan operations on the same
  4086. * interface since the driver_nl80211 mechanism for tracking
  4087. * scan cookies does not yet have support for this. */
  4088. if (active_work->wpa_s == tmp->wpa_s &&
  4089. radio_work_is_scan(active_work) &&
  4090. radio_work_is_scan(tmp)) {
  4091. wpa_dbg(active_work->wpa_s, MSG_DEBUG,
  4092. "Do not start work '%s' when another work '%s' is already scheduled",
  4093. tmp->type, active_work->type);
  4094. continue;
  4095. }
  4096. /*
  4097. * Check that the radio works are distinct and
  4098. * on different bands.
  4099. */
  4100. if (os_strcmp(active_work->type, tmp->type) != 0 &&
  4101. (active_work->bands != tmp->bands)) {
  4102. /*
  4103. * If a scan has to be scheduled through nl80211 scan
  4104. * interface and if an external scan is already running,
  4105. * do not schedule the scan since it is likely to get
  4106. * rejected by kernel.
  4107. */
  4108. if (os_strcmp(tmp->type, "scan") == 0 &&
  4109. radio->external_scan_running &&
  4110. (((struct wpa_driver_scan_params *)
  4111. tmp->ctx)->only_new_results ||
  4112. tmp->wpa_s->clear_driver_scan_cache))
  4113. continue;
  4114. wpa_dbg(active_work->wpa_s, MSG_DEBUG,
  4115. "active_work:%s new_work:%s",
  4116. active_work->type, tmp->type);
  4117. return tmp;
  4118. }
  4119. }
  4120. /* Did not find a radio work to schedule in parallel. */
  4121. return NULL;
  4122. }
  4123. static void radio_start_next_work(void *eloop_ctx, void *timeout_ctx)
  4124. {
  4125. struct wpa_radio *radio = eloop_ctx;
  4126. struct wpa_radio_work *work;
  4127. struct os_reltime now, diff;
  4128. struct wpa_supplicant *wpa_s;
  4129. work = dl_list_first(&radio->work, struct wpa_radio_work, list);
  4130. if (work == NULL) {
  4131. radio->num_active_works = 0;
  4132. return;
  4133. }
  4134. wpa_s = dl_list_first(&radio->ifaces, struct wpa_supplicant,
  4135. radio_list);
  4136. if (!(wpa_s &&
  4137. wpa_s->drv_flags & WPA_DRIVER_FLAGS_OFFCHANNEL_SIMULTANEOUS)) {
  4138. if (work->started)
  4139. return; /* already started and still in progress */
  4140. if (wpa_s && wpa_s->radio->external_scan_running) {
  4141. wpa_printf(MSG_DEBUG, "Delay radio work start until externally triggered scan completes");
  4142. return;
  4143. }
  4144. } else {
  4145. work = NULL;
  4146. if (radio->num_active_works < MAX_ACTIVE_WORKS) {
  4147. /* get the work to schedule next */
  4148. work = radio_work_get_next_work(radio);
  4149. }
  4150. if (!work)
  4151. return;
  4152. }
  4153. wpa_s = work->wpa_s;
  4154. os_get_reltime(&now);
  4155. os_reltime_sub(&now, &work->time, &diff);
  4156. wpa_dbg(wpa_s, MSG_DEBUG,
  4157. "Starting radio work '%s'@%p after %ld.%06ld second wait",
  4158. work->type, work, diff.sec, diff.usec);
  4159. work->started = 1;
  4160. work->time = now;
  4161. radio->num_active_works++;
  4162. work->cb(work, 0);
  4163. if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_OFFCHANNEL_SIMULTANEOUS) &&
  4164. radio->num_active_works < MAX_ACTIVE_WORKS)
  4165. radio_work_check_next(wpa_s);
  4166. }
  4167. /*
  4168. * This function removes both started and pending radio works running on
  4169. * the provided interface's radio.
  4170. * Prior to the removal of the radio work, its callback (cb) is called with
  4171. * deinit set to be 1. Each work's callback is responsible for clearing its
  4172. * internal data and restoring to a correct state.
  4173. * @wpa_s: wpa_supplicant data
  4174. * @type: type of works to be removed
  4175. * @remove_all: 1 to remove all the works on this radio, 0 to remove only
  4176. * this interface's works.
  4177. */
  4178. void radio_remove_works(struct wpa_supplicant *wpa_s,
  4179. const char *type, int remove_all)
  4180. {
  4181. struct wpa_radio_work *work, *tmp;
  4182. struct wpa_radio *radio = wpa_s->radio;
  4183. dl_list_for_each_safe(work, tmp, &radio->work, struct wpa_radio_work,
  4184. list) {
  4185. if (type && os_strcmp(type, work->type) != 0)
  4186. continue;
  4187. /* skip other ifaces' works */
  4188. if (!remove_all && work->wpa_s != wpa_s)
  4189. continue;
  4190. wpa_dbg(wpa_s, MSG_DEBUG, "Remove radio work '%s'@%p%s",
  4191. work->type, work, work->started ? " (started)" : "");
  4192. work->cb(work, 1);
  4193. radio_work_free(work);
  4194. }
  4195. /* in case we removed the started work */
  4196. radio_work_check_next(wpa_s);
  4197. }
  4198. static void radio_remove_interface(struct wpa_supplicant *wpa_s)
  4199. {
  4200. struct wpa_radio *radio = wpa_s->radio;
  4201. if (!radio)
  4202. return;
  4203. wpa_printf(MSG_DEBUG, "Remove interface %s from radio %s",
  4204. wpa_s->ifname, radio->name);
  4205. dl_list_del(&wpa_s->radio_list);
  4206. radio_remove_works(wpa_s, NULL, 0);
  4207. wpa_s->radio = NULL;
  4208. if (!dl_list_empty(&radio->ifaces))
  4209. return; /* Interfaces remain for this radio */
  4210. wpa_printf(MSG_DEBUG, "Remove radio %s", radio->name);
  4211. eloop_cancel_timeout(radio_start_next_work, radio, NULL);
  4212. os_free(radio);
  4213. }
  4214. void radio_work_check_next(struct wpa_supplicant *wpa_s)
  4215. {
  4216. struct wpa_radio *radio = wpa_s->radio;
  4217. if (dl_list_empty(&radio->work))
  4218. return;
  4219. if (wpa_s->ext_work_in_progress) {
  4220. wpa_printf(MSG_DEBUG,
  4221. "External radio work in progress - delay start of pending item");
  4222. return;
  4223. }
  4224. eloop_cancel_timeout(radio_start_next_work, radio, NULL);
  4225. eloop_register_timeout(0, 0, radio_start_next_work, radio, NULL);
  4226. }
  4227. /**
  4228. * radio_add_work - Add a radio work item
  4229. * @wpa_s: Pointer to wpa_supplicant data
  4230. * @freq: Frequency of the offchannel operation in MHz or 0
  4231. * @type: Unique identifier for each type of work
  4232. * @next: Force as the next work to be executed
  4233. * @cb: Callback function for indicating when radio is available
  4234. * @ctx: Context pointer for the work (work->ctx in cb())
  4235. * Returns: 0 on success, -1 on failure
  4236. *
  4237. * This function is used to request time for an operation that requires
  4238. * exclusive radio control. Once the radio is available, the registered callback
  4239. * function will be called. radio_work_done() must be called once the exclusive
  4240. * radio operation has been completed, so that the radio is freed for other
  4241. * operations. The special case of deinit=1 is used to free the context data
  4242. * during interface removal. That does not allow the callback function to start
  4243. * the radio operation, i.e., it must free any resources allocated for the radio
  4244. * work and return.
  4245. *
  4246. * The @freq parameter can be used to indicate a single channel on which the
  4247. * offchannel operation will occur. This may allow multiple radio work
  4248. * operations to be performed in parallel if they apply for the same channel.
  4249. * Setting this to 0 indicates that the work item may use multiple channels or
  4250. * requires exclusive control of the radio.
  4251. */
  4252. int radio_add_work(struct wpa_supplicant *wpa_s, unsigned int freq,
  4253. const char *type, int next,
  4254. void (*cb)(struct wpa_radio_work *work, int deinit),
  4255. void *ctx)
  4256. {
  4257. struct wpa_radio *radio = wpa_s->radio;
  4258. struct wpa_radio_work *work;
  4259. int was_empty;
  4260. work = os_zalloc(sizeof(*work));
  4261. if (work == NULL)
  4262. return -1;
  4263. wpa_dbg(wpa_s, MSG_DEBUG, "Add radio work '%s'@%p", type, work);
  4264. os_get_reltime(&work->time);
  4265. work->freq = freq;
  4266. work->type = type;
  4267. work->wpa_s = wpa_s;
  4268. work->cb = cb;
  4269. work->ctx = ctx;
  4270. if (freq)
  4271. work->bands = wpas_freq_to_band(freq);
  4272. else if (os_strcmp(type, "scan") == 0 ||
  4273. os_strcmp(type, "p2p-scan") == 0)
  4274. work->bands = wpas_get_bands(wpa_s,
  4275. ((struct wpa_driver_scan_params *)
  4276. ctx)->freqs);
  4277. else
  4278. work->bands = wpas_get_bands(wpa_s, NULL);
  4279. was_empty = dl_list_empty(&wpa_s->radio->work);
  4280. if (next)
  4281. dl_list_add(&wpa_s->radio->work, &work->list);
  4282. else
  4283. dl_list_add_tail(&wpa_s->radio->work, &work->list);
  4284. if (was_empty) {
  4285. wpa_dbg(wpa_s, MSG_DEBUG, "First radio work item in the queue - schedule start immediately");
  4286. radio_work_check_next(wpa_s);
  4287. } else if ((wpa_s->drv_flags & WPA_DRIVER_FLAGS_OFFCHANNEL_SIMULTANEOUS)
  4288. && radio->num_active_works < MAX_ACTIVE_WORKS) {
  4289. wpa_dbg(wpa_s, MSG_DEBUG,
  4290. "Try to schedule a radio work (num_active_works=%u)",
  4291. radio->num_active_works);
  4292. radio_work_check_next(wpa_s);
  4293. }
  4294. return 0;
  4295. }
  4296. /**
  4297. * radio_work_done - Indicate that a radio work item has been completed
  4298. * @work: Completed work
  4299. *
  4300. * This function is called once the callback function registered with
  4301. * radio_add_work() has completed its work.
  4302. */
  4303. void radio_work_done(struct wpa_radio_work *work)
  4304. {
  4305. struct wpa_supplicant *wpa_s = work->wpa_s;
  4306. struct os_reltime now, diff;
  4307. unsigned int started = work->started;
  4308. os_get_reltime(&now);
  4309. os_reltime_sub(&now, &work->time, &diff);
  4310. wpa_dbg(wpa_s, MSG_DEBUG, "Radio work '%s'@%p %s in %ld.%06ld seconds",
  4311. work->type, work, started ? "done" : "canceled",
  4312. diff.sec, diff.usec);
  4313. radio_work_free(work);
  4314. if (started)
  4315. radio_work_check_next(wpa_s);
  4316. }
  4317. struct wpa_radio_work *
  4318. radio_work_pending(struct wpa_supplicant *wpa_s, const char *type)
  4319. {
  4320. struct wpa_radio_work *work;
  4321. struct wpa_radio *radio = wpa_s->radio;
  4322. dl_list_for_each(work, &radio->work, struct wpa_radio_work, list) {
  4323. if (work->wpa_s == wpa_s && os_strcmp(work->type, type) == 0)
  4324. return work;
  4325. }
  4326. return NULL;
  4327. }
  4328. static int wpas_init_driver(struct wpa_supplicant *wpa_s,
  4329. struct wpa_interface *iface)
  4330. {
  4331. const char *ifname, *driver, *rn;
  4332. driver = iface->driver;
  4333. next_driver:
  4334. if (wpa_supplicant_set_driver(wpa_s, driver) < 0)
  4335. return -1;
  4336. wpa_s->drv_priv = wpa_drv_init(wpa_s, wpa_s->ifname);
  4337. if (wpa_s->drv_priv == NULL) {
  4338. const char *pos;
  4339. pos = driver ? os_strchr(driver, ',') : NULL;
  4340. if (pos) {
  4341. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to initialize "
  4342. "driver interface - try next driver wrapper");
  4343. driver = pos + 1;
  4344. goto next_driver;
  4345. }
  4346. wpa_msg(wpa_s, MSG_ERROR, "Failed to initialize driver "
  4347. "interface");
  4348. return -1;
  4349. }
  4350. if (wpa_drv_set_param(wpa_s, wpa_s->conf->driver_param) < 0) {
  4351. wpa_msg(wpa_s, MSG_ERROR, "Driver interface rejected "
  4352. "driver_param '%s'", wpa_s->conf->driver_param);
  4353. return -1;
  4354. }
  4355. ifname = wpa_drv_get_ifname(wpa_s);
  4356. if (ifname && os_strcmp(ifname, wpa_s->ifname) != 0) {
  4357. wpa_dbg(wpa_s, MSG_DEBUG, "Driver interface replaced "
  4358. "interface name with '%s'", ifname);
  4359. os_strlcpy(wpa_s->ifname, ifname, sizeof(wpa_s->ifname));
  4360. }
  4361. rn = wpa_driver_get_radio_name(wpa_s);
  4362. if (rn && rn[0] == '\0')
  4363. rn = NULL;
  4364. wpa_s->radio = radio_add_interface(wpa_s, rn);
  4365. if (wpa_s->radio == NULL)
  4366. return -1;
  4367. return 0;
  4368. }
  4369. #ifdef CONFIG_GAS_SERVER
  4370. static void wpas_gas_server_tx_status(struct wpa_supplicant *wpa_s,
  4371. unsigned int freq, const u8 *dst,
  4372. const u8 *src, const u8 *bssid,
  4373. const u8 *data, size_t data_len,
  4374. enum offchannel_send_action_result result)
  4375. {
  4376. wpa_printf(MSG_DEBUG, "GAS: TX status: freq=%u dst=" MACSTR
  4377. " result=%s",
  4378. freq, MAC2STR(dst),
  4379. result == OFFCHANNEL_SEND_ACTION_SUCCESS ? "SUCCESS" :
  4380. (result == OFFCHANNEL_SEND_ACTION_NO_ACK ? "no-ACK" :
  4381. "FAILED"));
  4382. gas_server_tx_status(wpa_s->gas_server, dst, data, data_len,
  4383. result == OFFCHANNEL_SEND_ACTION_SUCCESS);
  4384. }
  4385. static void wpas_gas_server_tx(void *ctx, int freq, const u8 *da,
  4386. struct wpabuf *buf, unsigned int wait_time)
  4387. {
  4388. struct wpa_supplicant *wpa_s = ctx;
  4389. const u8 broadcast[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  4390. if (wait_time > wpa_s->max_remain_on_chan)
  4391. wait_time = wpa_s->max_remain_on_chan;
  4392. offchannel_send_action(wpa_s, freq, da, wpa_s->own_addr, broadcast,
  4393. wpabuf_head(buf), wpabuf_len(buf),
  4394. wait_time, wpas_gas_server_tx_status, 0);
  4395. }
  4396. #endif /* CONFIG_GAS_SERVER */
  4397. static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s,
  4398. struct wpa_interface *iface)
  4399. {
  4400. struct wpa_driver_capa capa;
  4401. int capa_res;
  4402. u8 dfs_domain;
  4403. wpa_printf(MSG_DEBUG, "Initializing interface '%s' conf '%s' driver "
  4404. "'%s' ctrl_interface '%s' bridge '%s'", iface->ifname,
  4405. iface->confname ? iface->confname : "N/A",
  4406. iface->driver ? iface->driver : "default",
  4407. iface->ctrl_interface ? iface->ctrl_interface : "N/A",
  4408. iface->bridge_ifname ? iface->bridge_ifname : "N/A");
  4409. if (iface->confname) {
  4410. #ifdef CONFIG_BACKEND_FILE
  4411. wpa_s->confname = os_rel2abs_path(iface->confname);
  4412. if (wpa_s->confname == NULL) {
  4413. wpa_printf(MSG_ERROR, "Failed to get absolute path "
  4414. "for configuration file '%s'.",
  4415. iface->confname);
  4416. return -1;
  4417. }
  4418. wpa_printf(MSG_DEBUG, "Configuration file '%s' -> '%s'",
  4419. iface->confname, wpa_s->confname);
  4420. #else /* CONFIG_BACKEND_FILE */
  4421. wpa_s->confname = os_strdup(iface->confname);
  4422. #endif /* CONFIG_BACKEND_FILE */
  4423. wpa_s->conf = wpa_config_read(wpa_s->confname, NULL);
  4424. if (wpa_s->conf == NULL) {
  4425. wpa_printf(MSG_ERROR, "Failed to read or parse "
  4426. "configuration '%s'.", wpa_s->confname);
  4427. return -1;
  4428. }
  4429. wpa_s->confanother = os_rel2abs_path(iface->confanother);
  4430. wpa_config_read(wpa_s->confanother, wpa_s->conf);
  4431. /*
  4432. * Override ctrl_interface and driver_param if set on command
  4433. * line.
  4434. */
  4435. if (iface->ctrl_interface) {
  4436. os_free(wpa_s->conf->ctrl_interface);
  4437. wpa_s->conf->ctrl_interface =
  4438. os_strdup(iface->ctrl_interface);
  4439. }
  4440. if (iface->driver_param) {
  4441. os_free(wpa_s->conf->driver_param);
  4442. wpa_s->conf->driver_param =
  4443. os_strdup(iface->driver_param);
  4444. }
  4445. if (iface->p2p_mgmt && !iface->ctrl_interface) {
  4446. os_free(wpa_s->conf->ctrl_interface);
  4447. wpa_s->conf->ctrl_interface = NULL;
  4448. }
  4449. } else
  4450. wpa_s->conf = wpa_config_alloc_empty(iface->ctrl_interface,
  4451. iface->driver_param);
  4452. if (wpa_s->conf == NULL) {
  4453. wpa_printf(MSG_ERROR, "\nNo configuration found.");
  4454. return -1;
  4455. }
  4456. if (iface->ifname == NULL) {
  4457. wpa_printf(MSG_ERROR, "\nInterface name is required.");
  4458. return -1;
  4459. }
  4460. if (os_strlen(iface->ifname) >= sizeof(wpa_s->ifname)) {
  4461. wpa_printf(MSG_ERROR, "\nToo long interface name '%s'.",
  4462. iface->ifname);
  4463. return -1;
  4464. }
  4465. os_strlcpy(wpa_s->ifname, iface->ifname, sizeof(wpa_s->ifname));
  4466. if (iface->bridge_ifname) {
  4467. if (os_strlen(iface->bridge_ifname) >=
  4468. sizeof(wpa_s->bridge_ifname)) {
  4469. wpa_printf(MSG_ERROR, "\nToo long bridge interface "
  4470. "name '%s'.", iface->bridge_ifname);
  4471. return -1;
  4472. }
  4473. os_strlcpy(wpa_s->bridge_ifname, iface->bridge_ifname,
  4474. sizeof(wpa_s->bridge_ifname));
  4475. }
  4476. /* RSNA Supplicant Key Management - INITIALIZE */
  4477. eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
  4478. eapol_sm_notify_portValid(wpa_s->eapol, FALSE);
  4479. /* Initialize driver interface and register driver event handler before
  4480. * L2 receive handler so that association events are processed before
  4481. * EAPOL-Key packets if both become available for the same select()
  4482. * call. */
  4483. if (wpas_init_driver(wpa_s, iface) < 0)
  4484. return -1;
  4485. if (wpa_supplicant_init_wpa(wpa_s) < 0)
  4486. return -1;
  4487. wpa_sm_set_ifname(wpa_s->wpa, wpa_s->ifname,
  4488. wpa_s->bridge_ifname[0] ? wpa_s->bridge_ifname :
  4489. NULL);
  4490. wpa_sm_set_fast_reauth(wpa_s->wpa, wpa_s->conf->fast_reauth);
  4491. if (wpa_s->conf->dot11RSNAConfigPMKLifetime &&
  4492. wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_LIFETIME,
  4493. wpa_s->conf->dot11RSNAConfigPMKLifetime)) {
  4494. wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
  4495. "dot11RSNAConfigPMKLifetime");
  4496. return -1;
  4497. }
  4498. if (wpa_s->conf->dot11RSNAConfigPMKReauthThreshold &&
  4499. wpa_sm_set_param(wpa_s->wpa, RSNA_PMK_REAUTH_THRESHOLD,
  4500. wpa_s->conf->dot11RSNAConfigPMKReauthThreshold)) {
  4501. wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
  4502. "dot11RSNAConfigPMKReauthThreshold");
  4503. return -1;
  4504. }
  4505. if (wpa_s->conf->dot11RSNAConfigSATimeout &&
  4506. wpa_sm_set_param(wpa_s->wpa, RSNA_SA_TIMEOUT,
  4507. wpa_s->conf->dot11RSNAConfigSATimeout)) {
  4508. wpa_msg(wpa_s, MSG_ERROR, "Invalid WPA parameter value for "
  4509. "dot11RSNAConfigSATimeout");
  4510. return -1;
  4511. }
  4512. wpa_s->hw.modes = wpa_drv_get_hw_feature_data(wpa_s,
  4513. &wpa_s->hw.num_modes,
  4514. &wpa_s->hw.flags,
  4515. &dfs_domain);
  4516. if (wpa_s->hw.modes) {
  4517. u16 i;
  4518. for (i = 0; i < wpa_s->hw.num_modes; i++) {
  4519. if (wpa_s->hw.modes[i].vht_capab) {
  4520. wpa_s->hw_capab = CAPAB_VHT;
  4521. break;
  4522. }
  4523. if (wpa_s->hw.modes[i].ht_capab &
  4524. HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET)
  4525. wpa_s->hw_capab = CAPAB_HT40;
  4526. else if (wpa_s->hw.modes[i].ht_capab &&
  4527. wpa_s->hw_capab == CAPAB_NO_HT_VHT)
  4528. wpa_s->hw_capab = CAPAB_HT;
  4529. }
  4530. }
  4531. capa_res = wpa_drv_get_capa(wpa_s, &capa);
  4532. if (capa_res == 0) {
  4533. wpa_s->drv_capa_known = 1;
  4534. wpa_s->drv_flags = capa.flags;
  4535. wpa_s->drv_enc = capa.enc;
  4536. wpa_s->drv_smps_modes = capa.smps_modes;
  4537. wpa_s->drv_rrm_flags = capa.rrm_flags;
  4538. wpa_s->probe_resp_offloads = capa.probe_resp_offloads;
  4539. wpa_s->max_scan_ssids = capa.max_scan_ssids;
  4540. wpa_s->max_sched_scan_ssids = capa.max_sched_scan_ssids;
  4541. wpa_s->max_sched_scan_plans = capa.max_sched_scan_plans;
  4542. wpa_s->max_sched_scan_plan_interval =
  4543. capa.max_sched_scan_plan_interval;
  4544. wpa_s->max_sched_scan_plan_iterations =
  4545. capa.max_sched_scan_plan_iterations;
  4546. wpa_s->sched_scan_supported = capa.sched_scan_supported;
  4547. wpa_s->max_match_sets = capa.max_match_sets;
  4548. wpa_s->max_remain_on_chan = capa.max_remain_on_chan;
  4549. wpa_s->max_stations = capa.max_stations;
  4550. wpa_s->extended_capa = capa.extended_capa;
  4551. wpa_s->extended_capa_mask = capa.extended_capa_mask;
  4552. wpa_s->extended_capa_len = capa.extended_capa_len;
  4553. wpa_s->num_multichan_concurrent =
  4554. capa.num_multichan_concurrent;
  4555. wpa_s->wmm_ac_supported = capa.wmm_ac_supported;
  4556. if (capa.mac_addr_rand_scan_supported)
  4557. wpa_s->mac_addr_rand_supported |= MAC_ADDR_RAND_SCAN;
  4558. if (wpa_s->sched_scan_supported &&
  4559. capa.mac_addr_rand_sched_scan_supported)
  4560. wpa_s->mac_addr_rand_supported |=
  4561. (MAC_ADDR_RAND_SCHED_SCAN | MAC_ADDR_RAND_PNO);
  4562. }
  4563. if (wpa_s->max_remain_on_chan == 0)
  4564. wpa_s->max_remain_on_chan = 1000;
  4565. /*
  4566. * Only take p2p_mgmt parameters when P2P Device is supported.
  4567. * Doing it here as it determines whether l2_packet_init() will be done
  4568. * during wpa_supplicant_driver_init().
  4569. */
  4570. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)
  4571. wpa_s->p2p_mgmt = iface->p2p_mgmt;
  4572. else
  4573. iface->p2p_mgmt = 1;
  4574. if (wpa_s->num_multichan_concurrent == 0)
  4575. wpa_s->num_multichan_concurrent = 1;
  4576. if (wpa_supplicant_driver_init(wpa_s) < 0)
  4577. return -1;
  4578. #ifdef CONFIG_TDLS
  4579. if ((!iface->p2p_mgmt ||
  4580. !(wpa_s->drv_flags &
  4581. WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE)) &&
  4582. wpa_tdls_init(wpa_s->wpa))
  4583. return -1;
  4584. #endif /* CONFIG_TDLS */
  4585. if (wpa_s->conf->country[0] && wpa_s->conf->country[1] &&
  4586. wpa_drv_set_country(wpa_s, wpa_s->conf->country)) {
  4587. wpa_dbg(wpa_s, MSG_DEBUG, "Failed to set country");
  4588. return -1;
  4589. }
  4590. #ifdef CONFIG_FST
  4591. if (wpa_s->conf->fst_group_id) {
  4592. struct fst_iface_cfg cfg;
  4593. struct fst_wpa_obj iface_obj;
  4594. fst_wpa_supplicant_fill_iface_obj(wpa_s, &iface_obj);
  4595. os_strlcpy(cfg.group_id, wpa_s->conf->fst_group_id,
  4596. sizeof(cfg.group_id));
  4597. cfg.priority = wpa_s->conf->fst_priority;
  4598. cfg.llt = wpa_s->conf->fst_llt;
  4599. wpa_s->fst = fst_attach(wpa_s->ifname, wpa_s->own_addr,
  4600. &iface_obj, &cfg);
  4601. if (!wpa_s->fst) {
  4602. wpa_msg(wpa_s, MSG_ERROR,
  4603. "FST: Cannot attach iface %s to group %s",
  4604. wpa_s->ifname, cfg.group_id);
  4605. return -1;
  4606. }
  4607. }
  4608. #endif /* CONFIG_FST */
  4609. if (wpas_wps_init(wpa_s))
  4610. return -1;
  4611. #ifdef CONFIG_GAS_SERVER
  4612. wpa_s->gas_server = gas_server_init(wpa_s, wpas_gas_server_tx);
  4613. if (!wpa_s->gas_server) {
  4614. wpa_printf(MSG_ERROR, "Failed to initialize GAS server");
  4615. return -1;
  4616. }
  4617. #endif /* CONFIG_GAS_SERVER */
  4618. #ifdef CONFIG_DPP
  4619. if (wpas_dpp_init(wpa_s) < 0)
  4620. return -1;
  4621. #endif /* CONFIG_DPP */
  4622. if (wpa_supplicant_init_eapol(wpa_s) < 0)
  4623. return -1;
  4624. wpa_sm_set_eapol(wpa_s->wpa, wpa_s->eapol);
  4625. wpa_s->ctrl_iface = wpa_supplicant_ctrl_iface_init(wpa_s);
  4626. if (wpa_s->ctrl_iface == NULL) {
  4627. wpa_printf(MSG_ERROR,
  4628. "Failed to initialize control interface '%s'.\n"
  4629. "You may have another wpa_supplicant process "
  4630. "already running or the file was\n"
  4631. "left by an unclean termination of wpa_supplicant "
  4632. "in which case you will need\n"
  4633. "to manually remove this file before starting "
  4634. "wpa_supplicant again.\n",
  4635. wpa_s->conf->ctrl_interface);
  4636. return -1;
  4637. }
  4638. wpa_s->gas = gas_query_init(wpa_s);
  4639. if (wpa_s->gas == NULL) {
  4640. wpa_printf(MSG_ERROR, "Failed to initialize GAS query");
  4641. return -1;
  4642. }
  4643. if (iface->p2p_mgmt && wpas_p2p_init(wpa_s->global, wpa_s) < 0) {
  4644. wpa_msg(wpa_s, MSG_ERROR, "Failed to init P2P");
  4645. return -1;
  4646. }
  4647. if (wpa_bss_init(wpa_s) < 0)
  4648. return -1;
  4649. #ifdef CONFIG_PMKSA_CACHE_EXTERNAL
  4650. #ifdef CONFIG_MESH
  4651. dl_list_init(&wpa_s->mesh_external_pmksa_cache);
  4652. #endif /* CONFIG_MESH */
  4653. #endif /* CONFIG_PMKSA_CACHE_EXTERNAL */
  4654. /*
  4655. * Set Wake-on-WLAN triggers, if configured.
  4656. * Note: We don't restore/remove the triggers on shutdown (it doesn't
  4657. * have effect anyway when the interface is down).
  4658. */
  4659. if (capa_res == 0 && wpas_set_wowlan_triggers(wpa_s, &capa) < 0)
  4660. return -1;
  4661. #ifdef CONFIG_EAP_PROXY
  4662. {
  4663. size_t len;
  4664. wpa_s->mnc_len = eapol_sm_get_eap_proxy_imsi(wpa_s->eapol, -1,
  4665. wpa_s->imsi, &len);
  4666. if (wpa_s->mnc_len > 0) {
  4667. wpa_s->imsi[len] = '\0';
  4668. wpa_printf(MSG_DEBUG, "eap_proxy: IMSI %s (MNC length %d)",
  4669. wpa_s->imsi, wpa_s->mnc_len);
  4670. } else {
  4671. wpa_printf(MSG_DEBUG, "eap_proxy: IMSI not available");
  4672. }
  4673. }
  4674. #endif /* CONFIG_EAP_PROXY */
  4675. if (pcsc_reader_init(wpa_s) < 0)
  4676. return -1;
  4677. if (wpas_init_ext_pw(wpa_s) < 0)
  4678. return -1;
  4679. wpas_rrm_reset(wpa_s);
  4680. wpas_sched_scan_plans_set(wpa_s, wpa_s->conf->sched_scan_plans);
  4681. #ifdef CONFIG_HS20
  4682. hs20_init(wpa_s);
  4683. #endif /* CONFIG_HS20 */
  4684. #ifdef CONFIG_MBO
  4685. if (wpa_s->conf->oce) {
  4686. if ((wpa_s->conf->oce & OCE_STA) &&
  4687. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_OCE_STA))
  4688. wpa_s->enable_oce = OCE_STA;
  4689. if ((wpa_s->conf->oce & OCE_STA_CFON) &&
  4690. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_OCE_STA_CFON)) {
  4691. /* TODO: Need to add STA-CFON support */
  4692. wpa_printf(MSG_ERROR,
  4693. "OCE STA-CFON feature is not yet supported");
  4694. }
  4695. }
  4696. wpas_mbo_update_non_pref_chan(wpa_s, wpa_s->conf->non_pref_chan);
  4697. #endif /* CONFIG_MBO */
  4698. wpa_supplicant_set_default_scan_ies(wpa_s);
  4699. return 0;
  4700. }
  4701. static void wpa_supplicant_deinit_iface(struct wpa_supplicant *wpa_s,
  4702. int notify, int terminate)
  4703. {
  4704. struct wpa_global *global = wpa_s->global;
  4705. struct wpa_supplicant *iface, *prev;
  4706. if (wpa_s == wpa_s->parent)
  4707. wpas_p2p_group_remove(wpa_s, "*");
  4708. iface = global->ifaces;
  4709. while (iface) {
  4710. if (iface->p2pdev == wpa_s)
  4711. iface->p2pdev = iface->parent;
  4712. if (iface == wpa_s || iface->parent != wpa_s) {
  4713. iface = iface->next;
  4714. continue;
  4715. }
  4716. wpa_printf(MSG_DEBUG,
  4717. "Remove remaining child interface %s from parent %s",
  4718. iface->ifname, wpa_s->ifname);
  4719. prev = iface;
  4720. iface = iface->next;
  4721. wpa_supplicant_remove_iface(global, prev, terminate);
  4722. }
  4723. wpa_s->disconnected = 1;
  4724. if (wpa_s->drv_priv) {
  4725. wpa_supplicant_deauthenticate(wpa_s,
  4726. WLAN_REASON_DEAUTH_LEAVING);
  4727. wpa_drv_set_countermeasures(wpa_s, 0);
  4728. wpa_clear_keys(wpa_s, NULL);
  4729. }
  4730. wpa_supplicant_cleanup(wpa_s);
  4731. wpas_p2p_deinit_iface(wpa_s);
  4732. wpas_ctrl_radio_work_flush(wpa_s);
  4733. radio_remove_interface(wpa_s);
  4734. #ifdef CONFIG_FST
  4735. if (wpa_s->fst) {
  4736. fst_detach(wpa_s->fst);
  4737. wpa_s->fst = NULL;
  4738. }
  4739. if (wpa_s->received_mb_ies) {
  4740. wpabuf_free(wpa_s->received_mb_ies);
  4741. wpa_s->received_mb_ies = NULL;
  4742. }
  4743. #endif /* CONFIG_FST */
  4744. if (wpa_s->drv_priv)
  4745. wpa_drv_deinit(wpa_s);
  4746. if (notify)
  4747. wpas_notify_iface_removed(wpa_s);
  4748. if (terminate)
  4749. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_TERMINATING);
  4750. if (wpa_s->ctrl_iface) {
  4751. wpa_supplicant_ctrl_iface_deinit(wpa_s->ctrl_iface);
  4752. wpa_s->ctrl_iface = NULL;
  4753. }
  4754. #ifdef CONFIG_MESH
  4755. if (wpa_s->ifmsh) {
  4756. wpa_supplicant_mesh_iface_deinit(wpa_s, wpa_s->ifmsh);
  4757. wpa_s->ifmsh = NULL;
  4758. }
  4759. #endif /* CONFIG_MESH */
  4760. if (wpa_s->conf != NULL) {
  4761. wpa_config_free(wpa_s->conf);
  4762. wpa_s->conf = NULL;
  4763. }
  4764. os_free(wpa_s->ssids_from_scan_req);
  4765. os_free(wpa_s);
  4766. }
  4767. #ifdef CONFIG_MATCH_IFACE
  4768. /**
  4769. * wpa_supplicant_match_iface - Match an interface description to a name
  4770. * @global: Pointer to global data from wpa_supplicant_init()
  4771. * @ifname: Name of the interface to match
  4772. * Returns: Pointer to the created interface description or %NULL on failure
  4773. */
  4774. struct wpa_interface * wpa_supplicant_match_iface(struct wpa_global *global,
  4775. const char *ifname)
  4776. {
  4777. int i;
  4778. struct wpa_interface *iface, *miface;
  4779. for (i = 0; i < global->params.match_iface_count; i++) {
  4780. miface = &global->params.match_ifaces[i];
  4781. if (!miface->ifname ||
  4782. fnmatch(miface->ifname, ifname, 0) == 0) {
  4783. iface = os_zalloc(sizeof(*iface));
  4784. if (!iface)
  4785. return NULL;
  4786. *iface = *miface;
  4787. iface->ifname = ifname;
  4788. return iface;
  4789. }
  4790. }
  4791. return NULL;
  4792. }
  4793. /**
  4794. * wpa_supplicant_match_existing - Match existing interfaces
  4795. * @global: Pointer to global data from wpa_supplicant_init()
  4796. * Returns: 0 on success, -1 on failure
  4797. */
  4798. static int wpa_supplicant_match_existing(struct wpa_global *global)
  4799. {
  4800. struct if_nameindex *ifi, *ifp;
  4801. struct wpa_supplicant *wpa_s;
  4802. struct wpa_interface *iface;
  4803. ifp = if_nameindex();
  4804. if (!ifp) {
  4805. wpa_printf(MSG_ERROR, "if_nameindex: %s", strerror(errno));
  4806. return -1;
  4807. }
  4808. for (ifi = ifp; ifi->if_name; ifi++) {
  4809. wpa_s = wpa_supplicant_get_iface(global, ifi->if_name);
  4810. if (wpa_s)
  4811. continue;
  4812. iface = wpa_supplicant_match_iface(global, ifi->if_name);
  4813. if (iface) {
  4814. wpa_s = wpa_supplicant_add_iface(global, iface, NULL);
  4815. os_free(iface);
  4816. if (wpa_s)
  4817. wpa_s->matched = 1;
  4818. }
  4819. }
  4820. if_freenameindex(ifp);
  4821. return 0;
  4822. }
  4823. #endif /* CONFIG_MATCH_IFACE */
  4824. /**
  4825. * wpa_supplicant_add_iface - Add a new network interface
  4826. * @global: Pointer to global data from wpa_supplicant_init()
  4827. * @iface: Interface configuration options
  4828. * @parent: Parent interface or %NULL to assign new interface as parent
  4829. * Returns: Pointer to the created interface or %NULL on failure
  4830. *
  4831. * This function is used to add new network interfaces for %wpa_supplicant.
  4832. * This can be called before wpa_supplicant_run() to add interfaces before the
  4833. * main event loop has been started. In addition, new interfaces can be added
  4834. * dynamically while %wpa_supplicant is already running. This could happen,
  4835. * e.g., when a hotplug network adapter is inserted.
  4836. */
  4837. struct wpa_supplicant * wpa_supplicant_add_iface(struct wpa_global *global,
  4838. struct wpa_interface *iface,
  4839. struct wpa_supplicant *parent)
  4840. {
  4841. struct wpa_supplicant *wpa_s;
  4842. struct wpa_interface t_iface;
  4843. struct wpa_ssid *ssid;
  4844. if (global == NULL || iface == NULL)
  4845. return NULL;
  4846. wpa_s = wpa_supplicant_alloc(parent);
  4847. if (wpa_s == NULL)
  4848. return NULL;
  4849. wpa_s->global = global;
  4850. t_iface = *iface;
  4851. if (global->params.override_driver) {
  4852. wpa_printf(MSG_DEBUG, "Override interface parameter: driver "
  4853. "('%s' -> '%s')",
  4854. iface->driver, global->params.override_driver);
  4855. t_iface.driver = global->params.override_driver;
  4856. }
  4857. if (global->params.override_ctrl_interface) {
  4858. wpa_printf(MSG_DEBUG, "Override interface parameter: "
  4859. "ctrl_interface ('%s' -> '%s')",
  4860. iface->ctrl_interface,
  4861. global->params.override_ctrl_interface);
  4862. t_iface.ctrl_interface =
  4863. global->params.override_ctrl_interface;
  4864. }
  4865. if (wpa_supplicant_init_iface(wpa_s, &t_iface)) {
  4866. wpa_printf(MSG_DEBUG, "Failed to add interface %s",
  4867. iface->ifname);
  4868. wpa_supplicant_deinit_iface(wpa_s, 0, 0);
  4869. return NULL;
  4870. }
  4871. if (iface->p2p_mgmt == 0) {
  4872. /* Notify the control interfaces about new iface */
  4873. if (wpas_notify_iface_added(wpa_s)) {
  4874. wpa_supplicant_deinit_iface(wpa_s, 1, 0);
  4875. return NULL;
  4876. }
  4877. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next)
  4878. wpas_notify_network_added(wpa_s, ssid);
  4879. }
  4880. wpa_s->next = global->ifaces;
  4881. global->ifaces = wpa_s;
  4882. wpa_dbg(wpa_s, MSG_DEBUG, "Added interface %s", wpa_s->ifname);
  4883. wpa_supplicant_set_state(wpa_s, WPA_DISCONNECTED);
  4884. #ifdef CONFIG_P2P
  4885. if (wpa_s->global->p2p == NULL &&
  4886. !wpa_s->global->p2p_disabled && !wpa_s->conf->p2p_disabled &&
  4887. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
  4888. wpas_p2p_add_p2pdev_interface(
  4889. wpa_s, wpa_s->global->params.conf_p2p_dev) < 0) {
  4890. wpa_printf(MSG_INFO,
  4891. "P2P: Failed to enable P2P Device interface");
  4892. /* Try to continue without. P2P will be disabled. */
  4893. }
  4894. #endif /* CONFIG_P2P */
  4895. return wpa_s;
  4896. }
  4897. /**
  4898. * wpa_supplicant_remove_iface - Remove a network interface
  4899. * @global: Pointer to global data from wpa_supplicant_init()
  4900. * @wpa_s: Pointer to the network interface to be removed
  4901. * Returns: 0 if interface was removed, -1 if interface was not found
  4902. *
  4903. * This function can be used to dynamically remove network interfaces from
  4904. * %wpa_supplicant, e.g., when a hotplug network adapter is ejected. In
  4905. * addition, this function is used to remove all remaining interfaces when
  4906. * %wpa_supplicant is terminated.
  4907. */
  4908. int wpa_supplicant_remove_iface(struct wpa_global *global,
  4909. struct wpa_supplicant *wpa_s,
  4910. int terminate)
  4911. {
  4912. struct wpa_supplicant *prev;
  4913. #ifdef CONFIG_MESH
  4914. unsigned int mesh_if_created = wpa_s->mesh_if_created;
  4915. char *ifname = NULL;
  4916. struct wpa_supplicant *parent = wpa_s->parent;
  4917. #endif /* CONFIG_MESH */
  4918. /* Remove interface from the global list of interfaces */
  4919. prev = global->ifaces;
  4920. if (prev == wpa_s) {
  4921. global->ifaces = wpa_s->next;
  4922. } else {
  4923. while (prev && prev->next != wpa_s)
  4924. prev = prev->next;
  4925. if (prev == NULL)
  4926. return -1;
  4927. prev->next = wpa_s->next;
  4928. }
  4929. wpa_dbg(wpa_s, MSG_DEBUG, "Removing interface %s", wpa_s->ifname);
  4930. #ifdef CONFIG_MESH
  4931. if (mesh_if_created) {
  4932. ifname = os_strdup(wpa_s->ifname);
  4933. if (ifname == NULL) {
  4934. wpa_dbg(wpa_s, MSG_ERROR,
  4935. "mesh: Failed to malloc ifname");
  4936. return -1;
  4937. }
  4938. }
  4939. #endif /* CONFIG_MESH */
  4940. if (global->p2p_group_formation == wpa_s)
  4941. global->p2p_group_formation = NULL;
  4942. if (global->p2p_invite_group == wpa_s)
  4943. global->p2p_invite_group = NULL;
  4944. wpa_supplicant_deinit_iface(wpa_s, 1, terminate);
  4945. #ifdef CONFIG_MESH
  4946. if (mesh_if_created) {
  4947. wpa_drv_if_remove(parent, WPA_IF_MESH, ifname);
  4948. os_free(ifname);
  4949. }
  4950. #endif /* CONFIG_MESH */
  4951. return 0;
  4952. }
  4953. /**
  4954. * wpa_supplicant_get_eap_mode - Get the current EAP mode
  4955. * @wpa_s: Pointer to the network interface
  4956. * Returns: Pointer to the eap mode or the string "UNKNOWN" if not found
  4957. */
  4958. const char * wpa_supplicant_get_eap_mode(struct wpa_supplicant *wpa_s)
  4959. {
  4960. const char *eapol_method;
  4961. if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) == 0 &&
  4962. wpa_s->key_mgmt != WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  4963. return "NO-EAP";
  4964. }
  4965. eapol_method = eapol_sm_get_method_name(wpa_s->eapol);
  4966. if (eapol_method == NULL)
  4967. return "UNKNOWN-EAP";
  4968. return eapol_method;
  4969. }
  4970. /**
  4971. * wpa_supplicant_get_iface - Get a new network interface
  4972. * @global: Pointer to global data from wpa_supplicant_init()
  4973. * @ifname: Interface name
  4974. * Returns: Pointer to the interface or %NULL if not found
  4975. */
  4976. struct wpa_supplicant * wpa_supplicant_get_iface(struct wpa_global *global,
  4977. const char *ifname)
  4978. {
  4979. struct wpa_supplicant *wpa_s;
  4980. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  4981. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  4982. return wpa_s;
  4983. }
  4984. return NULL;
  4985. }
  4986. #ifndef CONFIG_NO_WPA_MSG
  4987. static const char * wpa_supplicant_msg_ifname_cb(void *ctx)
  4988. {
  4989. struct wpa_supplicant *wpa_s = ctx;
  4990. if (wpa_s == NULL)
  4991. return NULL;
  4992. return wpa_s->ifname;
  4993. }
  4994. #endif /* CONFIG_NO_WPA_MSG */
  4995. #ifndef WPA_SUPPLICANT_CLEANUP_INTERVAL
  4996. #define WPA_SUPPLICANT_CLEANUP_INTERVAL 10
  4997. #endif /* WPA_SUPPLICANT_CLEANUP_INTERVAL */
  4998. /* Periodic cleanup tasks */
  4999. static void wpas_periodic(void *eloop_ctx, void *timeout_ctx)
  5000. {
  5001. struct wpa_global *global = eloop_ctx;
  5002. struct wpa_supplicant *wpa_s;
  5003. eloop_register_timeout(WPA_SUPPLICANT_CLEANUP_INTERVAL, 0,
  5004. wpas_periodic, global, NULL);
  5005. #ifdef CONFIG_P2P
  5006. if (global->p2p)
  5007. p2p_expire_peers(global->p2p);
  5008. #endif /* CONFIG_P2P */
  5009. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  5010. wpa_bss_flush_by_age(wpa_s, wpa_s->conf->bss_expiration_age);
  5011. #ifdef CONFIG_AP
  5012. ap_periodic(wpa_s);
  5013. #endif /* CONFIG_AP */
  5014. }
  5015. }
  5016. /**
  5017. * wpa_supplicant_init - Initialize %wpa_supplicant
  5018. * @params: Parameters for %wpa_supplicant
  5019. * Returns: Pointer to global %wpa_supplicant data, or %NULL on failure
  5020. *
  5021. * This function is used to initialize %wpa_supplicant. After successful
  5022. * initialization, the returned data pointer can be used to add and remove
  5023. * network interfaces, and eventually, to deinitialize %wpa_supplicant.
  5024. */
  5025. struct wpa_global * wpa_supplicant_init(struct wpa_params *params)
  5026. {
  5027. struct wpa_global *global;
  5028. int ret, i;
  5029. if (params == NULL)
  5030. return NULL;
  5031. #ifdef CONFIG_DRIVER_NDIS
  5032. {
  5033. void driver_ndis_init_ops(void);
  5034. driver_ndis_init_ops();
  5035. }
  5036. #endif /* CONFIG_DRIVER_NDIS */
  5037. #ifndef CONFIG_NO_WPA_MSG
  5038. wpa_msg_register_ifname_cb(wpa_supplicant_msg_ifname_cb);
  5039. #endif /* CONFIG_NO_WPA_MSG */
  5040. if (params->wpa_debug_file_path)
  5041. wpa_debug_open_file(params->wpa_debug_file_path);
  5042. else
  5043. wpa_debug_setup_stdout();
  5044. if (params->wpa_debug_syslog)
  5045. wpa_debug_open_syslog();
  5046. if (params->wpa_debug_tracing) {
  5047. ret = wpa_debug_open_linux_tracing();
  5048. if (ret) {
  5049. wpa_printf(MSG_ERROR,
  5050. "Failed to enable trace logging");
  5051. return NULL;
  5052. }
  5053. }
  5054. ret = eap_register_methods();
  5055. if (ret) {
  5056. wpa_printf(MSG_ERROR, "Failed to register EAP methods");
  5057. if (ret == -2)
  5058. wpa_printf(MSG_ERROR, "Two or more EAP methods used "
  5059. "the same EAP type.");
  5060. return NULL;
  5061. }
  5062. global = os_zalloc(sizeof(*global));
  5063. if (global == NULL)
  5064. return NULL;
  5065. dl_list_init(&global->p2p_srv_bonjour);
  5066. dl_list_init(&global->p2p_srv_upnp);
  5067. global->params.daemonize = params->daemonize;
  5068. global->params.wait_for_monitor = params->wait_for_monitor;
  5069. global->params.dbus_ctrl_interface = params->dbus_ctrl_interface;
  5070. if (params->pid_file)
  5071. global->params.pid_file = os_strdup(params->pid_file);
  5072. if (params->ctrl_interface)
  5073. global->params.ctrl_interface =
  5074. os_strdup(params->ctrl_interface);
  5075. if (params->ctrl_interface_group)
  5076. global->params.ctrl_interface_group =
  5077. os_strdup(params->ctrl_interface_group);
  5078. if (params->override_driver)
  5079. global->params.override_driver =
  5080. os_strdup(params->override_driver);
  5081. if (params->override_ctrl_interface)
  5082. global->params.override_ctrl_interface =
  5083. os_strdup(params->override_ctrl_interface);
  5084. #ifdef CONFIG_MATCH_IFACE
  5085. global->params.match_iface_count = params->match_iface_count;
  5086. if (params->match_iface_count) {
  5087. global->params.match_ifaces =
  5088. os_calloc(params->match_iface_count,
  5089. sizeof(struct wpa_interface));
  5090. os_memcpy(global->params.match_ifaces,
  5091. params->match_ifaces,
  5092. params->match_iface_count *
  5093. sizeof(struct wpa_interface));
  5094. }
  5095. #endif /* CONFIG_MATCH_IFACE */
  5096. #ifdef CONFIG_P2P
  5097. if (params->conf_p2p_dev)
  5098. global->params.conf_p2p_dev =
  5099. os_strdup(params->conf_p2p_dev);
  5100. #endif /* CONFIG_P2P */
  5101. wpa_debug_level = global->params.wpa_debug_level =
  5102. params->wpa_debug_level;
  5103. wpa_debug_show_keys = global->params.wpa_debug_show_keys =
  5104. params->wpa_debug_show_keys;
  5105. wpa_debug_timestamp = global->params.wpa_debug_timestamp =
  5106. params->wpa_debug_timestamp;
  5107. wpa_printf(MSG_DEBUG, "wpa_supplicant v" VERSION_STR);
  5108. if (eloop_init()) {
  5109. wpa_printf(MSG_ERROR, "Failed to initialize event loop");
  5110. wpa_supplicant_deinit(global);
  5111. return NULL;
  5112. }
  5113. random_init(params->entropy_file);
  5114. global->ctrl_iface = wpa_supplicant_global_ctrl_iface_init(global);
  5115. if (global->ctrl_iface == NULL) {
  5116. wpa_supplicant_deinit(global);
  5117. return NULL;
  5118. }
  5119. if (wpas_notify_supplicant_initialized(global)) {
  5120. wpa_supplicant_deinit(global);
  5121. return NULL;
  5122. }
  5123. for (i = 0; wpa_drivers[i]; i++)
  5124. global->drv_count++;
  5125. if (global->drv_count == 0) {
  5126. wpa_printf(MSG_ERROR, "No drivers enabled");
  5127. wpa_supplicant_deinit(global);
  5128. return NULL;
  5129. }
  5130. global->drv_priv = os_calloc(global->drv_count, sizeof(void *));
  5131. if (global->drv_priv == NULL) {
  5132. wpa_supplicant_deinit(global);
  5133. return NULL;
  5134. }
  5135. #ifdef CONFIG_WIFI_DISPLAY
  5136. if (wifi_display_init(global) < 0) {
  5137. wpa_printf(MSG_ERROR, "Failed to initialize Wi-Fi Display");
  5138. wpa_supplicant_deinit(global);
  5139. return NULL;
  5140. }
  5141. #endif /* CONFIG_WIFI_DISPLAY */
  5142. eloop_register_timeout(WPA_SUPPLICANT_CLEANUP_INTERVAL, 0,
  5143. wpas_periodic, global, NULL);
  5144. return global;
  5145. }
  5146. /**
  5147. * wpa_supplicant_run - Run the %wpa_supplicant main event loop
  5148. * @global: Pointer to global data from wpa_supplicant_init()
  5149. * Returns: 0 after successful event loop run, -1 on failure
  5150. *
  5151. * This function starts the main event loop and continues running as long as
  5152. * there are any remaining events. In most cases, this function is running as
  5153. * long as the %wpa_supplicant process in still in use.
  5154. */
  5155. int wpa_supplicant_run(struct wpa_global *global)
  5156. {
  5157. struct wpa_supplicant *wpa_s;
  5158. if (global->params.daemonize &&
  5159. (wpa_supplicant_daemon(global->params.pid_file) ||
  5160. eloop_sock_requeue()))
  5161. return -1;
  5162. #ifdef CONFIG_MATCH_IFACE
  5163. if (wpa_supplicant_match_existing(global))
  5164. return -1;
  5165. #endif
  5166. if (global->params.wait_for_monitor) {
  5167. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next)
  5168. if (wpa_s->ctrl_iface && !wpa_s->p2p_mgmt)
  5169. wpa_supplicant_ctrl_iface_wait(
  5170. wpa_s->ctrl_iface);
  5171. }
  5172. eloop_register_signal_terminate(wpa_supplicant_terminate, global);
  5173. eloop_register_signal_reconfig(wpa_supplicant_reconfig, global);
  5174. eloop_run();
  5175. return 0;
  5176. }
  5177. /**
  5178. * wpa_supplicant_deinit - Deinitialize %wpa_supplicant
  5179. * @global: Pointer to global data from wpa_supplicant_init()
  5180. *
  5181. * This function is called to deinitialize %wpa_supplicant and to free all
  5182. * allocated resources. Remaining network interfaces will also be removed.
  5183. */
  5184. void wpa_supplicant_deinit(struct wpa_global *global)
  5185. {
  5186. int i;
  5187. if (global == NULL)
  5188. return;
  5189. eloop_cancel_timeout(wpas_periodic, global, NULL);
  5190. #ifdef CONFIG_WIFI_DISPLAY
  5191. wifi_display_deinit(global);
  5192. #endif /* CONFIG_WIFI_DISPLAY */
  5193. while (global->ifaces)
  5194. wpa_supplicant_remove_iface(global, global->ifaces, 1);
  5195. if (global->ctrl_iface)
  5196. wpa_supplicant_global_ctrl_iface_deinit(global->ctrl_iface);
  5197. wpas_notify_supplicant_deinitialized(global);
  5198. eap_peer_unregister_methods();
  5199. #ifdef CONFIG_AP
  5200. eap_server_unregister_methods();
  5201. #endif /* CONFIG_AP */
  5202. for (i = 0; wpa_drivers[i] && global->drv_priv; i++) {
  5203. if (!global->drv_priv[i])
  5204. continue;
  5205. wpa_drivers[i]->global_deinit(global->drv_priv[i]);
  5206. }
  5207. os_free(global->drv_priv);
  5208. random_deinit();
  5209. eloop_destroy();
  5210. if (global->params.pid_file) {
  5211. os_daemonize_terminate(global->params.pid_file);
  5212. os_free(global->params.pid_file);
  5213. }
  5214. os_free(global->params.ctrl_interface);
  5215. os_free(global->params.ctrl_interface_group);
  5216. os_free(global->params.override_driver);
  5217. os_free(global->params.override_ctrl_interface);
  5218. #ifdef CONFIG_MATCH_IFACE
  5219. os_free(global->params.match_ifaces);
  5220. #endif /* CONFIG_MATCH_IFACE */
  5221. #ifdef CONFIG_P2P
  5222. os_free(global->params.conf_p2p_dev);
  5223. #endif /* CONFIG_P2P */
  5224. os_free(global->p2p_disallow_freq.range);
  5225. os_free(global->p2p_go_avoid_freq.range);
  5226. os_free(global->add_psk);
  5227. os_free(global);
  5228. wpa_debug_close_syslog();
  5229. wpa_debug_close_file();
  5230. wpa_debug_close_linux_tracing();
  5231. }
  5232. void wpa_supplicant_update_config(struct wpa_supplicant *wpa_s)
  5233. {
  5234. if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
  5235. wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  5236. char country[3];
  5237. country[0] = wpa_s->conf->country[0];
  5238. country[1] = wpa_s->conf->country[1];
  5239. country[2] = '\0';
  5240. if (wpa_drv_set_country(wpa_s, country) < 0) {
  5241. wpa_printf(MSG_ERROR, "Failed to set country code "
  5242. "'%s'", country);
  5243. }
  5244. }
  5245. if (wpa_s->conf->changed_parameters & CFG_CHANGED_EXT_PW_BACKEND)
  5246. wpas_init_ext_pw(wpa_s);
  5247. if (wpa_s->conf->changed_parameters & CFG_CHANGED_SCHED_SCAN_PLANS)
  5248. wpas_sched_scan_plans_set(wpa_s, wpa_s->conf->sched_scan_plans);
  5249. if (wpa_s->conf->changed_parameters & CFG_CHANGED_WOWLAN_TRIGGERS) {
  5250. struct wpa_driver_capa capa;
  5251. int res = wpa_drv_get_capa(wpa_s, &capa);
  5252. if (res == 0 && wpas_set_wowlan_triggers(wpa_s, &capa) < 0)
  5253. wpa_printf(MSG_ERROR,
  5254. "Failed to update wowlan_triggers to '%s'",
  5255. wpa_s->conf->wowlan_triggers);
  5256. }
  5257. #ifdef CONFIG_WPS
  5258. wpas_wps_update_config(wpa_s);
  5259. #endif /* CONFIG_WPS */
  5260. wpas_p2p_update_config(wpa_s);
  5261. wpa_s->conf->changed_parameters = 0;
  5262. }
  5263. void add_freq(int *freqs, int *num_freqs, int freq)
  5264. {
  5265. int i;
  5266. for (i = 0; i < *num_freqs; i++) {
  5267. if (freqs[i] == freq)
  5268. return;
  5269. }
  5270. freqs[*num_freqs] = freq;
  5271. (*num_freqs)++;
  5272. }
  5273. static int * get_bss_freqs_in_ess(struct wpa_supplicant *wpa_s)
  5274. {
  5275. struct wpa_bss *bss, *cbss;
  5276. const int max_freqs = 10;
  5277. int *freqs;
  5278. int num_freqs = 0;
  5279. freqs = os_calloc(max_freqs + 1, sizeof(int));
  5280. if (freqs == NULL)
  5281. return NULL;
  5282. cbss = wpa_s->current_bss;
  5283. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  5284. if (bss == cbss)
  5285. continue;
  5286. if (bss->ssid_len == cbss->ssid_len &&
  5287. os_memcmp(bss->ssid, cbss->ssid, bss->ssid_len) == 0 &&
  5288. wpa_blacklist_get(wpa_s, bss->bssid) == NULL) {
  5289. add_freq(freqs, &num_freqs, bss->freq);
  5290. if (num_freqs == max_freqs)
  5291. break;
  5292. }
  5293. }
  5294. if (num_freqs == 0) {
  5295. os_free(freqs);
  5296. freqs = NULL;
  5297. }
  5298. return freqs;
  5299. }
  5300. void wpas_connection_failed(struct wpa_supplicant *wpa_s, const u8 *bssid)
  5301. {
  5302. int timeout;
  5303. int count;
  5304. int *freqs = NULL;
  5305. wpas_connect_work_done(wpa_s);
  5306. /*
  5307. * Remove possible authentication timeout since the connection failed.
  5308. */
  5309. eloop_cancel_timeout(wpa_supplicant_timeout, wpa_s, NULL);
  5310. /*
  5311. * There is no point in blacklisting the AP if this event is
  5312. * generated based on local request to disconnect.
  5313. */
  5314. if (wpa_s->own_disconnect_req) {
  5315. wpa_s->own_disconnect_req = 0;
  5316. wpa_dbg(wpa_s, MSG_DEBUG,
  5317. "Ignore connection failure due to local request to disconnect");
  5318. return;
  5319. }
  5320. if (wpa_s->disconnected) {
  5321. wpa_dbg(wpa_s, MSG_DEBUG, "Ignore connection failure "
  5322. "indication since interface has been put into "
  5323. "disconnected state");
  5324. return;
  5325. }
  5326. /*
  5327. * Add the failed BSSID into the blacklist and speed up next scan
  5328. * attempt if there could be other APs that could accept association.
  5329. * The current blacklist count indicates how many times we have tried
  5330. * connecting to this AP and multiple attempts mean that other APs are
  5331. * either not available or has already been tried, so that we can start
  5332. * increasing the delay here to avoid constant scanning.
  5333. */
  5334. count = wpa_blacklist_add(wpa_s, bssid);
  5335. if (count == 1 && wpa_s->current_bss) {
  5336. /*
  5337. * This BSS was not in the blacklist before. If there is
  5338. * another BSS available for the same ESS, we should try that
  5339. * next. Otherwise, we may as well try this one once more
  5340. * before allowing other, likely worse, ESSes to be considered.
  5341. */
  5342. freqs = get_bss_freqs_in_ess(wpa_s);
  5343. if (freqs) {
  5344. wpa_dbg(wpa_s, MSG_DEBUG, "Another BSS in this ESS "
  5345. "has been seen; try it next");
  5346. wpa_blacklist_add(wpa_s, bssid);
  5347. /*
  5348. * On the next scan, go through only the known channels
  5349. * used in this ESS based on previous scans to speed up
  5350. * common load balancing use case.
  5351. */
  5352. os_free(wpa_s->next_scan_freqs);
  5353. wpa_s->next_scan_freqs = freqs;
  5354. }
  5355. }
  5356. /*
  5357. * Add previous failure count in case the temporary blacklist was
  5358. * cleared due to no other BSSes being available.
  5359. */
  5360. count += wpa_s->extra_blacklist_count;
  5361. if (count > 3 && wpa_s->current_ssid) {
  5362. wpa_printf(MSG_DEBUG, "Continuous association failures - "
  5363. "consider temporary network disabling");
  5364. wpas_auth_failed(wpa_s, "CONN_FAILED");
  5365. }
  5366. switch (count) {
  5367. case 1:
  5368. timeout = 100;
  5369. break;
  5370. case 2:
  5371. timeout = 500;
  5372. break;
  5373. case 3:
  5374. timeout = 1000;
  5375. break;
  5376. case 4:
  5377. timeout = 5000;
  5378. break;
  5379. default:
  5380. timeout = 10000;
  5381. break;
  5382. }
  5383. wpa_dbg(wpa_s, MSG_DEBUG, "Blacklist count %d --> request scan in %d "
  5384. "ms", count, timeout);
  5385. /*
  5386. * TODO: if more than one possible AP is available in scan results,
  5387. * could try the other ones before requesting a new scan.
  5388. */
  5389. wpa_supplicant_req_scan(wpa_s, timeout / 1000,
  5390. 1000 * (timeout % 1000));
  5391. }
  5392. int wpas_driver_bss_selection(struct wpa_supplicant *wpa_s)
  5393. {
  5394. return wpa_s->conf->ap_scan == 2 ||
  5395. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_BSS_SELECTION);
  5396. }
  5397. #if defined(CONFIG_CTRL_IFACE) || defined(CONFIG_CTRL_IFACE_DBUS_NEW)
  5398. int wpa_supplicant_ctrl_iface_ctrl_rsp_handle(struct wpa_supplicant *wpa_s,
  5399. struct wpa_ssid *ssid,
  5400. const char *field,
  5401. const char *value)
  5402. {
  5403. #ifdef IEEE8021X_EAPOL
  5404. struct eap_peer_config *eap = &ssid->eap;
  5405. wpa_printf(MSG_DEBUG, "CTRL_IFACE: response handle field=%s", field);
  5406. wpa_hexdump_ascii_key(MSG_DEBUG, "CTRL_IFACE: response value",
  5407. (const u8 *) value, os_strlen(value));
  5408. switch (wpa_supplicant_ctrl_req_from_string(field)) {
  5409. case WPA_CTRL_REQ_EAP_IDENTITY:
  5410. os_free(eap->identity);
  5411. eap->identity = (u8 *) os_strdup(value);
  5412. eap->identity_len = os_strlen(value);
  5413. eap->pending_req_identity = 0;
  5414. if (ssid == wpa_s->current_ssid)
  5415. wpa_s->reassociate = 1;
  5416. break;
  5417. case WPA_CTRL_REQ_EAP_PASSWORD:
  5418. bin_clear_free(eap->password, eap->password_len);
  5419. eap->password = (u8 *) os_strdup(value);
  5420. eap->password_len = os_strlen(value);
  5421. eap->pending_req_password = 0;
  5422. if (ssid == wpa_s->current_ssid)
  5423. wpa_s->reassociate = 1;
  5424. break;
  5425. case WPA_CTRL_REQ_EAP_NEW_PASSWORD:
  5426. bin_clear_free(eap->new_password, eap->new_password_len);
  5427. eap->new_password = (u8 *) os_strdup(value);
  5428. eap->new_password_len = os_strlen(value);
  5429. eap->pending_req_new_password = 0;
  5430. if (ssid == wpa_s->current_ssid)
  5431. wpa_s->reassociate = 1;
  5432. break;
  5433. case WPA_CTRL_REQ_EAP_PIN:
  5434. str_clear_free(eap->pin);
  5435. eap->pin = os_strdup(value);
  5436. eap->pending_req_pin = 0;
  5437. if (ssid == wpa_s->current_ssid)
  5438. wpa_s->reassociate = 1;
  5439. break;
  5440. case WPA_CTRL_REQ_EAP_OTP:
  5441. bin_clear_free(eap->otp, eap->otp_len);
  5442. eap->otp = (u8 *) os_strdup(value);
  5443. eap->otp_len = os_strlen(value);
  5444. os_free(eap->pending_req_otp);
  5445. eap->pending_req_otp = NULL;
  5446. eap->pending_req_otp_len = 0;
  5447. break;
  5448. case WPA_CTRL_REQ_EAP_PASSPHRASE:
  5449. str_clear_free(eap->private_key_passwd);
  5450. eap->private_key_passwd = os_strdup(value);
  5451. eap->pending_req_passphrase = 0;
  5452. if (ssid == wpa_s->current_ssid)
  5453. wpa_s->reassociate = 1;
  5454. break;
  5455. case WPA_CTRL_REQ_SIM:
  5456. str_clear_free(eap->external_sim_resp);
  5457. eap->external_sim_resp = os_strdup(value);
  5458. eap->pending_req_sim = 0;
  5459. break;
  5460. case WPA_CTRL_REQ_PSK_PASSPHRASE:
  5461. if (wpa_config_set(ssid, "psk", value, 0) < 0)
  5462. return -1;
  5463. ssid->mem_only_psk = 1;
  5464. if (ssid->passphrase)
  5465. wpa_config_update_psk(ssid);
  5466. if (wpa_s->wpa_state == WPA_SCANNING && !wpa_s->scanning)
  5467. wpa_supplicant_req_scan(wpa_s, 0, 0);
  5468. break;
  5469. case WPA_CTRL_REQ_EXT_CERT_CHECK:
  5470. if (eap->pending_ext_cert_check != PENDING_CHECK)
  5471. return -1;
  5472. if (os_strcmp(value, "good") == 0)
  5473. eap->pending_ext_cert_check = EXT_CERT_CHECK_GOOD;
  5474. else if (os_strcmp(value, "bad") == 0)
  5475. eap->pending_ext_cert_check = EXT_CERT_CHECK_BAD;
  5476. else
  5477. return -1;
  5478. break;
  5479. default:
  5480. wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown field '%s'", field);
  5481. return -1;
  5482. }
  5483. return 0;
  5484. #else /* IEEE8021X_EAPOL */
  5485. wpa_printf(MSG_DEBUG, "CTRL_IFACE: IEEE 802.1X not included");
  5486. return -1;
  5487. #endif /* IEEE8021X_EAPOL */
  5488. }
  5489. #endif /* CONFIG_CTRL_IFACE || CONFIG_CTRL_IFACE_DBUS_NEW */
  5490. int wpas_network_disabled(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
  5491. {
  5492. int i;
  5493. unsigned int drv_enc;
  5494. if (wpa_s->p2p_mgmt)
  5495. return 1; /* no normal network profiles on p2p_mgmt interface */
  5496. if (ssid == NULL)
  5497. return 1;
  5498. if (ssid->disabled)
  5499. return 1;
  5500. if (wpa_s->drv_capa_known)
  5501. drv_enc = wpa_s->drv_enc;
  5502. else
  5503. drv_enc = (unsigned int) -1;
  5504. for (i = 0; i < NUM_WEP_KEYS; i++) {
  5505. size_t len = ssid->wep_key_len[i];
  5506. if (len == 0)
  5507. continue;
  5508. if (len == 5 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP40))
  5509. continue;
  5510. if (len == 13 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP104))
  5511. continue;
  5512. if (len == 16 && (drv_enc & WPA_DRIVER_CAPA_ENC_WEP128))
  5513. continue;
  5514. return 1; /* invalid WEP key */
  5515. }
  5516. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
  5517. (!ssid->passphrase || ssid->ssid_len != 0) && !ssid->ext_psk &&
  5518. !(wpa_key_mgmt_sae(ssid->key_mgmt) && ssid->sae_password) &&
  5519. !ssid->mem_only_psk)
  5520. return 1;
  5521. return 0;
  5522. }
  5523. int wpas_get_ssid_pmf(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
  5524. {
  5525. #ifdef CONFIG_IEEE80211W
  5526. if (ssid == NULL || ssid->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT) {
  5527. if (wpa_s->conf->pmf == MGMT_FRAME_PROTECTION_OPTIONAL &&
  5528. !(wpa_s->drv_enc & WPA_DRIVER_CAPA_ENC_BIP)) {
  5529. /*
  5530. * Driver does not support BIP -- ignore pmf=1 default
  5531. * since the connection with PMF would fail and the
  5532. * configuration does not require PMF to be enabled.
  5533. */
  5534. return NO_MGMT_FRAME_PROTECTION;
  5535. }
  5536. if (ssid &&
  5537. (ssid->key_mgmt &
  5538. ~(WPA_KEY_MGMT_NONE | WPA_KEY_MGMT_WPS |
  5539. WPA_KEY_MGMT_IEEE8021X_NO_WPA)) == 0) {
  5540. /*
  5541. * Do not use the default PMF value for non-RSN networks
  5542. * since PMF is available only with RSN and pmf=2
  5543. * configuration would otherwise prevent connections to
  5544. * all open networks.
  5545. */
  5546. return NO_MGMT_FRAME_PROTECTION;
  5547. }
  5548. return wpa_s->conf->pmf;
  5549. }
  5550. return ssid->ieee80211w;
  5551. #else /* CONFIG_IEEE80211W */
  5552. return NO_MGMT_FRAME_PROTECTION;
  5553. #endif /* CONFIG_IEEE80211W */
  5554. }
  5555. int wpas_is_p2p_prioritized(struct wpa_supplicant *wpa_s)
  5556. {
  5557. if (wpa_s->global->conc_pref == WPA_CONC_PREF_P2P)
  5558. return 1;
  5559. if (wpa_s->global->conc_pref == WPA_CONC_PREF_STA)
  5560. return 0;
  5561. return -1;
  5562. }
  5563. void wpas_auth_failed(struct wpa_supplicant *wpa_s, char *reason)
  5564. {
  5565. struct wpa_ssid *ssid = wpa_s->current_ssid;
  5566. int dur;
  5567. struct os_reltime now;
  5568. if (ssid == NULL) {
  5569. wpa_printf(MSG_DEBUG, "Authentication failure but no known "
  5570. "SSID block");
  5571. return;
  5572. }
  5573. if (ssid->key_mgmt == WPA_KEY_MGMT_WPS)
  5574. return;
  5575. ssid->auth_failures++;
  5576. #ifdef CONFIG_P2P
  5577. if (ssid->p2p_group &&
  5578. (wpa_s->p2p_in_provisioning || wpa_s->show_group_started)) {
  5579. /*
  5580. * Skip the wait time since there is a short timeout on the
  5581. * connection to a P2P group.
  5582. */
  5583. return;
  5584. }
  5585. #endif /* CONFIG_P2P */
  5586. if (ssid->auth_failures > 50)
  5587. dur = 300;
  5588. else if (ssid->auth_failures > 10)
  5589. dur = 120;
  5590. else if (ssid->auth_failures > 5)
  5591. dur = 90;
  5592. else if (ssid->auth_failures > 3)
  5593. dur = 60;
  5594. else if (ssid->auth_failures > 2)
  5595. dur = 30;
  5596. else if (ssid->auth_failures > 1)
  5597. dur = 20;
  5598. else
  5599. dur = 10;
  5600. if (ssid->auth_failures > 1 &&
  5601. wpa_key_mgmt_wpa_ieee8021x(ssid->key_mgmt))
  5602. dur += os_random() % (ssid->auth_failures * 10);
  5603. os_get_reltime(&now);
  5604. if (now.sec + dur <= ssid->disabled_until.sec)
  5605. return;
  5606. ssid->disabled_until.sec = now.sec + dur;
  5607. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_TEMP_DISABLED
  5608. "id=%d ssid=\"%s\" auth_failures=%u duration=%d reason=%s",
  5609. ssid->id, wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  5610. ssid->auth_failures, dur, reason);
  5611. }
  5612. void wpas_clear_temp_disabled(struct wpa_supplicant *wpa_s,
  5613. struct wpa_ssid *ssid, int clear_failures)
  5614. {
  5615. if (ssid == NULL)
  5616. return;
  5617. if (ssid->disabled_until.sec) {
  5618. wpa_msg(wpa_s, MSG_INFO, WPA_EVENT_REENABLED
  5619. "id=%d ssid=\"%s\"",
  5620. ssid->id, wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  5621. }
  5622. ssid->disabled_until.sec = 0;
  5623. ssid->disabled_until.usec = 0;
  5624. if (clear_failures)
  5625. ssid->auth_failures = 0;
  5626. }
  5627. int disallowed_bssid(struct wpa_supplicant *wpa_s, const u8 *bssid)
  5628. {
  5629. size_t i;
  5630. if (wpa_s->disallow_aps_bssid == NULL)
  5631. return 0;
  5632. for (i = 0; i < wpa_s->disallow_aps_bssid_count; i++) {
  5633. if (os_memcmp(wpa_s->disallow_aps_bssid + i * ETH_ALEN,
  5634. bssid, ETH_ALEN) == 0)
  5635. return 1;
  5636. }
  5637. return 0;
  5638. }
  5639. int disallowed_ssid(struct wpa_supplicant *wpa_s, const u8 *ssid,
  5640. size_t ssid_len)
  5641. {
  5642. size_t i;
  5643. if (wpa_s->disallow_aps_ssid == NULL || ssid == NULL)
  5644. return 0;
  5645. for (i = 0; i < wpa_s->disallow_aps_ssid_count; i++) {
  5646. struct wpa_ssid_value *s = &wpa_s->disallow_aps_ssid[i];
  5647. if (ssid_len == s->ssid_len &&
  5648. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  5649. return 1;
  5650. }
  5651. return 0;
  5652. }
  5653. /**
  5654. * wpas_request_connection - Request a new connection
  5655. * @wpa_s: Pointer to the network interface
  5656. *
  5657. * This function is used to request a new connection to be found. It will mark
  5658. * the interface to allow reassociation and request a new scan to find a
  5659. * suitable network to connect to.
  5660. */
  5661. void wpas_request_connection(struct wpa_supplicant *wpa_s)
  5662. {
  5663. wpa_s->normal_scans = 0;
  5664. wpa_s->scan_req = NORMAL_SCAN_REQ;
  5665. wpa_supplicant_reinit_autoscan(wpa_s);
  5666. wpa_s->extra_blacklist_count = 0;
  5667. wpa_s->disconnected = 0;
  5668. wpa_s->reassociate = 1;
  5669. if (wpa_supplicant_fast_associate(wpa_s) != 1)
  5670. wpa_supplicant_req_scan(wpa_s, 0, 0);
  5671. else
  5672. wpa_s->reattach = 0;
  5673. }
  5674. /**
  5675. * wpas_request_disconnection - Request disconnection
  5676. * @wpa_s: Pointer to the network interface
  5677. *
  5678. * This function is used to request disconnection from the currently connected
  5679. * network. This will stop any ongoing scans and initiate deauthentication.
  5680. */
  5681. void wpas_request_disconnection(struct wpa_supplicant *wpa_s)
  5682. {
  5683. #ifdef CONFIG_SME
  5684. wpa_s->sme.prev_bssid_set = 0;
  5685. #endif /* CONFIG_SME */
  5686. wpa_s->reassociate = 0;
  5687. wpa_s->disconnected = 1;
  5688. wpa_supplicant_cancel_sched_scan(wpa_s);
  5689. wpa_supplicant_cancel_scan(wpa_s);
  5690. wpa_supplicant_deauthenticate(wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  5691. eloop_cancel_timeout(wpas_network_reenabled, wpa_s, NULL);
  5692. }
  5693. void dump_freq_data(struct wpa_supplicant *wpa_s, const char *title,
  5694. struct wpa_used_freq_data *freqs_data,
  5695. unsigned int len)
  5696. {
  5697. unsigned int i;
  5698. wpa_dbg(wpa_s, MSG_DEBUG, "Shared frequencies (len=%u): %s",
  5699. len, title);
  5700. for (i = 0; i < len; i++) {
  5701. struct wpa_used_freq_data *cur = &freqs_data[i];
  5702. wpa_dbg(wpa_s, MSG_DEBUG, "freq[%u]: %d, flags=0x%X",
  5703. i, cur->freq, cur->flags);
  5704. }
  5705. }
  5706. /*
  5707. * Find the operating frequencies of any of the virtual interfaces that
  5708. * are using the same radio as the current interface, and in addition, get
  5709. * information about the interface types that are using the frequency.
  5710. */
  5711. int get_shared_radio_freqs_data(struct wpa_supplicant *wpa_s,
  5712. struct wpa_used_freq_data *freqs_data,
  5713. unsigned int len)
  5714. {
  5715. struct wpa_supplicant *ifs;
  5716. u8 bssid[ETH_ALEN];
  5717. int freq;
  5718. unsigned int idx = 0, i;
  5719. wpa_dbg(wpa_s, MSG_DEBUG,
  5720. "Determining shared radio frequencies (max len %u)", len);
  5721. os_memset(freqs_data, 0, sizeof(struct wpa_used_freq_data) * len);
  5722. dl_list_for_each(ifs, &wpa_s->radio->ifaces, struct wpa_supplicant,
  5723. radio_list) {
  5724. if (idx == len)
  5725. break;
  5726. if (ifs->current_ssid == NULL || ifs->assoc_freq == 0)
  5727. continue;
  5728. if (ifs->current_ssid->mode == WPAS_MODE_AP ||
  5729. ifs->current_ssid->mode == WPAS_MODE_P2P_GO ||
  5730. ifs->current_ssid->mode == WPAS_MODE_MESH)
  5731. freq = ifs->current_ssid->frequency;
  5732. else if (wpa_drv_get_bssid(ifs, bssid) == 0)
  5733. freq = ifs->assoc_freq;
  5734. else
  5735. continue;
  5736. /* Hold only distinct freqs */
  5737. for (i = 0; i < idx; i++)
  5738. if (freqs_data[i].freq == freq)
  5739. break;
  5740. if (i == idx)
  5741. freqs_data[idx++].freq = freq;
  5742. if (ifs->current_ssid->mode == WPAS_MODE_INFRA) {
  5743. freqs_data[i].flags |= ifs->current_ssid->p2p_group ?
  5744. WPA_FREQ_USED_BY_P2P_CLIENT :
  5745. WPA_FREQ_USED_BY_INFRA_STATION;
  5746. }
  5747. }
  5748. dump_freq_data(wpa_s, "completed iteration", freqs_data, idx);
  5749. return idx;
  5750. }
  5751. /*
  5752. * Find the operating frequencies of any of the virtual interfaces that
  5753. * are using the same radio as the current interface.
  5754. */
  5755. int get_shared_radio_freqs(struct wpa_supplicant *wpa_s,
  5756. int *freq_array, unsigned int len)
  5757. {
  5758. struct wpa_used_freq_data *freqs_data;
  5759. int num, i;
  5760. os_memset(freq_array, 0, sizeof(int) * len);
  5761. freqs_data = os_calloc(len, sizeof(struct wpa_used_freq_data));
  5762. if (!freqs_data)
  5763. return -1;
  5764. num = get_shared_radio_freqs_data(wpa_s, freqs_data, len);
  5765. for (i = 0; i < num; i++)
  5766. freq_array[i] = freqs_data[i].freq;
  5767. os_free(freqs_data);
  5768. return num;
  5769. }
  5770. struct wpa_supplicant *
  5771. wpas_vendor_elem(struct wpa_supplicant *wpa_s, enum wpa_vendor_elem_frame frame)
  5772. {
  5773. switch (frame) {
  5774. #ifdef CONFIG_P2P
  5775. case VENDOR_ELEM_PROBE_REQ_P2P:
  5776. case VENDOR_ELEM_PROBE_RESP_P2P:
  5777. case VENDOR_ELEM_PROBE_RESP_P2P_GO:
  5778. case VENDOR_ELEM_BEACON_P2P_GO:
  5779. case VENDOR_ELEM_P2P_PD_REQ:
  5780. case VENDOR_ELEM_P2P_PD_RESP:
  5781. case VENDOR_ELEM_P2P_GO_NEG_REQ:
  5782. case VENDOR_ELEM_P2P_GO_NEG_RESP:
  5783. case VENDOR_ELEM_P2P_GO_NEG_CONF:
  5784. case VENDOR_ELEM_P2P_INV_REQ:
  5785. case VENDOR_ELEM_P2P_INV_RESP:
  5786. case VENDOR_ELEM_P2P_ASSOC_REQ:
  5787. case VENDOR_ELEM_P2P_ASSOC_RESP:
  5788. return wpa_s->p2pdev;
  5789. #endif /* CONFIG_P2P */
  5790. default:
  5791. return wpa_s;
  5792. }
  5793. }
  5794. void wpas_vendor_elem_update(struct wpa_supplicant *wpa_s)
  5795. {
  5796. unsigned int i;
  5797. char buf[30];
  5798. wpa_printf(MSG_DEBUG, "Update vendor elements");
  5799. for (i = 0; i < NUM_VENDOR_ELEM_FRAMES; i++) {
  5800. if (wpa_s->vendor_elem[i]) {
  5801. int res;
  5802. res = os_snprintf(buf, sizeof(buf), "frame[%u]", i);
  5803. if (!os_snprintf_error(sizeof(buf), res)) {
  5804. wpa_hexdump_buf(MSG_DEBUG, buf,
  5805. wpa_s->vendor_elem[i]);
  5806. }
  5807. }
  5808. }
  5809. #ifdef CONFIG_P2P
  5810. if (wpa_s->parent == wpa_s &&
  5811. wpa_s->global->p2p &&
  5812. !wpa_s->global->p2p_disabled)
  5813. p2p_set_vendor_elems(wpa_s->global->p2p, wpa_s->vendor_elem);
  5814. #endif /* CONFIG_P2P */
  5815. }
  5816. int wpas_vendor_elem_remove(struct wpa_supplicant *wpa_s, int frame,
  5817. const u8 *elem, size_t len)
  5818. {
  5819. u8 *ie, *end;
  5820. ie = wpabuf_mhead_u8(wpa_s->vendor_elem[frame]);
  5821. end = ie + wpabuf_len(wpa_s->vendor_elem[frame]);
  5822. for (; ie + 1 < end; ie += 2 + ie[1]) {
  5823. if (ie + len > end)
  5824. break;
  5825. if (os_memcmp(ie, elem, len) != 0)
  5826. continue;
  5827. if (wpabuf_len(wpa_s->vendor_elem[frame]) == len) {
  5828. wpabuf_free(wpa_s->vendor_elem[frame]);
  5829. wpa_s->vendor_elem[frame] = NULL;
  5830. } else {
  5831. os_memmove(ie, ie + len, end - (ie + len));
  5832. wpa_s->vendor_elem[frame]->used -= len;
  5833. }
  5834. wpas_vendor_elem_update(wpa_s);
  5835. return 0;
  5836. }
  5837. return -1;
  5838. }
  5839. struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
  5840. u16 num_modes, enum hostapd_hw_mode mode)
  5841. {
  5842. u16 i;
  5843. for (i = 0; i < num_modes; i++) {
  5844. if (modes[i].mode == mode)
  5845. return &modes[i];
  5846. }
  5847. return NULL;
  5848. }
  5849. static struct
  5850. wpa_bss_tmp_disallowed * wpas_get_disallowed_bss(struct wpa_supplicant *wpa_s,
  5851. const u8 *bssid)
  5852. {
  5853. struct wpa_bss_tmp_disallowed *bss;
  5854. dl_list_for_each(bss, &wpa_s->bss_tmp_disallowed,
  5855. struct wpa_bss_tmp_disallowed, list) {
  5856. if (os_memcmp(bssid, bss->bssid, ETH_ALEN) == 0)
  5857. return bss;
  5858. }
  5859. return NULL;
  5860. }
  5861. static int wpa_set_driver_tmp_disallow_list(struct wpa_supplicant *wpa_s)
  5862. {
  5863. struct wpa_bss_tmp_disallowed *tmp;
  5864. unsigned int num_bssid = 0;
  5865. u8 *bssids;
  5866. int ret;
  5867. bssids = os_malloc(dl_list_len(&wpa_s->bss_tmp_disallowed) * ETH_ALEN);
  5868. if (!bssids)
  5869. return -1;
  5870. dl_list_for_each(tmp, &wpa_s->bss_tmp_disallowed,
  5871. struct wpa_bss_tmp_disallowed, list) {
  5872. os_memcpy(&bssids[num_bssid * ETH_ALEN], tmp->bssid,
  5873. ETH_ALEN);
  5874. num_bssid++;
  5875. }
  5876. ret = wpa_drv_set_bssid_blacklist(wpa_s, num_bssid, bssids);
  5877. os_free(bssids);
  5878. return ret;
  5879. }
  5880. static void wpa_bss_tmp_disallow_timeout(void *eloop_ctx, void *timeout_ctx)
  5881. {
  5882. struct wpa_supplicant *wpa_s = eloop_ctx;
  5883. struct wpa_bss_tmp_disallowed *tmp, *bss = timeout_ctx;
  5884. /* Make sure the bss is not already freed */
  5885. dl_list_for_each(tmp, &wpa_s->bss_tmp_disallowed,
  5886. struct wpa_bss_tmp_disallowed, list) {
  5887. if (bss == tmp) {
  5888. dl_list_del(&tmp->list);
  5889. os_free(tmp);
  5890. wpa_set_driver_tmp_disallow_list(wpa_s);
  5891. break;
  5892. }
  5893. }
  5894. }
  5895. void wpa_bss_tmp_disallow(struct wpa_supplicant *wpa_s, const u8 *bssid,
  5896. unsigned int sec)
  5897. {
  5898. struct wpa_bss_tmp_disallowed *bss;
  5899. bss = wpas_get_disallowed_bss(wpa_s, bssid);
  5900. if (bss) {
  5901. eloop_cancel_timeout(wpa_bss_tmp_disallow_timeout, wpa_s, bss);
  5902. eloop_register_timeout(sec, 0, wpa_bss_tmp_disallow_timeout,
  5903. wpa_s, bss);
  5904. return;
  5905. }
  5906. bss = os_malloc(sizeof(*bss));
  5907. if (!bss) {
  5908. wpa_printf(MSG_DEBUG,
  5909. "Failed to allocate memory for temp disallow BSS");
  5910. return;
  5911. }
  5912. os_memcpy(bss->bssid, bssid, ETH_ALEN);
  5913. dl_list_add(&wpa_s->bss_tmp_disallowed, &bss->list);
  5914. wpa_set_driver_tmp_disallow_list(wpa_s);
  5915. eloop_register_timeout(sec, 0, wpa_bss_tmp_disallow_timeout,
  5916. wpa_s, bss);
  5917. }
  5918. int wpa_is_bss_tmp_disallowed(struct wpa_supplicant *wpa_s, const u8 *bssid)
  5919. {
  5920. struct wpa_bss_tmp_disallowed *bss = NULL, *tmp, *prev;
  5921. dl_list_for_each_safe(tmp, prev, &wpa_s->bss_tmp_disallowed,
  5922. struct wpa_bss_tmp_disallowed, list) {
  5923. if (os_memcmp(bssid, tmp->bssid, ETH_ALEN) == 0) {
  5924. bss = tmp;
  5925. break;
  5926. }
  5927. }
  5928. if (!bss)
  5929. return 0;
  5930. return 1;
  5931. }