wpa_supplicant.c 184 KB

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