wpa_supplicant.c 176 KB

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