driver_nl80211.c 266 KB

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