driver_nl80211.c 251 KB

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