wpa_supplicant.c 185 KB

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