ioctl_cfg80211.c 290 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2017 Realtek Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. *****************************************************************************/
  15. #define _IOCTL_CFG80211_C_
  16. #include <drv_types.h>
  17. #include <hal_data.h>
  18. #ifdef CONFIG_IOCTL_CFG80211
  19. #ifndef DBG_RTW_CFG80211_STA_PARAM
  20. #define DBG_RTW_CFG80211_STA_PARAM 0
  21. #endif
  22. #ifndef DBG_RTW_CFG80211_MESH_CONF
  23. #define DBG_RTW_CFG80211_MESH_CONF 0
  24. #endif
  25. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 0, 0))
  26. #define STATION_INFO_INACTIVE_TIME BIT(NL80211_STA_INFO_INACTIVE_TIME)
  27. #define STATION_INFO_LLID BIT(NL80211_STA_INFO_LLID)
  28. #define STATION_INFO_PLID BIT(NL80211_STA_INFO_PLID)
  29. #define STATION_INFO_PLINK_STATE BIT(NL80211_STA_INFO_PLINK_STATE)
  30. #define STATION_INFO_SIGNAL BIT(NL80211_STA_INFO_SIGNAL)
  31. #define STATION_INFO_TX_BITRATE BIT(NL80211_STA_INFO_TX_BITRATE)
  32. #define STATION_INFO_RX_PACKETS BIT(NL80211_STA_INFO_RX_PACKETS)
  33. #define STATION_INFO_TX_PACKETS BIT(NL80211_STA_INFO_TX_PACKETS)
  34. #define STATION_INFO_TX_FAILED BIT(NL80211_STA_INFO_TX_FAILED)
  35. #define STATION_INFO_LOCAL_PM BIT(NL80211_STA_INFO_LOCAL_PM)
  36. #define STATION_INFO_PEER_PM BIT(NL80211_STA_INFO_PEER_PM)
  37. #define STATION_INFO_NONPEER_PM BIT(NL80211_STA_INFO_NONPEER_PM)
  38. #define STATION_INFO_ASSOC_REQ_IES 0
  39. #endif /* Linux kernel >= 4.0.0 */
  40. #include <rtw_wifi_regd.h>
  41. #define RTW_MAX_MGMT_TX_CNT (8)
  42. #define RTW_MAX_MGMT_TX_MS_GAS (500)
  43. #define RTW_SCAN_IE_LEN_MAX 2304
  44. #define RTW_MAX_REMAIN_ON_CHANNEL_DURATION 5000 /* ms */
  45. #define RTW_MAX_NUM_PMKIDS 4
  46. #define RTW_CH_MAX_2G_CHANNEL 14 /* Max channel in 2G band */
  47. #ifdef CONFIG_WAPI_SUPPORT
  48. #ifndef WLAN_CIPHER_SUITE_SMS4
  49. #define WLAN_CIPHER_SUITE_SMS4 0x00147201
  50. #endif
  51. #ifndef WLAN_AKM_SUITE_WAPI_PSK
  52. #define WLAN_AKM_SUITE_WAPI_PSK 0x000FAC04
  53. #endif
  54. #ifndef WLAN_AKM_SUITE_WAPI_CERT
  55. #define WLAN_AKM_SUITE_WAPI_CERT 0x000FAC12
  56. #endif
  57. #ifndef NL80211_WAPI_VERSION_1
  58. #define NL80211_WAPI_VERSION_1 (1 << 2)
  59. #endif
  60. #endif /* CONFIG_WAPI_SUPPORT */
  61. #ifdef CONFIG_RTW_80211R
  62. #define WLAN_AKM_SUITE_FT_8021X 0x000FAC03
  63. #define WLAN_AKM_SUITE_FT_PSK 0x000FAC04
  64. #endif
  65. /*
  66. * In the current design of Wi-Fi driver, it will return success to the system (e.g. supplicant)
  67. * when Wi-Fi driver decides to abort the scan request in the scan flow by default.
  68. * Defining this flag makes Wi-Fi driver to return -EBUSY to the system if Wi-Fi driver is too busy to do the scan.
  69. */
  70. #ifndef CONFIG_NOTIFY_SCAN_ABORT_WITH_BUSY
  71. #define CONFIG_NOTIFY_SCAN_ABORT_WITH_BUSY 0
  72. #endif
  73. static const u32 rtw_cipher_suites[] = {
  74. WLAN_CIPHER_SUITE_WEP40,
  75. WLAN_CIPHER_SUITE_WEP104,
  76. WLAN_CIPHER_SUITE_TKIP,
  77. WLAN_CIPHER_SUITE_CCMP,
  78. #ifdef CONFIG_WAPI_SUPPORT
  79. WLAN_CIPHER_SUITE_SMS4,
  80. #endif /* CONFIG_WAPI_SUPPORT */
  81. #ifdef CONFIG_IEEE80211W
  82. WLAN_CIPHER_SUITE_AES_CMAC,
  83. #endif /* CONFIG_IEEE80211W */
  84. };
  85. #define RATETAB_ENT(_rate, _rateid, _flags) \
  86. { \
  87. .bitrate = (_rate), \
  88. .hw_value = (_rateid), \
  89. .flags = (_flags), \
  90. }
  91. #define CHAN2G(_channel, _freq, _flags) { \
  92. .band = NL80211_BAND_2GHZ, \
  93. .center_freq = (_freq), \
  94. .hw_value = (_channel), \
  95. .flags = (_flags), \
  96. .max_antenna_gain = 0, \
  97. .max_power = 30, \
  98. }
  99. #define CHAN5G(_channel, _flags) { \
  100. .band = NL80211_BAND_5GHZ, \
  101. .center_freq = 5000 + (5 * (_channel)), \
  102. .hw_value = (_channel), \
  103. .flags = (_flags), \
  104. .max_antenna_gain = 0, \
  105. .max_power = 30, \
  106. }
  107. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  108. /* if wowlan is not supported, kernel generate a disconnect at each suspend
  109. * cf: /net/wireless/sysfs.c, so register a stub wowlan.
  110. * Moreover wowlan has to be enabled via a the nl80211_set_wowlan callback.
  111. * (from user space, e.g. iw phy0 wowlan enable)
  112. */
  113. static const struct wiphy_wowlan_support wowlan_stub = {
  114. .flags = WIPHY_WOWLAN_ANY,
  115. .n_patterns = 0,
  116. .pattern_max_len = 0,
  117. .pattern_min_len = 0,
  118. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  119. .max_pkt_offset = 0,
  120. #endif
  121. };
  122. #endif
  123. static struct ieee80211_rate rtw_rates[] = {
  124. RATETAB_ENT(10, 0x1, 0),
  125. RATETAB_ENT(20, 0x2, 0),
  126. RATETAB_ENT(55, 0x4, 0),
  127. RATETAB_ENT(110, 0x8, 0),
  128. RATETAB_ENT(60, 0x10, 0),
  129. RATETAB_ENT(90, 0x20, 0),
  130. RATETAB_ENT(120, 0x40, 0),
  131. RATETAB_ENT(180, 0x80, 0),
  132. RATETAB_ENT(240, 0x100, 0),
  133. RATETAB_ENT(360, 0x200, 0),
  134. RATETAB_ENT(480, 0x400, 0),
  135. RATETAB_ENT(540, 0x800, 0),
  136. };
  137. #define rtw_a_rates (rtw_rates + 4)
  138. #define RTW_A_RATES_NUM 8
  139. #define rtw_g_rates (rtw_rates + 0)
  140. #define RTW_G_RATES_NUM 12
  141. /* from center_ch_2g */
  142. static struct ieee80211_channel rtw_2ghz_channels[MAX_CHANNEL_NUM_2G] = {
  143. CHAN2G(1, 2412, 0),
  144. CHAN2G(2, 2417, 0),
  145. CHAN2G(3, 2422, 0),
  146. CHAN2G(4, 2427, 0),
  147. CHAN2G(5, 2432, 0),
  148. CHAN2G(6, 2437, 0),
  149. CHAN2G(7, 2442, 0),
  150. CHAN2G(8, 2447, 0),
  151. CHAN2G(9, 2452, 0),
  152. CHAN2G(10, 2457, 0),
  153. CHAN2G(11, 2462, 0),
  154. CHAN2G(12, 2467, 0),
  155. CHAN2G(13, 2472, 0),
  156. CHAN2G(14, 2484, 0),
  157. };
  158. /* from center_ch_5g_20m */
  159. static struct ieee80211_channel rtw_5ghz_a_channels[MAX_CHANNEL_NUM_5G] = {
  160. CHAN5G(36, 0), CHAN5G(40, 0), CHAN5G(44, 0), CHAN5G(48, 0),
  161. CHAN5G(52, 0), CHAN5G(56, 0), CHAN5G(60, 0), CHAN5G(64, 0),
  162. CHAN5G(100, 0), CHAN5G(104, 0), CHAN5G(108, 0), CHAN5G(112, 0),
  163. CHAN5G(116, 0), CHAN5G(120, 0), CHAN5G(124, 0), CHAN5G(128, 0),
  164. CHAN5G(132, 0), CHAN5G(136, 0), CHAN5G(140, 0), CHAN5G(144, 0),
  165. CHAN5G(149, 0), CHAN5G(153, 0), CHAN5G(157, 0), CHAN5G(161, 0),
  166. CHAN5G(165, 0), CHAN5G(169, 0), CHAN5G(173, 0), CHAN5G(177, 0),
  167. };
  168. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29))
  169. static const char *nl80211_channel_type_str(enum nl80211_channel_type ctype)
  170. {
  171. switch (ctype) {
  172. case NL80211_CHAN_NO_HT:
  173. return "NO_HT";
  174. case NL80211_CHAN_HT20:
  175. return "HT20";
  176. case NL80211_CHAN_HT40MINUS:
  177. return "HT40-";
  178. case NL80211_CHAN_HT40PLUS:
  179. return "HT40+";
  180. default:
  181. return "INVALID";
  182. };
  183. }
  184. static enum nl80211_channel_type rtw_chbw_to_nl80211_channel_type(u8 ch, u8 bw, u8 offset, u8 ht)
  185. {
  186. rtw_warn_on(!ht && (bw >= CHANNEL_WIDTH_40 || offset != HAL_PRIME_CHNL_OFFSET_DONT_CARE));
  187. if (!ht)
  188. return NL80211_CHAN_NO_HT;
  189. if (bw >= CHANNEL_WIDTH_40) {
  190. if (offset == HAL_PRIME_CHNL_OFFSET_UPPER)
  191. return NL80211_CHAN_HT40MINUS;
  192. else if (offset == HAL_PRIME_CHNL_OFFSET_LOWER)
  193. return NL80211_CHAN_HT40PLUS;
  194. else
  195. rtw_warn_on(1);
  196. }
  197. return NL80211_CHAN_HT20;
  198. }
  199. static void rtw_get_chbw_from_nl80211_channel_type(struct ieee80211_channel *chan, enum nl80211_channel_type ctype, u8 *ht, u8 *ch, u8 *bw, u8 *offset)
  200. {
  201. int pri_freq;
  202. pri_freq = rtw_ch2freq(chan->hw_value);
  203. if (!pri_freq) {
  204. RTW_INFO("invalid channel:%d\n", chan->hw_value);
  205. rtw_warn_on(1);
  206. *ch = 0;
  207. return;
  208. }
  209. *ch = chan->hw_value;
  210. switch (ctype) {
  211. case NL80211_CHAN_NO_HT:
  212. *ht = 0;
  213. *bw = CHANNEL_WIDTH_20;
  214. *offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  215. break;
  216. case NL80211_CHAN_HT20:
  217. *ht = 1;
  218. *bw = CHANNEL_WIDTH_20;
  219. *offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  220. break;
  221. case NL80211_CHAN_HT40MINUS:
  222. *ht = 1;
  223. *bw = CHANNEL_WIDTH_40;
  224. *offset = HAL_PRIME_CHNL_OFFSET_UPPER;
  225. break;
  226. case NL80211_CHAN_HT40PLUS:
  227. *ht = 1;
  228. *bw = CHANNEL_WIDTH_40;
  229. *offset = HAL_PRIME_CHNL_OFFSET_LOWER;
  230. break;
  231. default:
  232. *ht = 0;
  233. *bw = CHANNEL_WIDTH_20;
  234. *offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  235. RTW_INFO("unsupported ctype:%s\n", nl80211_channel_type_str(ctype));
  236. rtw_warn_on(1);
  237. };
  238. }
  239. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)) */
  240. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  241. static const char *nl80211_chan_width_str(enum nl80211_chan_width cwidth)
  242. {
  243. switch (cwidth) {
  244. case NL80211_CHAN_WIDTH_20_NOHT:
  245. return "20_NOHT";
  246. case NL80211_CHAN_WIDTH_20:
  247. return "20";
  248. case NL80211_CHAN_WIDTH_40:
  249. return "40";
  250. case NL80211_CHAN_WIDTH_80:
  251. return "80";
  252. case NL80211_CHAN_WIDTH_80P80:
  253. return "80+80";
  254. case NL80211_CHAN_WIDTH_160:
  255. return "160";
  256. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  257. case NL80211_CHAN_WIDTH_5:
  258. return "5";
  259. case NL80211_CHAN_WIDTH_10:
  260. return "10";
  261. #endif
  262. default:
  263. return "INVALID";
  264. };
  265. }
  266. static u8 rtw_chbw_to_cfg80211_chan_def(struct wiphy *wiphy, struct cfg80211_chan_def *chdef, u8 ch, u8 bw, u8 offset, u8 ht)
  267. {
  268. int freq, cfreq;
  269. struct ieee80211_channel *chan;
  270. u8 ret = _FAIL;
  271. freq = rtw_ch2freq(ch);
  272. if (!freq)
  273. goto exit;
  274. cfreq = rtw_get_center_ch(ch, bw, offset);
  275. if (!cfreq)
  276. goto exit;
  277. cfreq = rtw_ch2freq(cfreq);
  278. if (!cfreq)
  279. goto exit;
  280. chan = ieee80211_get_channel(wiphy, freq);
  281. if (!chan)
  282. goto exit;
  283. if (bw == CHANNEL_WIDTH_20)
  284. chdef->width = ht ? NL80211_CHAN_WIDTH_20 : NL80211_CHAN_WIDTH_20_NOHT;
  285. else if (bw == CHANNEL_WIDTH_40)
  286. chdef->width = NL80211_CHAN_WIDTH_40;
  287. else if (bw == CHANNEL_WIDTH_80)
  288. chdef->width = NL80211_CHAN_WIDTH_80;
  289. else if (bw == CHANNEL_WIDTH_160)
  290. chdef->width = NL80211_CHAN_WIDTH_160;
  291. else {
  292. rtw_warn_on(1);
  293. goto exit;
  294. }
  295. chdef->chan = chan;
  296. chdef->center_freq1 = cfreq;
  297. chdef->center_freq2 = 0;
  298. ret = _SUCCESS;
  299. exit:
  300. return ret;
  301. }
  302. static void rtw_get_chbw_from_cfg80211_chan_def(struct cfg80211_chan_def *chdef, u8 *ht, u8 *ch, u8 *bw, u8 *offset)
  303. {
  304. int pri_freq;
  305. struct ieee80211_channel *chan = chdef->chan;
  306. pri_freq = rtw_ch2freq(chan->hw_value);
  307. if (!pri_freq) {
  308. RTW_INFO("invalid channel:%d\n", chan->hw_value);
  309. rtw_warn_on(1);
  310. *ch = 0;
  311. return;
  312. }
  313. switch (chdef->width) {
  314. case NL80211_CHAN_WIDTH_20_NOHT:
  315. *ht = 0;
  316. *bw = CHANNEL_WIDTH_20;
  317. *offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  318. *ch = chan->hw_value;
  319. break;
  320. case NL80211_CHAN_WIDTH_20:
  321. *ht = 1;
  322. *bw = CHANNEL_WIDTH_20;
  323. *offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  324. *ch = chan->hw_value;
  325. break;
  326. case NL80211_CHAN_WIDTH_40:
  327. *ht = 1;
  328. *bw = CHANNEL_WIDTH_40;
  329. *offset = pri_freq > chdef->center_freq1 ? HAL_PRIME_CHNL_OFFSET_UPPER : HAL_PRIME_CHNL_OFFSET_LOWER;
  330. if (rtw_get_offset_by_chbw(chan->hw_value, *bw, offset))
  331. *ch = chan->hw_value;
  332. break;
  333. case NL80211_CHAN_WIDTH_80:
  334. *ht = 1;
  335. *bw = CHANNEL_WIDTH_80;
  336. if (rtw_get_offset_by_chbw(chan->hw_value, *bw, offset))
  337. *ch = chan->hw_value;
  338. break;
  339. case NL80211_CHAN_WIDTH_160:
  340. *ht = 1;
  341. *bw = CHANNEL_WIDTH_160;
  342. if (rtw_get_offset_by_chbw(chan->hw_value, *bw, offset))
  343. *ch = chan->hw_value;
  344. break;
  345. case NL80211_CHAN_WIDTH_80P80:
  346. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  347. case NL80211_CHAN_WIDTH_5:
  348. case NL80211_CHAN_WIDTH_10:
  349. #endif
  350. default:
  351. *ht = 0;
  352. *bw = CHANNEL_WIDTH_20;
  353. *offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  354. RTW_INFO("unsupported cwidth:%s\n", nl80211_chan_width_str(chdef->width));
  355. rtw_warn_on(1);
  356. };
  357. }
  358. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0)) */
  359. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  360. u8 rtw_cfg80211_ch_switch_notify(_adapter *adapter, u8 ch, u8 bw, u8 offset, u8 ht)
  361. {
  362. struct wiphy *wiphy = adapter_to_wiphy(adapter);
  363. u8 ret = _SUCCESS;
  364. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  365. struct cfg80211_chan_def chdef;
  366. ret = rtw_chbw_to_cfg80211_chan_def(wiphy, &chdef, ch, bw, offset, ht);
  367. if (ret != _SUCCESS)
  368. goto exit;
  369. #if LINUX_VERSION_CODE < KERNEL_VERSION(5, 19, 2)
  370. cfg80211_ch_switch_notify(adapter->pnetdev, &chdef);
  371. #else
  372. cfg80211_ch_switch_notify(adapter->pnetdev, &chdef, 0);
  373. #endif
  374. #else
  375. int freq = rtw_ch2freq(ch);
  376. enum nl80211_channel_type ctype;
  377. if (!freq) {
  378. ret = _FAIL;
  379. goto exit;
  380. }
  381. ctype = rtw_chbw_to_nl80211_channel_type(ch, bw, offset, ht);
  382. cfg80211_ch_switch_notify(adapter->pnetdev, freq, ctype);
  383. #endif
  384. exit:
  385. return ret;
  386. }
  387. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0)) */
  388. void rtw_2g_channels_init(struct ieee80211_channel *channels)
  389. {
  390. _rtw_memcpy((void *)channels, (void *)rtw_2ghz_channels, sizeof(rtw_2ghz_channels));
  391. }
  392. void rtw_5g_channels_init(struct ieee80211_channel *channels)
  393. {
  394. _rtw_memcpy((void *)channels, (void *)rtw_5ghz_a_channels, sizeof(rtw_5ghz_a_channels));
  395. }
  396. void rtw_2g_rates_init(struct ieee80211_rate *rates)
  397. {
  398. _rtw_memcpy(rates, rtw_g_rates,
  399. sizeof(struct ieee80211_rate) * RTW_G_RATES_NUM
  400. );
  401. }
  402. void rtw_5g_rates_init(struct ieee80211_rate *rates)
  403. {
  404. _rtw_memcpy(rates, rtw_a_rates,
  405. sizeof(struct ieee80211_rate) * RTW_A_RATES_NUM
  406. );
  407. }
  408. struct ieee80211_supported_band *rtw_spt_band_alloc(BAND_TYPE band)
  409. {
  410. struct ieee80211_supported_band *spt_band = NULL;
  411. int n_channels, n_bitrates;
  412. if (band == BAND_ON_2_4G) {
  413. n_channels = MAX_CHANNEL_NUM_2G;
  414. n_bitrates = RTW_G_RATES_NUM;
  415. } else if (band == BAND_ON_5G) {
  416. n_channels = MAX_CHANNEL_NUM_5G;
  417. n_bitrates = RTW_A_RATES_NUM;
  418. } else
  419. goto exit;
  420. spt_band = (struct ieee80211_supported_band *)rtw_zmalloc(
  421. sizeof(struct ieee80211_supported_band)
  422. + sizeof(struct ieee80211_channel) * n_channels
  423. + sizeof(struct ieee80211_rate) * n_bitrates
  424. );
  425. if (!spt_band)
  426. goto exit;
  427. spt_band->channels = (struct ieee80211_channel *)(((u8 *)spt_band) + sizeof(struct ieee80211_supported_band));
  428. spt_band->bitrates = (struct ieee80211_rate *)(((u8 *)spt_band->channels) + sizeof(struct ieee80211_channel) * n_channels);
  429. spt_band->band = rtw_band_to_nl80211_band(band);
  430. spt_band->n_channels = n_channels;
  431. spt_band->n_bitrates = n_bitrates;
  432. if (band == BAND_ON_2_4G) {
  433. rtw_2g_channels_init(spt_band->channels);
  434. rtw_2g_rates_init(spt_band->bitrates);
  435. } else if (band == BAND_ON_5G) {
  436. rtw_5g_channels_init(spt_band->channels);
  437. rtw_5g_rates_init(spt_band->bitrates);
  438. }
  439. /* spt_band.ht_cap */
  440. exit:
  441. return spt_band;
  442. }
  443. void rtw_spt_band_free(struct ieee80211_supported_band *spt_band)
  444. {
  445. u32 size = 0;
  446. if (!spt_band)
  447. return;
  448. if (spt_band->band == NL80211_BAND_2GHZ) {
  449. size = sizeof(struct ieee80211_supported_band)
  450. + sizeof(struct ieee80211_channel) * MAX_CHANNEL_NUM_2G
  451. + sizeof(struct ieee80211_rate) * RTW_G_RATES_NUM;
  452. } else if (spt_band->band == NL80211_BAND_5GHZ) {
  453. size = sizeof(struct ieee80211_supported_band)
  454. + sizeof(struct ieee80211_channel) * MAX_CHANNEL_NUM_5G
  455. + sizeof(struct ieee80211_rate) * RTW_A_RATES_NUM;
  456. } else {
  457. }
  458. rtw_mfree((u8 *)spt_band, size);
  459. }
  460. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  461. static const struct ieee80211_txrx_stypes
  462. rtw_cfg80211_default_mgmt_stypes[NUM_NL80211_IFTYPES] = {
  463. [NL80211_IFTYPE_ADHOC] = {
  464. .tx = 0xffff,
  465. .rx = BIT(IEEE80211_STYPE_ACTION >> 4)
  466. },
  467. [NL80211_IFTYPE_STATION] = {
  468. .tx = 0xffff,
  469. .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
  470. BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
  471. },
  472. [NL80211_IFTYPE_AP] = {
  473. .tx = 0xffff,
  474. .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
  475. BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
  476. BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
  477. BIT(IEEE80211_STYPE_DISASSOC >> 4) |
  478. BIT(IEEE80211_STYPE_AUTH >> 4) |
  479. BIT(IEEE80211_STYPE_DEAUTH >> 4) |
  480. BIT(IEEE80211_STYPE_ACTION >> 4)
  481. },
  482. [NL80211_IFTYPE_AP_VLAN] = {
  483. /* copy AP */
  484. .tx = 0xffff,
  485. .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
  486. BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
  487. BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
  488. BIT(IEEE80211_STYPE_DISASSOC >> 4) |
  489. BIT(IEEE80211_STYPE_AUTH >> 4) |
  490. BIT(IEEE80211_STYPE_DEAUTH >> 4) |
  491. BIT(IEEE80211_STYPE_ACTION >> 4)
  492. },
  493. [NL80211_IFTYPE_P2P_CLIENT] = {
  494. .tx = 0xffff,
  495. .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
  496. BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
  497. },
  498. [NL80211_IFTYPE_P2P_GO] = {
  499. .tx = 0xffff,
  500. .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
  501. BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
  502. BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
  503. BIT(IEEE80211_STYPE_DISASSOC >> 4) |
  504. BIT(IEEE80211_STYPE_AUTH >> 4) |
  505. BIT(IEEE80211_STYPE_DEAUTH >> 4) |
  506. BIT(IEEE80211_STYPE_ACTION >> 4)
  507. },
  508. #if defined(RTW_DEDICATED_P2P_DEVICE)
  509. [NL80211_IFTYPE_P2P_DEVICE] = {
  510. .tx = 0xffff,
  511. .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
  512. BIT(IEEE80211_STYPE_PROBE_REQ >> 4)
  513. },
  514. #endif
  515. #if defined(CONFIG_RTW_MESH)
  516. [NL80211_IFTYPE_MESH_POINT] = {
  517. .tx = 0xffff,
  518. .rx = BIT(IEEE80211_STYPE_ACTION >> 4)
  519. | BIT(IEEE80211_STYPE_AUTH >> 4)
  520. },
  521. #endif
  522. };
  523. #endif
  524. NDIS_802_11_NETWORK_INFRASTRUCTURE nl80211_iftype_to_rtw_network_type(enum nl80211_iftype type)
  525. {
  526. switch (type) {
  527. case NL80211_IFTYPE_ADHOC:
  528. return Ndis802_11IBSS;
  529. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  530. case NL80211_IFTYPE_P2P_CLIENT:
  531. #endif
  532. case NL80211_IFTYPE_STATION:
  533. return Ndis802_11Infrastructure;
  534. #ifdef CONFIG_AP_MODE
  535. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  536. case NL80211_IFTYPE_P2P_GO:
  537. #endif
  538. case NL80211_IFTYPE_AP:
  539. return Ndis802_11APMode;
  540. #endif
  541. #ifdef CONFIG_RTW_MESH
  542. case NL80211_IFTYPE_MESH_POINT:
  543. return Ndis802_11_mesh;
  544. #endif
  545. case NL80211_IFTYPE_MONITOR:
  546. return Ndis802_11Monitor;
  547. default:
  548. return Ndis802_11InfrastructureMax;
  549. }
  550. }
  551. u32 nl80211_iftype_to_rtw_mlme_state(enum nl80211_iftype type)
  552. {
  553. switch (type) {
  554. case NL80211_IFTYPE_ADHOC:
  555. return WIFI_ADHOC_STATE;
  556. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  557. case NL80211_IFTYPE_P2P_CLIENT:
  558. #endif
  559. case NL80211_IFTYPE_STATION:
  560. return WIFI_STATION_STATE;
  561. #ifdef CONFIG_AP_MODE
  562. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  563. case NL80211_IFTYPE_P2P_GO:
  564. #endif
  565. case NL80211_IFTYPE_AP:
  566. return WIFI_AP_STATE;
  567. #endif
  568. #ifdef CONFIG_RTW_MESH
  569. case NL80211_IFTYPE_MESH_POINT:
  570. return WIFI_MESH_STATE;
  571. #endif
  572. case NL80211_IFTYPE_MONITOR:
  573. return WIFI_MONITOR_STATE;
  574. default:
  575. return WIFI_NULL_STATE;
  576. }
  577. }
  578. static int rtw_cfg80211_sync_iftype(_adapter *adapter)
  579. {
  580. struct wireless_dev *rtw_wdev = adapter->rtw_wdev;
  581. if (!(nl80211_iftype_to_rtw_mlme_state(rtw_wdev->iftype) & MLME_STATE(adapter))) {
  582. /* iftype and mlme state is not syc */
  583. NDIS_802_11_NETWORK_INFRASTRUCTURE network_type;
  584. network_type = nl80211_iftype_to_rtw_network_type(rtw_wdev->iftype);
  585. if (network_type != Ndis802_11InfrastructureMax) {
  586. if (rtw_pwr_wakeup(adapter) == _FAIL) {
  587. RTW_WARN(FUNC_ADPT_FMT" call rtw_pwr_wakeup fail\n", FUNC_ADPT_ARG(adapter));
  588. return _FAIL;
  589. }
  590. rtw_set_802_11_infrastructure_mode(adapter, network_type);
  591. rtw_setopmode_cmd(adapter, network_type, RTW_CMDF_WAIT_ACK);
  592. } else {
  593. rtw_warn_on(1);
  594. RTW_WARN(FUNC_ADPT_FMT" iftype:%u is not support\n", FUNC_ADPT_ARG(adapter), rtw_wdev->iftype);
  595. return _FAIL;
  596. }
  597. }
  598. return _SUCCESS;
  599. }
  600. static u64 rtw_get_systime_us(void)
  601. {
  602. return ktime_to_us(ktime_get_boottime());
  603. }
  604. /* Try to remove non target BSS's SR to reduce PBC overlap rate */
  605. static int rtw_cfg80211_clear_wps_sr_of_non_target_bss(_adapter *padapter, struct wlan_network *pnetwork, struct cfg80211_ssid *req_ssid)
  606. {
  607. int ret = 0;
  608. u8 *psr = NULL, sr = 0;
  609. NDIS_802_11_SSID *pssid = &pnetwork->network.Ssid;
  610. u32 wpsielen = 0;
  611. u8 *wpsie = NULL;
  612. if (pssid->SsidLength == req_ssid->ssid_len
  613. && _rtw_memcmp(pssid->Ssid, req_ssid->ssid, req_ssid->ssid_len) == _TRUE)
  614. goto exit;
  615. wpsie = rtw_get_wps_ie(pnetwork->network.IEs + _FIXED_IE_LENGTH_
  616. , pnetwork->network.IELength - _FIXED_IE_LENGTH_, NULL, &wpsielen);
  617. if (wpsie && wpsielen > 0)
  618. psr = rtw_get_wps_attr_content(wpsie, wpsielen, WPS_ATTR_SELECTED_REGISTRAR, &sr, NULL);
  619. if (psr && sr) {
  620. if (0)
  621. RTW_INFO("clear sr of non target bss:%s("MAC_FMT")\n"
  622. , pssid->Ssid, MAC_ARG(pnetwork->network.MacAddress));
  623. *psr = 0; /* clear sr */
  624. ret = 1;
  625. }
  626. exit:
  627. return ret;
  628. }
  629. #define MAX_BSSINFO_LEN 1000
  630. struct cfg80211_bss *rtw_cfg80211_inform_bss(_adapter *padapter, struct wlan_network *pnetwork)
  631. {
  632. struct ieee80211_channel *notify_channel;
  633. struct cfg80211_bss *bss = NULL;
  634. /* struct ieee80211_supported_band *band; */
  635. u16 channel;
  636. u32 freq;
  637. u64 notify_timestamp;
  638. u16 notify_capability;
  639. u16 notify_interval;
  640. u8 *notify_ie;
  641. size_t notify_ielen;
  642. s32 notify_signal;
  643. /* u8 buf[MAX_BSSINFO_LEN]; */
  644. u8 *pbuf;
  645. size_t buf_size = MAX_BSSINFO_LEN;
  646. size_t len, bssinf_len = 0;
  647. struct rtw_ieee80211_hdr *pwlanhdr;
  648. unsigned short *fctrl;
  649. u8 bc_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
  650. struct wireless_dev *wdev = padapter->rtw_wdev;
  651. struct wiphy *wiphy = wdev->wiphy;
  652. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  653. pbuf = rtw_zmalloc(buf_size);
  654. if (pbuf == NULL) {
  655. RTW_INFO("%s pbuf allocate failed !!\n", __FUNCTION__);
  656. return bss;
  657. }
  658. /* RTW_INFO("%s\n", __func__); */
  659. bssinf_len = pnetwork->network.IELength + sizeof(struct rtw_ieee80211_hdr_3addr);
  660. if (bssinf_len > buf_size) {
  661. RTW_INFO("%s IE Length too long > %zu byte\n", __FUNCTION__, buf_size);
  662. goto exit;
  663. }
  664. #ifndef CONFIG_WAPI_SUPPORT
  665. {
  666. u16 wapi_len = 0;
  667. if (rtw_get_wapi_ie(pnetwork->network.IEs, pnetwork->network.IELength, NULL, &wapi_len) > 0) {
  668. if (wapi_len > 0) {
  669. RTW_INFO("%s, no support wapi!\n", __FUNCTION__);
  670. goto exit;
  671. }
  672. }
  673. }
  674. #endif /* !CONFIG_WAPI_SUPPORT */
  675. channel = pnetwork->network.Configuration.DSConfig;
  676. freq = rtw_ch2freq(channel);
  677. notify_channel = ieee80211_get_channel(wiphy, freq);
  678. if (0)
  679. notify_timestamp = le64_to_cpu(*(u64 *)rtw_get_timestampe_from_ie(pnetwork->network.IEs));
  680. else
  681. notify_timestamp = rtw_get_systime_us();
  682. notify_interval = le16_to_cpu(*(u16 *)rtw_get_beacon_interval_from_ie(pnetwork->network.IEs));
  683. notify_capability = le16_to_cpu(*(u16 *)rtw_get_capability_from_ie(pnetwork->network.IEs));
  684. notify_ie = pnetwork->network.IEs + _FIXED_IE_LENGTH_;
  685. notify_ielen = pnetwork->network.IELength - _FIXED_IE_LENGTH_;
  686. /* We've set wiphy's signal_type as CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm) */
  687. if (check_fwstate(pmlmepriv, _FW_LINKED) == _TRUE &&
  688. is_same_network(&pmlmepriv->cur_network.network, &pnetwork->network, 0)) {
  689. notify_signal = 100 * translate_percentage_to_dbm(padapter->recvpriv.signal_strength); /* dbm */
  690. } else {
  691. notify_signal = 100 * translate_percentage_to_dbm(pnetwork->network.PhyInfo.SignalStrength); /* dbm */
  692. }
  693. #if 0
  694. RTW_INFO("bssid: "MAC_FMT"\n", MAC_ARG(pnetwork->network.MacAddress));
  695. RTW_INFO("Channel: %d(%d)\n", channel, freq);
  696. RTW_INFO("Capability: %X\n", notify_capability);
  697. RTW_INFO("Beacon interval: %d\n", notify_interval);
  698. RTW_INFO("Signal: %d\n", notify_signal);
  699. RTW_INFO("notify_timestamp: %llu\n", notify_timestamp);
  700. #endif
  701. /* pbuf = buf; */
  702. pwlanhdr = (struct rtw_ieee80211_hdr *)pbuf;
  703. fctrl = &(pwlanhdr->frame_ctl);
  704. *(fctrl) = 0;
  705. SetSeqNum(pwlanhdr, 0/*pmlmeext->mgnt_seq*/);
  706. /* pmlmeext->mgnt_seq++; */
  707. if (pnetwork->network.Reserved[0] == BSS_TYPE_BCN) { /* WIFI_BEACON */
  708. _rtw_memcpy(pwlanhdr->addr1, bc_addr, ETH_ALEN);
  709. set_frame_sub_type(pbuf, WIFI_BEACON);
  710. } else {
  711. _rtw_memcpy(pwlanhdr->addr1, adapter_mac_addr(padapter), ETH_ALEN);
  712. set_frame_sub_type(pbuf, WIFI_PROBERSP);
  713. }
  714. _rtw_memcpy(pwlanhdr->addr2, pnetwork->network.MacAddress, ETH_ALEN);
  715. _rtw_memcpy(pwlanhdr->addr3, pnetwork->network.MacAddress, ETH_ALEN);
  716. /* pbuf += sizeof(struct rtw_ieee80211_hdr_3addr); */
  717. len = sizeof(struct rtw_ieee80211_hdr_3addr);
  718. _rtw_memcpy((pbuf + len), pnetwork->network.IEs, pnetwork->network.IELength);
  719. *((u64 *)(pbuf + len)) = cpu_to_le64(notify_timestamp);
  720. len += pnetwork->network.IELength;
  721. #if defined(CONFIG_P2P) && 0
  722. if(rtw_get_p2p_ie(pnetwork->network.IEs+12, pnetwork->network.IELength-12, NULL, NULL))
  723. RTW_INFO("%s, got p2p_ie\n", __func__);
  724. #endif
  725. #if 1
  726. bss = cfg80211_inform_bss_frame(wiphy, notify_channel, (struct ieee80211_mgmt *)pbuf,
  727. len, notify_signal, GFP_ATOMIC);
  728. #else
  729. bss = cfg80211_inform_bss(wiphy, notify_channel, (const u8 *)pnetwork->network.MacAddress,
  730. notify_timestamp, notify_capability, notify_interval, notify_ie,
  731. notify_ielen, notify_signal, GFP_ATOMIC/*GFP_KERNEL*/);
  732. #endif
  733. if (unlikely(!bss)) {
  734. RTW_INFO(FUNC_ADPT_FMT" bss NULL\n", FUNC_ADPT_ARG(padapter));
  735. goto exit;
  736. }
  737. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 38))
  738. #ifndef COMPAT_KERNEL_RELEASE
  739. /* patch for cfg80211, update beacon ies to information_elements */
  740. if (pnetwork->network.Reserved[0] == BSS_TYPE_BCN) { /* WIFI_BEACON */
  741. if (bss->len_information_elements != bss->len_beacon_ies) {
  742. bss->information_elements = bss->beacon_ies;
  743. bss->len_information_elements = bss->len_beacon_ies;
  744. }
  745. }
  746. #endif /* COMPAT_KERNEL_RELEASE */
  747. #endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 38) */
  748. #if 0
  749. {
  750. if (bss->information_elements == bss->proberesp_ies) {
  751. if (bss->len_information_elements != bss->len_proberesp_ies)
  752. RTW_INFO("error!, len_information_elements != bss->len_proberesp_ies\n");
  753. } else if (bss->len_information_elements < bss->len_beacon_ies) {
  754. bss->information_elements = bss->beacon_ies;
  755. bss->len_information_elements = bss->len_beacon_ies;
  756. }
  757. }
  758. #endif
  759. #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)
  760. cfg80211_put_bss(wiphy, bss);
  761. #else
  762. cfg80211_put_bss(bss);
  763. #endif
  764. exit:
  765. if (pbuf)
  766. rtw_mfree(pbuf, buf_size);
  767. return bss;
  768. }
  769. /*
  770. Check the given bss is valid by kernel API cfg80211_get_bss()
  771. @padapter : the given adapter
  772. return _TRUE if bss is valid, _FALSE for not found.
  773. */
  774. int rtw_cfg80211_check_bss(_adapter *padapter)
  775. {
  776. WLAN_BSSID_EX *pnetwork = &(padapter->mlmeextpriv.mlmext_info.network);
  777. struct cfg80211_bss *bss = NULL;
  778. struct ieee80211_channel *notify_channel = NULL;
  779. u32 freq;
  780. if (!(pnetwork) || !(padapter->rtw_wdev))
  781. return _FALSE;
  782. freq = rtw_ch2freq(pnetwork->Configuration.DSConfig);
  783. notify_channel = ieee80211_get_channel(padapter->rtw_wdev->wiphy, freq);
  784. bss = cfg80211_get_bss(padapter->rtw_wdev->wiphy, notify_channel,
  785. pnetwork->MacAddress, pnetwork->Ssid.Ssid,
  786. pnetwork->Ssid.SsidLength,
  787. #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 1, 0)
  788. pnetwork->InfrastructureMode == Ndis802_11Infrastructure?IEEE80211_BSS_TYPE_ESS:IEEE80211_BSS_TYPE_IBSS,
  789. IEEE80211_PRIVACY(pnetwork->Privacy));
  790. #else
  791. pnetwork->InfrastructureMode == Ndis802_11Infrastructure?WLAN_CAPABILITY_ESS:WLAN_CAPABILITY_IBSS, pnetwork->InfrastructureMode == Ndis802_11Infrastructure?WLAN_CAPABILITY_ESS:WLAN_CAPABILITY_IBSS);
  792. #endif
  793. #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)
  794. cfg80211_put_bss(padapter->rtw_wdev->wiphy, bss);
  795. #else
  796. cfg80211_put_bss(bss);
  797. #endif
  798. return bss != NULL;
  799. }
  800. void rtw_cfg80211_ibss_indicate_connect(_adapter *padapter)
  801. {
  802. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  803. struct wlan_network *cur_network = &(pmlmepriv->cur_network);
  804. struct wireless_dev *pwdev = padapter->rtw_wdev;
  805. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0))
  806. struct wiphy *wiphy = pwdev->wiphy;
  807. int freq = 2412;
  808. struct ieee80211_channel *notify_channel;
  809. #endif
  810. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(padapter));
  811. if (pwdev->iftype != NL80211_IFTYPE_ADHOC)
  812. return;
  813. if (!rtw_cfg80211_check_bss(padapter)) {
  814. WLAN_BSSID_EX *pnetwork = &(padapter->mlmeextpriv.mlmext_info.network);
  815. struct wlan_network *scanned = pmlmepriv->cur_network_scanned;
  816. if (check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) == _TRUE) {
  817. _rtw_memcpy(&cur_network->network, pnetwork, sizeof(WLAN_BSSID_EX));
  818. if (cur_network) {
  819. if (!rtw_cfg80211_inform_bss(padapter, cur_network))
  820. RTW_INFO(FUNC_ADPT_FMT" inform fail !!\n", FUNC_ADPT_ARG(padapter));
  821. else
  822. RTW_INFO(FUNC_ADPT_FMT" inform success !!\n", FUNC_ADPT_ARG(padapter));
  823. } else {
  824. RTW_INFO("cur_network is not exist!!!\n");
  825. return ;
  826. }
  827. } else {
  828. if (scanned == NULL)
  829. rtw_warn_on(1);
  830. if (_rtw_memcmp(&(scanned->network.Ssid), &(pnetwork->Ssid), sizeof(NDIS_802_11_SSID)) == _TRUE
  831. && _rtw_memcmp(scanned->network.MacAddress, pnetwork->MacAddress, sizeof(NDIS_802_11_MAC_ADDRESS)) == _TRUE
  832. ) {
  833. if (!rtw_cfg80211_inform_bss(padapter, scanned))
  834. RTW_INFO(FUNC_ADPT_FMT" inform fail !!\n", FUNC_ADPT_ARG(padapter));
  835. else {
  836. /* RTW_INFO(FUNC_ADPT_FMT" inform success !!\n", FUNC_ADPT_ARG(padapter)); */
  837. }
  838. } else {
  839. RTW_INFO("scanned & pnetwork compare fail\n");
  840. rtw_warn_on(1);
  841. }
  842. }
  843. if (!rtw_cfg80211_check_bss(padapter))
  844. RTW_PRINT(FUNC_ADPT_FMT" BSS not found !!\n", FUNC_ADPT_ARG(padapter));
  845. }
  846. /* notify cfg80211 that device joined an IBSS */
  847. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0))
  848. freq = rtw_ch2freq(cur_network->network.Configuration.DSConfig);
  849. if (1)
  850. RTW_INFO("chan: %d, freq: %d\n", cur_network->network.Configuration.DSConfig, freq);
  851. notify_channel = ieee80211_get_channel(wiphy, freq);
  852. cfg80211_ibss_joined(padapter->pnetdev, cur_network->network.MacAddress, notify_channel, GFP_ATOMIC);
  853. #else
  854. cfg80211_ibss_joined(padapter->pnetdev, cur_network->network.MacAddress, GFP_ATOMIC);
  855. #endif
  856. }
  857. void rtw_cfg80211_indicate_connect(_adapter *padapter)
  858. {
  859. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  860. struct wlan_network *cur_network = &(pmlmepriv->cur_network);
  861. struct wireless_dev *pwdev = padapter->rtw_wdev;
  862. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  863. _irqL irqL;
  864. #ifdef CONFIG_P2P
  865. struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
  866. #endif
  867. #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
  868. struct cfg80211_roam_info roam_info ={};
  869. #endif
  870. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(padapter));
  871. if (pwdev->iftype != NL80211_IFTYPE_STATION
  872. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  873. && pwdev->iftype != NL80211_IFTYPE_P2P_CLIENT
  874. #endif
  875. )
  876. return;
  877. if (!MLME_IS_STA(padapter))
  878. return;
  879. #ifdef CONFIG_P2P
  880. if (pwdinfo->driver_interface == DRIVER_CFG80211) {
  881. #if !RTW_P2P_GROUP_INTERFACE
  882. if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) {
  883. rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo));
  884. rtw_p2p_set_role(pwdinfo, P2P_ROLE_CLIENT);
  885. rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK);
  886. RTW_INFO("%s, role=%d, p2p_state=%d, pre_p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), rtw_p2p_pre_state(pwdinfo));
  887. }
  888. #endif
  889. }
  890. #endif /* CONFIG_P2P */
  891. if (check_fwstate(pmlmepriv, WIFI_MONITOR_STATE) != _TRUE) {
  892. WLAN_BSSID_EX *pnetwork = &(padapter->mlmeextpriv.mlmext_info.network);
  893. struct wlan_network *scanned = pmlmepriv->cur_network_scanned;
  894. /* RTW_INFO(FUNC_ADPT_FMT" BSS not found\n", FUNC_ADPT_ARG(padapter)); */
  895. if (scanned == NULL) {
  896. rtw_warn_on(1);
  897. goto check_bss;
  898. }
  899. if (_rtw_memcmp(scanned->network.MacAddress, pnetwork->MacAddress, sizeof(NDIS_802_11_MAC_ADDRESS)) == _TRUE
  900. && _rtw_memcmp(&(scanned->network.Ssid), &(pnetwork->Ssid), sizeof(NDIS_802_11_SSID)) == _TRUE
  901. ) {
  902. if (!rtw_cfg80211_inform_bss(padapter, scanned))
  903. RTW_INFO(FUNC_ADPT_FMT" inform fail !!\n", FUNC_ADPT_ARG(padapter));
  904. else {
  905. /* RTW_INFO(FUNC_ADPT_FMT" inform success !!\n", FUNC_ADPT_ARG(padapter)); */
  906. }
  907. } else {
  908. RTW_INFO("scanned: %s("MAC_FMT"), cur: %s("MAC_FMT")\n",
  909. scanned->network.Ssid.Ssid, MAC_ARG(scanned->network.MacAddress),
  910. pnetwork->Ssid.Ssid, MAC_ARG(pnetwork->MacAddress)
  911. );
  912. rtw_warn_on(1);
  913. }
  914. }
  915. check_bss:
  916. if (!rtw_cfg80211_check_bss(padapter))
  917. RTW_PRINT(FUNC_ADPT_FMT" BSS not found !!\n", FUNC_ADPT_ARG(padapter));
  918. _enter_critical_bh(&pwdev_priv->connect_req_lock, &irqL);
  919. if (rtw_to_roam(padapter) > 0) {
  920. #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39) || defined(COMPAT_KERNEL_RELEASE)
  921. struct wiphy *wiphy = pwdev->wiphy;
  922. struct ieee80211_channel *notify_channel;
  923. u32 freq;
  924. u16 channel = cur_network->network.Configuration.DSConfig;
  925. freq = rtw_ch2freq(channel);
  926. notify_channel = ieee80211_get_channel(wiphy, freq);
  927. #endif
  928. #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
  929. #if LINUX_VERSION_CODE < KERNEL_VERSION(6, 0, 0)
  930. roam_info.channel = notify_channel;
  931. roam_info.bssid = cur_network->network.MacAddress;
  932. #else
  933. roam_info.links[0].channel = notify_channel;
  934. roam_info.links[0].bssid = cur_network->network.MacAddress;
  935. #endif
  936. roam_info.req_ie = pmlmepriv->assoc_req + sizeof(struct rtw_ieee80211_hdr_3addr) + 2;
  937. roam_info.req_ie_len = pmlmepriv->assoc_req_len - sizeof(struct rtw_ieee80211_hdr_3addr) - 2;
  938. roam_info.resp_ie = pmlmepriv->assoc_rsp + sizeof(struct rtw_ieee80211_hdr_3addr) + 6;
  939. roam_info.resp_ie_len = pmlmepriv->assoc_rsp_len - sizeof(struct rtw_ieee80211_hdr_3addr) - 6;
  940. cfg80211_roamed(padapter->pnetdev, &roam_info, GFP_ATOMIC);
  941. #else
  942. cfg80211_roamed(padapter->pnetdev
  943. #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 39) || defined(COMPAT_KERNEL_RELEASE)
  944. , notify_channel
  945. #endif
  946. , cur_network->network.MacAddress
  947. , pmlmepriv->assoc_req + sizeof(struct rtw_ieee80211_hdr_3addr) + 2
  948. , pmlmepriv->assoc_req_len - sizeof(struct rtw_ieee80211_hdr_3addr) - 2
  949. , pmlmepriv->assoc_rsp + sizeof(struct rtw_ieee80211_hdr_3addr) + 6
  950. , pmlmepriv->assoc_rsp_len - sizeof(struct rtw_ieee80211_hdr_3addr) - 6
  951. , GFP_ATOMIC);
  952. #endif /*LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)*/
  953. RTW_INFO(FUNC_ADPT_FMT" call cfg80211_roamed\n", FUNC_ADPT_ARG(padapter));
  954. #ifdef CONFIG_RTW_80211R
  955. if (rtw_ft_roam(padapter))
  956. rtw_ft_set_status(padapter, RTW_FT_ASSOCIATED_STA);
  957. #endif
  958. } else {
  959. #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 11, 0) || defined(COMPAT_KERNEL_RELEASE)
  960. RTW_INFO("pwdev->sme_state(b)=%d\n", pwdev->sme_state);
  961. #endif
  962. if (check_fwstate(pmlmepriv, WIFI_MONITOR_STATE) != _TRUE)
  963. rtw_cfg80211_connect_result(pwdev, cur_network->network.MacAddress
  964. , pmlmepriv->assoc_req + sizeof(struct rtw_ieee80211_hdr_3addr) + 2
  965. , pmlmepriv->assoc_req_len - sizeof(struct rtw_ieee80211_hdr_3addr) - 2
  966. , pmlmepriv->assoc_rsp + sizeof(struct rtw_ieee80211_hdr_3addr) + 6
  967. , pmlmepriv->assoc_rsp_len - sizeof(struct rtw_ieee80211_hdr_3addr) - 6
  968. , WLAN_STATUS_SUCCESS, GFP_ATOMIC);
  969. #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 11, 0) || defined(COMPAT_KERNEL_RELEASE)
  970. RTW_INFO("pwdev->sme_state(a)=%d\n", pwdev->sme_state);
  971. #endif
  972. }
  973. rtw_wdev_free_connect_req(pwdev_priv);
  974. _exit_critical_bh(&pwdev_priv->connect_req_lock, &irqL);
  975. }
  976. void rtw_cfg80211_indicate_disconnect(_adapter *padapter, u16 reason, u8 locally_generated)
  977. {
  978. struct wireless_dev *pwdev = padapter->rtw_wdev;
  979. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  980. _irqL irqL;
  981. #ifdef CONFIG_P2P
  982. struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
  983. #endif
  984. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(padapter));
  985. /*always replace privated definitions with wifi reserved value 0*/
  986. if (WLAN_REASON_IS_PRIVATE(reason))
  987. reason = 0;
  988. if (pwdev->iftype != NL80211_IFTYPE_STATION
  989. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  990. && pwdev->iftype != NL80211_IFTYPE_P2P_CLIENT
  991. #endif
  992. )
  993. return;
  994. if (!MLME_IS_STA(padapter))
  995. return;
  996. #ifdef CONFIG_P2P
  997. if (pwdinfo->driver_interface == DRIVER_CFG80211) {
  998. if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) {
  999. rtw_p2p_set_state(pwdinfo, rtw_p2p_pre_state(pwdinfo));
  1000. #if RTW_P2P_GROUP_INTERFACE
  1001. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  1002. if (pwdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
  1003. #endif
  1004. #endif
  1005. rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
  1006. RTW_INFO("%s, role=%d, p2p_state=%d, pre_p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo), rtw_p2p_pre_state(pwdinfo));
  1007. }
  1008. }
  1009. #endif /* CONFIG_P2P */
  1010. _enter_critical_bh(&pwdev_priv->connect_req_lock, &irqL);
  1011. if (padapter->ndev_unregistering || !rtw_wdev_not_indic_disco(pwdev_priv)) {
  1012. #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 11, 0) || defined(COMPAT_KERNEL_RELEASE)
  1013. RTW_INFO("pwdev->sme_state(b)=%d\n", pwdev->sme_state);
  1014. if (pwdev->sme_state == CFG80211_SME_CONNECTING) {
  1015. RTW_INFO(FUNC_ADPT_FMT" call cfg80211_connect_result\n", FUNC_ADPT_ARG(padapter));
  1016. rtw_cfg80211_connect_result(pwdev, NULL, NULL, 0, NULL, 0,
  1017. reason, GFP_ATOMIC);
  1018. } else if (pwdev->sme_state == CFG80211_SME_CONNECTED) {
  1019. RTW_INFO(FUNC_ADPT_FMT" call cfg80211_disconnected\n", FUNC_ADPT_ARG(padapter));
  1020. rtw_cfg80211_disconnected(pwdev, reason, NULL, 0, locally_generated, GFP_ATOMIC);
  1021. }
  1022. RTW_INFO("pwdev->sme_state(a)=%d\n", pwdev->sme_state);
  1023. #else
  1024. if (pwdev_priv->connect_req) {
  1025. RTW_INFO(FUNC_ADPT_FMT" call cfg80211_connect_result\n", FUNC_ADPT_ARG(padapter));
  1026. rtw_cfg80211_connect_result(pwdev, NULL, NULL, 0, NULL, 0,
  1027. reason, GFP_ATOMIC);
  1028. } else {
  1029. RTW_INFO(FUNC_ADPT_FMT" call cfg80211_disconnected\n", FUNC_ADPT_ARG(padapter));
  1030. rtw_cfg80211_disconnected(pwdev, reason, NULL, 0, locally_generated, GFP_ATOMIC);
  1031. }
  1032. #endif
  1033. }
  1034. rtw_wdev_free_connect_req(pwdev_priv);
  1035. _exit_critical_bh(&pwdev_priv->connect_req_lock, &irqL);
  1036. }
  1037. #ifdef CONFIG_AP_MODE
  1038. static int rtw_cfg80211_ap_set_encryption(struct net_device *dev, struct ieee_param *param)
  1039. {
  1040. int ret = 0;
  1041. u32 wep_key_idx, wep_key_len;
  1042. struct sta_info *psta = NULL, *pbcmc_sta = NULL;
  1043. _adapter *padapter = (_adapter *)rtw_netdev_priv(dev);
  1044. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  1045. struct security_priv *psecuritypriv = &(padapter->securitypriv);
  1046. struct sta_priv *pstapriv = &padapter->stapriv;
  1047. RTW_INFO("%s\n", __FUNCTION__);
  1048. param->u.crypt.err = 0;
  1049. param->u.crypt.alg[IEEE_CRYPT_ALG_NAME_LEN - 1] = '\0';
  1050. if (is_broadcast_mac_addr(param->sta_addr)) {
  1051. if (param->u.crypt.idx >= WEP_KEYS
  1052. #ifdef CONFIG_IEEE80211W
  1053. && param->u.crypt.idx > BIP_MAX_KEYID
  1054. #endif
  1055. ) {
  1056. ret = -EINVAL;
  1057. goto exit;
  1058. }
  1059. } else {
  1060. psta = rtw_get_stainfo(pstapriv, param->sta_addr);
  1061. if (!psta) {
  1062. ret = -EINVAL;
  1063. RTW_INFO(FUNC_ADPT_FMT", sta "MAC_FMT" not found\n"
  1064. , FUNC_ADPT_ARG(padapter), MAC_ARG(param->sta_addr));
  1065. goto exit;
  1066. }
  1067. }
  1068. if (strcmp(param->u.crypt.alg, "none") == 0 && (psta == NULL)) {
  1069. /* todo:clear default encryption keys */
  1070. RTW_INFO("clear default encryption keys, keyid=%d\n", param->u.crypt.idx);
  1071. goto exit;
  1072. }
  1073. if (strcmp(param->u.crypt.alg, "WEP") == 0 && (psta == NULL)) {
  1074. RTW_INFO("r871x_set_encryption, crypt.alg = WEP\n");
  1075. wep_key_idx = param->u.crypt.idx;
  1076. wep_key_len = param->u.crypt.key_len;
  1077. RTW_INFO("r871x_set_encryption, wep_key_idx=%d, len=%d\n", wep_key_idx, wep_key_len);
  1078. if ((wep_key_idx >= WEP_KEYS) || (wep_key_len <= 0)) {
  1079. ret = -EINVAL;
  1080. goto exit;
  1081. }
  1082. if (wep_key_len > 0)
  1083. wep_key_len = wep_key_len <= 5 ? 5 : 13;
  1084. if (psecuritypriv->bWepDefaultKeyIdxSet == 0) {
  1085. /* wep default key has not been set, so use this key index as default key. */
  1086. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_Auto;
  1087. psecuritypriv->ndisencryptstatus = Ndis802_11Encryption1Enabled;
  1088. psecuritypriv->dot11PrivacyAlgrthm = _WEP40_;
  1089. psecuritypriv->dot118021XGrpPrivacy = _WEP40_;
  1090. if (wep_key_len == 13) {
  1091. psecuritypriv->dot11PrivacyAlgrthm = _WEP104_;
  1092. psecuritypriv->dot118021XGrpPrivacy = _WEP104_;
  1093. }
  1094. psecuritypriv->dot11PrivacyKeyIndex = wep_key_idx;
  1095. }
  1096. _rtw_memcpy(&(psecuritypriv->dot11DefKey[wep_key_idx].skey[0]), param->u.crypt.key, wep_key_len);
  1097. psecuritypriv->dot11DefKeylen[wep_key_idx] = wep_key_len;
  1098. rtw_ap_set_wep_key(padapter, param->u.crypt.key, wep_key_len, wep_key_idx, 1);
  1099. goto exit;
  1100. }
  1101. if (!psta) { /* group key */
  1102. if (param->u.crypt.set_tx == 0) { /* group key, TX only */
  1103. if (strcmp(param->u.crypt.alg, "WEP") == 0) {
  1104. RTW_INFO(FUNC_ADPT_FMT" set WEP TX GTK idx:%u, len:%u\n"
  1105. , FUNC_ADPT_ARG(padapter), param->u.crypt.idx, param->u.crypt.key_len);
  1106. _rtw_memcpy(psecuritypriv->dot118021XGrpKey[param->u.crypt.idx].skey, param->u.crypt.key, (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1107. psecuritypriv->dot118021XGrpPrivacy = _WEP40_;
  1108. if (param->u.crypt.key_len == 13)
  1109. psecuritypriv->dot118021XGrpPrivacy = _WEP104_;
  1110. } else if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
  1111. RTW_INFO(FUNC_ADPT_FMT" set TKIP TX GTK idx:%u, len:%u\n"
  1112. , FUNC_ADPT_ARG(padapter), param->u.crypt.idx, param->u.crypt.key_len);
  1113. psecuritypriv->dot118021XGrpPrivacy = _TKIP_;
  1114. _rtw_memcpy(psecuritypriv->dot118021XGrpKey[param->u.crypt.idx].skey, param->u.crypt.key, (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1115. /* set mic key */
  1116. _rtw_memcpy(psecuritypriv->dot118021XGrptxmickey[param->u.crypt.idx].skey, &(param->u.crypt.key[16]), 8);
  1117. _rtw_memcpy(psecuritypriv->dot118021XGrprxmickey[param->u.crypt.idx].skey, &(param->u.crypt.key[24]), 8);
  1118. psecuritypriv->busetkipkey = _TRUE;
  1119. } else if (strcmp(param->u.crypt.alg, "CCMP") == 0) {
  1120. RTW_INFO(FUNC_ADPT_FMT" set CCMP TX GTK idx:%u, len:%u\n"
  1121. , FUNC_ADPT_ARG(padapter), param->u.crypt.idx, param->u.crypt.key_len);
  1122. psecuritypriv->dot118021XGrpPrivacy = _AES_;
  1123. _rtw_memcpy(psecuritypriv->dot118021XGrpKey[param->u.crypt.idx].skey, param->u.crypt.key, (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1124. #ifdef CONFIG_IEEE80211W
  1125. } else if (strcmp(param->u.crypt.alg, "BIP") == 0) {
  1126. RTW_INFO(FUNC_ADPT_FMT" set TX IGTK idx:%u, len:%u\n"
  1127. , FUNC_ADPT_ARG(padapter), param->u.crypt.idx, param->u.crypt.key_len);
  1128. _rtw_memcpy(padapter->securitypriv.dot11wBIPKey[param->u.crypt.idx].skey, param->u.crypt.key, (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1129. padapter->securitypriv.dot11wBIPKeyid = param->u.crypt.idx;
  1130. psecuritypriv->dot11wBIPtxpn.val = RTW_GET_LE64(param->u.crypt.seq);
  1131. padapter->securitypriv.binstallBIPkey = _TRUE;
  1132. goto exit;
  1133. #endif /* CONFIG_IEEE80211W */
  1134. } else if (strcmp(param->u.crypt.alg, "none") == 0) {
  1135. RTW_INFO(FUNC_ADPT_FMT" clear group key, idx:%u\n"
  1136. , FUNC_ADPT_ARG(padapter), param->u.crypt.idx);
  1137. psecuritypriv->dot118021XGrpPrivacy = _NO_PRIVACY_;
  1138. } else {
  1139. RTW_WARN(FUNC_ADPT_FMT" set group key, not support\n"
  1140. , FUNC_ADPT_ARG(padapter));
  1141. goto exit;
  1142. }
  1143. psecuritypriv->dot118021XGrpKeyid = param->u.crypt.idx;
  1144. pbcmc_sta = rtw_get_bcmc_stainfo(padapter);
  1145. if (pbcmc_sta) {
  1146. pbcmc_sta->dot11txpn.val = RTW_GET_LE64(param->u.crypt.seq);
  1147. pbcmc_sta->ieee8021x_blocked = _FALSE;
  1148. pbcmc_sta->dot118021XPrivacy = psecuritypriv->dot118021XGrpPrivacy; /* rx will use bmc_sta's dot118021XPrivacy */
  1149. }
  1150. psecuritypriv->binstallGrpkey = _TRUE;
  1151. psecuritypriv->dot11PrivacyAlgrthm = psecuritypriv->dot118021XGrpPrivacy;/* !!! */
  1152. rtw_ap_set_group_key(padapter, param->u.crypt.key, psecuritypriv->dot118021XGrpPrivacy, param->u.crypt.idx);
  1153. }
  1154. goto exit;
  1155. }
  1156. if (psecuritypriv->dot11AuthAlgrthm == dot11AuthAlgrthm_8021X && psta) { /* psk/802_1x */
  1157. if (param->u.crypt.set_tx == 1) {
  1158. /* pairwise key */
  1159. _rtw_memcpy(psta->dot118021x_UncstKey.skey, param->u.crypt.key, (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1160. if (strcmp(param->u.crypt.alg, "WEP") == 0) {
  1161. RTW_INFO(FUNC_ADPT_FMT" set WEP PTK of "MAC_FMT" idx:%u, len:%u\n"
  1162. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr)
  1163. , param->u.crypt.idx, param->u.crypt.key_len);
  1164. psta->dot118021XPrivacy = _WEP40_;
  1165. if (param->u.crypt.key_len == 13)
  1166. psta->dot118021XPrivacy = _WEP104_;
  1167. } else if (strcmp(param->u.crypt.alg, "TKIP") == 0) {
  1168. RTW_INFO(FUNC_ADPT_FMT" set TKIP PTK of "MAC_FMT" idx:%u, len:%u\n"
  1169. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr)
  1170. , param->u.crypt.idx, param->u.crypt.key_len);
  1171. psta->dot118021XPrivacy = _TKIP_;
  1172. /* set mic key */
  1173. _rtw_memcpy(psta->dot11tkiptxmickey.skey, &(param->u.crypt.key[16]), 8);
  1174. _rtw_memcpy(psta->dot11tkiprxmickey.skey, &(param->u.crypt.key[24]), 8);
  1175. psecuritypriv->busetkipkey = _TRUE;
  1176. } else if (strcmp(param->u.crypt.alg, "CCMP") == 0) {
  1177. RTW_INFO(FUNC_ADPT_FMT" set CCMP PTK of "MAC_FMT" idx:%u, len:%u\n"
  1178. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr)
  1179. , param->u.crypt.idx, param->u.crypt.key_len);
  1180. psta->dot118021XPrivacy = _AES_;
  1181. } else if (strcmp(param->u.crypt.alg, "none") == 0) {
  1182. RTW_INFO(FUNC_ADPT_FMT" clear pairwise key of "MAC_FMT" idx:%u\n"
  1183. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr)
  1184. , param->u.crypt.idx);
  1185. psta->dot118021XPrivacy = _NO_PRIVACY_;
  1186. } else {
  1187. RTW_WARN(FUNC_ADPT_FMT" set pairwise key of "MAC_FMT", not support\n"
  1188. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr));
  1189. goto exit;
  1190. }
  1191. psta->dot11txpn.val = RTW_GET_LE64(param->u.crypt.seq);
  1192. psta->dot11rxpn.val = RTW_GET_LE64(param->u.crypt.seq);
  1193. psta->ieee8021x_blocked = _FALSE;
  1194. if (psta->dot118021XPrivacy != _NO_PRIVACY_) {
  1195. psta->bpairwise_key_installed = _TRUE;
  1196. /* WPA2 key-handshake has completed */
  1197. if (psecuritypriv->ndisauthtype == Ndis802_11AuthModeWPA2PSK)
  1198. psta->state &= (~WIFI_UNDER_KEY_HANDSHAKE);
  1199. }
  1200. rtw_ap_set_pairwise_key(padapter, psta);
  1201. } else {
  1202. /* peer's group key, RX only */
  1203. #ifdef CONFIG_RTW_MESH
  1204. if (strcmp(param->u.crypt.alg, "CCMP") == 0) {
  1205. RTW_INFO(FUNC_ADPT_FMT" set CCMP GTK of "MAC_FMT", idx:%u, len:%u\n"
  1206. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr)
  1207. , param->u.crypt.idx, param->u.crypt.key_len);
  1208. psta->group_privacy = _AES_;
  1209. _rtw_memcpy(psta->gtk.skey, param->u.crypt.key, (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1210. psta->gtk_bmp |= BIT(param->u.crypt.idx);
  1211. psta->gtk_pn.val = RTW_GET_LE64(param->u.crypt.seq);
  1212. #ifdef CONFIG_IEEE80211W
  1213. } else if (strcmp(param->u.crypt.alg, "BIP") == 0) {
  1214. RTW_INFO(FUNC_ADPT_FMT" set IGTK of "MAC_FMT", idx:%u, len:%u\n"
  1215. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr)
  1216. , param->u.crypt.idx, param->u.crypt.key_len);
  1217. _rtw_memcpy(psta->igtk.skey, param->u.crypt.key, (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1218. psta->igtk_bmp |= BIT(param->u.crypt.idx);
  1219. psta->igtk_id = param->u.crypt.idx;
  1220. psta->igtk_pn.val = RTW_GET_LE64(param->u.crypt.seq);
  1221. goto exit;
  1222. #endif /* CONFIG_IEEE80211W */
  1223. } else if (strcmp(param->u.crypt.alg, "none") == 0) {
  1224. RTW_INFO(FUNC_ADPT_FMT" clear group key of "MAC_FMT", idx:%u\n"
  1225. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr)
  1226. , param->u.crypt.idx);
  1227. psta->group_privacy = _NO_PRIVACY_;
  1228. psta->gtk_bmp &= ~BIT(param->u.crypt.idx);
  1229. } else
  1230. #endif /* CONFIG_RTW_MESH */
  1231. {
  1232. RTW_WARN(FUNC_ADPT_FMT" set group key of "MAC_FMT", not support\n"
  1233. , FUNC_ADPT_ARG(padapter), MAC_ARG(psta->cmn.mac_addr));
  1234. goto exit;
  1235. }
  1236. #ifdef CONFIG_RTW_MESH
  1237. rtw_ap_set_sta_key(padapter, psta->cmn.mac_addr, psta->group_privacy
  1238. , param->u.crypt.key, param->u.crypt.idx, 1);
  1239. #endif
  1240. }
  1241. }
  1242. exit:
  1243. return ret;
  1244. }
  1245. #endif /* CONFIG_AP_MODE */
  1246. static int rtw_cfg80211_set_encryption(struct net_device *dev, struct ieee_param *param)
  1247. {
  1248. int ret = 0;
  1249. u32 wep_key_idx, wep_key_len;
  1250. _adapter *padapter = (_adapter *)rtw_netdev_priv(dev);
  1251. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  1252. struct security_priv *psecuritypriv = &padapter->securitypriv;
  1253. #ifdef CONFIG_P2P
  1254. struct wifidirect_info *pwdinfo = &padapter->wdinfo;
  1255. #endif /* CONFIG_P2P */
  1256. RTW_INFO("%s\n", __func__);
  1257. param->u.crypt.err = 0;
  1258. param->u.crypt.alg[IEEE_CRYPT_ALG_NAME_LEN - 1] = '\0';
  1259. if (is_broadcast_mac_addr(param->sta_addr)) {
  1260. if (param->u.crypt.idx >= WEP_KEYS
  1261. #ifdef CONFIG_IEEE80211W
  1262. && param->u.crypt.idx > BIP_MAX_KEYID
  1263. #endif
  1264. ) {
  1265. ret = -EINVAL;
  1266. goto exit;
  1267. }
  1268. } else {
  1269. #ifdef CONFIG_WAPI_SUPPORT
  1270. if (strcmp(param->u.crypt.alg, "SMS4"))
  1271. #endif
  1272. {
  1273. ret = -EINVAL;
  1274. goto exit;
  1275. }
  1276. }
  1277. if (strcmp(param->u.crypt.alg, "WEP") == 0) {
  1278. RTW_INFO("wpa_set_encryption, crypt.alg = WEP\n");
  1279. wep_key_idx = param->u.crypt.idx;
  1280. wep_key_len = param->u.crypt.key_len;
  1281. if ((wep_key_idx >= WEP_KEYS) || (wep_key_len <= 0)) {
  1282. ret = -EINVAL;
  1283. goto exit;
  1284. }
  1285. if (psecuritypriv->bWepDefaultKeyIdxSet == 0) {
  1286. /* wep default key has not been set, so use this key index as default key. */
  1287. wep_key_len = wep_key_len <= 5 ? 5 : 13;
  1288. psecuritypriv->ndisencryptstatus = Ndis802_11Encryption1Enabled;
  1289. psecuritypriv->dot11PrivacyAlgrthm = _WEP40_;
  1290. psecuritypriv->dot118021XGrpPrivacy = _WEP40_;
  1291. if (wep_key_len == 13) {
  1292. psecuritypriv->dot11PrivacyAlgrthm = _WEP104_;
  1293. psecuritypriv->dot118021XGrpPrivacy = _WEP104_;
  1294. }
  1295. psecuritypriv->dot11PrivacyKeyIndex = wep_key_idx;
  1296. }
  1297. _rtw_memcpy(&(psecuritypriv->dot11DefKey[wep_key_idx].skey[0]), param->u.crypt.key, wep_key_len);
  1298. psecuritypriv->dot11DefKeylen[wep_key_idx] = wep_key_len;
  1299. rtw_set_key(padapter, psecuritypriv, wep_key_idx, 0, _TRUE);
  1300. goto exit;
  1301. }
  1302. if (padapter->securitypriv.dot11AuthAlgrthm == dot11AuthAlgrthm_8021X) { /* 802_1x */
  1303. struct sta_info *psta, *pbcmc_sta;
  1304. struct sta_priv *pstapriv = &padapter->stapriv;
  1305. /* RTW_INFO("%s, : dot11AuthAlgrthm == dot11AuthAlgrthm_8021X\n", __func__); */
  1306. if (check_fwstate(pmlmepriv, WIFI_STATION_STATE | WIFI_MP_STATE) == _TRUE) { /* sta mode */
  1307. #ifdef CONFIG_RTW_80211R
  1308. if (rtw_ft_roam(padapter))
  1309. psta = rtw_get_stainfo(pstapriv, pmlmepriv->assoc_bssid);
  1310. else
  1311. #endif
  1312. psta = rtw_get_stainfo(pstapriv, get_bssid(pmlmepriv));
  1313. if (psta == NULL) {
  1314. /* DEBUG_ERR( ("Set wpa_set_encryption: Obtain Sta_info fail\n")); */
  1315. RTW_INFO("%s, : Obtain Sta_info fail\n", __func__);
  1316. } else {
  1317. /* Jeff: don't disable ieee8021x_blocked while clearing key */
  1318. if (strcmp(param->u.crypt.alg, "none") != 0)
  1319. psta->ieee8021x_blocked = _FALSE;
  1320. if ((padapter->securitypriv.ndisencryptstatus == Ndis802_11Encryption2Enabled) ||
  1321. (padapter->securitypriv.ndisencryptstatus == Ndis802_11Encryption3Enabled))
  1322. psta->dot118021XPrivacy = padapter->securitypriv.dot11PrivacyAlgrthm;
  1323. if (param->u.crypt.set_tx == 1) { /* pairwise key */
  1324. RTW_INFO(FUNC_ADPT_FMT" set %s PTK idx:%u, len:%u\n"
  1325. , FUNC_ADPT_ARG(padapter), param->u.crypt.alg, param->u.crypt.idx, param->u.crypt.key_len);
  1326. _rtw_memcpy(psta->dot118021x_UncstKey.skey, param->u.crypt.key, (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1327. if (strcmp(param->u.crypt.alg, "TKIP") == 0) { /* set mic key */
  1328. _rtw_memcpy(psta->dot11tkiptxmickey.skey, &(param->u.crypt.key[16]), 8);
  1329. _rtw_memcpy(psta->dot11tkiprxmickey.skey, &(param->u.crypt.key[24]), 8);
  1330. padapter->securitypriv.busetkipkey = _FALSE;
  1331. }
  1332. psta->dot11txpn.val = RTW_GET_LE64(param->u.crypt.seq);
  1333. psta->dot11rxpn.val = RTW_GET_LE64(param->u.crypt.seq);
  1334. psta->bpairwise_key_installed = _TRUE;
  1335. #ifdef CONFIG_RTW_80211R
  1336. psta->ft_pairwise_key_installed = _TRUE;
  1337. #endif
  1338. rtw_setstakey_cmd(padapter, psta, UNICAST_KEY, _TRUE);
  1339. } else { /* group key */
  1340. if (strcmp(param->u.crypt.alg, "TKIP") == 0 || strcmp(param->u.crypt.alg, "CCMP") == 0) {
  1341. RTW_INFO(FUNC_ADPT_FMT" set %s GTK idx:%u, len:%u\n"
  1342. , FUNC_ADPT_ARG(padapter), param->u.crypt.alg, param->u.crypt.idx, param->u.crypt.key_len);
  1343. _rtw_memcpy(padapter->securitypriv.dot118021XGrpKey[param->u.crypt.idx].skey, param->u.crypt.key,
  1344. (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1345. _rtw_memcpy(padapter->securitypriv.dot118021XGrptxmickey[param->u.crypt.idx].skey, &(param->u.crypt.key[16]), 8);
  1346. _rtw_memcpy(padapter->securitypriv.dot118021XGrprxmickey[param->u.crypt.idx].skey, &(param->u.crypt.key[24]), 8);
  1347. padapter->securitypriv.binstallGrpkey = _TRUE;
  1348. if (param->u.crypt.idx < 4)
  1349. _rtw_memcpy(padapter->securitypriv.iv_seq[param->u.crypt.idx], param->u.crypt.seq, 8);
  1350. padapter->securitypriv.dot118021XGrpKeyid = param->u.crypt.idx;
  1351. rtw_set_key(padapter, &padapter->securitypriv, param->u.crypt.idx, 1, _TRUE);
  1352. #ifdef CONFIG_IEEE80211W
  1353. } else if (strcmp(param->u.crypt.alg, "BIP") == 0) {
  1354. RTW_INFO(FUNC_ADPT_FMT" set IGTK idx:%u, len:%u\n"
  1355. , FUNC_ADPT_ARG(padapter), param->u.crypt.idx, param->u.crypt.key_len);
  1356. _rtw_memcpy(padapter->securitypriv.dot11wBIPKey[param->u.crypt.idx].skey, param->u.crypt.key,
  1357. (param->u.crypt.key_len > 16 ? 16 : param->u.crypt.key_len));
  1358. psecuritypriv->dot11wBIPKeyid = param->u.crypt.idx;
  1359. psecuritypriv->dot11wBIPrxpn.val = RTW_GET_LE64(param->u.crypt.seq);
  1360. psecuritypriv->binstallBIPkey = _TRUE;
  1361. #endif /* CONFIG_IEEE80211W */
  1362. }
  1363. #ifdef CONFIG_P2P
  1364. if (pwdinfo->driver_interface == DRIVER_CFG80211) {
  1365. if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_PROVISIONING_ING))
  1366. rtw_p2p_set_state(pwdinfo, P2P_STATE_PROVISIONING_DONE);
  1367. }
  1368. #endif /* CONFIG_P2P */
  1369. /* WPA/WPA2 key-handshake has completed */
  1370. clr_fwstate(pmlmepriv, WIFI_UNDER_KEY_HANDSHAKE);
  1371. }
  1372. }
  1373. pbcmc_sta = rtw_get_bcmc_stainfo(padapter);
  1374. if (pbcmc_sta == NULL) {
  1375. /* DEBUG_ERR( ("Set OID_802_11_ADD_KEY: bcmc stainfo is null\n")); */
  1376. } else {
  1377. /* Jeff: don't disable ieee8021x_blocked while clearing key */
  1378. if (strcmp(param->u.crypt.alg, "none") != 0)
  1379. pbcmc_sta->ieee8021x_blocked = _FALSE;
  1380. if ((padapter->securitypriv.ndisencryptstatus == Ndis802_11Encryption2Enabled) ||
  1381. (padapter->securitypriv.ndisencryptstatus == Ndis802_11Encryption3Enabled))
  1382. pbcmc_sta->dot118021XPrivacy = padapter->securitypriv.dot11PrivacyAlgrthm;
  1383. }
  1384. } else if (check_fwstate(pmlmepriv, WIFI_ADHOC_STATE)) { /* adhoc mode */
  1385. }
  1386. }
  1387. #ifdef CONFIG_WAPI_SUPPORT
  1388. if (strcmp(param->u.crypt.alg, "SMS4") == 0)
  1389. rtw_wapi_set_set_encryption(padapter, param);
  1390. #endif
  1391. exit:
  1392. RTW_INFO("%s, ret=%d\n", __func__, ret);
  1393. return ret;
  1394. }
  1395. static int cfg80211_rtw_add_key(struct wiphy *wiphy, struct net_device *ndev
  1396. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0))
  1397. , int link_id
  1398. #endif
  1399. , u8 key_index
  1400. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  1401. , bool pairwise
  1402. #endif
  1403. , const u8 *mac_addr, struct key_params *params)
  1404. {
  1405. char *alg_name;
  1406. u32 param_len;
  1407. struct ieee_param *param = NULL;
  1408. int ret = 0;
  1409. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  1410. struct wireless_dev *rtw_wdev = padapter->rtw_wdev;
  1411. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  1412. #ifdef CONFIG_TDLS
  1413. struct sta_info *ptdls_sta;
  1414. #endif /* CONFIG_TDLS */
  1415. if (mac_addr)
  1416. RTW_INFO(FUNC_NDEV_FMT" adding key for %pM\n", FUNC_NDEV_ARG(ndev), mac_addr);
  1417. RTW_INFO(FUNC_NDEV_FMT" cipher=0x%x\n", FUNC_NDEV_ARG(ndev), params->cipher);
  1418. RTW_INFO(FUNC_NDEV_FMT" key_len=%d, key_index=%d\n", FUNC_NDEV_ARG(ndev), params->key_len, key_index);
  1419. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  1420. RTW_INFO(FUNC_NDEV_FMT" pairwise=%d\n", FUNC_NDEV_ARG(ndev), pairwise);
  1421. #endif
  1422. if (rtw_cfg80211_sync_iftype(padapter) != _SUCCESS) {
  1423. ret = -ENOTSUPP;
  1424. goto addkey_end;
  1425. }
  1426. param_len = sizeof(struct ieee_param) + params->key_len;
  1427. param = rtw_malloc(param_len);
  1428. if (param == NULL)
  1429. return -1;
  1430. _rtw_memset(param, 0, param_len);
  1431. param->cmd = IEEE_CMD_SET_ENCRYPTION;
  1432. _rtw_memset(param->sta_addr, 0xff, ETH_ALEN);
  1433. switch (params->cipher) {
  1434. case IW_AUTH_CIPHER_NONE:
  1435. /* todo: remove key */
  1436. /* remove = 1; */
  1437. alg_name = "none";
  1438. break;
  1439. case WLAN_CIPHER_SUITE_WEP40:
  1440. case WLAN_CIPHER_SUITE_WEP104:
  1441. alg_name = "WEP";
  1442. break;
  1443. case WLAN_CIPHER_SUITE_TKIP:
  1444. alg_name = "TKIP";
  1445. break;
  1446. case WLAN_CIPHER_SUITE_CCMP:
  1447. alg_name = "CCMP";
  1448. break;
  1449. #ifdef CONFIG_IEEE80211W
  1450. case WLAN_CIPHER_SUITE_AES_CMAC:
  1451. alg_name = "BIP";
  1452. break;
  1453. #endif /* CONFIG_IEEE80211W */
  1454. #ifdef CONFIG_WAPI_SUPPORT
  1455. case WLAN_CIPHER_SUITE_SMS4:
  1456. alg_name = "SMS4";
  1457. if (pairwise == NL80211_KEYTYPE_PAIRWISE) {
  1458. if (key_index != 0 && key_index != 1) {
  1459. ret = -ENOTSUPP;
  1460. goto addkey_end;
  1461. }
  1462. _rtw_memcpy((void *)param->sta_addr, (void *)mac_addr, ETH_ALEN);
  1463. } else
  1464. RTW_INFO("mac_addr is null\n");
  1465. RTW_INFO("rtw_wx_set_enc_ext: SMS4 case\n");
  1466. break;
  1467. #endif
  1468. default:
  1469. ret = -ENOTSUPP;
  1470. goto addkey_end;
  1471. }
  1472. strncpy((char *)param->u.crypt.alg, alg_name, IEEE_CRYPT_ALG_NAME_LEN);
  1473. if (!mac_addr || is_broadcast_ether_addr(mac_addr)
  1474. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  1475. || !pairwise
  1476. #endif
  1477. ) {
  1478. param->u.crypt.set_tx = 0; /* for wpa/wpa2 group key */
  1479. } else {
  1480. param->u.crypt.set_tx = 1; /* for wpa/wpa2 pairwise key */
  1481. }
  1482. param->u.crypt.idx = key_index;
  1483. if (params->seq_len && params->seq) {
  1484. _rtw_memcpy(param->u.crypt.seq, (u8 *)params->seq, params->seq_len);
  1485. RTW_INFO(FUNC_NDEV_FMT" seq_len:%u, seq:0x%llx\n", FUNC_NDEV_ARG(ndev)
  1486. , params->seq_len, RTW_GET_LE64(param->u.crypt.seq));
  1487. }
  1488. if (params->key_len && params->key) {
  1489. param->u.crypt.key_len = params->key_len;
  1490. _rtw_memcpy(param->u.crypt.key, (u8 *)params->key, params->key_len);
  1491. }
  1492. if (check_fwstate(pmlmepriv, WIFI_STATION_STATE) == _TRUE) {
  1493. #ifdef CONFIG_TDLS
  1494. if (rtw_tdls_is_driver_setup(padapter) == _FALSE && mac_addr) {
  1495. ptdls_sta = rtw_get_stainfo(&padapter->stapriv, (void *)mac_addr);
  1496. if (ptdls_sta != NULL && ptdls_sta->tdls_sta_state) {
  1497. _rtw_memcpy(ptdls_sta->tpk.tk, params->key, params->key_len);
  1498. rtw_tdls_set_key(padapter, ptdls_sta);
  1499. goto addkey_end;
  1500. }
  1501. }
  1502. #endif /* CONFIG_TDLS */
  1503. ret = rtw_cfg80211_set_encryption(ndev, param);
  1504. } else if (MLME_IS_AP(padapter) || MLME_IS_MESH(padapter)) {
  1505. #ifdef CONFIG_AP_MODE
  1506. if (mac_addr)
  1507. _rtw_memcpy(param->sta_addr, (void *)mac_addr, ETH_ALEN);
  1508. ret = rtw_cfg80211_ap_set_encryption(ndev, param);
  1509. #endif
  1510. } else if (check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == _TRUE
  1511. || check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) == _TRUE
  1512. ) {
  1513. /* RTW_INFO("@@@@@@@@@@ fw_state=0x%x, iftype=%d\n", pmlmepriv->fw_state, rtw_wdev->iftype); */
  1514. ret = rtw_cfg80211_set_encryption(ndev, param);
  1515. } else
  1516. RTW_INFO("error! fw_state=0x%x, iftype=%d\n", pmlmepriv->fw_state, rtw_wdev->iftype);
  1517. addkey_end:
  1518. if (param)
  1519. rtw_mfree(param, param_len);
  1520. return ret;
  1521. }
  1522. static int cfg80211_rtw_get_key(struct wiphy *wiphy, struct net_device *ndev
  1523. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0))
  1524. , int link_id
  1525. #endif
  1526. , u8 keyid
  1527. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  1528. , bool pairwise
  1529. #endif
  1530. , const u8 *mac_addr, void *cookie
  1531. , void (*callback)(void *cookie, struct key_params *))
  1532. {
  1533. #define GET_KEY_PARAM_FMT_S " keyid=%d"
  1534. #define GET_KEY_PARAM_ARG_S , keyid
  1535. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  1536. #define GET_KEY_PARAM_FMT_2_6_37 ", pairwise=%d"
  1537. #define GET_KEY_PARAM_ARG_2_6_37 , pairwise
  1538. #else
  1539. #define GET_KEY_PARAM_FMT_2_6_37 ""
  1540. #define GET_KEY_PARAM_ARG_2_6_37
  1541. #endif
  1542. #define GET_KEY_PARAM_FMT_E ", addr=%pM"
  1543. #define GET_KEY_PARAM_ARG_E , mac_addr
  1544. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  1545. struct security_priv *sec = &adapter->securitypriv;
  1546. struct sta_priv *stapriv = &adapter->stapriv;
  1547. struct sta_info *sta = NULL;
  1548. u32 cipher = _NO_PRIVACY_;
  1549. union Keytype *key = NULL;
  1550. u8 key_len = 0;
  1551. u64 *pn = NULL;
  1552. u8 pn_len = 0;
  1553. u8 pn_val[8] = {0};
  1554. struct key_params params;
  1555. int ret = -ENOENT;
  1556. if (keyid >= WEP_KEYS
  1557. #ifdef CONFIG_IEEE80211W
  1558. && keyid > BIP_MAX_KEYID
  1559. #endif
  1560. )
  1561. goto exit;
  1562. if (!mac_addr || is_broadcast_ether_addr(mac_addr)
  1563. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  1564. || (MLME_IS_STA(adapter) && !pairwise)
  1565. #endif
  1566. ) {
  1567. /* WEP key, TX GTK/IGTK, RX GTK/IGTK(for STA mode) */
  1568. if (is_wep_enc(sec->dot118021XGrpPrivacy)) {
  1569. if (keyid >= WEP_KEYS)
  1570. goto exit;
  1571. if (!(sec->key_mask & BIT(keyid)))
  1572. goto exit;
  1573. cipher = sec->dot118021XGrpPrivacy;
  1574. key = &sec->dot11DefKey[keyid];
  1575. } else {
  1576. if (keyid < WEP_KEYS) {
  1577. if (sec->binstallGrpkey != _TRUE)
  1578. goto exit;
  1579. cipher = sec->dot118021XGrpPrivacy;
  1580. key = &sec->dot118021XGrpKey[keyid];
  1581. sta = rtw_get_bcmc_stainfo(adapter);
  1582. if (sta)
  1583. pn = &sta->dot11txpn.val;
  1584. #ifdef CONFIG_IEEE80211W
  1585. } else if (keyid < BIP_MAX_KEYID) {
  1586. if (SEC_IS_BIP_KEY_INSTALLED(sec) != _TRUE)
  1587. goto exit;
  1588. cipher = _BIP_;
  1589. key = &sec->dot11wBIPKey[keyid];
  1590. pn = &sec->dot11wBIPtxpn.val;
  1591. #endif
  1592. }
  1593. }
  1594. } else {
  1595. /* Pairwise key, RX GTK/IGTK for specific peer */
  1596. sta = rtw_get_stainfo(stapriv, mac_addr);
  1597. if (!sta)
  1598. goto exit;
  1599. if (keyid < WEP_KEYS && pairwise) {
  1600. if (sta->bpairwise_key_installed != _TRUE)
  1601. goto exit;
  1602. cipher = sta->dot118021XPrivacy;
  1603. key = &sta->dot118021x_UncstKey;
  1604. #ifdef CONFIG_RTW_MESH
  1605. } else if (keyid < WEP_KEYS && !pairwise) {
  1606. if (!(sta->gtk_bmp & BIT(keyid)))
  1607. goto exit;
  1608. cipher = sta->group_privacy;
  1609. key = &sta->gtk;
  1610. #ifdef CONFIG_IEEE80211W
  1611. } else if (keyid < BIP_MAX_KEYID && !pairwise) {
  1612. if (!(sta->igtk_bmp & BIT(keyid)))
  1613. goto exit;
  1614. cipher = _BIP_;
  1615. key = &sta->igtk;
  1616. pn = &sta->igtk_pn.val;
  1617. #endif
  1618. #endif /* CONFIG_RTW_MESH */
  1619. }
  1620. }
  1621. if (!key)
  1622. goto exit;
  1623. if (cipher == _WEP40_) {
  1624. cipher = WLAN_CIPHER_SUITE_WEP40;
  1625. key_len = sec->dot11DefKeylen[keyid];
  1626. } else if (cipher == _WEP104_) {
  1627. cipher = WLAN_CIPHER_SUITE_WEP104;
  1628. key_len = sec->dot11DefKeylen[keyid];
  1629. } else if (cipher == _TKIP_) {
  1630. cipher = WLAN_CIPHER_SUITE_TKIP;
  1631. key_len = 16;
  1632. } else if (cipher == _AES_) {
  1633. cipher = WLAN_CIPHER_SUITE_CCMP;
  1634. key_len = 16;
  1635. #ifdef CONFIG_IEEE80211W
  1636. } else if (cipher == _BIP_) {
  1637. cipher = WLAN_CIPHER_SUITE_AES_CMAC;
  1638. key_len = 16;
  1639. #endif
  1640. } else {
  1641. RTW_WARN(FUNC_NDEV_FMT" unknown cipher:%u\n", FUNC_NDEV_ARG(ndev), cipher);
  1642. rtw_warn_on(1);
  1643. goto exit;
  1644. }
  1645. if (pn) {
  1646. *((u64 *)pn_val) = cpu_to_le64(*pn);
  1647. pn_len = 6;
  1648. }
  1649. ret = 0;
  1650. exit:
  1651. RTW_INFO(FUNC_NDEV_FMT
  1652. GET_KEY_PARAM_FMT_S
  1653. GET_KEY_PARAM_FMT_2_6_37
  1654. GET_KEY_PARAM_FMT_E
  1655. " ret %d\n", FUNC_NDEV_ARG(ndev)
  1656. GET_KEY_PARAM_ARG_S
  1657. GET_KEY_PARAM_ARG_2_6_37
  1658. GET_KEY_PARAM_ARG_E
  1659. , ret);
  1660. if (pn)
  1661. RTW_INFO(FUNC_NDEV_FMT " seq:0x%llx\n", FUNC_NDEV_ARG(ndev), *pn);
  1662. if (ret == 0) {
  1663. _rtw_memset(&params, 0, sizeof(params));
  1664. params.cipher = cipher;
  1665. params.key = key->skey;
  1666. params.key_len = key_len;
  1667. if (pn) {
  1668. params.seq = pn_val;
  1669. params.seq_len = pn_len;
  1670. }
  1671. callback(cookie, &params);
  1672. }
  1673. return ret;
  1674. }
  1675. static int cfg80211_rtw_del_key(struct wiphy *wiphy, struct net_device *ndev,
  1676. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0))
  1677. int link_id,
  1678. #endif
  1679. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  1680. u8 key_index, bool pairwise, const u8 *mac_addr)
  1681. #else /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) */
  1682. u8 key_index, const u8 *mac_addr)
  1683. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) */
  1684. {
  1685. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  1686. struct security_priv *psecuritypriv = &padapter->securitypriv;
  1687. RTW_INFO(FUNC_NDEV_FMT" key_index=%d, addr=%pM\n", FUNC_NDEV_ARG(ndev), key_index, mac_addr);
  1688. if (key_index == psecuritypriv->dot11PrivacyKeyIndex) {
  1689. /* clear the flag of wep default key set. */
  1690. psecuritypriv->bWepDefaultKeyIdxSet = 0;
  1691. }
  1692. return 0;
  1693. }
  1694. static int cfg80211_rtw_set_default_key(struct wiphy *wiphy,
  1695. struct net_device *ndev
  1696. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0))
  1697. , int link_id
  1698. #endif
  1699. , u8 key_index
  1700. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)) || defined(COMPAT_KERNEL_RELEASE)
  1701. , bool unicast, bool multicast
  1702. #endif
  1703. )
  1704. {
  1705. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  1706. struct security_priv *psecuritypriv = &padapter->securitypriv;
  1707. #define SET_DEF_KEY_PARAM_FMT " key_index=%d"
  1708. #define SET_DEF_KEY_PARAM_ARG , key_index
  1709. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)) || defined(COMPAT_KERNEL_RELEASE)
  1710. #define SET_DEF_KEY_PARAM_FMT_2_6_38 ", unicast=%d, multicast=%d"
  1711. #define SET_DEF_KEY_PARAM_ARG_2_6_38 , unicast, multicast
  1712. #else
  1713. #define SET_DEF_KEY_PARAM_FMT_2_6_38 ""
  1714. #define SET_DEF_KEY_PARAM_ARG_2_6_38
  1715. #endif
  1716. RTW_INFO(FUNC_NDEV_FMT
  1717. SET_DEF_KEY_PARAM_FMT
  1718. SET_DEF_KEY_PARAM_FMT_2_6_38
  1719. "\n", FUNC_NDEV_ARG(ndev)
  1720. SET_DEF_KEY_PARAM_ARG
  1721. SET_DEF_KEY_PARAM_ARG_2_6_38
  1722. );
  1723. if ((key_index < WEP_KEYS) && ((psecuritypriv->dot11PrivacyAlgrthm == _WEP40_) || (psecuritypriv->dot11PrivacyAlgrthm == _WEP104_))) { /* set wep default key */
  1724. psecuritypriv->ndisencryptstatus = Ndis802_11Encryption1Enabled;
  1725. psecuritypriv->dot11PrivacyKeyIndex = key_index;
  1726. psecuritypriv->dot11PrivacyAlgrthm = _WEP40_;
  1727. psecuritypriv->dot118021XGrpPrivacy = _WEP40_;
  1728. if (psecuritypriv->dot11DefKeylen[key_index] == 13) {
  1729. psecuritypriv->dot11PrivacyAlgrthm = _WEP104_;
  1730. psecuritypriv->dot118021XGrpPrivacy = _WEP104_;
  1731. }
  1732. psecuritypriv->bWepDefaultKeyIdxSet = 1; /* set the flag to represent that wep default key has been set */
  1733. }
  1734. return 0;
  1735. }
  1736. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 30))
  1737. int cfg80211_rtw_set_default_mgmt_key(struct wiphy *wiphy,
  1738. struct net_device *ndev
  1739. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(6, 1, 0))
  1740. , int link_idm
  1741. #endif
  1742. , u8 key_index
  1743. )
  1744. {
  1745. #define SET_DEF_KEY_PARAM_FMT " key_index=%d"
  1746. #define SET_DEF_KEY_PARAM_ARG , key_index
  1747. RTW_INFO(FUNC_NDEV_FMT
  1748. SET_DEF_KEY_PARAM_FMT
  1749. "\n", FUNC_NDEV_ARG(ndev)
  1750. SET_DEF_KEY_PARAM_ARG
  1751. );
  1752. return 0;
  1753. }
  1754. #endif
  1755. #if defined(CONFIG_GTK_OL) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0))
  1756. static int cfg80211_rtw_set_rekey_data(struct wiphy *wiphy,
  1757. struct net_device *ndev,
  1758. struct cfg80211_gtk_rekey_data *data)
  1759. {
  1760. /*int i;*/
  1761. struct sta_info *psta;
  1762. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  1763. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  1764. struct sta_priv *pstapriv = &padapter->stapriv;
  1765. struct security_priv *psecuritypriv = &(padapter->securitypriv);
  1766. psta = rtw_get_stainfo(pstapriv, get_bssid(pmlmepriv));
  1767. if (psta == NULL) {
  1768. RTW_INFO("%s, : Obtain Sta_info fail\n", __func__);
  1769. return -1;
  1770. }
  1771. _rtw_memcpy(psta->kek, data->kek, NL80211_KEK_LEN);
  1772. /*printk("\ncfg80211_rtw_set_rekey_data KEK:");
  1773. for(i=0;i<NL80211_KEK_LEN; i++)
  1774. printk(" %02x ", psta->kek[i]);*/
  1775. _rtw_memcpy(psta->kck, data->kck, NL80211_KCK_LEN);
  1776. /*printk("\ncfg80211_rtw_set_rekey_data KCK:");
  1777. for(i=0;i<NL80211_KCK_LEN; i++)
  1778. printk(" %02x ", psta->kck[i]);*/
  1779. _rtw_memcpy(psta->replay_ctr, data->replay_ctr, NL80211_REPLAY_CTR_LEN);
  1780. psecuritypriv->binstallKCK_KEK = _TRUE;
  1781. /*printk("\nREPLAY_CTR: ");
  1782. for(i=0;i<RTW_REPLAY_CTR_LEN; i++)
  1783. printk(" %02x ", psta->replay_ctr[i]);*/
  1784. return 0;
  1785. }
  1786. #endif /*CONFIG_GTK_OL*/
  1787. #ifdef CONFIG_RTW_MESH
  1788. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  1789. static enum nl80211_mesh_power_mode rtw_mesh_ps_to_nl80211_mesh_power_mode(u8 ps)
  1790. {
  1791. if (ps == RTW_MESH_PS_UNKNOWN)
  1792. return NL80211_MESH_POWER_UNKNOWN;
  1793. if (ps == RTW_MESH_PS_ACTIVE)
  1794. return NL80211_MESH_POWER_ACTIVE;
  1795. if (ps == RTW_MESH_PS_LSLEEP)
  1796. return NL80211_MESH_POWER_LIGHT_SLEEP;
  1797. if (ps == RTW_MESH_PS_DSLEEP)
  1798. return NL80211_MESH_POWER_DEEP_SLEEP;
  1799. rtw_warn_on(1);
  1800. return NL80211_MESH_POWER_UNKNOWN;
  1801. }
  1802. #endif
  1803. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  1804. enum nl80211_plink_state rtw_plink_state_to_nl80211_plink_state(u8 plink_state)
  1805. {
  1806. if (plink_state == RTW_MESH_PLINK_UNKNOWN)
  1807. return NUM_NL80211_PLINK_STATES;
  1808. if (plink_state == RTW_MESH_PLINK_LISTEN)
  1809. return NL80211_PLINK_LISTEN;
  1810. if (plink_state == RTW_MESH_PLINK_OPN_SNT)
  1811. return NL80211_PLINK_OPN_SNT;
  1812. if (plink_state == RTW_MESH_PLINK_OPN_RCVD)
  1813. return NL80211_PLINK_OPN_RCVD;
  1814. if (plink_state == RTW_MESH_PLINK_CNF_RCVD)
  1815. return NL80211_PLINK_CNF_RCVD;
  1816. if (plink_state == RTW_MESH_PLINK_ESTAB)
  1817. return NL80211_PLINK_ESTAB;
  1818. if (plink_state == RTW_MESH_PLINK_HOLDING)
  1819. return NL80211_PLINK_HOLDING;
  1820. if (plink_state == RTW_MESH_PLINK_BLOCKED)
  1821. return NL80211_PLINK_BLOCKED;
  1822. rtw_warn_on(1);
  1823. return NUM_NL80211_PLINK_STATES;
  1824. }
  1825. u8 nl80211_plink_state_to_rtw_plink_state(enum nl80211_plink_state plink_state)
  1826. {
  1827. if (plink_state == NL80211_PLINK_LISTEN)
  1828. return RTW_MESH_PLINK_LISTEN;
  1829. if (plink_state == NL80211_PLINK_OPN_SNT)
  1830. return RTW_MESH_PLINK_OPN_SNT;
  1831. if (plink_state == NL80211_PLINK_OPN_RCVD)
  1832. return RTW_MESH_PLINK_OPN_RCVD;
  1833. if (plink_state == NL80211_PLINK_CNF_RCVD)
  1834. return RTW_MESH_PLINK_CNF_RCVD;
  1835. if (plink_state == NL80211_PLINK_ESTAB)
  1836. return RTW_MESH_PLINK_ESTAB;
  1837. if (plink_state == NL80211_PLINK_HOLDING)
  1838. return RTW_MESH_PLINK_HOLDING;
  1839. if (plink_state == NL80211_PLINK_BLOCKED)
  1840. return RTW_MESH_PLINK_BLOCKED;
  1841. rtw_warn_on(1);
  1842. return RTW_MESH_PLINK_UNKNOWN;
  1843. }
  1844. #endif
  1845. static void rtw_cfg80211_fill_mesh_only_sta_info(struct mesh_plink_ent *plink, struct sta_info *sta, struct station_info *sinfo)
  1846. {
  1847. sinfo->filled |= STATION_INFO_LLID;
  1848. sinfo->llid = plink->llid;
  1849. sinfo->filled |= STATION_INFO_PLID;
  1850. sinfo->plid = plink->plid;
  1851. sinfo->filled |= STATION_INFO_PLINK_STATE;
  1852. sinfo->plink_state = rtw_plink_state_to_nl80211_plink_state(plink->plink_state);
  1853. if (!sta && plink->scanned) {
  1854. sinfo->filled |= STATION_INFO_SIGNAL;
  1855. sinfo->signal = translate_percentage_to_dbm(plink->scanned->network.PhyInfo.SignalStrength);
  1856. sinfo->filled |= STATION_INFO_INACTIVE_TIME;
  1857. if (plink->plink_state == RTW_MESH_PLINK_UNKNOWN)
  1858. sinfo->inactive_time = 0 - 1;
  1859. else
  1860. sinfo->inactive_time = rtw_get_passing_time_ms(plink->scanned->last_scanned);
  1861. }
  1862. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  1863. if (sta) {
  1864. sinfo->filled |= STATION_INFO_LOCAL_PM;
  1865. sinfo->local_pm = rtw_mesh_ps_to_nl80211_mesh_power_mode(sta->local_mps);
  1866. sinfo->filled |= STATION_INFO_PEER_PM;
  1867. sinfo->peer_pm = rtw_mesh_ps_to_nl80211_mesh_power_mode(sta->peer_mps);
  1868. sinfo->filled |= STATION_INFO_NONPEER_PM;
  1869. sinfo->nonpeer_pm = rtw_mesh_ps_to_nl80211_mesh_power_mode(sta->nonpeer_mps);
  1870. }
  1871. #endif
  1872. }
  1873. #endif /* CONFIG_RTW_MESH */
  1874. static int cfg80211_rtw_get_station(struct wiphy *wiphy,
  1875. struct net_device *ndev,
  1876. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 16, 0))
  1877. u8 *mac,
  1878. #else
  1879. const u8 *mac,
  1880. #endif
  1881. struct station_info *sinfo)
  1882. {
  1883. int ret = 0;
  1884. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  1885. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  1886. struct sta_info *psta = NULL;
  1887. struct sta_priv *pstapriv = &padapter->stapriv;
  1888. #ifdef CONFIG_RTW_MESH
  1889. struct mesh_plink_ent *plink = NULL;
  1890. #endif
  1891. sinfo->filled = 0;
  1892. if (!mac) {
  1893. RTW_INFO(FUNC_NDEV_FMT" mac==%p\n", FUNC_NDEV_ARG(ndev), mac);
  1894. ret = -ENOENT;
  1895. goto exit;
  1896. }
  1897. psta = rtw_get_stainfo(pstapriv, mac);
  1898. #ifdef CONFIG_RTW_MESH
  1899. if (MLME_IS_MESH(padapter)) {
  1900. if (psta)
  1901. plink = psta->plink;
  1902. if (!plink)
  1903. plink = rtw_mesh_plink_get(padapter, mac);
  1904. }
  1905. #endif /* CONFIG_RTW_MESH */
  1906. if ((!MLME_IS_MESH(padapter) && !psta)
  1907. #ifdef CONFIG_RTW_MESH
  1908. || (MLME_IS_MESH(padapter) && !plink)
  1909. #endif
  1910. ) {
  1911. RTW_INFO(FUNC_NDEV_FMT" no sta info for mac="MAC_FMT"\n"
  1912. , FUNC_NDEV_ARG(ndev), MAC_ARG(mac));
  1913. ret = -ENOENT;
  1914. goto exit;
  1915. }
  1916. #ifdef CONFIG_DEBUG_CFG80211
  1917. RTW_INFO(FUNC_NDEV_FMT" mac="MAC_FMT"\n", FUNC_NDEV_ARG(ndev), MAC_ARG(mac));
  1918. #endif
  1919. /* for infra./P2PClient mode */
  1920. if (check_fwstate(pmlmepriv, WIFI_STATION_STATE)
  1921. && check_fwstate(pmlmepriv, _FW_LINKED)
  1922. ) {
  1923. struct wlan_network *cur_network = &(pmlmepriv->cur_network);
  1924. if (_rtw_memcmp((u8 *)mac, cur_network->network.MacAddress, ETH_ALEN) == _FALSE) {
  1925. RTW_INFO("%s, mismatch bssid="MAC_FMT"\n", __func__, MAC_ARG(cur_network->network.MacAddress));
  1926. ret = -ENOENT;
  1927. goto exit;
  1928. }
  1929. sinfo->filled |= STATION_INFO_SIGNAL;
  1930. sinfo->signal = translate_percentage_to_dbm(padapter->recvpriv.signal_strength);
  1931. sinfo->filled |= STATION_INFO_TX_BITRATE;
  1932. sinfo->txrate.legacy = rtw_get_cur_max_rate(padapter);
  1933. }
  1934. if (psta) {
  1935. if (check_fwstate(pmlmepriv, WIFI_STATION_STATE) == _FALSE
  1936. || check_fwstate(pmlmepriv, _FW_LINKED) == _FALSE
  1937. ) {
  1938. sinfo->filled |= STATION_INFO_SIGNAL;
  1939. sinfo->signal = translate_percentage_to_dbm(psta->cmn.rssi_stat.rssi);
  1940. }
  1941. sinfo->filled |= STATION_INFO_INACTIVE_TIME;
  1942. sinfo->inactive_time = rtw_get_passing_time_ms(psta->sta_stats.last_rx_time);
  1943. sinfo->filled |= STATION_INFO_RX_PACKETS;
  1944. sinfo->rx_packets = sta_rx_data_pkts(psta);
  1945. sinfo->filled |= STATION_INFO_TX_PACKETS;
  1946. sinfo->tx_packets = psta->sta_stats.tx_pkts;
  1947. sinfo->filled |= STATION_INFO_TX_FAILED;
  1948. sinfo->tx_failed = psta->sta_stats.tx_fail_cnt;
  1949. }
  1950. #ifdef CONFIG_RTW_MESH
  1951. if (MLME_IS_MESH(padapter))
  1952. rtw_cfg80211_fill_mesh_only_sta_info(plink, psta, sinfo);
  1953. #endif
  1954. exit:
  1955. return ret;
  1956. }
  1957. extern int netdev_open(struct net_device *pnetdev);
  1958. #if 0
  1959. enum nl80211_iftype {
  1960. NL80211_IFTYPE_UNSPECIFIED,
  1961. NL80211_IFTYPE_ADHOC, /* 1 */
  1962. NL80211_IFTYPE_STATION, /* 2 */
  1963. NL80211_IFTYPE_AP, /* 3 */
  1964. NL80211_IFTYPE_AP_VLAN,
  1965. NL80211_IFTYPE_WDS,
  1966. NL80211_IFTYPE_MONITOR, /* 6 */
  1967. NL80211_IFTYPE_MESH_POINT,
  1968. NL80211_IFTYPE_P2P_CLIENT, /* 8 */
  1969. NL80211_IFTYPE_P2P_GO, /* 9 */
  1970. /* keep last */
  1971. NUM_NL80211_IFTYPES,
  1972. NL80211_IFTYPE_MAX = NUM_NL80211_IFTYPES - 1
  1973. };
  1974. #endif
  1975. static int cfg80211_rtw_change_iface(struct wiphy *wiphy,
  1976. struct net_device *ndev,
  1977. enum nl80211_iftype type,
  1978. #if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 12, 0))
  1979. u32 *flags,
  1980. #endif
  1981. struct vif_params *params)
  1982. {
  1983. enum nl80211_iftype old_type;
  1984. NDIS_802_11_NETWORK_INFRASTRUCTURE networkType;
  1985. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  1986. struct wireless_dev *rtw_wdev = padapter->rtw_wdev;
  1987. struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
  1988. #ifdef CONFIG_P2P
  1989. struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
  1990. u8 is_p2p = _FALSE;
  1991. #endif
  1992. int ret = 0;
  1993. u8 change = _FALSE;
  1994. RTW_INFO(FUNC_NDEV_FMT" type=%d, hw_port:%d\n", FUNC_NDEV_ARG(ndev), type, padapter->hw_port);
  1995. if (adapter_to_dvobj(padapter)->processing_dev_remove == _TRUE) {
  1996. ret = -EPERM;
  1997. goto exit;
  1998. }
  1999. RTW_INFO(FUNC_NDEV_FMT" call netdev_open\n", FUNC_NDEV_ARG(ndev));
  2000. if (netdev_open(ndev) != 0) {
  2001. RTW_INFO(FUNC_NDEV_FMT" call netdev_open fail\n", FUNC_NDEV_ARG(ndev));
  2002. ret = -EPERM;
  2003. goto exit;
  2004. }
  2005. if (_FAIL == rtw_pwr_wakeup(padapter)) {
  2006. RTW_INFO(FUNC_NDEV_FMT" call rtw_pwr_wakeup fail\n", FUNC_NDEV_ARG(ndev));
  2007. ret = -EPERM;
  2008. goto exit;
  2009. }
  2010. old_type = rtw_wdev->iftype;
  2011. RTW_INFO(FUNC_NDEV_FMT" old_iftype=%d, new_iftype=%d\n",
  2012. FUNC_NDEV_ARG(ndev), old_type, type);
  2013. if (old_type != type) {
  2014. change = _TRUE;
  2015. pmlmeext->action_public_rxseq = 0xffff;
  2016. pmlmeext->action_public_dialog_token = 0xff;
  2017. }
  2018. /* initial default type */
  2019. ndev->type = ARPHRD_ETHER;
  2020. /*
  2021. * Disable Power Save in moniter mode,
  2022. * and enable it after leaving moniter mode.
  2023. */
  2024. if (type == NL80211_IFTYPE_MONITOR) {
  2025. rtw_ps_deny(padapter, PS_DENY_MONITOR_MODE);
  2026. LeaveAllPowerSaveMode(padapter);
  2027. } else if (old_type == NL80211_IFTYPE_MONITOR) {
  2028. /* driver in moniter mode in last time */
  2029. rtw_ps_deny_cancel(padapter, PS_DENY_MONITOR_MODE);
  2030. }
  2031. switch (type) {
  2032. case NL80211_IFTYPE_ADHOC:
  2033. networkType = Ndis802_11IBSS;
  2034. break;
  2035. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  2036. case NL80211_IFTYPE_P2P_CLIENT:
  2037. is_p2p = _TRUE;
  2038. __attribute__((__fallthrough__));
  2039. #endif
  2040. case NL80211_IFTYPE_STATION:
  2041. networkType = Ndis802_11Infrastructure;
  2042. #ifdef CONFIG_P2P
  2043. if (change && pwdinfo->driver_interface == DRIVER_CFG80211) {
  2044. if (is_p2p == _TRUE)
  2045. rtw_p2p_enable(padapter, P2P_ROLE_CLIENT);
  2046. #if !RTW_P2P_GROUP_INTERFACE
  2047. else if (rtw_p2p_chk_role(pwdinfo, P2P_ROLE_CLIENT)
  2048. || rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)
  2049. ) {
  2050. /* it means remove GC/GO and change mode from GC/GO to station(P2P DEVICE) */
  2051. rtw_p2p_set_role(pwdinfo, P2P_ROLE_DEVICE);
  2052. }
  2053. #endif
  2054. }
  2055. #endif /* CONFIG_P2P */
  2056. break;
  2057. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  2058. case NL80211_IFTYPE_P2P_GO:
  2059. is_p2p = _TRUE;
  2060. __attribute__((__fallthrough__));
  2061. #endif
  2062. case NL80211_IFTYPE_AP:
  2063. networkType = Ndis802_11APMode;
  2064. #ifdef CONFIG_P2P
  2065. if (change && pwdinfo->driver_interface == DRIVER_CFG80211) {
  2066. if (is_p2p == _TRUE)
  2067. rtw_p2p_enable(padapter, P2P_ROLE_GO);
  2068. #if !RTW_P2P_GROUP_INTERFACE
  2069. else if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) {
  2070. /* it means P2P Group created, we will be GO and change mode from P2P DEVICE to AP(GO) */
  2071. rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
  2072. }
  2073. #endif
  2074. }
  2075. #endif /* CONFIG_P2P */
  2076. break;
  2077. #ifdef CONFIG_RTW_MESH
  2078. case NL80211_IFTYPE_MESH_POINT:
  2079. networkType = Ndis802_11_mesh;
  2080. break;
  2081. #endif
  2082. case NL80211_IFTYPE_MONITOR:
  2083. networkType = Ndis802_11Monitor;
  2084. #if 0
  2085. ndev->type = ARPHRD_IEEE80211; /* IEEE 802.11 : 801 */
  2086. #endif
  2087. ndev->type = ARPHRD_IEEE80211_RADIOTAP; /* IEEE 802.11 + radiotap header : 803 */
  2088. break;
  2089. default:
  2090. ret = -EOPNOTSUPP;
  2091. goto exit;
  2092. }
  2093. rtw_wdev->iftype = type;
  2094. if (rtw_set_802_11_infrastructure_mode(padapter, networkType) == _FALSE) {
  2095. rtw_wdev->iftype = old_type;
  2096. ret = -EPERM;
  2097. goto exit;
  2098. }
  2099. rtw_setopmode_cmd(padapter, networkType, RTW_CMDF_WAIT_ACK);
  2100. exit:
  2101. RTW_INFO(FUNC_NDEV_FMT" ret:%d\n", FUNC_NDEV_ARG(ndev), ret);
  2102. return ret;
  2103. }
  2104. void rtw_cfg80211_indicate_scan_done(_adapter *adapter, bool aborted)
  2105. {
  2106. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(adapter);
  2107. _irqL irqL;
  2108. #if (KERNEL_VERSION(4, 7, 0) <= LINUX_VERSION_CODE)
  2109. struct cfg80211_scan_info info;
  2110. memset(&info, 0, sizeof(info));
  2111. info.aborted = aborted;
  2112. #endif
  2113. _enter_critical_bh(&pwdev_priv->scan_req_lock, &irqL);
  2114. if (pwdev_priv->scan_request != NULL) {
  2115. #ifdef CONFIG_DEBUG_CFG80211
  2116. RTW_INFO("%s with scan req\n", __FUNCTION__);
  2117. #endif
  2118. /* avoid WARN_ON(request != wiphy_to_dev(request->wiphy)->scan_req); */
  2119. if (pwdev_priv->scan_request->wiphy != pwdev_priv->rtw_wdev->wiphy)
  2120. RTW_INFO("error wiphy compare\n");
  2121. else
  2122. #if (KERNEL_VERSION(4, 7, 0) <= LINUX_VERSION_CODE)
  2123. cfg80211_scan_done(pwdev_priv->scan_request, &info);
  2124. #else
  2125. cfg80211_scan_done(pwdev_priv->scan_request, aborted);
  2126. #endif
  2127. pwdev_priv->scan_request = NULL;
  2128. } else {
  2129. #ifdef CONFIG_DEBUG_CFG80211
  2130. RTW_INFO("%s without scan req\n", __FUNCTION__);
  2131. #endif
  2132. }
  2133. _exit_critical_bh(&pwdev_priv->scan_req_lock, &irqL);
  2134. }
  2135. u32 rtw_cfg80211_wait_scan_req_empty(_adapter *adapter, u32 timeout_ms)
  2136. {
  2137. struct rtw_wdev_priv *wdev_priv = adapter_wdev_data(adapter);
  2138. u8 empty = _FALSE;
  2139. systime start;
  2140. u32 pass_ms;
  2141. start = rtw_get_current_time();
  2142. while (rtw_get_passing_time_ms(start) <= timeout_ms) {
  2143. if (RTW_CANNOT_RUN(adapter))
  2144. break;
  2145. if (!wdev_priv->scan_request) {
  2146. empty = _TRUE;
  2147. break;
  2148. }
  2149. rtw_msleep_os(10);
  2150. }
  2151. pass_ms = rtw_get_passing_time_ms(start);
  2152. if (empty == _FALSE && pass_ms > timeout_ms)
  2153. RTW_PRINT(FUNC_ADPT_FMT" pass_ms:%u, timeout\n"
  2154. , FUNC_ADPT_ARG(adapter), pass_ms);
  2155. return pass_ms;
  2156. }
  2157. void rtw_cfg80211_unlink_bss(_adapter *padapter, struct wlan_network *pnetwork)
  2158. {
  2159. struct wireless_dev *pwdev = padapter->rtw_wdev;
  2160. struct wiphy *wiphy = pwdev->wiphy;
  2161. struct cfg80211_bss *bss = NULL;
  2162. WLAN_BSSID_EX select_network = pnetwork->network;
  2163. bss = cfg80211_get_bss(wiphy, NULL/*notify_channel*/,
  2164. select_network.MacAddress, select_network.Ssid.Ssid,
  2165. select_network.Ssid.SsidLength,
  2166. #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 1, 0)
  2167. select_network.InfrastructureMode == Ndis802_11Infrastructure?IEEE80211_BSS_TYPE_ESS:IEEE80211_BSS_TYPE_IBSS,
  2168. IEEE80211_PRIVACY(select_network.Privacy));
  2169. #else
  2170. select_network.InfrastructureMode == Ndis802_11Infrastructure?WLAN_CAPABILITY_ESS:WLAN_CAPABILITY_IBSS,
  2171. select_network.InfrastructureMode == Ndis802_11Infrastructure?WLAN_CAPABILITY_ESS:WLAN_CAPABILITY_IBSS);
  2172. #endif
  2173. if (bss) {
  2174. cfg80211_unlink_bss(wiphy, bss);
  2175. RTW_INFO("%s(): cfg80211_unlink %s!!\n", __func__, select_network.Ssid.Ssid);
  2176. #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)
  2177. cfg80211_put_bss(padapter->rtw_wdev->wiphy, bss);
  2178. #else
  2179. cfg80211_put_bss(bss);
  2180. #endif
  2181. }
  2182. return;
  2183. }
  2184. /* if target wps scan ongoing, target_ssid is filled */
  2185. int rtw_cfg80211_is_target_wps_scan(struct cfg80211_scan_request *scan_req, struct cfg80211_ssid *target_ssid)
  2186. {
  2187. int ret = 0;
  2188. if (scan_req->n_ssids != 1
  2189. || scan_req->ssids[0].ssid_len == 0
  2190. || scan_req->n_channels != 1
  2191. )
  2192. goto exit;
  2193. /* under target WPS scan */
  2194. _rtw_memcpy(target_ssid, scan_req->ssids, sizeof(struct cfg80211_ssid));
  2195. ret = 1;
  2196. exit:
  2197. return ret;
  2198. }
  2199. static void _rtw_cfg80211_surveydone_event_callback(_adapter *padapter, struct cfg80211_scan_request *scan_req)
  2200. {
  2201. struct rf_ctl_t *rfctl = adapter_to_rfctl(padapter);
  2202. RT_CHANNEL_INFO *chset = rfctl->channel_set;
  2203. _irqL irqL;
  2204. _list *plist, *phead;
  2205. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  2206. _queue *queue = &(pmlmepriv->scanned_queue);
  2207. struct wlan_network *pnetwork = NULL;
  2208. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  2209. struct cfg80211_ssid target_ssid;
  2210. u8 target_wps_scan = 0;
  2211. u8 ch;
  2212. #ifdef CONFIG_DEBUG_CFG80211
  2213. RTW_INFO("%s\n", __func__);
  2214. #endif
  2215. if (scan_req)
  2216. target_wps_scan = rtw_cfg80211_is_target_wps_scan(scan_req, &target_ssid);
  2217. else {
  2218. _enter_critical_bh(&pwdev_priv->scan_req_lock, &irqL);
  2219. if (pwdev_priv->scan_request != NULL)
  2220. target_wps_scan = rtw_cfg80211_is_target_wps_scan(pwdev_priv->scan_request, &target_ssid);
  2221. _exit_critical_bh(&pwdev_priv->scan_req_lock, &irqL);
  2222. }
  2223. _enter_critical_bh(&(pmlmepriv->scanned_queue.lock), &irqL);
  2224. phead = get_list_head(queue);
  2225. plist = get_next(phead);
  2226. while (1) {
  2227. if (rtw_end_of_queue_search(phead, plist) == _TRUE)
  2228. break;
  2229. pnetwork = LIST_CONTAINOR(plist, struct wlan_network, list);
  2230. ch = pnetwork->network.Configuration.DSConfig;
  2231. /* report network only if the current channel set contains the channel to which this network belongs */
  2232. if (rtw_chset_search_ch(chset, ch) >= 0
  2233. && rtw_mlme_band_check(padapter, ch) == _TRUE
  2234. && _TRUE == rtw_validate_ssid(&(pnetwork->network.Ssid))
  2235. && (!IS_DFS_SLAVE_WITH_RD(rfctl)
  2236. || rtw_odm_dfs_domain_unknown(rfctl_to_dvobj(rfctl))
  2237. || !rtw_chset_is_ch_non_ocp(chset, ch))
  2238. ) {
  2239. if (target_wps_scan)
  2240. rtw_cfg80211_clear_wps_sr_of_non_target_bss(padapter, pnetwork, &target_ssid);
  2241. rtw_cfg80211_inform_bss(padapter, pnetwork);
  2242. }
  2243. #if 0
  2244. /* check ralink testbed RSN IE length */
  2245. {
  2246. if (_rtw_memcmp(pnetwork->network.Ssid.Ssid, "Ralink_11n_AP", 13)) {
  2247. uint ie_len = 0;
  2248. u8 *p = NULL;
  2249. p = rtw_get_ie(pnetwork->network.IEs + _BEACON_IE_OFFSET_, _RSN_IE_2_, &ie_len, (pnetwork->network.IELength - _BEACON_IE_OFFSET_));
  2250. RTW_INFO("ie_len=%d\n", ie_len);
  2251. }
  2252. }
  2253. #endif
  2254. plist = get_next(plist);
  2255. }
  2256. _exit_critical_bh(&(pmlmepriv->scanned_queue.lock), &irqL);
  2257. }
  2258. inline void rtw_cfg80211_surveydone_event_callback(_adapter *padapter)
  2259. {
  2260. _rtw_cfg80211_surveydone_event_callback(padapter, NULL);
  2261. }
  2262. static int rtw_cfg80211_set_probe_req_wpsp2pie(_adapter *padapter, char *buf, int len)
  2263. {
  2264. int ret = 0;
  2265. uint wps_ielen = 0;
  2266. u8 *wps_ie;
  2267. u32 p2p_ielen = 0;
  2268. u8 *p2p_ie;
  2269. u32 wfd_ielen = 0;
  2270. u8 *wfd_ie;
  2271. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  2272. #ifdef CONFIG_DEBUG_CFG80211
  2273. RTW_INFO("%s, ielen=%d\n", __func__, len);
  2274. #endif
  2275. if (len > 0) {
  2276. wps_ie = rtw_get_wps_ie(buf, len, NULL, &wps_ielen);
  2277. if (wps_ie) {
  2278. #ifdef CONFIG_DEBUG_CFG80211
  2279. RTW_INFO("probe_req_wps_ielen=%d\n", wps_ielen);
  2280. #endif
  2281. if (pmlmepriv->wps_probe_req_ie) {
  2282. u32 free_len = pmlmepriv->wps_probe_req_ie_len;
  2283. pmlmepriv->wps_probe_req_ie_len = 0;
  2284. rtw_mfree(pmlmepriv->wps_probe_req_ie, free_len);
  2285. pmlmepriv->wps_probe_req_ie = NULL;
  2286. }
  2287. pmlmepriv->wps_probe_req_ie = rtw_malloc(wps_ielen);
  2288. if (pmlmepriv->wps_probe_req_ie == NULL) {
  2289. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  2290. return -EINVAL;
  2291. }
  2292. _rtw_memcpy(pmlmepriv->wps_probe_req_ie, wps_ie, wps_ielen);
  2293. pmlmepriv->wps_probe_req_ie_len = wps_ielen;
  2294. }
  2295. /* buf += wps_ielen; */
  2296. /* len -= wps_ielen; */
  2297. #ifdef CONFIG_P2P
  2298. p2p_ie = rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen);
  2299. if (p2p_ie) {
  2300. struct wifidirect_info *wdinfo = &padapter->wdinfo;
  2301. u32 attr_contentlen = 0;
  2302. u8 listen_ch_attr[5];
  2303. #ifdef CONFIG_DEBUG_CFG80211
  2304. RTW_INFO("probe_req_p2p_ielen=%d\n", p2p_ielen);
  2305. #endif
  2306. if (pmlmepriv->p2p_probe_req_ie) {
  2307. u32 free_len = pmlmepriv->p2p_probe_req_ie_len;
  2308. pmlmepriv->p2p_probe_req_ie_len = 0;
  2309. rtw_mfree(pmlmepriv->p2p_probe_req_ie, free_len);
  2310. pmlmepriv->p2p_probe_req_ie = NULL;
  2311. }
  2312. pmlmepriv->p2p_probe_req_ie = rtw_malloc(p2p_ielen);
  2313. if (pmlmepriv->p2p_probe_req_ie == NULL) {
  2314. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  2315. return -EINVAL;
  2316. }
  2317. _rtw_memcpy(pmlmepriv->p2p_probe_req_ie, p2p_ie, p2p_ielen);
  2318. pmlmepriv->p2p_probe_req_ie_len = p2p_ielen;
  2319. if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_LISTEN_CH, (u8 *)listen_ch_attr, (uint *) &attr_contentlen)
  2320. && attr_contentlen == 5) {
  2321. if (wdinfo->listen_channel != listen_ch_attr[4]) {
  2322. RTW_INFO(FUNC_ADPT_FMT" listen channel - country:%c%c%c, class:%u, ch:%u\n",
  2323. FUNC_ADPT_ARG(padapter), listen_ch_attr[0], listen_ch_attr[1], listen_ch_attr[2],
  2324. listen_ch_attr[3], listen_ch_attr[4]);
  2325. wdinfo->listen_channel = listen_ch_attr[4];
  2326. }
  2327. }
  2328. }
  2329. #endif /* CONFIG_P2P */
  2330. #ifdef CONFIG_WFD
  2331. wfd_ie = rtw_get_wfd_ie(buf, len, NULL, &wfd_ielen);
  2332. if (wfd_ie) {
  2333. #ifdef CONFIG_DEBUG_CFG80211
  2334. RTW_INFO("probe_req_wfd_ielen=%d\n", wfd_ielen);
  2335. #endif
  2336. if (rtw_mlme_update_wfd_ie_data(pmlmepriv, MLME_PROBE_REQ_IE, wfd_ie, wfd_ielen) != _SUCCESS)
  2337. return -EINVAL;
  2338. }
  2339. #endif /* CONFIG_WFD */
  2340. }
  2341. return ret;
  2342. }
  2343. #ifdef CONFIG_CONCURRENT_MODE
  2344. u8 rtw_cfg80211_scan_via_buddy(_adapter *padapter, struct cfg80211_scan_request *request)
  2345. {
  2346. int i;
  2347. u8 ret = _FALSE;
  2348. _adapter *iface = NULL;
  2349. _irqL irqL;
  2350. struct dvobj_priv *dvobj = adapter_to_dvobj(padapter);
  2351. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  2352. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  2353. for (i = 0; i < dvobj->iface_nums; i++) {
  2354. struct mlme_priv *buddy_mlmepriv;
  2355. struct rtw_wdev_priv *buddy_wdev_priv;
  2356. iface = dvobj->padapters[i];
  2357. if (iface == NULL)
  2358. continue;
  2359. if (iface == padapter)
  2360. continue;
  2361. if (rtw_is_adapter_up(iface) == _FALSE)
  2362. continue;
  2363. buddy_mlmepriv = &iface->mlmepriv;
  2364. if (!check_fwstate(buddy_mlmepriv, _FW_UNDER_SURVEY))
  2365. continue;
  2366. buddy_wdev_priv = adapter_wdev_data(iface);
  2367. _enter_critical_bh(&pwdev_priv->scan_req_lock, &irqL);
  2368. _enter_critical_bh(&buddy_wdev_priv->scan_req_lock, &irqL);
  2369. if (buddy_wdev_priv->scan_request) {
  2370. pmlmepriv->scanning_via_buddy_intf = _TRUE;
  2371. _enter_critical_bh(&pmlmepriv->lock, &irqL);
  2372. set_fwstate(pmlmepriv, _FW_UNDER_SURVEY);
  2373. _exit_critical_bh(&pmlmepriv->lock, &irqL);
  2374. pwdev_priv->scan_request = request;
  2375. ret = _TRUE;
  2376. }
  2377. _exit_critical_bh(&buddy_wdev_priv->scan_req_lock, &irqL);
  2378. _exit_critical_bh(&pwdev_priv->scan_req_lock, &irqL);
  2379. if (ret == _TRUE)
  2380. goto exit;
  2381. }
  2382. exit:
  2383. return ret;
  2384. }
  2385. void rtw_cfg80211_indicate_scan_done_for_buddy(_adapter *padapter, bool bscan_aborted)
  2386. {
  2387. int i;
  2388. u8 ret = 0;
  2389. _adapter *iface = NULL;
  2390. _irqL irqL;
  2391. struct dvobj_priv *dvobj = adapter_to_dvobj(padapter);
  2392. struct mlme_priv *mlmepriv;
  2393. struct rtw_wdev_priv *wdev_priv;
  2394. bool indicate_buddy_scan;
  2395. for (i = 0; i < dvobj->iface_nums; i++) {
  2396. iface = dvobj->padapters[i];
  2397. if ((iface) && rtw_is_adapter_up(iface)) {
  2398. if (iface == padapter)
  2399. continue;
  2400. mlmepriv = &(iface->mlmepriv);
  2401. wdev_priv = adapter_wdev_data(iface);
  2402. indicate_buddy_scan = _FALSE;
  2403. _enter_critical_bh(&wdev_priv->scan_req_lock, &irqL);
  2404. if (mlmepriv->scanning_via_buddy_intf == _TRUE) {
  2405. mlmepriv->scanning_via_buddy_intf = _FALSE;
  2406. clr_fwstate(mlmepriv, _FW_UNDER_SURVEY);
  2407. if (wdev_priv->scan_request)
  2408. indicate_buddy_scan = _TRUE;
  2409. }
  2410. _exit_critical_bh(&wdev_priv->scan_req_lock, &irqL);
  2411. if (indicate_buddy_scan == _TRUE) {
  2412. rtw_cfg80211_surveydone_event_callback(iface);
  2413. rtw_indicate_scan_done(iface, bscan_aborted);
  2414. }
  2415. }
  2416. }
  2417. }
  2418. #endif /* CONFIG_CONCURRENT_MODE */
  2419. static int cfg80211_rtw_scan(struct wiphy *wiphy
  2420. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 6, 0))
  2421. , struct net_device *ndev
  2422. #endif
  2423. , struct cfg80211_scan_request *request)
  2424. {
  2425. int i;
  2426. u8 _status = _FALSE;
  2427. int ret = 0;
  2428. struct sitesurvey_parm parm;
  2429. _irqL irqL;
  2430. u8 survey_times = 3;
  2431. u8 survey_times_for_one_ch = 6;
  2432. struct cfg80211_ssid *ssids = request->ssids;
  2433. int social_channel = 0, j = 0;
  2434. bool need_indicate_scan_done = _FALSE;
  2435. bool ps_denied = _FALSE;
  2436. u8 ssc_chk;
  2437. _adapter *padapter;
  2438. struct wireless_dev *wdev;
  2439. struct rtw_wdev_priv *pwdev_priv;
  2440. struct mlme_priv *pmlmepriv;
  2441. #ifdef CONFIG_P2P
  2442. struct wifidirect_info *pwdinfo;
  2443. #endif /* CONFIG_P2P */
  2444. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  2445. wdev = request->wdev;
  2446. #if defined(RTW_DEDICATED_P2P_DEVICE)
  2447. if (wdev == wiphy_to_pd_wdev(wiphy))
  2448. padapter = wiphy_to_adapter(wiphy);
  2449. else
  2450. #endif
  2451. if (wdev_to_ndev(wdev))
  2452. padapter = (_adapter *)rtw_netdev_priv(wdev_to_ndev(wdev));
  2453. else {
  2454. ret = -EINVAL;
  2455. goto exit;
  2456. }
  2457. #else
  2458. if (ndev == NULL) {
  2459. ret = -EINVAL;
  2460. goto exit;
  2461. }
  2462. padapter = (_adapter *)rtw_netdev_priv(ndev);
  2463. wdev = ndev_to_wdev(ndev);
  2464. #endif
  2465. pwdev_priv = adapter_wdev_data(padapter);
  2466. pmlmepriv = &padapter->mlmepriv;
  2467. #ifdef CONFIG_P2P
  2468. pwdinfo = &(padapter->wdinfo);
  2469. #endif /* CONFIG_P2P */
  2470. RTW_INFO(FUNC_ADPT_FMT"%s\n", FUNC_ADPT_ARG(padapter)
  2471. , wdev == wiphy_to_pd_wdev(wiphy) ? " PD" : "");
  2472. #if 1
  2473. ssc_chk = rtw_sitesurvey_condition_check(padapter, _TRUE);
  2474. if (ssc_chk == SS_DENY_MP_MODE)
  2475. goto bypass_p2p_chk;
  2476. #ifdef DBG_LA_MODE
  2477. if (ssc_chk == SS_DENY_LA_MODE)
  2478. goto bypass_p2p_chk;
  2479. #endif
  2480. #ifdef CONFIG_P2P
  2481. if (pwdinfo->driver_interface == DRIVER_CFG80211) {
  2482. if (ssids->ssid != NULL
  2483. && _rtw_memcmp(ssids->ssid, "DIRECT-", 7)
  2484. && rtw_get_p2p_ie((u8 *)request->ie, request->ie_len, NULL, NULL)
  2485. ) {
  2486. if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
  2487. rtw_p2p_enable(padapter, P2P_ROLE_DEVICE);
  2488. else {
  2489. rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo));
  2490. #ifdef CONFIG_DEBUG_CFG80211
  2491. RTW_INFO("%s, role=%d, p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo));
  2492. #endif
  2493. }
  2494. rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN);
  2495. if (request->n_channels == 3 &&
  2496. request->channels[0]->hw_value == 1 &&
  2497. request->channels[1]->hw_value == 6 &&
  2498. request->channels[2]->hw_value == 11
  2499. )
  2500. social_channel = 1;
  2501. }
  2502. }
  2503. #endif /*CONFIG_P2P*/
  2504. if (request->ie && request->ie_len > 0)
  2505. rtw_cfg80211_set_probe_req_wpsp2pie(padapter, (u8 *)request->ie, request->ie_len);
  2506. bypass_p2p_chk:
  2507. switch (ssc_chk) {
  2508. case SS_ALLOW :
  2509. break;
  2510. case SS_DENY_MP_MODE:
  2511. ret = -EPERM;
  2512. goto exit;
  2513. #ifdef DBG_LA_MODE
  2514. case SS_DENY_LA_MODE:
  2515. ret = -EPERM;
  2516. goto exit;
  2517. #endif
  2518. #ifdef CONFIG_RTW_REPEATER_SON
  2519. case SS_DENY_RSON_SCANING :
  2520. #endif
  2521. case SS_DENY_BLOCK_SCAN :
  2522. case SS_DENY_SELF_AP_UNDER_WPS :
  2523. case SS_DENY_SELF_AP_UNDER_LINKING :
  2524. case SS_DENY_SELF_AP_UNDER_SURVEY :
  2525. case SS_DENY_SELF_STA_UNDER_SURVEY :
  2526. #ifdef CONFIG_CONCURRENT_MODE
  2527. case SS_DENY_BUDDY_UNDER_LINK_WPS :
  2528. #endif
  2529. case SS_DENY_BUSY_TRAFFIC :
  2530. need_indicate_scan_done = _TRUE;
  2531. goto check_need_indicate_scan_done;
  2532. case SS_DENY_BY_DRV :
  2533. #if CONFIG_NOTIFY_SCAN_ABORT_WITH_BUSY
  2534. ret = -EBUSY;
  2535. goto exit;
  2536. #else
  2537. need_indicate_scan_done = _TRUE;
  2538. goto check_need_indicate_scan_done;
  2539. #endif
  2540. break;
  2541. case SS_DENY_SELF_STA_UNDER_LINKING :
  2542. ret = -EBUSY;
  2543. goto check_need_indicate_scan_done;
  2544. #ifdef CONFIG_CONCURRENT_MODE
  2545. case SS_DENY_BUDDY_UNDER_SURVEY :
  2546. {
  2547. bool scan_via_buddy = rtw_cfg80211_scan_via_buddy(padapter, request);
  2548. if (scan_via_buddy == _FALSE)
  2549. need_indicate_scan_done = _TRUE;
  2550. goto check_need_indicate_scan_done;
  2551. }
  2552. #endif
  2553. default :
  2554. RTW_ERR("site survey check code (%d) unknown\n", ssc_chk);
  2555. need_indicate_scan_done = _TRUE;
  2556. goto check_need_indicate_scan_done;
  2557. }
  2558. rtw_ps_deny(padapter, PS_DENY_SCAN);
  2559. ps_denied = _TRUE;
  2560. if (_FAIL == rtw_pwr_wakeup(padapter)) {
  2561. need_indicate_scan_done = _TRUE;
  2562. goto check_need_indicate_scan_done;
  2563. }
  2564. #else
  2565. #ifdef CONFIG_MP_INCLUDED
  2566. if (rtw_mp_mode_check(padapter)) {
  2567. RTW_INFO("MP mode block Scan request\n");
  2568. ret = -EPERM;
  2569. goto exit;
  2570. }
  2571. #endif
  2572. #ifdef CONFIG_P2P
  2573. if (pwdinfo->driver_interface == DRIVER_CFG80211) {
  2574. if (ssids->ssid != NULL
  2575. && _rtw_memcmp(ssids->ssid, "DIRECT-", 7)
  2576. && rtw_get_p2p_ie((u8 *)request->ie, request->ie_len, NULL, NULL)
  2577. ) {
  2578. if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
  2579. rtw_p2p_enable(padapter, P2P_ROLE_DEVICE);
  2580. else {
  2581. rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo));
  2582. #ifdef CONFIG_DEBUG_CFG80211
  2583. RTW_INFO("%s, role=%d, p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo));
  2584. #endif
  2585. }
  2586. rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN);
  2587. if (request->n_channels == 3 &&
  2588. request->channels[0]->hw_value == 1 &&
  2589. request->channels[1]->hw_value == 6 &&
  2590. request->channels[2]->hw_value == 11
  2591. )
  2592. social_channel = 1;
  2593. }
  2594. }
  2595. #endif /*CONFIG_P2P*/
  2596. if (request->ie && request->ie_len > 0)
  2597. rtw_cfg80211_set_probe_req_wpsp2pie(padapter, (u8 *)request->ie, request->ie_len);
  2598. #ifdef CONFIG_RTW_REPEATER_SON
  2599. if (padapter->rtw_rson_scanstage == RSON_SCAN_PROCESS) {
  2600. RTW_INFO(FUNC_ADPT_FMT" blocking scan for under rson scanning process\n", FUNC_ADPT_ARG(padapter));
  2601. need_indicate_scan_done = _TRUE;
  2602. goto check_need_indicate_scan_done;
  2603. }
  2604. #endif
  2605. if (adapter_wdev_data(padapter)->block_scan == _TRUE) {
  2606. RTW_INFO(FUNC_ADPT_FMT" wdev_priv.block_scan is set\n", FUNC_ADPT_ARG(padapter));
  2607. need_indicate_scan_done = _TRUE;
  2608. goto check_need_indicate_scan_done;
  2609. }
  2610. rtw_ps_deny(padapter, PS_DENY_SCAN);
  2611. ps_denied = _TRUE;
  2612. if (_FAIL == rtw_pwr_wakeup(padapter)) {
  2613. need_indicate_scan_done = _TRUE;
  2614. goto check_need_indicate_scan_done;
  2615. }
  2616. if (rtw_is_scan_deny(padapter)) {
  2617. RTW_INFO(FUNC_ADPT_FMT ": scan deny\n", FUNC_ADPT_ARG(padapter));
  2618. #if CONFIG_NOTIFY_SCAN_ABORT_WITH_BUSY
  2619. ret = -EBUSY;
  2620. goto exit;
  2621. #else
  2622. need_indicate_scan_done = _TRUE;
  2623. goto check_need_indicate_scan_done;
  2624. #endif
  2625. }
  2626. /* check fw state*/
  2627. if (check_fwstate(pmlmepriv, WIFI_AP_STATE) == _TRUE) {
  2628. #ifdef CONFIG_DEBUG_CFG80211
  2629. RTW_INFO(FUNC_ADPT_FMT" under WIFI_AP_STATE\n", FUNC_ADPT_ARG(padapter));
  2630. #endif
  2631. if (check_fwstate(pmlmepriv, WIFI_UNDER_WPS | _FW_UNDER_SURVEY | _FW_UNDER_LINKING) == _TRUE) {
  2632. RTW_INFO("%s, fwstate=0x%x\n", __func__, pmlmepriv->fw_state);
  2633. if (check_fwstate(pmlmepriv, WIFI_UNDER_WPS))
  2634. RTW_INFO("AP mode process WPS\n");
  2635. need_indicate_scan_done = _TRUE;
  2636. goto check_need_indicate_scan_done;
  2637. }
  2638. }
  2639. if (check_fwstate(pmlmepriv, _FW_UNDER_SURVEY) == _TRUE) {
  2640. RTW_INFO("%s, fwstate=0x%x\n", __func__, pmlmepriv->fw_state);
  2641. need_indicate_scan_done = _TRUE;
  2642. goto check_need_indicate_scan_done;
  2643. } else if (check_fwstate(pmlmepriv, _FW_UNDER_LINKING) == _TRUE) {
  2644. RTW_INFO("%s, fwstate=0x%x\n", __func__, pmlmepriv->fw_state);
  2645. ret = -EBUSY;
  2646. goto check_need_indicate_scan_done;
  2647. }
  2648. #ifdef CONFIG_CONCURRENT_MODE
  2649. if (rtw_mi_buddy_check_fwstate(padapter, _FW_UNDER_LINKING | WIFI_UNDER_WPS)) {
  2650. RTW_INFO("%s exit due to buddy_intf's mlme state under linking or wps\n", __func__);
  2651. need_indicate_scan_done = _TRUE;
  2652. goto check_need_indicate_scan_done;
  2653. } else if (rtw_mi_buddy_check_fwstate(padapter, _FW_UNDER_SURVEY)) {
  2654. bool scan_via_buddy = rtw_cfg80211_scan_via_buddy(padapter, request);
  2655. if (scan_via_buddy == _FALSE)
  2656. need_indicate_scan_done = _TRUE;
  2657. goto check_need_indicate_scan_done;
  2658. }
  2659. #endif /* CONFIG_CONCURRENT_MODE */
  2660. /* busy traffic check*/
  2661. if (rtw_mi_busy_traffic_check(padapter, _TRUE)) {
  2662. need_indicate_scan_done = _TRUE;
  2663. goto check_need_indicate_scan_done;
  2664. }
  2665. #endif
  2666. #ifdef CONFIG_P2P
  2667. if (!rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE) && !rtw_p2p_chk_state(pwdinfo, P2P_STATE_IDLE)) {
  2668. rtw_p2p_set_state(pwdinfo, P2P_STATE_FIND_PHASE_SEARCH);
  2669. if (social_channel == 0)
  2670. rtw_p2p_findphase_ex_set(pwdinfo, P2P_FINDPHASE_EX_NONE);
  2671. else
  2672. rtw_p2p_findphase_ex_set(pwdinfo, P2P_FINDPHASE_EX_SOCIAL_LAST);
  2673. }
  2674. #endif /* CONFIG_P2P */
  2675. rtw_init_sitesurvey_parm(padapter, &parm);
  2676. /* parsing request ssids, n_ssids */
  2677. for (i = 0; i < request->n_ssids && i < RTW_SSID_SCAN_AMOUNT; i++) {
  2678. #ifdef CONFIG_DEBUG_CFG80211
  2679. RTW_INFO("ssid=%s, len=%d\n", ssids[i].ssid, ssids[i].ssid_len);
  2680. #endif
  2681. _rtw_memcpy(&parm.ssid[i].Ssid, ssids[i].ssid, ssids[i].ssid_len);
  2682. parm.ssid[i].SsidLength = ssids[i].ssid_len;
  2683. }
  2684. parm.ssid_num = i;
  2685. /* parsing channels, n_channels */
  2686. for (i = 0; i < request->n_channels && i < RTW_CHANNEL_SCAN_AMOUNT; i++) {
  2687. #ifdef CONFIG_DEBUG_CFG80211
  2688. RTW_INFO(FUNC_ADPT_FMT CHAN_FMT"\n", FUNC_ADPT_ARG(padapter), CHAN_ARG(request->channels[i]));
  2689. #endif
  2690. parm.ch[i].hw_value = request->channels[i]->hw_value;
  2691. parm.ch[i].flags = request->channels[i]->flags;
  2692. }
  2693. parm.ch_num = i;
  2694. if (request->n_channels == 1) {
  2695. for (i = 1; i < survey_times_for_one_ch; i++)
  2696. _rtw_memcpy(&parm.ch[i], &parm.ch[0], sizeof(struct rtw_ieee80211_channel));
  2697. parm.ch_num = survey_times_for_one_ch;
  2698. } else if (request->n_channels <= 4) {
  2699. for (j = request->n_channels - 1; j >= 0; j--)
  2700. for (i = 0; i < survey_times; i++)
  2701. _rtw_memcpy(&parm.ch[j * survey_times + i], &parm.ch[j], sizeof(struct rtw_ieee80211_channel));
  2702. parm.ch_num = survey_times * request->n_channels;
  2703. }
  2704. _enter_critical_bh(&pwdev_priv->scan_req_lock, &irqL);
  2705. _enter_critical_bh(&pmlmepriv->lock, &irqL);
  2706. _status = rtw_sitesurvey_cmd(padapter, &parm);
  2707. if (_status == _SUCCESS)
  2708. pwdev_priv->scan_request = request;
  2709. else
  2710. ret = -1;
  2711. _exit_critical_bh(&pmlmepriv->lock, &irqL);
  2712. _exit_critical_bh(&pwdev_priv->scan_req_lock, &irqL);
  2713. check_need_indicate_scan_done:
  2714. if (_TRUE == need_indicate_scan_done) {
  2715. #if (KERNEL_VERSION(4, 7, 0) <= LINUX_VERSION_CODE)
  2716. struct cfg80211_scan_info info;
  2717. memset(&info, 0, sizeof(info));
  2718. info.aborted = 0;
  2719. #endif
  2720. _rtw_cfg80211_surveydone_event_callback(padapter, request);
  2721. #if (KERNEL_VERSION(4, 7, 0) <= LINUX_VERSION_CODE)
  2722. cfg80211_scan_done(request, &info);
  2723. #else
  2724. cfg80211_scan_done(request, 0);
  2725. #endif
  2726. }
  2727. cancel_ps_deny:
  2728. if (ps_denied == _TRUE)
  2729. rtw_ps_deny_cancel(padapter, PS_DENY_SCAN);
  2730. exit:
  2731. return ret;
  2732. }
  2733. static int cfg80211_rtw_set_wiphy_params(struct wiphy *wiphy, u32 changed)
  2734. {
  2735. #if 0
  2736. struct iwm_priv *iwm = wiphy_to_iwm(wiphy);
  2737. if (changed & WIPHY_PARAM_RTS_THRESHOLD &&
  2738. (iwm->conf.rts_threshold != wiphy->rts_threshold)) {
  2739. int ret;
  2740. iwm->conf.rts_threshold = wiphy->rts_threshold;
  2741. ret = iwm_umac_set_config_fix(iwm, UMAC_PARAM_TBL_CFG_FIX,
  2742. CFG_RTS_THRESHOLD,
  2743. iwm->conf.rts_threshold);
  2744. if (ret < 0)
  2745. return ret;
  2746. }
  2747. if (changed & WIPHY_PARAM_FRAG_THRESHOLD &&
  2748. (iwm->conf.frag_threshold != wiphy->frag_threshold)) {
  2749. int ret;
  2750. iwm->conf.frag_threshold = wiphy->frag_threshold;
  2751. ret = iwm_umac_set_config_fix(iwm, UMAC_PARAM_TBL_FA_CFG_FIX,
  2752. CFG_FRAG_THRESHOLD,
  2753. iwm->conf.frag_threshold);
  2754. if (ret < 0)
  2755. return ret;
  2756. }
  2757. #endif
  2758. RTW_INFO("%s\n", __func__);
  2759. return 0;
  2760. }
  2761. static int rtw_cfg80211_set_wpa_version(struct security_priv *psecuritypriv, u32 wpa_version)
  2762. {
  2763. RTW_INFO("%s, wpa_version=%d\n", __func__, wpa_version);
  2764. if (!wpa_version) {
  2765. psecuritypriv->ndisauthtype = Ndis802_11AuthModeOpen;
  2766. return 0;
  2767. }
  2768. if (wpa_version & (NL80211_WPA_VERSION_1 | NL80211_WPA_VERSION_2))
  2769. psecuritypriv->ndisauthtype = Ndis802_11AuthModeWPAPSK;
  2770. #if 0
  2771. if (wpa_version & NL80211_WPA_VERSION_2)
  2772. psecuritypriv->ndisauthtype = Ndis802_11AuthModeWPA2PSK;
  2773. #endif
  2774. #ifdef CONFIG_WAPI_SUPPORT
  2775. if (wpa_version & NL80211_WAPI_VERSION_1)
  2776. psecuritypriv->ndisauthtype = Ndis802_11AuthModeWAPI;
  2777. #endif
  2778. return 0;
  2779. }
  2780. static int rtw_cfg80211_set_auth_type(struct security_priv *psecuritypriv,
  2781. enum nl80211_auth_type sme_auth_type)
  2782. {
  2783. RTW_INFO("%s, nl80211_auth_type=%d\n", __func__, sme_auth_type);
  2784. switch (sme_auth_type) {
  2785. case NL80211_AUTHTYPE_AUTOMATIC:
  2786. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_Auto;
  2787. break;
  2788. case NL80211_AUTHTYPE_OPEN_SYSTEM:
  2789. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_Open;
  2790. if (psecuritypriv->ndisauthtype > Ndis802_11AuthModeWPA)
  2791. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
  2792. #ifdef CONFIG_WAPI_SUPPORT
  2793. if (psecuritypriv->ndisauthtype == Ndis802_11AuthModeWAPI)
  2794. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_WAPI;
  2795. #endif
  2796. break;
  2797. case NL80211_AUTHTYPE_SHARED_KEY:
  2798. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_Shared;
  2799. psecuritypriv->ndisencryptstatus = Ndis802_11Encryption1Enabled;
  2800. break;
  2801. default:
  2802. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_Open;
  2803. /* return -ENOTSUPP; */
  2804. }
  2805. return 0;
  2806. }
  2807. static int rtw_cfg80211_set_cipher(struct security_priv *psecuritypriv, u32 cipher, bool ucast)
  2808. {
  2809. u32 ndisencryptstatus = Ndis802_11EncryptionDisabled;
  2810. u32 *profile_cipher = ucast ? &psecuritypriv->dot11PrivacyAlgrthm :
  2811. &psecuritypriv->dot118021XGrpPrivacy;
  2812. RTW_INFO("%s, ucast=%d, cipher=0x%x\n", __func__, ucast, cipher);
  2813. if (!cipher) {
  2814. *profile_cipher = _NO_PRIVACY_;
  2815. psecuritypriv->ndisencryptstatus = ndisencryptstatus;
  2816. return 0;
  2817. }
  2818. switch (cipher) {
  2819. case IW_AUTH_CIPHER_NONE:
  2820. *profile_cipher = _NO_PRIVACY_;
  2821. ndisencryptstatus = Ndis802_11EncryptionDisabled;
  2822. #ifdef CONFIG_WAPI_SUPPORT
  2823. if (psecuritypriv->dot11PrivacyAlgrthm == _SMS4_)
  2824. *profile_cipher = _SMS4_;
  2825. #endif
  2826. break;
  2827. case WLAN_CIPHER_SUITE_WEP40:
  2828. *profile_cipher = _WEP40_;
  2829. ndisencryptstatus = Ndis802_11Encryption1Enabled;
  2830. break;
  2831. case WLAN_CIPHER_SUITE_WEP104:
  2832. *profile_cipher = _WEP104_;
  2833. ndisencryptstatus = Ndis802_11Encryption1Enabled;
  2834. break;
  2835. case WLAN_CIPHER_SUITE_TKIP:
  2836. *profile_cipher = _TKIP_;
  2837. ndisencryptstatus = Ndis802_11Encryption2Enabled;
  2838. break;
  2839. case WLAN_CIPHER_SUITE_CCMP:
  2840. *profile_cipher = _AES_;
  2841. ndisencryptstatus = Ndis802_11Encryption3Enabled;
  2842. break;
  2843. #ifdef CONFIG_WAPI_SUPPORT
  2844. case WLAN_CIPHER_SUITE_SMS4:
  2845. *profile_cipher = _SMS4_;
  2846. ndisencryptstatus = Ndis802_11_EncrypteionWAPI;
  2847. break;
  2848. #endif
  2849. default:
  2850. RTW_INFO("Unsupported cipher: 0x%x\n", cipher);
  2851. return -ENOTSUPP;
  2852. }
  2853. if (ucast) {
  2854. psecuritypriv->ndisencryptstatus = ndisencryptstatus;
  2855. /* if(psecuritypriv->dot11PrivacyAlgrthm >= _AES_) */
  2856. /* psecuritypriv->ndisauthtype = Ndis802_11AuthModeWPA2PSK; */
  2857. }
  2858. return 0;
  2859. }
  2860. static int rtw_cfg80211_set_key_mgt(struct security_priv *psecuritypriv, u32 key_mgt)
  2861. {
  2862. RTW_INFO("%s, key_mgt=0x%x\n", __func__, key_mgt);
  2863. if (key_mgt == WLAN_AKM_SUITE_8021X) {
  2864. /* *auth_type = UMAC_AUTH_TYPE_8021X; */
  2865. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
  2866. psecuritypriv->rsn_akm_suite_type = 1;
  2867. } else if (key_mgt == WLAN_AKM_SUITE_PSK) {
  2868. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
  2869. psecuritypriv->rsn_akm_suite_type = 2;
  2870. }
  2871. #ifdef CONFIG_WAPI_SUPPORT
  2872. else if (key_mgt == WLAN_AKM_SUITE_WAPI_PSK)
  2873. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_WAPI;
  2874. else if (key_mgt == WLAN_AKM_SUITE_WAPI_CERT)
  2875. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_WAPI;
  2876. #endif
  2877. #ifdef CONFIG_RTW_80211R
  2878. else if (key_mgt == WLAN_AKM_SUITE_FT_8021X) {
  2879. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
  2880. psecuritypriv->rsn_akm_suite_type = 3;
  2881. } else if (key_mgt == WLAN_AKM_SUITE_FT_PSK) {
  2882. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
  2883. psecuritypriv->rsn_akm_suite_type = 4;
  2884. }
  2885. #endif
  2886. else {
  2887. RTW_INFO("Invalid key mgt: 0x%x\n", key_mgt);
  2888. /* return -EINVAL; */
  2889. }
  2890. return 0;
  2891. }
  2892. static int rtw_cfg80211_set_wpa_ie(_adapter *padapter, u8 *pie, size_t ielen)
  2893. {
  2894. u8 *buf = NULL, *pos = NULL;
  2895. int group_cipher = 0, pairwise_cipher = 0;
  2896. u8 mfp_opt = MFP_NO;
  2897. int ret = 0;
  2898. int wpa_ielen = 0;
  2899. int wpa2_ielen = 0;
  2900. u8 *pwpa, *pwpa2;
  2901. u8 null_addr[] = {0, 0, 0, 0, 0, 0};
  2902. if (pie == NULL || !ielen) {
  2903. /* Treat this as normal case, but need to clear WIFI_UNDER_WPS */
  2904. _clr_fwstate_(&padapter->mlmepriv, WIFI_UNDER_WPS);
  2905. goto exit;
  2906. }
  2907. if (ielen > MAX_WPA_IE_LEN + MAX_WPS_IE_LEN + MAX_P2P_IE_LEN) {
  2908. ret = -EINVAL;
  2909. goto exit;
  2910. }
  2911. buf = rtw_zmalloc(ielen);
  2912. if (buf == NULL) {
  2913. ret = -ENOMEM;
  2914. goto exit;
  2915. }
  2916. _rtw_memcpy(buf, pie , ielen);
  2917. RTW_INFO("set wpa_ie(length:%zu):\n", ielen);
  2918. RTW_INFO_DUMP(NULL, buf, ielen);
  2919. pos = buf;
  2920. if (ielen < RSN_HEADER_LEN) {
  2921. ret = -1;
  2922. goto exit;
  2923. }
  2924. pwpa = rtw_get_wpa_ie(buf, &wpa_ielen, ielen);
  2925. if (pwpa && wpa_ielen > 0) {
  2926. if (rtw_parse_wpa_ie(pwpa, wpa_ielen + 2, &group_cipher, &pairwise_cipher, NULL) == _SUCCESS) {
  2927. padapter->securitypriv.dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
  2928. padapter->securitypriv.ndisauthtype = Ndis802_11AuthModeWPAPSK;
  2929. _rtw_memcpy(padapter->securitypriv.supplicant_ie, &pwpa[0], wpa_ielen + 2);
  2930. RTW_INFO("got wpa_ie, wpa_ielen:%u\n", wpa_ielen);
  2931. }
  2932. }
  2933. pwpa2 = rtw_get_wpa2_ie(buf, &wpa2_ielen, ielen);
  2934. if (pwpa2 && wpa2_ielen > 0) {
  2935. if (rtw_parse_wpa2_ie(pwpa2, wpa2_ielen + 2, &group_cipher, &pairwise_cipher, NULL, &mfp_opt) == _SUCCESS) {
  2936. padapter->securitypriv.dot11AuthAlgrthm = dot11AuthAlgrthm_8021X;
  2937. padapter->securitypriv.ndisauthtype = Ndis802_11AuthModeWPA2PSK;
  2938. _rtw_memcpy(padapter->securitypriv.supplicant_ie, &pwpa2[0], wpa2_ielen + 2);
  2939. RTW_INFO("got wpa2_ie, wpa2_ielen:%u\n", wpa2_ielen);
  2940. }
  2941. }
  2942. if (group_cipher == 0)
  2943. group_cipher = WPA_CIPHER_NONE;
  2944. if (pairwise_cipher == 0)
  2945. pairwise_cipher = WPA_CIPHER_NONE;
  2946. switch (group_cipher) {
  2947. case WPA_CIPHER_NONE:
  2948. padapter->securitypriv.dot118021XGrpPrivacy = _NO_PRIVACY_;
  2949. padapter->securitypriv.ndisencryptstatus = Ndis802_11EncryptionDisabled;
  2950. break;
  2951. case WPA_CIPHER_WEP40:
  2952. padapter->securitypriv.dot118021XGrpPrivacy = _WEP40_;
  2953. padapter->securitypriv.ndisencryptstatus = Ndis802_11Encryption1Enabled;
  2954. break;
  2955. case WPA_CIPHER_TKIP:
  2956. padapter->securitypriv.dot118021XGrpPrivacy = _TKIP_;
  2957. padapter->securitypriv.ndisencryptstatus = Ndis802_11Encryption2Enabled;
  2958. break;
  2959. case WPA_CIPHER_CCMP:
  2960. padapter->securitypriv.dot118021XGrpPrivacy = _AES_;
  2961. padapter->securitypriv.ndisencryptstatus = Ndis802_11Encryption3Enabled;
  2962. break;
  2963. case WPA_CIPHER_WEP104:
  2964. padapter->securitypriv.dot118021XGrpPrivacy = _WEP104_;
  2965. padapter->securitypriv.ndisencryptstatus = Ndis802_11Encryption1Enabled;
  2966. break;
  2967. }
  2968. switch (pairwise_cipher) {
  2969. case WPA_CIPHER_NONE:
  2970. padapter->securitypriv.dot11PrivacyAlgrthm = _NO_PRIVACY_;
  2971. padapter->securitypriv.ndisencryptstatus = Ndis802_11EncryptionDisabled;
  2972. break;
  2973. case WPA_CIPHER_WEP40:
  2974. padapter->securitypriv.dot11PrivacyAlgrthm = _WEP40_;
  2975. padapter->securitypriv.ndisencryptstatus = Ndis802_11Encryption1Enabled;
  2976. break;
  2977. case WPA_CIPHER_TKIP:
  2978. padapter->securitypriv.dot11PrivacyAlgrthm = _TKIP_;
  2979. padapter->securitypriv.ndisencryptstatus = Ndis802_11Encryption2Enabled;
  2980. break;
  2981. case WPA_CIPHER_CCMP:
  2982. padapter->securitypriv.dot11PrivacyAlgrthm = _AES_;
  2983. padapter->securitypriv.ndisencryptstatus = Ndis802_11Encryption3Enabled;
  2984. break;
  2985. case WPA_CIPHER_WEP104:
  2986. padapter->securitypriv.dot11PrivacyAlgrthm = _WEP104_;
  2987. padapter->securitypriv.ndisencryptstatus = Ndis802_11Encryption1Enabled;
  2988. break;
  2989. }
  2990. if (mfp_opt == MFP_INVALID) {
  2991. RTW_INFO(FUNC_ADPT_FMT" invalid MFP setting\n", FUNC_ADPT_ARG(padapter));
  2992. ret = -EINVAL;
  2993. goto exit;
  2994. }
  2995. padapter->securitypriv.mfp_opt = mfp_opt;
  2996. {/* handle wps_ie */
  2997. uint wps_ielen;
  2998. u8 *wps_ie;
  2999. wps_ie = rtw_get_wps_ie(buf, ielen, NULL, &wps_ielen);
  3000. if (wps_ie && wps_ielen > 0) {
  3001. RTW_INFO("got wps_ie, wps_ielen:%u\n", wps_ielen);
  3002. padapter->securitypriv.wps_ie_len = wps_ielen < MAX_WPS_IE_LEN ? wps_ielen : MAX_WPS_IE_LEN;
  3003. _rtw_memcpy(padapter->securitypriv.wps_ie, wps_ie, padapter->securitypriv.wps_ie_len);
  3004. set_fwstate(&padapter->mlmepriv, WIFI_UNDER_WPS);
  3005. } else
  3006. _clr_fwstate_(&padapter->mlmepriv, WIFI_UNDER_WPS);
  3007. }
  3008. #ifdef CONFIG_P2P
  3009. {/* check p2p_ie for assoc req; */
  3010. uint p2p_ielen = 0;
  3011. u8 *p2p_ie;
  3012. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  3013. p2p_ie = rtw_get_p2p_ie(buf, ielen, NULL, &p2p_ielen);
  3014. if (p2p_ie) {
  3015. #ifdef CONFIG_DEBUG_CFG80211
  3016. RTW_INFO("%s p2p_assoc_req_ielen=%d\n", __FUNCTION__, p2p_ielen);
  3017. #endif
  3018. if (pmlmepriv->p2p_assoc_req_ie) {
  3019. u32 free_len = pmlmepriv->p2p_assoc_req_ie_len;
  3020. pmlmepriv->p2p_assoc_req_ie_len = 0;
  3021. rtw_mfree(pmlmepriv->p2p_assoc_req_ie, free_len);
  3022. pmlmepriv->p2p_assoc_req_ie = NULL;
  3023. }
  3024. pmlmepriv->p2p_assoc_req_ie = rtw_malloc(p2p_ielen);
  3025. if (pmlmepriv->p2p_assoc_req_ie == NULL) {
  3026. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  3027. goto exit;
  3028. }
  3029. _rtw_memcpy(pmlmepriv->p2p_assoc_req_ie, p2p_ie, p2p_ielen);
  3030. pmlmepriv->p2p_assoc_req_ie_len = p2p_ielen;
  3031. }
  3032. }
  3033. #endif /* CONFIG_P2P */
  3034. #ifdef CONFIG_WFD
  3035. {
  3036. uint wfd_ielen = 0;
  3037. u8 *wfd_ie;
  3038. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  3039. wfd_ie = rtw_get_wfd_ie(buf, ielen, NULL, &wfd_ielen);
  3040. if (wfd_ie) {
  3041. #ifdef CONFIG_DEBUG_CFG80211
  3042. RTW_INFO("%s wfd_assoc_req_ielen=%d\n", __FUNCTION__, wfd_ielen);
  3043. #endif
  3044. if (rtw_mlme_update_wfd_ie_data(pmlmepriv, MLME_ASSOC_REQ_IE, wfd_ie, wfd_ielen) != _SUCCESS)
  3045. goto exit;
  3046. }
  3047. }
  3048. #endif /* CONFIG_WFD */
  3049. /* TKIP and AES disallow multicast packets until installing group key */
  3050. if (padapter->securitypriv.dot11PrivacyAlgrthm == _TKIP_
  3051. || padapter->securitypriv.dot11PrivacyAlgrthm == _TKIP_WTMIC_
  3052. || padapter->securitypriv.dot11PrivacyAlgrthm == _AES_)
  3053. /* WPS open need to enable multicast */
  3054. /* || check_fwstate(&padapter->mlmepriv, WIFI_UNDER_WPS) == _TRUE) */
  3055. rtw_hal_set_hwreg(padapter, HW_VAR_OFF_RCR_AM, null_addr);
  3056. exit:
  3057. if (buf)
  3058. rtw_mfree(buf, ielen);
  3059. if (ret)
  3060. _clr_fwstate_(&padapter->mlmepriv, WIFI_UNDER_WPS);
  3061. return ret;
  3062. }
  3063. static int cfg80211_rtw_join_ibss(struct wiphy *wiphy, struct net_device *ndev,
  3064. struct cfg80211_ibss_params *params)
  3065. {
  3066. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3067. NDIS_802_11_SSID ndis_ssid;
  3068. struct security_priv *psecuritypriv = &padapter->securitypriv;
  3069. struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
  3070. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  3071. struct cfg80211_chan_def *pch_def;
  3072. #endif
  3073. struct ieee80211_channel *pch;
  3074. int ret = 0;
  3075. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  3076. pch_def = (struct cfg80211_chan_def *)(&params->chandef);
  3077. pch = (struct ieee80211_channel *) pch_def->chan;
  3078. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31))
  3079. pch = (struct ieee80211_channel *)(params->channel);
  3080. #endif
  3081. if (!params->ssid || !params->ssid_len) {
  3082. ret = -EINVAL;
  3083. goto exit;
  3084. }
  3085. if (params->ssid_len > IW_ESSID_MAX_SIZE) {
  3086. ret = -E2BIG;
  3087. goto exit;
  3088. }
  3089. rtw_ps_deny(padapter, PS_DENY_JOIN);
  3090. if (_FAIL == rtw_pwr_wakeup(padapter)) {
  3091. ret = -EPERM;
  3092. goto cancel_ps_deny;
  3093. }
  3094. #ifdef CONFIG_CONCURRENT_MODE
  3095. if (rtw_mi_buddy_check_fwstate(padapter, _FW_UNDER_LINKING)) {
  3096. RTW_INFO("%s, but buddy_intf is under linking\n", __FUNCTION__);
  3097. ret = -EINVAL;
  3098. goto cancel_ps_deny;
  3099. }
  3100. rtw_mi_buddy_scan_abort(padapter, _TRUE); /* OR rtw_mi_scan_abort(padapter, _TRUE);*/
  3101. #endif /*CONFIG_CONCURRENT_MODE*/
  3102. _rtw_memset(&ndis_ssid, 0, sizeof(NDIS_802_11_SSID));
  3103. ndis_ssid.SsidLength = params->ssid_len;
  3104. _rtw_memcpy(ndis_ssid.Ssid, (u8 *)params->ssid, params->ssid_len);
  3105. /* RTW_INFO("ssid=%s, len=%zu\n", ndis_ssid.Ssid, params->ssid_len); */
  3106. psecuritypriv->ndisencryptstatus = Ndis802_11EncryptionDisabled;
  3107. psecuritypriv->dot11PrivacyAlgrthm = _NO_PRIVACY_;
  3108. psecuritypriv->dot118021XGrpPrivacy = _NO_PRIVACY_;
  3109. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_Open; /* open system */
  3110. psecuritypriv->ndisauthtype = Ndis802_11AuthModeOpen;
  3111. ret = rtw_cfg80211_set_auth_type(psecuritypriv, NL80211_AUTHTYPE_OPEN_SYSTEM);
  3112. rtw_set_802_11_authentication_mode(padapter, psecuritypriv->ndisauthtype);
  3113. RTW_INFO("%s: center_freq = %d\n", __func__, pch->center_freq);
  3114. pmlmeext->cur_channel = rtw_freq2ch(pch->center_freq);
  3115. if (rtw_set_802_11_ssid(padapter, &ndis_ssid) == _FALSE) {
  3116. ret = -1;
  3117. goto cancel_ps_deny;
  3118. }
  3119. cancel_ps_deny:
  3120. rtw_ps_deny_cancel(padapter, PS_DENY_JOIN);
  3121. exit:
  3122. return ret;
  3123. }
  3124. static int cfg80211_rtw_leave_ibss(struct wiphy *wiphy, struct net_device *ndev)
  3125. {
  3126. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3127. struct wireless_dev *rtw_wdev = padapter->rtw_wdev;
  3128. enum nl80211_iftype old_type;
  3129. int ret = 0;
  3130. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  3131. #if (RTW_CFG80211_BLOCK_STA_DISCON_EVENT & RTW_CFG80211_BLOCK_DISCON_WHEN_DISCONNECT)
  3132. rtw_wdev_set_not_indic_disco(adapter_wdev_data(padapter), 1);
  3133. #endif
  3134. old_type = rtw_wdev->iftype;
  3135. rtw_set_to_roam(padapter, 0);
  3136. if (check_fwstate(&padapter->mlmepriv, _FW_LINKED)) {
  3137. rtw_scan_abort(padapter);
  3138. LeaveAllPowerSaveMode(padapter);
  3139. rtw_wdev->iftype = NL80211_IFTYPE_STATION;
  3140. if (rtw_set_802_11_infrastructure_mode(padapter, Ndis802_11Infrastructure) == _FALSE) {
  3141. rtw_wdev->iftype = old_type;
  3142. ret = -EPERM;
  3143. goto leave_ibss;
  3144. }
  3145. rtw_setopmode_cmd(padapter, Ndis802_11Infrastructure, RTW_CMDF_WAIT_ACK);
  3146. }
  3147. leave_ibss:
  3148. #if (RTW_CFG80211_BLOCK_STA_DISCON_EVENT & RTW_CFG80211_BLOCK_DISCON_WHEN_DISCONNECT)
  3149. rtw_wdev_set_not_indic_disco(adapter_wdev_data(padapter), 0);
  3150. #endif
  3151. return 0;
  3152. }
  3153. bool rtw_cfg80211_is_connect_requested(_adapter *adapter)
  3154. {
  3155. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(adapter);
  3156. _irqL irqL;
  3157. bool requested;
  3158. _enter_critical_bh(&pwdev_priv->connect_req_lock, &irqL);
  3159. requested = pwdev_priv->connect_req ? 1 : 0;
  3160. _exit_critical_bh(&pwdev_priv->connect_req_lock, &irqL);
  3161. return requested;
  3162. }
  3163. static int _rtw_disconnect(struct wiphy *wiphy, struct net_device *ndev)
  3164. {
  3165. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3166. /* if(check_fwstate(&padapter->mlmepriv, _FW_LINKED)) */
  3167. {
  3168. rtw_scan_abort(padapter);
  3169. rtw_join_abort_timeout(padapter, 300);
  3170. LeaveAllPowerSaveMode(padapter);
  3171. rtw_disassoc_cmd(padapter, 500, RTW_CMDF_WAIT_ACK);
  3172. #ifdef CONFIG_RTW_REPEATER_SON
  3173. rtw_rson_do_disconnect(padapter);
  3174. #endif
  3175. RTW_INFO("%s...call rtw_indicate_disconnect\n", __func__);
  3176. rtw_free_assoc_resources_cmd(padapter, _TRUE, RTW_CMDF_WAIT_ACK);
  3177. /* indicate locally_generated = 0 when suspend */
  3178. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 2, 0))
  3179. rtw_indicate_disconnect(padapter, 0, wiphy->dev.power.is_prepared ? _FALSE : _TRUE);
  3180. #else
  3181. /*
  3182. * for kernel < 4.2, DISCONNECT event is hardcoded with
  3183. * NL80211_ATTR_DISCONNECTED_BY_AP=1 in NL80211 layer
  3184. * no need to judge if under suspend
  3185. */
  3186. rtw_indicate_disconnect(padapter, 0, _TRUE);
  3187. #endif
  3188. rtw_pwr_wakeup(padapter);
  3189. }
  3190. return 0;
  3191. }
  3192. static int cfg80211_rtw_connect(struct wiphy *wiphy, struct net_device *ndev,
  3193. struct cfg80211_connect_params *sme)
  3194. {
  3195. int ret = 0;
  3196. NDIS_802_11_AUTHENTICATION_MODE authmode;
  3197. NDIS_802_11_SSID ndis_ssid;
  3198. /* u8 matched_by_bssid=_FALSE; */
  3199. /* u8 matched_by_ssid=_FALSE; */
  3200. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3201. struct security_priv *psecuritypriv = &padapter->securitypriv;
  3202. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  3203. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  3204. _irqL irqL;
  3205. #if (RTW_CFG80211_BLOCK_STA_DISCON_EVENT & RTW_CFG80211_BLOCK_DISCON_WHEN_CONNECT)
  3206. rtw_wdev_set_not_indic_disco(pwdev_priv, 1);
  3207. #endif
  3208. RTW_INFO("=>"FUNC_NDEV_FMT" - Start to Connection\n", FUNC_NDEV_ARG(ndev));
  3209. RTW_INFO("privacy=%d, key=%p, key_len=%d, key_idx=%d, auth_type=%d\n",
  3210. sme->privacy, sme->key, sme->key_len, sme->key_idx, sme->auth_type);
  3211. if (pwdev_priv->block == _TRUE) {
  3212. ret = -EBUSY;
  3213. RTW_INFO("%s wdev_priv.block is set\n", __FUNCTION__);
  3214. goto exit;
  3215. }
  3216. if (check_fwstate(pmlmepriv, _FW_LINKED | _FW_UNDER_LINKING) == _TRUE) {
  3217. _rtw_disconnect(wiphy, ndev);
  3218. RTW_INFO("%s disconnect before connecting! fw_state=0x%x\n",
  3219. __FUNCTION__, pmlmepriv->fw_state);
  3220. }
  3221. #ifdef CONFIG_PLATFORM_MSTAR_SCAN_BEFORE_CONNECT
  3222. printk("MStar Android!\n");
  3223. if (pwdev_priv->bandroid_scan == _FALSE) {
  3224. #ifdef CONFIG_P2P
  3225. struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
  3226. if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE))
  3227. #endif /* CONFIG_P2P */
  3228. {
  3229. ret = -EBUSY;
  3230. printk("Android hasn't attached yet!\n");
  3231. goto exit;
  3232. }
  3233. }
  3234. #endif
  3235. if (!sme->ssid || !sme->ssid_len) {
  3236. ret = -EINVAL;
  3237. goto exit;
  3238. }
  3239. if (sme->ssid_len > IW_ESSID_MAX_SIZE) {
  3240. ret = -E2BIG;
  3241. goto exit;
  3242. }
  3243. rtw_ps_deny(padapter, PS_DENY_JOIN);
  3244. if (_FAIL == rtw_pwr_wakeup(padapter)) {
  3245. ret = -EPERM;
  3246. goto cancel_ps_deny;
  3247. }
  3248. rtw_mi_scan_abort(padapter, _TRUE);
  3249. rtw_join_abort_timeout(padapter, 300);
  3250. #ifdef CONFIG_CONCURRENT_MODE
  3251. if (rtw_mi_buddy_check_fwstate(padapter, _FW_UNDER_LINKING)) {
  3252. ret = -EINVAL;
  3253. goto cancel_ps_deny;
  3254. }
  3255. #endif
  3256. _rtw_memset(&ndis_ssid, 0, sizeof(NDIS_802_11_SSID));
  3257. ndis_ssid.SsidLength = sme->ssid_len;
  3258. _rtw_memcpy(ndis_ssid.Ssid, (u8 *)sme->ssid, sme->ssid_len);
  3259. RTW_INFO("ssid=%s, len=%zu\n", ndis_ssid.Ssid, sme->ssid_len);
  3260. if (sme->bssid)
  3261. RTW_INFO("bssid="MAC_FMT"\n", MAC_ARG(sme->bssid));
  3262. psecuritypriv->ndisencryptstatus = Ndis802_11EncryptionDisabled;
  3263. psecuritypriv->dot11PrivacyAlgrthm = _NO_PRIVACY_;
  3264. psecuritypriv->dot118021XGrpPrivacy = _NO_PRIVACY_;
  3265. psecuritypriv->dot11AuthAlgrthm = dot11AuthAlgrthm_Open; /* open system */
  3266. psecuritypriv->ndisauthtype = Ndis802_11AuthModeOpen;
  3267. #ifdef CONFIG_WAPI_SUPPORT
  3268. padapter->wapiInfo.bWapiEnable = false;
  3269. #endif
  3270. ret = rtw_cfg80211_set_wpa_version(psecuritypriv, sme->crypto.wpa_versions);
  3271. if (ret < 0)
  3272. goto cancel_ps_deny;
  3273. #ifdef CONFIG_WAPI_SUPPORT
  3274. if (sme->crypto.wpa_versions & NL80211_WAPI_VERSION_1) {
  3275. padapter->wapiInfo.bWapiEnable = true;
  3276. padapter->wapiInfo.extra_prefix_len = WAPI_EXT_LEN;
  3277. padapter->wapiInfo.extra_postfix_len = SMS4_MIC_LEN;
  3278. }
  3279. #endif
  3280. ret = rtw_cfg80211_set_auth_type(psecuritypriv, sme->auth_type);
  3281. #ifdef CONFIG_WAPI_SUPPORT
  3282. if (psecuritypriv->dot11AuthAlgrthm == dot11AuthAlgrthm_WAPI)
  3283. padapter->mlmeextpriv.mlmext_info.auth_algo = psecuritypriv->dot11AuthAlgrthm;
  3284. #endif
  3285. if (ret < 0)
  3286. goto cancel_ps_deny;
  3287. RTW_INFO("%s, ie_len=%zu\n", __func__, sme->ie_len);
  3288. ret = rtw_cfg80211_set_wpa_ie(padapter, (u8 *)sme->ie, sme->ie_len);
  3289. if (ret < 0)
  3290. goto cancel_ps_deny;
  3291. if (sme->crypto.n_ciphers_pairwise) {
  3292. ret = rtw_cfg80211_set_cipher(psecuritypriv, sme->crypto.ciphers_pairwise[0], _TRUE);
  3293. if (ret < 0)
  3294. goto cancel_ps_deny;
  3295. }
  3296. /* For WEP Shared auth */
  3297. if (sme->key_len > 0 && sme->key) {
  3298. u32 wep_key_idx, wep_key_len, wep_total_len;
  3299. NDIS_802_11_WEP *pwep = NULL;
  3300. RTW_INFO("%s(): Shared/Auto WEP\n", __FUNCTION__);
  3301. wep_key_idx = sme->key_idx;
  3302. wep_key_len = sme->key_len;
  3303. if (sme->key_idx > WEP_KEYS) {
  3304. ret = -EINVAL;
  3305. goto cancel_ps_deny;
  3306. }
  3307. if (wep_key_len > 0) {
  3308. wep_key_len = wep_key_len <= 5 ? 5 : 13;
  3309. wep_total_len = wep_key_len + FIELD_OFFSET(NDIS_802_11_WEP, KeyMaterial);
  3310. pwep = (NDIS_802_11_WEP *) rtw_malloc(wep_total_len);
  3311. if (pwep == NULL) {
  3312. RTW_INFO(" wpa_set_encryption: pwep allocate fail !!!\n");
  3313. ret = -ENOMEM;
  3314. goto cancel_ps_deny;
  3315. }
  3316. _rtw_memset(pwep, 0, wep_total_len);
  3317. pwep->KeyLength = wep_key_len;
  3318. pwep->Length = wep_total_len;
  3319. if (wep_key_len == 13) {
  3320. padapter->securitypriv.dot11PrivacyAlgrthm = _WEP104_;
  3321. padapter->securitypriv.dot118021XGrpPrivacy = _WEP104_;
  3322. }
  3323. } else {
  3324. ret = -EINVAL;
  3325. goto cancel_ps_deny;
  3326. }
  3327. pwep->KeyIndex = wep_key_idx;
  3328. pwep->KeyIndex |= 0x80000000;
  3329. _rtw_memcpy(pwep->KeyMaterial, (void *)sme->key, pwep->KeyLength);
  3330. if (rtw_set_802_11_add_wep(padapter, pwep) == (u8)_FAIL)
  3331. ret = -EOPNOTSUPP ;
  3332. if (pwep)
  3333. rtw_mfree((u8 *)pwep, wep_total_len);
  3334. if (ret < 0)
  3335. goto cancel_ps_deny;
  3336. }
  3337. ret = rtw_cfg80211_set_cipher(psecuritypriv, sme->crypto.cipher_group, _FALSE);
  3338. if (ret < 0)
  3339. return ret;
  3340. if (sme->crypto.n_akm_suites) {
  3341. ret = rtw_cfg80211_set_key_mgt(psecuritypriv, sme->crypto.akm_suites[0]);
  3342. if (ret < 0)
  3343. goto cancel_ps_deny;
  3344. }
  3345. #ifdef CONFIG_8011R
  3346. else {
  3347. /*It could be a connection without RSN IEs*/
  3348. psecuritypriv->rsn_akm_suite_type = 0;
  3349. }
  3350. #endif
  3351. #ifdef CONFIG_WAPI_SUPPORT
  3352. if (sme->crypto.akm_suites[0] == WLAN_AKM_SUITE_WAPI_PSK)
  3353. padapter->wapiInfo.bWapiPSK = true;
  3354. else if (sme->crypto.akm_suites[0] == WLAN_AKM_SUITE_WAPI_CERT)
  3355. padapter->wapiInfo.bWapiPSK = false;
  3356. #endif
  3357. authmode = psecuritypriv->ndisauthtype;
  3358. rtw_set_802_11_authentication_mode(padapter, authmode);
  3359. /* rtw_set_802_11_encryption_mode(padapter, padapter->securitypriv.ndisencryptstatus); */
  3360. if (rtw_set_802_11_connect(padapter, (u8 *)sme->bssid, &ndis_ssid) == _FALSE) {
  3361. ret = -1;
  3362. goto cancel_ps_deny;
  3363. }
  3364. _enter_critical_bh(&pwdev_priv->connect_req_lock, &irqL);
  3365. if (pwdev_priv->connect_req) {
  3366. rtw_wdev_free_connect_req(pwdev_priv);
  3367. RTW_INFO(FUNC_NDEV_FMT" free existing connect_req\n", FUNC_NDEV_ARG(ndev));
  3368. }
  3369. pwdev_priv->connect_req = (struct cfg80211_connect_params *)rtw_malloc(sizeof(*pwdev_priv->connect_req));
  3370. if (pwdev_priv->connect_req)
  3371. _rtw_memcpy(pwdev_priv->connect_req, sme, sizeof(*pwdev_priv->connect_req));
  3372. else
  3373. RTW_WARN(FUNC_NDEV_FMT" alloc connect_req fail\n", FUNC_NDEV_ARG(ndev));
  3374. _exit_critical_bh(&pwdev_priv->connect_req_lock, &irqL);
  3375. RTW_INFO("set ssid:dot11AuthAlgrthm=%d, dot11PrivacyAlgrthm=%d, dot118021XGrpPrivacy=%d\n", psecuritypriv->dot11AuthAlgrthm, psecuritypriv->dot11PrivacyAlgrthm,
  3376. psecuritypriv->dot118021XGrpPrivacy);
  3377. cancel_ps_deny:
  3378. rtw_ps_deny_cancel(padapter, PS_DENY_JOIN);
  3379. exit:
  3380. RTW_INFO("<=%s, ret %d\n", __FUNCTION__, ret);
  3381. #if (RTW_CFG80211_BLOCK_STA_DISCON_EVENT & RTW_CFG80211_BLOCK_DISCON_WHEN_CONNECT)
  3382. rtw_wdev_set_not_indic_disco(pwdev_priv, 0);
  3383. #endif
  3384. return ret;
  3385. }
  3386. static int cfg80211_rtw_disconnect(struct wiphy *wiphy, struct net_device *ndev,
  3387. u16 reason_code)
  3388. {
  3389. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3390. RTW_INFO(FUNC_NDEV_FMT" - Start to Disconnect\n", FUNC_NDEV_ARG(ndev));
  3391. #if (RTW_CFG80211_BLOCK_STA_DISCON_EVENT & RTW_CFG80211_BLOCK_DISCON_WHEN_DISCONNECT)
  3392. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  3393. if (!wiphy->dev.power.is_prepared)
  3394. #endif
  3395. rtw_wdev_set_not_indic_disco(adapter_wdev_data(padapter), 1);
  3396. #endif
  3397. rtw_set_to_roam(padapter, 0);
  3398. /* if(check_fwstate(&padapter->mlmepriv, _FW_LINKED)) */
  3399. {
  3400. _rtw_disconnect(wiphy, ndev);
  3401. }
  3402. #if (RTW_CFG80211_BLOCK_STA_DISCON_EVENT & RTW_CFG80211_BLOCK_DISCON_WHEN_DISCONNECT)
  3403. rtw_wdev_set_not_indic_disco(adapter_wdev_data(padapter), 0);
  3404. #endif
  3405. RTW_INFO(FUNC_NDEV_FMT" return 0\n", FUNC_NDEV_ARG(ndev));
  3406. return 0;
  3407. }
  3408. static int cfg80211_rtw_set_txpower(struct wiphy *wiphy,
  3409. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  3410. struct wireless_dev *wdev,
  3411. #endif
  3412. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 36)) || defined(COMPAT_KERNEL_RELEASE)
  3413. enum nl80211_tx_power_setting type, int mbm)
  3414. #else
  3415. enum tx_power_setting type, int dbm)
  3416. #endif
  3417. {
  3418. #if 0
  3419. struct iwm_priv *iwm = wiphy_to_iwm(wiphy);
  3420. int ret;
  3421. switch (type) {
  3422. case NL80211_TX_POWER_AUTOMATIC:
  3423. return 0;
  3424. case NL80211_TX_POWER_FIXED:
  3425. if (mbm < 0 || (mbm % 100))
  3426. return -EOPNOTSUPP;
  3427. if (!test_bit(IWM_STATUS_READY, &iwm->status))
  3428. return 0;
  3429. ret = iwm_umac_set_config_fix(iwm, UMAC_PARAM_TBL_CFG_FIX,
  3430. CFG_TX_PWR_LIMIT_USR,
  3431. MBM_TO_DBM(mbm) * 2);
  3432. if (ret < 0)
  3433. return ret;
  3434. return iwm_tx_power_trigger(iwm);
  3435. default:
  3436. IWM_ERR(iwm, "Unsupported power type: %d\n", type);
  3437. return -EOPNOTSUPP;
  3438. }
  3439. #endif
  3440. RTW_INFO("%s\n", __func__);
  3441. return 0;
  3442. }
  3443. static int cfg80211_rtw_get_txpower(struct wiphy *wiphy,
  3444. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  3445. struct wireless_dev *wdev,
  3446. #endif
  3447. int *dbm)
  3448. {
  3449. RTW_INFO("%s\n", __func__);
  3450. *dbm = (12);
  3451. return 0;
  3452. }
  3453. inline bool rtw_cfg80211_pwr_mgmt(_adapter *adapter)
  3454. {
  3455. struct rtw_wdev_priv *rtw_wdev_priv = adapter_wdev_data(adapter);
  3456. return rtw_wdev_priv->power_mgmt;
  3457. }
  3458. static int cfg80211_rtw_set_power_mgmt(struct wiphy *wiphy,
  3459. struct net_device *ndev,
  3460. bool enabled, int timeout)
  3461. {
  3462. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3463. struct rtw_wdev_priv *rtw_wdev_priv = adapter_wdev_data(padapter);
  3464. RTW_INFO(FUNC_NDEV_FMT" enabled:%u, timeout:%d\n", FUNC_NDEV_ARG(ndev),
  3465. enabled, timeout);
  3466. rtw_wdev_priv->power_mgmt = enabled;
  3467. #ifdef CONFIG_LPS
  3468. if (!enabled)
  3469. rtw_lps_ctrl_wk_cmd(padapter, LPS_CTRL_LEAVE_CFG80211_PWRMGMT, 1);
  3470. #endif
  3471. return 0;
  3472. }
  3473. static int cfg80211_rtw_set_pmksa(struct wiphy *wiphy,
  3474. struct net_device *ndev,
  3475. struct cfg80211_pmksa *pmksa)
  3476. {
  3477. u8 index, blInserted = _FALSE;
  3478. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3479. struct mlme_priv *mlme = &padapter->mlmepriv;
  3480. struct security_priv *psecuritypriv = &padapter->securitypriv;
  3481. u8 strZeroMacAddress[ETH_ALEN] = { 0x00 };
  3482. RTW_INFO(FUNC_NDEV_FMT" "MAC_FMT" "KEY_FMT"\n", FUNC_NDEV_ARG(ndev)
  3483. , MAC_ARG(pmksa->bssid), KEY_ARG(pmksa->pmkid));
  3484. if (_rtw_memcmp((u8 *)pmksa->bssid, strZeroMacAddress, ETH_ALEN) == _TRUE)
  3485. return -EINVAL;
  3486. if (check_fwstate(mlme, _FW_LINKED) == _FALSE) {
  3487. RTW_INFO(FUNC_NDEV_FMT" not set pmksa cause not in linked state\n", FUNC_NDEV_ARG(ndev));
  3488. return -EINVAL;
  3489. }
  3490. blInserted = _FALSE;
  3491. /* overwrite PMKID */
  3492. for (index = 0 ; index < NUM_PMKID_CACHE; index++) {
  3493. if (_rtw_memcmp(psecuritypriv->PMKIDList[index].Bssid, (u8 *)pmksa->bssid, ETH_ALEN) == _TRUE) {
  3494. /* BSSID is matched, the same AP => rewrite with new PMKID. */
  3495. RTW_INFO(FUNC_NDEV_FMT" BSSID exists in the PMKList.\n", FUNC_NDEV_ARG(ndev));
  3496. _rtw_memcpy(psecuritypriv->PMKIDList[index].PMKID, (u8 *)pmksa->pmkid, WLAN_PMKID_LEN);
  3497. psecuritypriv->PMKIDList[index].bUsed = _TRUE;
  3498. psecuritypriv->PMKIDIndex = index + 1;
  3499. blInserted = _TRUE;
  3500. break;
  3501. }
  3502. }
  3503. if (!blInserted) {
  3504. /* Find a new entry */
  3505. RTW_INFO(FUNC_NDEV_FMT" Use the new entry index = %d for this PMKID.\n",
  3506. FUNC_NDEV_ARG(ndev), psecuritypriv->PMKIDIndex);
  3507. _rtw_memcpy(psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].Bssid, (u8 *)pmksa->bssid, ETH_ALEN);
  3508. _rtw_memcpy(psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].PMKID, (u8 *)pmksa->pmkid, WLAN_PMKID_LEN);
  3509. psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].bUsed = _TRUE;
  3510. psecuritypriv->PMKIDIndex++ ;
  3511. if (psecuritypriv->PMKIDIndex == 16)
  3512. psecuritypriv->PMKIDIndex = 0;
  3513. }
  3514. return 0;
  3515. }
  3516. static int cfg80211_rtw_del_pmksa(struct wiphy *wiphy,
  3517. struct net_device *ndev,
  3518. struct cfg80211_pmksa *pmksa)
  3519. {
  3520. u8 index, bMatched = _FALSE;
  3521. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3522. struct security_priv *psecuritypriv = &padapter->securitypriv;
  3523. RTW_INFO(FUNC_NDEV_FMT" "MAC_FMT" "KEY_FMT"\n", FUNC_NDEV_ARG(ndev)
  3524. , MAC_ARG(pmksa->bssid), KEY_ARG(pmksa->pmkid));
  3525. for (index = 0 ; index < NUM_PMKID_CACHE; index++) {
  3526. if (_rtw_memcmp(psecuritypriv->PMKIDList[index].Bssid, (u8 *)pmksa->bssid, ETH_ALEN) == _TRUE) {
  3527. /* BSSID is matched, the same AP => Remove this PMKID information and reset it. */
  3528. _rtw_memset(psecuritypriv->PMKIDList[index].Bssid, 0x00, ETH_ALEN);
  3529. _rtw_memset(psecuritypriv->PMKIDList[index].PMKID, 0x00, WLAN_PMKID_LEN);
  3530. psecuritypriv->PMKIDList[index].bUsed = _FALSE;
  3531. bMatched = _TRUE;
  3532. RTW_INFO(FUNC_NDEV_FMT" clear id:%hhu\n", FUNC_NDEV_ARG(ndev), index);
  3533. break;
  3534. }
  3535. }
  3536. if (_FALSE == bMatched) {
  3537. RTW_INFO(FUNC_NDEV_FMT" do not have matched BSSID\n"
  3538. , FUNC_NDEV_ARG(ndev));
  3539. return -EINVAL;
  3540. }
  3541. return 0;
  3542. }
  3543. static int cfg80211_rtw_flush_pmksa(struct wiphy *wiphy,
  3544. struct net_device *ndev)
  3545. {
  3546. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3547. struct security_priv *psecuritypriv = &padapter->securitypriv;
  3548. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  3549. _rtw_memset(&psecuritypriv->PMKIDList[0], 0x00, sizeof(RT_PMKID_LIST) * NUM_PMKID_CACHE);
  3550. psecuritypriv->PMKIDIndex = 0;
  3551. return 0;
  3552. }
  3553. #ifdef CONFIG_AP_MODE
  3554. void rtw_cfg80211_indicate_sta_assoc(_adapter *padapter, u8 *pmgmt_frame, uint frame_len)
  3555. {
  3556. #if !defined(RTW_USE_CFG80211_STA_EVENT) && !defined(COMPAT_KERNEL_RELEASE)
  3557. s32 freq;
  3558. int channel;
  3559. struct wireless_dev *pwdev = padapter->rtw_wdev;
  3560. struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
  3561. #endif
  3562. struct net_device *ndev = padapter->pnetdev;
  3563. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(padapter));
  3564. #if defined(RTW_USE_CFG80211_STA_EVENT) || defined(COMPAT_KERNEL_RELEASE)
  3565. {
  3566. struct station_info sinfo;
  3567. u8 ie_offset;
  3568. if (get_frame_sub_type(pmgmt_frame) == WIFI_ASSOCREQ)
  3569. ie_offset = _ASOCREQ_IE_OFFSET_;
  3570. else /* WIFI_REASSOCREQ */
  3571. ie_offset = _REASOCREQ_IE_OFFSET_;
  3572. memset(&sinfo, 0, sizeof(sinfo));
  3573. sinfo.filled = STATION_INFO_ASSOC_REQ_IES;
  3574. sinfo.assoc_req_ies = pmgmt_frame + WLAN_HDR_A3_LEN + ie_offset;
  3575. sinfo.assoc_req_ies_len = frame_len - WLAN_HDR_A3_LEN - ie_offset;
  3576. cfg80211_new_sta(ndev, get_addr2_ptr(pmgmt_frame), &sinfo, GFP_ATOMIC);
  3577. }
  3578. #else /* defined(RTW_USE_CFG80211_STA_EVENT) */
  3579. channel = pmlmeext->cur_channel;
  3580. freq = rtw_ch2freq(channel);
  3581. #ifdef COMPAT_KERNEL_RELEASE
  3582. rtw_cfg80211_rx_mgmt(pwdev, freq, 0, pmgmt_frame, frame_len, GFP_ATOMIC);
  3583. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) && !defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER)
  3584. rtw_cfg80211_rx_mgmt(pwdev, freq, 0, pmgmt_frame, frame_len, GFP_ATOMIC);
  3585. #else /* COMPAT_KERNEL_RELEASE */
  3586. {
  3587. /* to avoid WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION) when calling cfg80211_send_rx_assoc() */
  3588. #ifndef CONFIG_PLATFORM_MSTAR
  3589. pwdev->iftype = NL80211_IFTYPE_STATION;
  3590. #endif /* CONFIG_PLATFORM_MSTAR */
  3591. RTW_INFO("iftype=%d before call cfg80211_send_rx_assoc()\n", pwdev->iftype);
  3592. rtw_cfg80211_send_rx_assoc(padapter, NULL, pmgmt_frame, frame_len);
  3593. RTW_INFO("iftype=%d after call cfg80211_send_rx_assoc()\n", pwdev->iftype);
  3594. pwdev->iftype = NL80211_IFTYPE_AP;
  3595. /* cfg80211_rx_action(padapter->pnetdev, freq, pmgmt_frame, frame_len, GFP_ATOMIC); */
  3596. }
  3597. #endif /* COMPAT_KERNEL_RELEASE */
  3598. #endif /* defined(RTW_USE_CFG80211_STA_EVENT) */
  3599. }
  3600. void rtw_cfg80211_indicate_sta_disassoc(_adapter *padapter, const u8 *da, unsigned short reason)
  3601. {
  3602. #if !defined(RTW_USE_CFG80211_STA_EVENT) && !defined(COMPAT_KERNEL_RELEASE)
  3603. s32 freq;
  3604. int channel;
  3605. u8 *pmgmt_frame;
  3606. uint frame_len;
  3607. struct rtw_ieee80211_hdr *pwlanhdr;
  3608. unsigned short *fctrl;
  3609. u8 mgmt_buf[128] = {0};
  3610. struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
  3611. struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info);
  3612. struct wireless_dev *wdev = padapter->rtw_wdev;
  3613. #endif
  3614. struct net_device *ndev = padapter->pnetdev;
  3615. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(padapter));
  3616. #if defined(RTW_USE_CFG80211_STA_EVENT) || defined(COMPAT_KERNEL_RELEASE)
  3617. cfg80211_del_sta(ndev, da, GFP_ATOMIC);
  3618. #else /* defined(RTW_USE_CFG80211_STA_EVENT) */
  3619. channel = pmlmeext->cur_channel;
  3620. freq = rtw_ch2freq(channel);
  3621. pmgmt_frame = mgmt_buf;
  3622. pwlanhdr = (struct rtw_ieee80211_hdr *)pmgmt_frame;
  3623. fctrl = &(pwlanhdr->frame_ctl);
  3624. *(fctrl) = 0;
  3625. _rtw_memcpy(pwlanhdr->addr1, adapter_mac_addr(padapter), ETH_ALEN);
  3626. _rtw_memcpy(pwlanhdr->addr2, da, ETH_ALEN);
  3627. _rtw_memcpy(pwlanhdr->addr3, get_my_bssid(&(pmlmeinfo->network)), ETH_ALEN);
  3628. SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq);
  3629. pmlmeext->mgnt_seq++;
  3630. set_frame_sub_type(pmgmt_frame, WIFI_DEAUTH);
  3631. pmgmt_frame += sizeof(struct rtw_ieee80211_hdr_3addr);
  3632. frame_len = sizeof(struct rtw_ieee80211_hdr_3addr);
  3633. reason = cpu_to_le16(reason);
  3634. pmgmt_frame = rtw_set_fixed_ie(pmgmt_frame, _RSON_CODE_ , (unsigned char *)&reason, &frame_len);
  3635. #ifdef COMPAT_KERNEL_RELEASE
  3636. rtw_cfg80211_rx_mgmt(wdev, freq, 0, mgmt_buf, frame_len, GFP_ATOMIC);
  3637. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) && !defined(CONFIG_CFG80211_FORCE_COMPATIBLE_2_6_37_UNDER)
  3638. rtw_cfg80211_rx_mgmt(wdev, freq, 0, mgmt_buf, frame_len, GFP_ATOMIC);
  3639. #else /* COMPAT_KERNEL_RELEASE */
  3640. cfg80211_send_disassoc(padapter->pnetdev, mgmt_buf, frame_len);
  3641. /* cfg80211_rx_action(padapter->pnetdev, freq, mgmt_buf, frame_len, GFP_ATOMIC); */
  3642. #endif /* COMPAT_KERNEL_RELEASE */
  3643. #endif /* defined(RTW_USE_CFG80211_STA_EVENT) */
  3644. }
  3645. static int rtw_cfg80211_monitor_if_open(struct net_device *ndev)
  3646. {
  3647. int ret = 0;
  3648. RTW_INFO("%s\n", __func__);
  3649. return ret;
  3650. }
  3651. static int rtw_cfg80211_monitor_if_close(struct net_device *ndev)
  3652. {
  3653. int ret = 0;
  3654. RTW_INFO("%s\n", __func__);
  3655. return ret;
  3656. }
  3657. static int rtw_cfg80211_monitor_if_xmit_entry(struct sk_buff *skb, struct net_device *ndev)
  3658. {
  3659. int ret = 0;
  3660. int rtap_len;
  3661. int qos_len = 0;
  3662. int dot11_hdr_len = 24;
  3663. int snap_len = 6;
  3664. unsigned char *pdata;
  3665. u16 frame_ctl;
  3666. unsigned char src_mac_addr[ETH_ALEN];
  3667. unsigned char dst_mac_addr[ETH_ALEN];
  3668. struct rtw_ieee80211_hdr *dot11_hdr;
  3669. struct ieee80211_radiotap_header *rtap_hdr;
  3670. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  3671. #ifdef CONFIG_DFS_MASTER
  3672. struct rf_ctl_t *rfctl = adapter_to_rfctl(padapter);
  3673. #endif
  3674. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  3675. if (skb)
  3676. rtw_mstat_update(MSTAT_TYPE_SKB, MSTAT_ALLOC_SUCCESS, skb->truesize);
  3677. if (IS_CH_WAITING(rfctl)) {
  3678. #ifdef CONFIG_DFS_MASTER
  3679. if (rtw_rfctl_overlap_radar_detect_ch(rfctl))
  3680. goto fail;
  3681. #endif
  3682. }
  3683. if (unlikely(skb->len < sizeof(struct ieee80211_radiotap_header)))
  3684. goto fail;
  3685. rtap_hdr = (struct ieee80211_radiotap_header *)skb->data;
  3686. if (unlikely(rtap_hdr->it_version))
  3687. goto fail;
  3688. rtap_len = ieee80211_get_radiotap_len(skb->data);
  3689. if (unlikely(skb->len < rtap_len))
  3690. goto fail;
  3691. if (rtap_len != 14) {
  3692. RTW_INFO("radiotap len (should be 14): %d\n", rtap_len);
  3693. goto fail;
  3694. }
  3695. /* Skip the ratio tap header */
  3696. skb_pull(skb, rtap_len);
  3697. dot11_hdr = (struct rtw_ieee80211_hdr *)skb->data;
  3698. frame_ctl = le16_to_cpu(dot11_hdr->frame_ctl);
  3699. /* Check if the QoS bit is set */
  3700. if ((frame_ctl & RTW_IEEE80211_FCTL_FTYPE) == RTW_IEEE80211_FTYPE_DATA) {
  3701. /* Check if this ia a Wireless Distribution System (WDS) frame
  3702. * which has 4 MAC addresses
  3703. */
  3704. if (dot11_hdr->frame_ctl & 0x0080)
  3705. qos_len = 2;
  3706. if ((dot11_hdr->frame_ctl & 0x0300) == 0x0300)
  3707. dot11_hdr_len += 6;
  3708. memcpy(dst_mac_addr, dot11_hdr->addr1, sizeof(dst_mac_addr));
  3709. memcpy(src_mac_addr, dot11_hdr->addr2, sizeof(src_mac_addr));
  3710. /* Skip the 802.11 header, QoS (if any) and SNAP, but leave spaces for
  3711. * for two MAC addresses
  3712. */
  3713. skb_pull(skb, dot11_hdr_len + qos_len + snap_len - sizeof(src_mac_addr) * 2);
  3714. pdata = (unsigned char *)skb->data;
  3715. memcpy(pdata, dst_mac_addr, sizeof(dst_mac_addr));
  3716. memcpy(pdata + sizeof(dst_mac_addr), src_mac_addr, sizeof(src_mac_addr));
  3717. RTW_INFO("should be eapol packet\n");
  3718. /* Use the real net device to transmit the packet */
  3719. ret = _rtw_xmit_entry(skb, padapter->pnetdev);
  3720. return ret;
  3721. } else if ((frame_ctl & (RTW_IEEE80211_FCTL_FTYPE | RTW_IEEE80211_FCTL_STYPE))
  3722. == (RTW_IEEE80211_FTYPE_MGMT | RTW_IEEE80211_STYPE_ACTION)
  3723. ) {
  3724. /* only for action frames */
  3725. struct xmit_frame *pmgntframe;
  3726. struct pkt_attrib *pattrib;
  3727. unsigned char *pframe;
  3728. /* u8 category, action, OUI_Subtype, dialogToken=0; */
  3729. /* unsigned char *frame_body; */
  3730. struct rtw_ieee80211_hdr *pwlanhdr;
  3731. struct xmit_priv *pxmitpriv = &(padapter->xmitpriv);
  3732. struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
  3733. u8 *buf = skb->data;
  3734. u32 len = skb->len;
  3735. u8 category, action;
  3736. int type = -1;
  3737. if (rtw_action_frame_parse(buf, len, &category, &action) == _FALSE) {
  3738. RTW_INFO(FUNC_NDEV_FMT" frame_control:0x%x\n", FUNC_NDEV_ARG(ndev),
  3739. le16_to_cpu(((struct rtw_ieee80211_hdr_3addr *)buf)->frame_ctl));
  3740. goto fail;
  3741. }
  3742. RTW_INFO("RTW_Tx:da="MAC_FMT" via "FUNC_NDEV_FMT"\n",
  3743. MAC_ARG(GetAddr1Ptr(buf)), FUNC_NDEV_ARG(ndev));
  3744. #ifdef CONFIG_P2P
  3745. type = rtw_p2p_check_frames(padapter, buf, len, _TRUE);
  3746. if (type >= 0)
  3747. goto dump;
  3748. #endif
  3749. if (category == RTW_WLAN_CATEGORY_PUBLIC)
  3750. RTW_INFO("RTW_Tx:%s\n", action_public_str(action));
  3751. else
  3752. RTW_INFO("RTW_Tx:category(%u), action(%u)\n", category, action);
  3753. dump:
  3754. /* starting alloc mgmt frame to dump it */
  3755. pmgntframe = alloc_mgtxmitframe(pxmitpriv);
  3756. if (pmgntframe == NULL)
  3757. goto fail;
  3758. /* update attribute */
  3759. pattrib = &pmgntframe->attrib;
  3760. update_mgntframe_attrib(padapter, pattrib);
  3761. pattrib->retry_ctrl = _FALSE;
  3762. _rtw_memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET);
  3763. pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET;
  3764. _rtw_memcpy(pframe, (void *)buf, len);
  3765. pattrib->pktlen = len;
  3766. #ifdef CONFIG_P2P
  3767. if (type >= 0)
  3768. rtw_xframe_chk_wfd_ie(pmgntframe);
  3769. #endif /* CONFIG_P2P */
  3770. pwlanhdr = (struct rtw_ieee80211_hdr *)pframe;
  3771. /* update seq number */
  3772. pmlmeext->mgnt_seq = GetSequence(pwlanhdr);
  3773. pattrib->seqnum = pmlmeext->mgnt_seq;
  3774. pmlmeext->mgnt_seq++;
  3775. pattrib->last_txcmdsz = pattrib->pktlen;
  3776. dump_mgntframe(padapter, pmgntframe);
  3777. } else
  3778. RTW_INFO("frame_ctl=0x%x\n", frame_ctl & (RTW_IEEE80211_FCTL_FTYPE | RTW_IEEE80211_FCTL_STYPE));
  3779. fail:
  3780. rtw_skb_free(skb);
  3781. return 0;
  3782. }
  3783. static void rtw_cfg80211_monitor_if_set_multicast_list(struct net_device *ndev)
  3784. {
  3785. RTW_INFO("%s\n", __func__);
  3786. }
  3787. static int rtw_cfg80211_monitor_if_set_mac_address(struct net_device *ndev, void *addr)
  3788. {
  3789. int ret = 0;
  3790. RTW_INFO("%s\n", __func__);
  3791. return ret;
  3792. }
  3793. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29))
  3794. static const struct net_device_ops rtw_cfg80211_monitor_if_ops = {
  3795. .ndo_open = rtw_cfg80211_monitor_if_open,
  3796. .ndo_stop = rtw_cfg80211_monitor_if_close,
  3797. .ndo_start_xmit = rtw_cfg80211_monitor_if_xmit_entry,
  3798. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 2, 0))
  3799. .ndo_set_multicast_list = rtw_cfg80211_monitor_if_set_multicast_list,
  3800. #endif
  3801. .ndo_set_mac_address = rtw_cfg80211_monitor_if_set_mac_address,
  3802. };
  3803. #endif
  3804. static int rtw_cfg80211_add_monitor_if(_adapter *padapter, char *name, struct net_device **ndev)
  3805. {
  3806. int ret = 0;
  3807. struct net_device *mon_ndev = NULL;
  3808. struct wireless_dev *mon_wdev = NULL;
  3809. struct rtw_netdev_priv_indicator *pnpi;
  3810. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  3811. if (!name) {
  3812. RTW_INFO(FUNC_ADPT_FMT" without specific name\n", FUNC_ADPT_ARG(padapter));
  3813. ret = -EINVAL;
  3814. goto out;
  3815. }
  3816. if (pwdev_priv->pmon_ndev) {
  3817. RTW_INFO(FUNC_ADPT_FMT" monitor interface exist: "NDEV_FMT"\n",
  3818. FUNC_ADPT_ARG(padapter), NDEV_ARG(pwdev_priv->pmon_ndev));
  3819. ret = -EBUSY;
  3820. goto out;
  3821. }
  3822. mon_ndev = alloc_etherdev(sizeof(struct rtw_netdev_priv_indicator));
  3823. if (!mon_ndev) {
  3824. RTW_INFO(FUNC_ADPT_FMT" allocate ndev fail\n", FUNC_ADPT_ARG(padapter));
  3825. ret = -ENOMEM;
  3826. goto out;
  3827. }
  3828. mon_ndev->type = ARPHRD_IEEE80211_RADIOTAP;
  3829. strncpy(mon_ndev->name, name, IFNAMSIZ);
  3830. mon_ndev->name[IFNAMSIZ - 1] = 0;
  3831. #if (LINUX_VERSION_CODE > KERNEL_VERSION(4, 11, 8))
  3832. mon_ndev->priv_destructor = rtw_ndev_destructor;
  3833. #else
  3834. mon_ndev->destructor = rtw_ndev_destructor;
  3835. #endif
  3836. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29))
  3837. mon_ndev->netdev_ops = &rtw_cfg80211_monitor_if_ops;
  3838. #else
  3839. mon_ndev->open = rtw_cfg80211_monitor_if_open;
  3840. mon_ndev->stop = rtw_cfg80211_monitor_if_close;
  3841. mon_ndev->hard_start_xmit = rtw_cfg80211_monitor_if_xmit_entry;
  3842. mon_ndev->set_mac_address = rtw_cfg80211_monitor_if_set_mac_address;
  3843. #endif
  3844. pnpi = netdev_priv(mon_ndev);
  3845. pnpi->priv = padapter;
  3846. pnpi->sizeof_priv = sizeof(_adapter);
  3847. /* wdev */
  3848. mon_wdev = (struct wireless_dev *)rtw_zmalloc(sizeof(struct wireless_dev));
  3849. if (!mon_wdev) {
  3850. RTW_INFO(FUNC_ADPT_FMT" allocate mon_wdev fail\n", FUNC_ADPT_ARG(padapter));
  3851. ret = -ENOMEM;
  3852. goto out;
  3853. }
  3854. mon_wdev->wiphy = padapter->rtw_wdev->wiphy;
  3855. mon_wdev->netdev = mon_ndev;
  3856. mon_wdev->iftype = NL80211_IFTYPE_MONITOR;
  3857. mon_ndev->ieee80211_ptr = mon_wdev;
  3858. ret = register_netdevice(mon_ndev);
  3859. if (ret)
  3860. goto out;
  3861. *ndev = pwdev_priv->pmon_ndev = mon_ndev;
  3862. _rtw_memcpy(pwdev_priv->ifname_mon, name, IFNAMSIZ + 1);
  3863. out:
  3864. if (ret && mon_wdev) {
  3865. rtw_mfree((u8 *)mon_wdev, sizeof(struct wireless_dev));
  3866. mon_wdev = NULL;
  3867. }
  3868. if (ret && mon_ndev) {
  3869. free_netdev(mon_ndev);
  3870. *ndev = mon_ndev = NULL;
  3871. }
  3872. return ret;
  3873. }
  3874. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  3875. static struct wireless_dev *
  3876. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)) || defined(COMPAT_KERNEL_RELEASE)
  3877. static struct net_device *
  3878. #else
  3879. static int
  3880. #endif
  3881. cfg80211_rtw_add_virtual_intf(
  3882. struct wiphy *wiphy,
  3883. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0))
  3884. const char *name,
  3885. #else
  3886. char *name,
  3887. #endif
  3888. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 1, 0))
  3889. unsigned char name_assign_type,
  3890. #endif
  3891. enum nl80211_iftype type,
  3892. #if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 12, 0))
  3893. u32 *flags,
  3894. #endif
  3895. struct vif_params *params)
  3896. {
  3897. int ret = 0;
  3898. struct wireless_dev *wdev = NULL;
  3899. struct net_device *ndev = NULL;
  3900. _adapter *padapter;
  3901. struct dvobj_priv *dvobj = wiphy_to_dvobj(wiphy);
  3902. rtw_set_rtnl_lock_holder(dvobj, current);
  3903. RTW_INFO(FUNC_WIPHY_FMT" name:%s, type:%d\n", FUNC_WIPHY_ARG(wiphy), name, type);
  3904. switch (type) {
  3905. case NL80211_IFTYPE_MONITOR:
  3906. padapter = wiphy_to_adapter(wiphy); /* TODO: get ap iface ? */
  3907. ret = rtw_cfg80211_add_monitor_if(padapter, (char *)name, &ndev);
  3908. if (ret == 0)
  3909. wdev = ndev->ieee80211_ptr;
  3910. break;
  3911. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  3912. case NL80211_IFTYPE_P2P_CLIENT:
  3913. case NL80211_IFTYPE_P2P_GO:
  3914. #endif
  3915. case NL80211_IFTYPE_STATION:
  3916. case NL80211_IFTYPE_AP:
  3917. #ifdef CONFIG_RTW_MESH
  3918. case NL80211_IFTYPE_MESH_POINT:
  3919. #endif
  3920. padapter = dvobj_get_unregisterd_adapter(dvobj);
  3921. if (!padapter) {
  3922. RTW_WARN("adapter pool empty!\n");
  3923. ret = -ENODEV;
  3924. break;
  3925. }
  3926. if (rtw_os_ndev_init(padapter, name) != _SUCCESS) {
  3927. RTW_WARN("ndev init fail!\n");
  3928. ret = -ENODEV;
  3929. break;
  3930. }
  3931. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  3932. if (type == NL80211_IFTYPE_P2P_CLIENT || type == NL80211_IFTYPE_P2P_GO)
  3933. rtw_p2p_enable(padapter, P2P_ROLE_DEVICE);
  3934. #endif
  3935. ndev = padapter->pnetdev;
  3936. wdev = ndev->ieee80211_ptr;
  3937. break;
  3938. #if defined(CONFIG_P2P) && defined(RTW_DEDICATED_P2P_DEVICE)
  3939. case NL80211_IFTYPE_P2P_DEVICE:
  3940. ret = rtw_pd_iface_alloc(wiphy, name, &wdev);
  3941. break;
  3942. #endif
  3943. case NL80211_IFTYPE_ADHOC:
  3944. case NL80211_IFTYPE_AP_VLAN:
  3945. case NL80211_IFTYPE_WDS:
  3946. default:
  3947. ret = -ENODEV;
  3948. RTW_INFO("Unsupported interface type\n");
  3949. break;
  3950. }
  3951. if (ndev)
  3952. RTW_INFO(FUNC_WIPHY_FMT" ndev:%p, ret:%d\n", FUNC_WIPHY_ARG(wiphy), ndev, ret);
  3953. else
  3954. RTW_INFO(FUNC_WIPHY_FMT" wdev:%p, ret:%d\n", FUNC_WIPHY_ARG(wiphy), wdev, ret);
  3955. rtw_set_rtnl_lock_holder(dvobj, NULL);
  3956. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  3957. return wdev ? wdev : ERR_PTR(ret);
  3958. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)) || defined(COMPAT_KERNEL_RELEASE)
  3959. return ndev ? ndev : ERR_PTR(ret);
  3960. #else
  3961. return ret;
  3962. #endif
  3963. }
  3964. static int cfg80211_rtw_del_virtual_intf(struct wiphy *wiphy,
  3965. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  3966. struct wireless_dev *wdev
  3967. #else
  3968. struct net_device *ndev
  3969. #endif
  3970. )
  3971. {
  3972. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  3973. struct net_device *ndev = wdev_to_ndev(wdev);
  3974. #endif
  3975. int ret = 0;
  3976. struct dvobj_priv *dvobj = wiphy_to_dvobj(wiphy);
  3977. _adapter *adapter;
  3978. struct rtw_wdev_priv *pwdev_priv;
  3979. rtw_set_rtnl_lock_holder(dvobj, current);
  3980. if (ndev) {
  3981. adapter = (_adapter *)rtw_netdev_priv(ndev);
  3982. pwdev_priv = adapter_wdev_data(adapter);
  3983. if (ndev == pwdev_priv->pmon_ndev) {
  3984. unregister_netdevice(ndev);
  3985. pwdev_priv->pmon_ndev = NULL;
  3986. pwdev_priv->ifname_mon[0] = '\0';
  3987. RTW_INFO(FUNC_NDEV_FMT" remove monitor ndev\n", FUNC_NDEV_ARG(ndev));
  3988. } else {
  3989. RTW_INFO(FUNC_NDEV_FMT" unregister ndev\n", FUNC_NDEV_ARG(ndev));
  3990. rtw_os_ndev_unregister(adapter);
  3991. }
  3992. } else
  3993. #if defined(CONFIG_P2P) && defined(RTW_DEDICATED_P2P_DEVICE)
  3994. if (wdev->iftype == NL80211_IFTYPE_P2P_DEVICE) {
  3995. if (wdev == wiphy_to_pd_wdev(wiphy))
  3996. rtw_pd_iface_free(wiphy);
  3997. else {
  3998. RTW_ERR(FUNC_WIPHY_FMT" unknown P2P Device wdev:%p\n", FUNC_WIPHY_ARG(wiphy), wdev);
  3999. rtw_warn_on(1);
  4000. }
  4001. } else
  4002. #endif
  4003. {
  4004. ret = -EINVAL;
  4005. goto exit;
  4006. }
  4007. exit:
  4008. rtw_set_rtnl_lock_holder(dvobj, NULL);
  4009. return ret;
  4010. }
  4011. static int rtw_add_beacon(_adapter *adapter, const u8 *head, size_t head_len, const u8 *tail, size_t tail_len)
  4012. {
  4013. int ret = 0;
  4014. u8 *pbuf = NULL;
  4015. uint len, wps_ielen = 0;
  4016. uint p2p_ielen = 0;
  4017. u8 got_p2p_ie = _FALSE;
  4018. struct mlme_priv *pmlmepriv = &(adapter->mlmepriv);
  4019. /* struct sta_priv *pstapriv = &padapter->stapriv; */
  4020. RTW_INFO("%s beacon_head_len=%zu, beacon_tail_len=%zu\n", __FUNCTION__, head_len, tail_len);
  4021. if (check_fwstate(pmlmepriv, WIFI_AP_STATE) != _TRUE)
  4022. return -EINVAL;
  4023. if (head_len < 24)
  4024. return -EINVAL;
  4025. #ifdef CONFIG_FW_HANDLE_TXBCN
  4026. if (!rtw_ap_nums_check(adapter)) {
  4027. RTW_ERR(FUNC_ADPT_FMT"failed, con't support over %d BCN\n", FUNC_ADPT_ARG(adapter), CONFIG_LIMITED_AP_NUM);
  4028. return -EINVAL;
  4029. }
  4030. #endif /*CONFIG_FW_HANDLE_TXBCN*/
  4031. pbuf = rtw_zmalloc(head_len + tail_len);
  4032. if (!pbuf)
  4033. return -ENOMEM;
  4034. /* _rtw_memcpy(&pstapriv->max_num_sta, param->u.bcn_ie.reserved, 2); */
  4035. /* if((pstapriv->max_num_sta>NUM_STA) || (pstapriv->max_num_sta<=0)) */
  4036. /* pstapriv->max_num_sta = NUM_STA; */
  4037. _rtw_memcpy(pbuf, (void *)head + 24, head_len - 24); /* 24=beacon header len. */
  4038. _rtw_memcpy(pbuf + head_len - 24, (void *)tail, tail_len);
  4039. len = head_len + tail_len - 24;
  4040. /* check wps ie if inclued */
  4041. if (rtw_get_wps_ie(pbuf + _FIXED_IE_LENGTH_, len - _FIXED_IE_LENGTH_, NULL, &wps_ielen))
  4042. RTW_INFO("add bcn, wps_ielen=%d\n", wps_ielen);
  4043. #ifdef CONFIG_P2P
  4044. if (adapter->wdinfo.driver_interface == DRIVER_CFG80211) {
  4045. /* check p2p if enable */
  4046. if (rtw_get_p2p_ie(pbuf + _FIXED_IE_LENGTH_, len - _FIXED_IE_LENGTH_, NULL, &p2p_ielen)) {
  4047. struct wifidirect_info *pwdinfo = &(adapter->wdinfo);
  4048. RTW_INFO("got p2p_ie, len=%d\n", p2p_ielen);
  4049. got_p2p_ie = _TRUE;
  4050. if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) {
  4051. RTW_INFO("Enable P2P function for the first time\n");
  4052. rtw_p2p_enable(adapter, P2P_ROLE_GO);
  4053. adapter->stapriv.expire_to = 3; /* 3x2 = 6 sec in p2p mode */
  4054. } else {
  4055. RTW_INFO("enter GO Mode, p2p_ielen=%d\n", p2p_ielen);
  4056. rtw_p2p_set_role(pwdinfo, P2P_ROLE_GO);
  4057. rtw_p2p_set_state(pwdinfo, P2P_STATE_GONEGO_OK);
  4058. pwdinfo->intent = 15;
  4059. }
  4060. }
  4061. }
  4062. #endif /* CONFIG_P2P */
  4063. /* pbss_network->IEs will not include p2p_ie, wfd ie */
  4064. rtw_ies_remove_ie(pbuf, &len, _BEACON_IE_OFFSET_, _VENDOR_SPECIFIC_IE_, P2P_OUI, 4);
  4065. rtw_ies_remove_ie(pbuf, &len, _BEACON_IE_OFFSET_, _VENDOR_SPECIFIC_IE_, WFD_OUI, 4);
  4066. if (rtw_check_beacon_data(adapter, pbuf, len) == _SUCCESS) {
  4067. #ifdef CONFIG_P2P
  4068. /* check p2p if enable */
  4069. if (got_p2p_ie == _TRUE) {
  4070. struct mlme_ext_priv *pmlmeext = &adapter->mlmeextpriv;
  4071. struct wifidirect_info *pwdinfo = &(adapter->wdinfo);
  4072. pwdinfo->operating_channel = pmlmeext->cur_channel;
  4073. }
  4074. #endif /* CONFIG_P2P */
  4075. ret = 0;
  4076. } else
  4077. ret = -EINVAL;
  4078. rtw_mfree(pbuf, head_len + tail_len);
  4079. return ret;
  4080. }
  4081. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)) && !defined(COMPAT_KERNEL_RELEASE)
  4082. static int cfg80211_rtw_add_beacon(struct wiphy *wiphy, struct net_device *ndev,
  4083. struct beacon_parameters *info)
  4084. {
  4085. int ret = 0;
  4086. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  4087. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4088. if (rtw_cfg80211_sync_iftype(adapter) != _SUCCESS) {
  4089. ret = -ENOTSUPP;
  4090. goto exit;
  4091. }
  4092. rtw_mi_scan_abort(adapter, _TRUE);
  4093. rtw_mi_buddy_set_scan_deny(adapter, 300);
  4094. ret = rtw_add_beacon(adapter, info->head, info->head_len, info->tail, info->tail_len);
  4095. exit:
  4096. return ret;
  4097. }
  4098. static int cfg80211_rtw_set_beacon(struct wiphy *wiphy, struct net_device *ndev,
  4099. struct beacon_parameters *info)
  4100. {
  4101. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  4102. struct mlme_ext_priv *pmlmeext = &(adapter->mlmeextpriv);
  4103. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4104. pmlmeext->bstart_bss = _TRUE;
  4105. cfg80211_rtw_add_beacon(wiphy, ndev, info);
  4106. return 0;
  4107. }
  4108. static int cfg80211_rtw_del_beacon(struct wiphy *wiphy, struct net_device *ndev)
  4109. {
  4110. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  4111. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4112. rtw_set_802_11_infrastructure_mode(adapter, Ndis802_11Infrastructure);
  4113. rtw_setopmode_cmd(adapter, Ndis802_11Infrastructure, RTW_CMDF_WAIT_ACK);
  4114. return 0;
  4115. }
  4116. #else
  4117. static int cfg80211_rtw_start_ap(struct wiphy *wiphy, struct net_device *ndev,
  4118. struct cfg80211_ap_settings *settings)
  4119. {
  4120. int ret = 0;
  4121. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  4122. RTW_INFO(FUNC_NDEV_FMT" hidden_ssid:%d, auth_type:%d\n", FUNC_NDEV_ARG(ndev),
  4123. settings->hidden_ssid, settings->auth_type);
  4124. if (rtw_cfg80211_sync_iftype(adapter) != _SUCCESS) {
  4125. ret = -ENOTSUPP;
  4126. goto exit;
  4127. }
  4128. rtw_mi_scan_abort(adapter, _TRUE);
  4129. rtw_mi_buddy_set_scan_deny(adapter, 300);
  4130. ret = rtw_add_beacon(adapter, settings->beacon.head, settings->beacon.head_len,
  4131. settings->beacon.tail, settings->beacon.tail_len);
  4132. adapter->mlmeextpriv.mlmext_info.hidden_ssid_mode = settings->hidden_ssid;
  4133. if (settings->ssid && settings->ssid_len) {
  4134. WLAN_BSSID_EX *pbss_network = &adapter->mlmepriv.cur_network.network;
  4135. WLAN_BSSID_EX *pbss_network_ext = &adapter->mlmeextpriv.mlmext_info.network;
  4136. if (0)
  4137. RTW_INFO(FUNC_ADPT_FMT" ssid:(%s,%zu), from ie:(%s,%d)\n", FUNC_ADPT_ARG(adapter),
  4138. settings->ssid, settings->ssid_len,
  4139. pbss_network->Ssid.Ssid, pbss_network->Ssid.SsidLength);
  4140. _rtw_memcpy(pbss_network->Ssid.Ssid, (void *)settings->ssid, settings->ssid_len);
  4141. pbss_network->Ssid.SsidLength = settings->ssid_len;
  4142. _rtw_memcpy(pbss_network_ext->Ssid.Ssid, (void *)settings->ssid, settings->ssid_len);
  4143. pbss_network_ext->Ssid.SsidLength = settings->ssid_len;
  4144. if (0)
  4145. RTW_INFO(FUNC_ADPT_FMT" after ssid:(%s,%d), (%s,%d)\n", FUNC_ADPT_ARG(adapter),
  4146. pbss_network->Ssid.Ssid, pbss_network->Ssid.SsidLength,
  4147. pbss_network_ext->Ssid.Ssid, pbss_network_ext->Ssid.SsidLength);
  4148. }
  4149. exit:
  4150. return ret;
  4151. }
  4152. static int cfg80211_rtw_change_beacon(struct wiphy *wiphy, struct net_device *ndev,
  4153. struct cfg80211_beacon_data *info)
  4154. {
  4155. int ret = 0;
  4156. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  4157. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4158. ret = rtw_add_beacon(adapter, info->head, info->head_len, info->tail, info->tail_len);
  4159. return ret;
  4160. }
  4161. #if LINUX_VERSION_CODE < KERNEL_VERSION(5, 19, 2)
  4162. static int cfg80211_rtw_stop_ap(struct wiphy *wiphy, struct net_device *ndev)
  4163. #else
  4164. static int cfg80211_rtw_stop_ap(struct wiphy *wiphy, struct net_device *ndev, unsigned int link_id)
  4165. #endif
  4166. {
  4167. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  4168. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4169. rtw_set_802_11_infrastructure_mode(adapter, Ndis802_11Infrastructure);
  4170. rtw_setopmode_cmd(adapter, Ndis802_11Infrastructure, RTW_CMDF_WAIT_ACK);
  4171. return 0;
  4172. }
  4173. #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)) */
  4174. #if CONFIG_RTW_MACADDR_ACL && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  4175. static int cfg80211_rtw_set_mac_acl(struct wiphy *wiphy, struct net_device *ndev,
  4176. const struct cfg80211_acl_data *params)
  4177. {
  4178. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  4179. u8 acl_mode = RTW_ACL_MODE_DISABLED;
  4180. int ret = -1;
  4181. int i;
  4182. if (!params) {
  4183. RTW_WARN(FUNC_ADPT_FMT" params NULL\n", FUNC_ADPT_ARG(adapter));
  4184. rtw_macaddr_acl_clear(adapter, RTW_ACL_PERIOD_BSS);
  4185. goto exit;
  4186. }
  4187. RTW_INFO(FUNC_ADPT_FMT" acl_policy:%d, entry_num:%d\n"
  4188. , FUNC_ADPT_ARG(adapter), params->acl_policy, params->n_acl_entries);
  4189. if (params->acl_policy == NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED)
  4190. acl_mode = RTW_ACL_MODE_ACCEPT_UNLESS_LISTED;
  4191. else if (params->acl_policy == NL80211_ACL_POLICY_DENY_UNLESS_LISTED)
  4192. acl_mode = RTW_ACL_MODE_DENY_UNLESS_LISTED;
  4193. rtw_macaddr_acl_clear(adapter, RTW_ACL_PERIOD_BSS);
  4194. rtw_set_macaddr_acl(adapter, RTW_ACL_PERIOD_BSS, acl_mode);
  4195. for (i = 0; i < params->n_acl_entries; i++)
  4196. rtw_acl_add_sta(adapter, RTW_ACL_PERIOD_BSS, params->mac_addrs[i].addr);
  4197. ret = 0;
  4198. exit:
  4199. return ret;
  4200. }
  4201. #endif /* CONFIG_RTW_MACADDR_ACL && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)) */
  4202. const char *_nl80211_sta_flags_str[] = {
  4203. "INVALID",
  4204. "AUTHORIZED",
  4205. "SHORT_PREAMBLE",
  4206. "WME",
  4207. "MFP",
  4208. "AUTHENTICATED",
  4209. "TDLS_PEER",
  4210. "ASSOCIATED",
  4211. };
  4212. #define nl80211_sta_flags_str(_f) ((_f <= NL80211_STA_FLAG_MAX) ? _nl80211_sta_flags_str[_f] : _nl80211_sta_flags_str[0])
  4213. const char *_nl80211_plink_state_str[] = {
  4214. "LISTEN",
  4215. "OPN_SNT",
  4216. "OPN_RCVD",
  4217. "CNF_RCVD",
  4218. "ESTAB",
  4219. "HOLDING",
  4220. "BLOCKED",
  4221. "UNKNOWN",
  4222. };
  4223. #define nl80211_plink_state_str(_s) ((_s < NUM_NL80211_PLINK_STATES) ? _nl80211_plink_state_str[_s] : _nl80211_plink_state_str[NUM_NL80211_PLINK_STATES])
  4224. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 10, 0))
  4225. #define NL80211_PLINK_ACTION_NO_ACTION PLINK_ACTION_INVALID
  4226. #define NL80211_PLINK_ACTION_OPEN PLINK_ACTION_OPEN
  4227. #define NL80211_PLINK_ACTION_BLOCK PLINK_ACTION_BLOCK
  4228. #define NUM_NL80211_PLINK_ACTIONS 3
  4229. #endif
  4230. const char *_nl80211_plink_actions_str[] = {
  4231. "NO_ACTION",
  4232. "OPEN",
  4233. "BLOCK",
  4234. "UNKNOWN",
  4235. };
  4236. #define nl80211_plink_actions_str(_a) ((_a < NUM_NL80211_PLINK_ACTIONS) ? _nl80211_plink_actions_str[_a] : _nl80211_plink_actions_str[NUM_NL80211_PLINK_ACTIONS])
  4237. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  4238. const char *_nl80211_mesh_power_mode_str[] = {
  4239. "UNKNOWN",
  4240. "ACTIVE",
  4241. "LIGHT_SLEEP",
  4242. "DEEP_SLEEP",
  4243. };
  4244. #define nl80211_mesh_power_mode_str(_p) ((_p <= NL80211_MESH_POWER_MAX) ? _nl80211_mesh_power_mode_str[_p] : _nl80211_mesh_power_mode_str[0])
  4245. #endif
  4246. void dump_station_parameters(void *sel, struct wiphy *wiphy, const struct station_parameters *params)
  4247. {
  4248. #if DBG_RTW_CFG80211_STA_PARAM
  4249. if (params->supported_rates_len) {
  4250. #define SUPP_RATES_BUF_LEN (3 * RTW_G_RATES_NUM + 1)
  4251. int i;
  4252. char supp_rates_buf[SUPP_RATES_BUF_LEN] = {0};
  4253. u8 cnt = 0;
  4254. rtw_warn_on(params->supported_rates_len > RTW_G_RATES_NUM);
  4255. for (i = 0; i < params->supported_rates_len; i++) {
  4256. if (i >= RTW_G_RATES_NUM)
  4257. break;
  4258. cnt += snprintf(supp_rates_buf + cnt, SUPP_RATES_BUF_LEN - cnt -1
  4259. , "%02X ", params->supported_rates[i]);
  4260. if (cnt >= SUPP_RATES_BUF_LEN - 1)
  4261. break;
  4262. }
  4263. RTW_PRINT_SEL(sel, "supported_rates:%s\n", supp_rates_buf);
  4264. }
  4265. if (params->vlan)
  4266. RTW_PRINT_SEL(sel, "vlan:"NDEV_FMT"\n", NDEV_ARG(params->vlan));
  4267. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31))
  4268. if (params->sta_flags_mask) {
  4269. #define STA_FLAGS_BUF_LEN 128
  4270. int i = 0;
  4271. char sta_flags_buf[STA_FLAGS_BUF_LEN] = {0};
  4272. u8 cnt = 0;
  4273. for (i = 1; i <= NL80211_STA_FLAG_MAX; i++) {
  4274. if (params->sta_flags_mask & BIT(i)) {
  4275. cnt += snprintf(sta_flags_buf + cnt, STA_FLAGS_BUF_LEN - cnt -1, "%s=%u "
  4276. , nl80211_sta_flags_str(i), (params->sta_flags_set & BIT(i)) ? 1 : 0);
  4277. if (cnt >= STA_FLAGS_BUF_LEN - 1)
  4278. break;
  4279. }
  4280. }
  4281. RTW_PRINT_SEL(sel, "sta_flags:%s\n", sta_flags_buf);
  4282. }
  4283. #else
  4284. u32 station_flags;
  4285. #error "TBD\n"
  4286. #endif
  4287. if (params->listen_interval != -1)
  4288. RTW_PRINT_SEL(sel, "listen_interval:%d\n", params->listen_interval);
  4289. if (params->aid)
  4290. RTW_PRINT_SEL(sel, "aid:%u\n", params->aid);
  4291. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 8, 0))
  4292. if (params->peer_aid)
  4293. RTW_PRINT_SEL(sel, "peer_aid:%u\n", params->peer_aid);
  4294. #endif
  4295. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 26))
  4296. if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
  4297. RTW_PRINT_SEL(sel, "plink_action:%s\n", nl80211_plink_actions_str(params->plink_action));
  4298. #endif
  4299. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  4300. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  4301. if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
  4302. #endif
  4303. RTW_PRINT_SEL(sel, "plink_state:%s\n"
  4304. , nl80211_plink_state_str(params->plink_state));
  4305. #endif
  4306. #if 0 /* TODO */
  4307. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 28))
  4308. const struct ieee80211_ht_cap *ht_capa;
  4309. #endif
  4310. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  4311. const struct ieee80211_vht_cap *vht_capa;
  4312. #endif
  4313. #endif
  4314. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  4315. if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD)
  4316. RTW_PRINT_SEL(sel, "uapsd_queues:0x%02x\n", params->uapsd_queues);
  4317. if (params->max_sp)
  4318. RTW_PRINT_SEL(sel, "max_sp:%u\n", params->max_sp);
  4319. #endif
  4320. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  4321. if (params->local_pm != NL80211_MESH_POWER_UNKNOWN) {
  4322. RTW_PRINT_SEL(sel, "local_pm:%s\n"
  4323. , nl80211_mesh_power_mode_str(params->local_pm));
  4324. }
  4325. if (params->sta_modify_mask & STATION_PARAM_APPLY_CAPABILITY)
  4326. RTW_PRINT_SEL(sel, "capability:0x%04x\n", params->capability);
  4327. #if 0 /* TODO */
  4328. const u8 *ext_capab;
  4329. u8 ext_capab_len;
  4330. #endif
  4331. #endif
  4332. #if 0 /* TODO */
  4333. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 13, 0))
  4334. const u8 *supported_channels;
  4335. u8 supported_channels_len;
  4336. const u8 *supported_oper_classes;
  4337. u8 supported_oper_classes_len;
  4338. #endif
  4339. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0))
  4340. u8 opmode_notif;
  4341. bool opmode_notif_used;
  4342. #endif
  4343. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 7, 0))
  4344. int support_p2p_ps;
  4345. #endif
  4346. #endif
  4347. #endif /* DBG_RTW_CFG80211_STA_PARAM */
  4348. }
  4349. static int cfg80211_rtw_add_station(struct wiphy *wiphy, struct net_device *ndev,
  4350. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 16, 0))
  4351. u8 *mac,
  4352. #else
  4353. const u8 *mac,
  4354. #endif
  4355. struct station_parameters *params)
  4356. {
  4357. int ret = 0;
  4358. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  4359. #if defined(CONFIG_TDLS) || defined(CONFIG_RTW_MESH)
  4360. struct sta_priv *pstapriv = &padapter->stapriv;
  4361. #endif
  4362. #ifdef CONFIG_TDLS
  4363. struct sta_info *psta;
  4364. #endif /* CONFIG_TDLS */
  4365. RTW_INFO(FUNC_NDEV_FMT" mac:"MAC_FMT"\n", FUNC_NDEV_ARG(ndev), MAC_ARG(mac));
  4366. #if CONFIG_RTW_MACADDR_ACL
  4367. if (rtw_access_ctrl(padapter, mac) == _FALSE) {
  4368. RTW_INFO(FUNC_NDEV_FMT" deny by macaddr ACL\n", FUNC_NDEV_ARG(ndev));
  4369. ret = -EINVAL;
  4370. goto exit;
  4371. }
  4372. #endif
  4373. dump_station_parameters(RTW_DBGDUMP, wiphy, params);
  4374. #ifdef CONFIG_RTW_MESH
  4375. if (MLME_IS_MESH(padapter)) {
  4376. struct rtw_mesh_cfg *mcfg = &padapter->mesh_cfg;
  4377. struct rtw_mesh_info *minfo = &padapter->mesh_info;
  4378. struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl;
  4379. struct mesh_plink_ent *plink = NULL;
  4380. struct wlan_network *scanned = NULL;
  4381. bool acnode = 0;
  4382. u8 add_new_sta = 0, probe_req = 0;
  4383. _irqL irqL;
  4384. if (params->plink_state != NL80211_PLINK_LISTEN) {
  4385. RTW_WARN(FUNC_NDEV_FMT" %s\n", FUNC_NDEV_ARG(ndev), nl80211_plink_state_str(params->plink_state));
  4386. rtw_warn_on(1);
  4387. }
  4388. if (!params->aid || params->aid > pstapriv->max_aid) {
  4389. RTW_WARN(FUNC_NDEV_FMT" invalid aid:%u\n", FUNC_NDEV_ARG(ndev), params->aid);
  4390. rtw_warn_on(1);
  4391. ret = -EINVAL;
  4392. goto exit;
  4393. }
  4394. _enter_critical_bh(&(plink_ctl->lock), &irqL);
  4395. plink = _rtw_mesh_plink_get(padapter, mac);
  4396. if (plink)
  4397. goto release_plink_ctl;
  4398. #if CONFIG_RTW_MESH_PEER_BLACKLIST
  4399. if (rtw_mesh_peer_blacklist_search(padapter, mac)) {
  4400. RTW_INFO(FUNC_NDEV_FMT" deny by peer blacklist\n"
  4401. , FUNC_NDEV_ARG(ndev));
  4402. ret = -EINVAL;
  4403. goto release_plink_ctl;
  4404. }
  4405. #endif
  4406. scanned = rtw_find_network(&padapter->mlmepriv.scanned_queue, mac);
  4407. if (!scanned
  4408. || rtw_get_passing_time_ms(scanned->last_scanned) >= mcfg->peer_sel_policy.scanr_exp_ms
  4409. ) {
  4410. if (!scanned)
  4411. RTW_INFO(FUNC_NDEV_FMT" corresponding network not found\n", FUNC_NDEV_ARG(ndev));
  4412. else
  4413. RTW_INFO(FUNC_NDEV_FMT" corresponding network too old\n", FUNC_NDEV_ARG(ndev));
  4414. if (adapter_to_rfctl(padapter)->offch_state == OFFCHS_NONE)
  4415. probe_req = 1;
  4416. ret = -EINVAL;
  4417. goto release_plink_ctl;
  4418. }
  4419. #if CONFIG_RTW_MESH_ACNODE_PREVENT
  4420. if (plink_ctl->acnode_rsvd)
  4421. acnode = rtw_mesh_scanned_is_acnode_confirmed(padapter, scanned);
  4422. #endif
  4423. /* wpa_supplicant's auto peer will initiate peering when candidate peer is reported without max_peer_links consideration */
  4424. if (plink_ctl->num >= mcfg->max_peer_links + acnode ? 1 : 0) {
  4425. RTW_INFO(FUNC_NDEV_FMT" exceed max_peer_links:%u%s\n"
  4426. , FUNC_NDEV_ARG(ndev), mcfg->max_peer_links, acnode ? " acn" : "");
  4427. ret = -EINVAL;
  4428. goto release_plink_ctl;
  4429. }
  4430. if (!rtw_bss_is_candidate_mesh_peer(&padapter->mlmepriv.cur_network.network, &scanned->network, 1, 1)) {
  4431. RTW_WARN(FUNC_NDEV_FMT" corresponding network is not candidate with same ch\n"
  4432. , FUNC_NDEV_ARG(ndev));
  4433. ret = -EINVAL;
  4434. goto release_plink_ctl;
  4435. }
  4436. #if CONFIG_RTW_MESH_CTO_MGATE_BLACKLIST
  4437. if (!rtw_mesh_cto_mgate_network_filter(padapter, scanned)) {
  4438. RTW_INFO(FUNC_NDEV_FMT" peer filtered out by cto_mgate check\n"
  4439. , FUNC_NDEV_ARG(ndev));
  4440. ret = -EINVAL;
  4441. goto release_plink_ctl;
  4442. }
  4443. #endif
  4444. if (_rtw_mesh_plink_add(padapter, mac) == _SUCCESS) {
  4445. /* hook corresponding network in scan queue */
  4446. plink = _rtw_mesh_plink_get(padapter, mac);
  4447. plink->aid = params->aid;
  4448. plink->scanned = scanned;
  4449. #if CONFIG_RTW_MESH_ACNODE_PREVENT
  4450. if (acnode) {
  4451. RTW_INFO(FUNC_ADPT_FMT" acnode "MAC_FMT"\n"
  4452. , FUNC_ADPT_ARG(padapter), MAC_ARG(scanned->network.MacAddress));
  4453. }
  4454. #endif
  4455. add_new_sta = 1;
  4456. } else {
  4457. RTW_WARN(FUNC_NDEV_FMT" rtw_mesh_plink_add not success\n"
  4458. , FUNC_NDEV_ARG(ndev));
  4459. ret = -EINVAL;
  4460. }
  4461. release_plink_ctl:
  4462. _exit_critical_bh(&(plink_ctl->lock), &irqL);
  4463. if (probe_req)
  4464. issue_probereq(padapter, &padapter->mlmepriv.cur_network.network.mesh_id, mac);
  4465. if (add_new_sta) {
  4466. struct station_info sinfo;
  4467. #ifdef CONFIG_DFS_MASTER
  4468. if (IS_UNDER_CAC(adapter_to_rfctl(padapter)))
  4469. rtw_force_stop_cac(adapter_to_rfctl(padapter), 300);
  4470. #endif
  4471. /* indicate new sta */
  4472. _rtw_memset(&sinfo, 0, sizeof(sinfo));
  4473. cfg80211_new_sta(ndev, mac, &sinfo, GFP_ATOMIC);
  4474. }
  4475. goto exit;
  4476. }
  4477. #endif /* CONFIG_RTW_MESH */
  4478. #ifdef CONFIG_TDLS
  4479. psta = rtw_get_stainfo(pstapriv, (u8 *)mac);
  4480. if (psta == NULL) {
  4481. psta = rtw_alloc_stainfo(pstapriv, (u8 *)mac);
  4482. if (psta == NULL) {
  4483. RTW_INFO("[%s] Alloc station for "MAC_FMT" fail\n", __FUNCTION__, MAC_ARG(mac));
  4484. ret = -EOPNOTSUPP;
  4485. goto exit;
  4486. }
  4487. }
  4488. #endif /* CONFIG_TDLS */
  4489. exit:
  4490. return ret;
  4491. }
  4492. static int cfg80211_rtw_del_station(struct wiphy *wiphy, struct net_device *ndev,
  4493. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 16, 0))
  4494. u8 *mac
  4495. #elif (LINUX_VERSION_CODE < KERNEL_VERSION(3, 19, 0))
  4496. const u8 *mac
  4497. #else
  4498. struct station_del_parameters *params
  4499. #endif
  4500. )
  4501. {
  4502. int ret = 0;
  4503. _irqL irqL;
  4504. _list *phead, *plist;
  4505. u8 updated = _FALSE;
  4506. const u8 *target_mac;
  4507. struct sta_info *psta = NULL;
  4508. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  4509. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  4510. struct sta_priv *pstapriv = &padapter->stapriv;
  4511. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 19, 0))
  4512. target_mac = mac;
  4513. #else
  4514. target_mac = params->mac;
  4515. #endif
  4516. RTW_INFO("+"FUNC_NDEV_FMT" mac=%pM\n", FUNC_NDEV_ARG(ndev), target_mac);
  4517. if (check_fwstate(pmlmepriv, (_FW_LINKED | WIFI_AP_STATE | WIFI_MESH_STATE)) != _TRUE) {
  4518. RTW_INFO("%s, fw_state != FW_LINKED|WIFI_AP_STATE|WIFI_MESH_STATE\n", __func__);
  4519. return -EINVAL;
  4520. }
  4521. if (!target_mac) {
  4522. RTW_INFO("flush all sta, and cam_entry\n");
  4523. flush_all_cam_entry(padapter); /* clear CAM */
  4524. #ifdef CONFIG_AP_MODE
  4525. ret = rtw_sta_flush(padapter, _TRUE);
  4526. #endif
  4527. return ret;
  4528. }
  4529. RTW_INFO("free sta macaddr =" MAC_FMT "\n", MAC_ARG(target_mac));
  4530. if (target_mac[0] == 0xff && target_mac[1] == 0xff &&
  4531. target_mac[2] == 0xff && target_mac[3] == 0xff &&
  4532. target_mac[4] == 0xff && target_mac[5] == 0xff)
  4533. return -EINVAL;
  4534. _enter_critical_bh(&pstapriv->asoc_list_lock, &irqL);
  4535. phead = &pstapriv->asoc_list;
  4536. plist = get_next(phead);
  4537. /* check asoc_queue */
  4538. while ((rtw_end_of_queue_search(phead, plist)) == _FALSE) {
  4539. psta = LIST_CONTAINOR(plist, struct sta_info, asoc_list);
  4540. plist = get_next(plist);
  4541. if (_rtw_memcmp((u8 *)target_mac, psta->cmn.mac_addr, ETH_ALEN)) {
  4542. if (psta->dot8021xalg == 1 && psta->bpairwise_key_installed == _FALSE)
  4543. RTW_INFO("%s, sta's dot8021xalg = 1 and key_installed = _FALSE\n", __func__);
  4544. else {
  4545. RTW_INFO("free psta=%p, aid=%d\n", psta, psta->cmn.aid);
  4546. rtw_list_delete(&psta->asoc_list);
  4547. pstapriv->asoc_list_cnt--;
  4548. STA_SET_MESH_PLINK(psta, NULL);
  4549. /* _exit_critical_bh(&pstapriv->asoc_list_lock, &irqL); */
  4550. if (MLME_IS_AP(padapter))
  4551. updated = ap_free_sta(padapter, psta, _TRUE, WLAN_REASON_PREV_AUTH_NOT_VALID, _TRUE);
  4552. else
  4553. updated = ap_free_sta(padapter, psta, _TRUE, WLAN_REASON_DEAUTH_LEAVING, _TRUE);
  4554. /* _enter_critical_bh(&pstapriv->asoc_list_lock, &irqL); */
  4555. psta = NULL;
  4556. break;
  4557. }
  4558. }
  4559. }
  4560. _exit_critical_bh(&pstapriv->asoc_list_lock, &irqL);
  4561. associated_clients_update(padapter, updated, STA_INFO_UPDATE_ALL);
  4562. #ifdef CONFIG_RTW_MESH
  4563. if (MLME_IS_MESH(padapter))
  4564. rtw_mesh_plink_del(padapter, target_mac);
  4565. #endif
  4566. RTW_INFO("-"FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4567. return ret;
  4568. }
  4569. static int cfg80211_rtw_change_station(struct wiphy *wiphy, struct net_device *ndev,
  4570. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 16, 0))
  4571. u8 *mac,
  4572. #else
  4573. const u8 *mac,
  4574. #endif
  4575. struct station_parameters *params)
  4576. {
  4577. #ifdef CONFIG_RTW_MESH
  4578. _adapter *adapter = (_adapter *)rtw_netdev_priv(ndev);
  4579. struct sta_priv *stapriv = &adapter->stapriv;
  4580. struct sta_info *sta = NULL;
  4581. _irqL irqL;
  4582. #endif
  4583. int ret = 0;
  4584. RTW_INFO(FUNC_NDEV_FMT" mac:"MAC_FMT"\n", FUNC_NDEV_ARG(ndev), MAC_ARG(mac));
  4585. dump_station_parameters(RTW_DBGDUMP, wiphy, params);
  4586. #ifdef CONFIG_RTW_MESH
  4587. if (MLME_IS_MESH(adapter)) {
  4588. enum cfg80211_station_type sta_type = CFG80211_STA_MESH_PEER_USER;
  4589. struct rtw_mesh_info *minfo = &adapter->mesh_info;
  4590. struct mesh_plink_pool *plink_ctl = &minfo->plink_ctl;
  4591. struct mesh_plink_ent *plink = NULL;
  4592. _irqL irqL2;
  4593. struct sta_info *del_sta = NULL;
  4594. ret = cfg80211_check_station_change(wiphy, params, sta_type);
  4595. if (ret) {
  4596. RTW_INFO("cfg80211_check_station_change return %d\n", ret);
  4597. goto exit;
  4598. }
  4599. _enter_critical_bh(&(plink_ctl->lock), &irqL2);
  4600. plink = _rtw_mesh_plink_get(adapter, mac);
  4601. if (!plink) {
  4602. ret = -ENOENT;
  4603. goto release_plink_ctl;
  4604. }
  4605. plink->plink_state = nl80211_plink_state_to_rtw_plink_state(params->plink_state);
  4606. #if CONFIG_RTW_MESH_ACNODE_PREVENT
  4607. if (params->plink_state == NL80211_PLINK_OPN_SNT
  4608. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  4609. && (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
  4610. #endif
  4611. ) {
  4612. if (rtw_mesh_scanned_is_acnode_confirmed(adapter, plink->scanned)
  4613. && rtw_mesh_acnode_prevent_allow_sacrifice(adapter)
  4614. ) {
  4615. struct sta_info *sac = rtw_mesh_acnode_prevent_pick_sacrifice(adapter);
  4616. if (sac) {
  4617. del_sta = sac;
  4618. _enter_critical_bh(&stapriv->asoc_list_lock, &irqL);
  4619. if (!rtw_is_list_empty(&del_sta->asoc_list)) {
  4620. rtw_list_delete(&del_sta->asoc_list);
  4621. stapriv->asoc_list_cnt--;
  4622. STA_SET_MESH_PLINK(del_sta, NULL);
  4623. }
  4624. _exit_critical_bh(&stapriv->asoc_list_lock, &irqL);
  4625. RTW_INFO(FUNC_ADPT_FMT" sacrifice "MAC_FMT" for acnode\n"
  4626. , FUNC_ADPT_ARG(adapter), MAC_ARG(del_sta->cmn.mac_addr));
  4627. }
  4628. }
  4629. } else
  4630. #endif
  4631. if ((params->plink_state == NL80211_PLINK_OPN_RCVD
  4632. || params->plink_state == NL80211_PLINK_CNF_RCVD
  4633. || params->plink_state == NL80211_PLINK_ESTAB)
  4634. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  4635. && (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
  4636. #endif
  4637. ) {
  4638. sta = rtw_get_stainfo(stapriv, mac);
  4639. if (!sta) {
  4640. sta = rtw_alloc_stainfo(stapriv, mac);
  4641. if (!sta)
  4642. goto release_plink_ctl;
  4643. }
  4644. if (params->plink_state == NL80211_PLINK_ESTAB) {
  4645. if (rtw_mesh_peer_establish(adapter, plink, sta) != _SUCCESS) {
  4646. rtw_free_stainfo(adapter, sta);
  4647. ret = -ENOENT;
  4648. goto release_plink_ctl;
  4649. }
  4650. }
  4651. }
  4652. else if (params->plink_state == NL80211_PLINK_HOLDING
  4653. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  4654. && (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
  4655. #endif
  4656. ) {
  4657. del_sta = rtw_get_stainfo(stapriv, mac);
  4658. if (!del_sta)
  4659. goto release_plink_ctl;
  4660. _enter_critical_bh(&stapriv->asoc_list_lock, &irqL);
  4661. if (!rtw_is_list_empty(&del_sta->asoc_list)) {
  4662. rtw_list_delete(&del_sta->asoc_list);
  4663. stapriv->asoc_list_cnt--;
  4664. STA_SET_MESH_PLINK(del_sta, NULL);
  4665. }
  4666. _exit_critical_bh(&stapriv->asoc_list_lock, &irqL);
  4667. }
  4668. release_plink_ctl:
  4669. _exit_critical_bh(&(plink_ctl->lock), &irqL2);
  4670. if (del_sta) {
  4671. u8 sta_addr[ETH_ALEN];
  4672. u8 updated = _FALSE;
  4673. _rtw_memcpy(sta_addr, del_sta->cmn.mac_addr, ETH_ALEN);
  4674. updated = ap_free_sta(adapter, del_sta, 0, 0, 1);
  4675. rtw_mesh_expire_peer(stapriv->padapter, sta_addr);
  4676. associated_clients_update(adapter, updated, STA_INFO_UPDATE_ALL);
  4677. }
  4678. }
  4679. #endif /* CONFIG_RTW_MESH */
  4680. exit:
  4681. return ret;
  4682. }
  4683. struct sta_info *rtw_sta_info_get_by_idx(struct sta_priv *pstapriv, const int idx, u8 *asoc_list_num)
  4684. {
  4685. _list *phead, *plist;
  4686. struct sta_info *psta = NULL;
  4687. int i = 0;
  4688. phead = &pstapriv->asoc_list;
  4689. plist = get_next(phead);
  4690. /* check asoc_queue */
  4691. while ((rtw_end_of_queue_search(phead, plist)) == _FALSE) {
  4692. if (idx == i)
  4693. psta = LIST_CONTAINOR(plist, struct sta_info, asoc_list);
  4694. plist = get_next(plist);
  4695. i++;
  4696. }
  4697. if (asoc_list_num)
  4698. *asoc_list_num = i;
  4699. return psta;
  4700. }
  4701. static int cfg80211_rtw_dump_station(struct wiphy *wiphy, struct net_device *ndev,
  4702. int idx, u8 *mac, struct station_info *sinfo)
  4703. {
  4704. #define DBG_DUMP_STATION 0
  4705. int ret = 0;
  4706. _irqL irqL;
  4707. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  4708. struct sta_priv *pstapriv = &padapter->stapriv;
  4709. struct sta_info *psta = NULL;
  4710. #ifdef CONFIG_RTW_MESH
  4711. struct mesh_plink_ent *plink = NULL;
  4712. #endif
  4713. u8 asoc_list_num;
  4714. if (DBG_DUMP_STATION)
  4715. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4716. _enter_critical_bh(&pstapriv->asoc_list_lock, &irqL);
  4717. psta = rtw_sta_info_get_by_idx(pstapriv, idx, &asoc_list_num);
  4718. _exit_critical_bh(&pstapriv->asoc_list_lock, &irqL);
  4719. #ifdef CONFIG_RTW_MESH
  4720. if (MLME_IS_MESH(padapter)) {
  4721. if (psta)
  4722. plink = psta->plink;
  4723. if (!plink)
  4724. plink = rtw_mesh_plink_get_no_estab_by_idx(padapter, idx - asoc_list_num);
  4725. }
  4726. #endif /* CONFIG_RTW_MESH */
  4727. if ((!MLME_IS_MESH(padapter) && !psta)
  4728. #ifdef CONFIG_RTW_MESH
  4729. || (MLME_IS_MESH(padapter) && !plink)
  4730. #endif
  4731. ) {
  4732. if (DBG_DUMP_STATION)
  4733. RTW_INFO(FUNC_NDEV_FMT" end with idx:%d\n", FUNC_NDEV_ARG(ndev), idx);
  4734. ret = -ENOENT;
  4735. goto exit;
  4736. }
  4737. if (psta)
  4738. _rtw_memcpy(mac, psta->cmn.mac_addr, ETH_ALEN);
  4739. #ifdef CONFIG_RTW_MESH
  4740. else
  4741. _rtw_memcpy(mac, plink->addr, ETH_ALEN);
  4742. #endif
  4743. sinfo->filled = 0;
  4744. if (psta) {
  4745. sinfo->filled |= STATION_INFO_SIGNAL;
  4746. sinfo->signal = translate_percentage_to_dbm(psta->cmn.rssi_stat.rssi);
  4747. sinfo->filled |= STATION_INFO_INACTIVE_TIME;
  4748. sinfo->inactive_time = rtw_get_passing_time_ms(psta->sta_stats.last_rx_time);
  4749. }
  4750. #ifdef CONFIG_RTW_MESH
  4751. if (MLME_IS_MESH(padapter))
  4752. rtw_cfg80211_fill_mesh_only_sta_info(plink, psta, sinfo);
  4753. #endif
  4754. exit:
  4755. return ret;
  4756. }
  4757. static int cfg80211_rtw_change_bss(struct wiphy *wiphy, struct net_device *ndev,
  4758. struct bss_parameters *params)
  4759. {
  4760. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4761. /*
  4762. RTW_INFO("use_cts_prot=%d\n", params->use_cts_prot);
  4763. RTW_INFO("use_short_preamble=%d\n", params->use_short_preamble);
  4764. RTW_INFO("use_short_slot_time=%d\n", params->use_short_slot_time);
  4765. RTW_INFO("ap_isolate=%d\n", params->ap_isolate);
  4766. RTW_INFO("basic_rates_len=%d\n", params->basic_rates_len);
  4767. for(i = 0; i < params->basic_rates_len; i++)
  4768. RTW_INFO("basic_rates=%d\n", params->basic_rates[i]);
  4769. */
  4770. return 0;
  4771. }
  4772. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29))
  4773. static int cfg80211_rtw_set_txq_params(struct wiphy *wiphy
  4774. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  4775. , struct net_device *ndev
  4776. #endif
  4777. , struct ieee80211_txq_params *params)
  4778. {
  4779. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  4780. _adapter *padapter = rtw_netdev_priv(ndev);
  4781. #else
  4782. _adapter *padapter = wiphy_to_adapter(wiphy);
  4783. #endif
  4784. struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
  4785. struct mlme_ext_info *pmlmeinfo = &(pmlmeext->mlmext_info);
  4786. u8 ac, AIFS, ECWMin, ECWMax, aSifsTime;
  4787. u16 TXOP;
  4788. u8 shift_count = 0;
  4789. u32 acParm;
  4790. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  4791. ac = params->ac;
  4792. #else
  4793. ac = params->queue;
  4794. #endif
  4795. #if 0
  4796. RTW_INFO("ac=%d\n", ac);
  4797. RTW_INFO("txop=%u\n", params->txop);
  4798. RTW_INFO("cwmin=%u\n", params->cwmin);
  4799. RTW_INFO("cwmax=%u\n", params->cwmax);
  4800. RTW_INFO("aifs=%u\n", params->aifs);
  4801. #endif
  4802. if (is_supported_5g(pmlmeext->cur_wireless_mode) ||
  4803. (pmlmeext->cur_wireless_mode & WIRELESS_11_24N))
  4804. aSifsTime = 16;
  4805. else
  4806. aSifsTime = 10;
  4807. AIFS = params->aifs * pmlmeinfo->slotTime + aSifsTime;
  4808. while ((params->cwmin + 1) >> shift_count != 1) {
  4809. shift_count++;
  4810. if (shift_count == 15)
  4811. break;
  4812. }
  4813. ECWMin = shift_count;
  4814. shift_count = 0;
  4815. while ((params->cwmax + 1) >> shift_count != 1) {
  4816. shift_count++;
  4817. if (shift_count == 15)
  4818. break;
  4819. }
  4820. ECWMax = shift_count;
  4821. TXOP = le16_to_cpu(params->txop);
  4822. acParm = AIFS | (ECWMin << 8) | (ECWMax << 12) | (TXOP << 16);
  4823. switch (ac) {
  4824. case NL80211_TXQ_Q_VO:
  4825. RTW_INFO(FUNC_NDEV_FMT" AC_VO = 0x%08x\n", FUNC_ADPT_ARG(padapter), acParm);
  4826. rtw_hal_set_hwreg(padapter, HW_VAR_AC_PARAM_VO, (u8 *)(&acParm));
  4827. break;
  4828. case NL80211_TXQ_Q_VI:
  4829. RTW_INFO(FUNC_NDEV_FMT" AC_VI = 0x%08x\n", FUNC_ADPT_ARG(padapter), acParm);
  4830. rtw_hal_set_hwreg(padapter, HW_VAR_AC_PARAM_VI, (u8 *)(&acParm));
  4831. break;
  4832. case NL80211_TXQ_Q_BE:
  4833. RTW_INFO(FUNC_NDEV_FMT" AC_BE = 0x%08x\n", FUNC_ADPT_ARG(padapter), acParm);
  4834. rtw_hal_set_hwreg(padapter, HW_VAR_AC_PARAM_BE, (u8 *)(&acParm));
  4835. break;
  4836. case NL80211_TXQ_Q_BK:
  4837. RTW_INFO(FUNC_NDEV_FMT" AC_BK = 0x%08x\n", FUNC_ADPT_ARG(padapter), acParm);
  4838. rtw_hal_set_hwreg(padapter, HW_VAR_AC_PARAM_BK, (u8 *)(&acParm));
  4839. break;
  4840. default:
  4841. break;
  4842. }
  4843. return 0;
  4844. }
  4845. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29)) */
  4846. static int cfg80211_rtw_set_channel(struct wiphy *wiphy
  4847. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 35))
  4848. , struct net_device *ndev
  4849. #endif
  4850. , struct ieee80211_channel *chan, enum nl80211_channel_type channel_type)
  4851. {
  4852. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 35))
  4853. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  4854. #else
  4855. _adapter *padapter = wiphy_to_adapter(wiphy);
  4856. #endif
  4857. int chan_target = (u8) ieee80211_frequency_to_channel(chan->center_freq);
  4858. int chan_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4859. int chan_width = CHANNEL_WIDTH_20;
  4860. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 35))
  4861. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4862. #endif
  4863. switch (channel_type) {
  4864. case NL80211_CHAN_NO_HT:
  4865. case NL80211_CHAN_HT20:
  4866. chan_width = CHANNEL_WIDTH_20;
  4867. chan_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4868. break;
  4869. case NL80211_CHAN_HT40MINUS:
  4870. chan_width = CHANNEL_WIDTH_40;
  4871. chan_offset = HAL_PRIME_CHNL_OFFSET_UPPER;
  4872. break;
  4873. case NL80211_CHAN_HT40PLUS:
  4874. chan_width = CHANNEL_WIDTH_40;
  4875. chan_offset = HAL_PRIME_CHNL_OFFSET_LOWER;
  4876. break;
  4877. default:
  4878. chan_width = CHANNEL_WIDTH_20;
  4879. chan_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4880. break;
  4881. }
  4882. RTW_INFO(FUNC_ADPT_FMT" ch:%d bw:%d, offset:%d\n"
  4883. , FUNC_ADPT_ARG(padapter), chan_target, chan_width, chan_offset);
  4884. rtw_set_chbw_cmd(padapter, chan_target, chan_width, chan_offset, RTW_CMDF_WAIT_ACK);
  4885. return 0;
  4886. }
  4887. static int cfg80211_rtw_set_monitor_channel(struct wiphy *wiphy
  4888. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  4889. , struct cfg80211_chan_def *chandef
  4890. #else
  4891. , struct ieee80211_channel *chan
  4892. , enum nl80211_channel_type channel_type
  4893. #endif
  4894. )
  4895. {
  4896. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  4897. struct ieee80211_channel *chan = chandef->chan;
  4898. #endif
  4899. _adapter *padapter = wiphy_to_adapter(wiphy);
  4900. int target_channal = chan->hw_value;
  4901. int target_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4902. int target_width = CHANNEL_WIDTH_20;
  4903. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  4904. #ifdef CONFIG_DEBUG_CFG80211
  4905. RTW_INFO("center_freq %u Mhz ch %u width %u freq1 %u freq2 %u\n"
  4906. , chan->center_freq
  4907. , chan->hw_value
  4908. , chandef->width
  4909. , chandef->center_freq1
  4910. , chandef->center_freq2);
  4911. #endif /* CONFIG_DEBUG_CFG80211 */
  4912. switch (chandef->width) {
  4913. case NL80211_CHAN_WIDTH_20_NOHT:
  4914. case NL80211_CHAN_WIDTH_20:
  4915. target_width = CHANNEL_WIDTH_20;
  4916. target_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4917. break;
  4918. case NL80211_CHAN_WIDTH_40:
  4919. target_width = CHANNEL_WIDTH_40;
  4920. if (chandef->center_freq1 > chan->center_freq)
  4921. target_offset = HAL_PRIME_CHNL_OFFSET_LOWER;
  4922. else
  4923. target_offset = HAL_PRIME_CHNL_OFFSET_UPPER;
  4924. break;
  4925. case NL80211_CHAN_WIDTH_80:
  4926. target_width = CHANNEL_WIDTH_80;
  4927. target_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4928. break;
  4929. case NL80211_CHAN_WIDTH_80P80:
  4930. target_width = CHANNEL_WIDTH_80_80;
  4931. target_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4932. break;
  4933. case NL80211_CHAN_WIDTH_160:
  4934. target_width = CHANNEL_WIDTH_160;
  4935. target_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4936. break;
  4937. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  4938. case NL80211_CHAN_WIDTH_5:
  4939. case NL80211_CHAN_WIDTH_10:
  4940. #endif
  4941. default:
  4942. target_width = CHANNEL_WIDTH_20;
  4943. target_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4944. break;
  4945. }
  4946. #else
  4947. #ifdef CONFIG_DEBUG_CFG80211
  4948. RTW_INFO("center_freq %u Mhz ch %u channel_type %u\n"
  4949. , chan->center_freq
  4950. , chan->hw_value
  4951. , channel_type);
  4952. #endif /* CONFIG_DEBUG_CFG80211 */
  4953. switch (channel_type) {
  4954. case NL80211_CHAN_NO_HT:
  4955. case NL80211_CHAN_HT20:
  4956. target_width = CHANNEL_WIDTH_20;
  4957. target_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4958. break;
  4959. case NL80211_CHAN_HT40MINUS:
  4960. target_width = CHANNEL_WIDTH_40;
  4961. target_offset = HAL_PRIME_CHNL_OFFSET_UPPER;
  4962. break;
  4963. case NL80211_CHAN_HT40PLUS:
  4964. target_width = CHANNEL_WIDTH_40;
  4965. target_offset = HAL_PRIME_CHNL_OFFSET_LOWER;
  4966. break;
  4967. default:
  4968. target_width = CHANNEL_WIDTH_20;
  4969. target_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
  4970. break;
  4971. }
  4972. #endif
  4973. RTW_INFO(FUNC_ADPT_FMT" ch:%d bw:%d, offset:%d\n"
  4974. , FUNC_ADPT_ARG(padapter), target_channal, target_width, target_offset);
  4975. rtw_set_chbw_cmd(padapter, target_channal, target_width, target_offset, RTW_CMDF_WAIT_ACK);
  4976. return 0;
  4977. }
  4978. static int cfg80211_rtw_auth(struct wiphy *wiphy, struct net_device *ndev,
  4979. struct cfg80211_auth_request *req)
  4980. {
  4981. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4982. return 0;
  4983. }
  4984. static int cfg80211_rtw_assoc(struct wiphy *wiphy, struct net_device *ndev,
  4985. struct cfg80211_assoc_request *req)
  4986. {
  4987. RTW_INFO(FUNC_NDEV_FMT"\n", FUNC_NDEV_ARG(ndev));
  4988. return 0;
  4989. }
  4990. #endif /* CONFIG_AP_MODE */
  4991. void rtw_cfg80211_rx_probe_request(_adapter *adapter, union recv_frame *rframe)
  4992. {
  4993. struct wireless_dev *wdev = adapter->rtw_wdev;
  4994. u8 *frame = get_recvframe_data(rframe);
  4995. uint frame_len = rframe->u.hdr.len;
  4996. s32 freq;
  4997. u8 ch, sch = rtw_get_oper_ch(adapter);
  4998. ch = rframe->u.hdr.attrib.ch ? rframe->u.hdr.attrib.ch : sch;
  4999. freq = rtw_ch2freq(ch);
  5000. #ifdef CONFIG_DEBUG_CFG80211
  5001. RTW_INFO("RTW_Rx: probe request, ch=%d(%d), ta="MAC_FMT"\n"
  5002. , ch, sch, MAC_ARG(get_addr2_ptr(frame)));
  5003. #endif
  5004. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)) || defined(COMPAT_KERNEL_RELEASE)
  5005. rtw_cfg80211_rx_mgmt(wdev, freq, 0, frame, frame_len, GFP_ATOMIC);
  5006. #else
  5007. cfg80211_rx_action(adapter->pnetdev, freq, frame, frame_len, GFP_ATOMIC);
  5008. #endif
  5009. }
  5010. void rtw_cfg80211_rx_action_p2p(_adapter *adapter, union recv_frame *rframe)
  5011. {
  5012. struct wireless_dev *wdev = adapter->rtw_wdev;
  5013. u8 *frame = get_recvframe_data(rframe);
  5014. uint frame_len = rframe->u.hdr.len;
  5015. s32 freq;
  5016. u8 ch, sch = rtw_get_oper_ch(adapter);
  5017. u8 category, action;
  5018. int type;
  5019. ch = rframe->u.hdr.attrib.ch ? rframe->u.hdr.attrib.ch : sch;
  5020. freq = rtw_ch2freq(ch);
  5021. RTW_INFO("RTW_Rx:ch=%d(%d), ta="MAC_FMT"\n"
  5022. , ch, sch, MAC_ARG(get_addr2_ptr(frame)));
  5023. #ifdef CONFIG_P2P
  5024. type = rtw_p2p_check_frames(adapter, frame, frame_len, _FALSE);
  5025. if (type >= 0)
  5026. goto indicate;
  5027. #endif
  5028. rtw_action_frame_parse(frame, frame_len, &category, &action);
  5029. RTW_INFO("RTW_Rx:category(%u), action(%u)\n", category, action);
  5030. indicate:
  5031. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  5032. rtw_cfg80211_rx_mgmt(wdev, freq, 0, frame, frame_len, GFP_ATOMIC);
  5033. #else
  5034. cfg80211_rx_action(adapter->pnetdev, freq, frame, frame_len, GFP_ATOMIC);
  5035. #endif
  5036. }
  5037. void rtw_cfg80211_rx_p2p_action_public(_adapter *adapter, union recv_frame *rframe)
  5038. {
  5039. struct dvobj_priv *dvobj = adapter_to_dvobj(adapter);
  5040. struct wireless_dev *wdev = adapter->rtw_wdev;
  5041. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(adapter);
  5042. u8 *frame = get_recvframe_data(rframe);
  5043. uint frame_len = rframe->u.hdr.len;
  5044. s32 freq;
  5045. u8 ch, sch = rtw_get_oper_ch(adapter);
  5046. u8 category, action;
  5047. int type;
  5048. ch = rframe->u.hdr.attrib.ch ? rframe->u.hdr.attrib.ch : sch;
  5049. freq = rtw_ch2freq(ch);
  5050. RTW_INFO("RTW_Rx:ch=%d(%d), ta="MAC_FMT"\n"
  5051. , ch, sch, MAC_ARG(get_addr2_ptr(frame)));
  5052. #ifdef CONFIG_P2P
  5053. type = rtw_p2p_check_frames(adapter, frame, frame_len, _FALSE);
  5054. if (type >= 0) {
  5055. switch (type) {
  5056. case P2P_GO_NEGO_CONF:
  5057. if (0) {
  5058. RTW_INFO(FUNC_ADPT_FMT" Nego confirm. state=%u, status=%u, iaddr="MAC_FMT"\n"
  5059. , FUNC_ADPT_ARG(adapter), pwdev_priv->nego_info.state, pwdev_priv->nego_info.status
  5060. , MAC_ARG(pwdev_priv->nego_info.iface_addr));
  5061. }
  5062. if (pwdev_priv->nego_info.state == 2
  5063. && pwdev_priv->nego_info.status == 0
  5064. && rtw_check_invalid_mac_address(pwdev_priv->nego_info.iface_addr, _FALSE) == _FALSE
  5065. ) {
  5066. _adapter *intended_iface = dvobj_get_adapter_by_addr(dvobj, pwdev_priv->nego_info.iface_addr);
  5067. if (intended_iface) {
  5068. RTW_INFO(FUNC_ADPT_FMT" Nego confirm. Allow only "ADPT_FMT" to scan for 2000 ms\n"
  5069. , FUNC_ADPT_ARG(adapter), ADPT_ARG(intended_iface));
  5070. /* allow only intended_iface to do scan for 2000 ms */
  5071. rtw_mi_set_scan_deny(adapter, 2000);
  5072. rtw_clear_scan_deny(intended_iface);
  5073. }
  5074. }
  5075. break;
  5076. case P2P_PROVISION_DISC_RESP:
  5077. case P2P_INVIT_RESP:
  5078. rtw_clear_scan_deny(adapter);
  5079. #if !RTW_P2P_GROUP_INTERFACE
  5080. rtw_mi_buddy_set_scan_deny(adapter, 2000);
  5081. #endif
  5082. break;
  5083. }
  5084. goto indicate;
  5085. }
  5086. #endif
  5087. rtw_action_frame_parse(frame, frame_len, &category, &action);
  5088. RTW_INFO("RTW_Rx:category(%u), action(%u)\n", category, action);
  5089. indicate:
  5090. #if defined(RTW_DEDICATED_P2P_DEVICE)
  5091. if (rtw_cfg80211_redirect_pd_wdev(dvobj_to_wiphy(dvobj), get_ra(frame), &wdev))
  5092. if (0)
  5093. RTW_INFO("redirect to pd_wdev:%p\n", wdev);
  5094. #endif
  5095. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  5096. rtw_cfg80211_rx_mgmt(wdev, freq, 0, frame, frame_len, GFP_ATOMIC);
  5097. #else
  5098. cfg80211_rx_action(adapter->pnetdev, freq, frame, frame_len, GFP_ATOMIC);
  5099. #endif
  5100. }
  5101. void rtw_cfg80211_rx_action(_adapter *adapter, union recv_frame *rframe, const char *msg)
  5102. {
  5103. struct wireless_dev *wdev = adapter->rtw_wdev;
  5104. u8 *frame = get_recvframe_data(rframe);
  5105. uint frame_len = rframe->u.hdr.len;
  5106. s32 freq;
  5107. u8 ch, sch = rtw_get_oper_ch(adapter);
  5108. u8 category, action;
  5109. int type = -1;
  5110. ch = rframe->u.hdr.attrib.ch ? rframe->u.hdr.attrib.ch : sch;
  5111. freq = rtw_ch2freq(ch);
  5112. RTW_INFO("RTW_Rx:ch=%d(%d), ta="MAC_FMT"\n"
  5113. , ch, sch, MAC_ARG(get_addr2_ptr(frame)));
  5114. #ifdef CONFIG_RTW_MESH
  5115. if (MLME_IS_MESH(adapter)) {
  5116. type = rtw_mesh_check_frames_rx(adapter, frame, frame_len);
  5117. if (type >= 0)
  5118. goto indicate;
  5119. }
  5120. #endif
  5121. rtw_action_frame_parse(frame, frame_len, &category, &action);
  5122. if (category == RTW_WLAN_CATEGORY_PUBLIC) {
  5123. if (action == ACT_PUBLIC_GAS_INITIAL_REQ) {
  5124. rtw_mi_set_scan_deny(adapter, 200);
  5125. rtw_mi_scan_abort(adapter, _FALSE); /*rtw_scan_abort_no_wait*/
  5126. }
  5127. }
  5128. indicate:
  5129. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  5130. rtw_cfg80211_rx_mgmt(wdev, freq, 0, frame, frame_len, GFP_ATOMIC);
  5131. #else
  5132. cfg80211_rx_action(adapter->pnetdev, freq, frame, frame_len, GFP_ATOMIC);
  5133. #endif
  5134. if (type == -1) {
  5135. if (msg)
  5136. RTW_INFO("RTW_Rx:%s\n", msg);
  5137. else
  5138. RTW_INFO("RTW_Rx:category(%u), action(%u)\n", category, action);
  5139. }
  5140. }
  5141. #ifdef CONFIG_RTW_80211K
  5142. void rtw_cfg80211_rx_rrm_action(_adapter *adapter, union recv_frame *rframe)
  5143. {
  5144. struct wireless_dev *wdev = adapter->rtw_wdev;
  5145. u8 *frame = get_recvframe_data(rframe);
  5146. uint frame_len = rframe->u.hdr.len;
  5147. s32 freq;
  5148. u8 ch, sch = rtw_get_oper_ch(adapter);
  5149. ch = rframe->u.hdr.attrib.ch ? rframe->u.hdr.attrib.ch : sch;
  5150. freq = rtw_ch2freq(ch);
  5151. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  5152. rtw_cfg80211_rx_mgmt(wdev, freq, 0, frame, frame_len, GFP_ATOMIC);
  5153. #else
  5154. cfg80211_rx_action(adapter->pnetdev, freq, frame, frame_len, GFP_ATOMIC);
  5155. #endif
  5156. RTW_INFO("RTW_Rx:ch=%d(%d), ta="MAC_FMT"\n"
  5157. , ch, sch, MAC_ARG(get_addr2_ptr(frame)));
  5158. }
  5159. #endif /* CONFIG_RTW_80211K */
  5160. void rtw_cfg80211_rx_mframe(_adapter *adapter, union recv_frame *rframe, const char *msg)
  5161. {
  5162. struct wireless_dev *wdev = adapter->rtw_wdev;
  5163. u8 *frame = get_recvframe_data(rframe);
  5164. uint frame_len = rframe->u.hdr.len;
  5165. s32 freq;
  5166. u8 ch, sch = rtw_get_oper_ch(adapter);
  5167. ch = rframe->u.hdr.attrib.ch ? rframe->u.hdr.attrib.ch : sch;
  5168. freq = rtw_ch2freq(ch);
  5169. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  5170. rtw_cfg80211_rx_mgmt(wdev, freq, 0, frame, frame_len, GFP_ATOMIC);
  5171. #else
  5172. cfg80211_rx_action(adapter->pnetdev, freq, frame, frame_len, GFP_ATOMIC);
  5173. #endif
  5174. RTW_INFO("RTW_Rx:ch=%d(%d), ta="MAC_FMT"\n", ch, sch, MAC_ARG(get_addr2_ptr(frame)));
  5175. #ifdef CONFIG_RTW_MESH
  5176. if (!rtw_sae_check_frames(adapter, frame, frame_len, _FALSE))
  5177. #endif
  5178. {
  5179. if (msg)
  5180. RTW_INFO("RTW_Rx:%s\n", msg);
  5181. else
  5182. RTW_INFO("RTW_Rx:frame_control:0x%02x\n", le16_to_cpu(((struct rtw_ieee80211_hdr_3addr *)rframe)->frame_ctl));
  5183. }
  5184. }
  5185. #ifdef CONFIG_P2P
  5186. void rtw_cfg80211_issue_p2p_provision_request(_adapter *padapter, const u8 *buf, size_t len)
  5187. {
  5188. u16 wps_devicepassword_id = 0x0000;
  5189. uint wps_devicepassword_id_len = 0;
  5190. u8 wpsie[255] = { 0x00 }, p2p_ie[255] = { 0x00 };
  5191. uint p2p_ielen = 0;
  5192. uint wpsielen = 0;
  5193. u32 devinfo_contentlen = 0;
  5194. u8 devinfo_content[64] = { 0x00 };
  5195. u16 capability = 0;
  5196. uint capability_len = 0;
  5197. unsigned char category = RTW_WLAN_CATEGORY_PUBLIC;
  5198. u8 action = P2P_PUB_ACTION_ACTION;
  5199. u8 dialogToken = 1;
  5200. u32 p2poui = cpu_to_be32(P2POUI);
  5201. u8 oui_subtype = P2P_PROVISION_DISC_REQ;
  5202. u32 p2pielen = 0;
  5203. #ifdef CONFIG_WFD
  5204. u32 wfdielen = 0;
  5205. #endif
  5206. struct xmit_frame *pmgntframe;
  5207. struct pkt_attrib *pattrib;
  5208. unsigned char *pframe;
  5209. struct rtw_ieee80211_hdr *pwlanhdr;
  5210. unsigned short *fctrl;
  5211. struct xmit_priv *pxmitpriv = &(padapter->xmitpriv);
  5212. struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
  5213. struct wifidirect_info *pwdinfo = &(padapter->wdinfo);
  5214. u8 *frame_body = (unsigned char *)(buf + sizeof(struct rtw_ieee80211_hdr_3addr));
  5215. size_t frame_body_len = len - sizeof(struct rtw_ieee80211_hdr_3addr);
  5216. RTW_INFO("[%s] In\n", __FUNCTION__);
  5217. /* prepare for building provision_request frame */
  5218. _rtw_memcpy(pwdinfo->tx_prov_disc_info.peerIFAddr, GetAddr1Ptr(buf), ETH_ALEN);
  5219. _rtw_memcpy(pwdinfo->tx_prov_disc_info.peerDevAddr, GetAddr1Ptr(buf), ETH_ALEN);
  5220. pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_PUSH_BUTTON;
  5221. rtw_get_wps_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, frame_body_len - _PUBLIC_ACTION_IE_OFFSET_, wpsie, &wpsielen);
  5222. rtw_get_wps_attr_content(wpsie, wpsielen, WPS_ATTR_DEVICE_PWID, (u8 *) &wps_devicepassword_id, &wps_devicepassword_id_len);
  5223. wps_devicepassword_id = be16_to_cpu(wps_devicepassword_id);
  5224. switch (wps_devicepassword_id) {
  5225. case WPS_DPID_PIN:
  5226. pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_LABEL;
  5227. break;
  5228. case WPS_DPID_USER_SPEC:
  5229. pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_DISPLYA;
  5230. break;
  5231. case WPS_DPID_MACHINE_SPEC:
  5232. break;
  5233. case WPS_DPID_REKEY:
  5234. break;
  5235. case WPS_DPID_PBC:
  5236. pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_PUSH_BUTTON;
  5237. break;
  5238. case WPS_DPID_REGISTRAR_SPEC:
  5239. pwdinfo->tx_prov_disc_info.wps_config_method_request = WPS_CM_KEYPAD;
  5240. break;
  5241. default:
  5242. break;
  5243. }
  5244. if (rtw_get_p2p_ie(frame_body + _PUBLIC_ACTION_IE_OFFSET_, frame_body_len - _PUBLIC_ACTION_IE_OFFSET_, p2p_ie, &p2p_ielen)) {
  5245. rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_DEVICE_INFO, devinfo_content, &devinfo_contentlen);
  5246. rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8 *)&capability, &capability_len);
  5247. }
  5248. /* start to build provision_request frame */
  5249. _rtw_memset(wpsie, 0, sizeof(wpsie));
  5250. _rtw_memset(p2p_ie, 0, sizeof(p2p_ie));
  5251. p2p_ielen = 0;
  5252. pmgntframe = alloc_mgtxmitframe(pxmitpriv);
  5253. if (pmgntframe == NULL)
  5254. return;
  5255. /* update attribute */
  5256. pattrib = &pmgntframe->attrib;
  5257. update_mgntframe_attrib(padapter, pattrib);
  5258. _rtw_memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET);
  5259. pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET;
  5260. pwlanhdr = (struct rtw_ieee80211_hdr *)pframe;
  5261. fctrl = &(pwlanhdr->frame_ctl);
  5262. *(fctrl) = 0;
  5263. _rtw_memcpy(pwlanhdr->addr1, pwdinfo->tx_prov_disc_info.peerDevAddr, ETH_ALEN);
  5264. _rtw_memcpy(pwlanhdr->addr2, adapter_mac_addr(padapter), ETH_ALEN);
  5265. _rtw_memcpy(pwlanhdr->addr3, pwdinfo->tx_prov_disc_info.peerDevAddr, ETH_ALEN);
  5266. SetSeqNum(pwlanhdr, pmlmeext->mgnt_seq);
  5267. pmlmeext->mgnt_seq++;
  5268. set_frame_sub_type(pframe, WIFI_ACTION);
  5269. pframe += sizeof(struct rtw_ieee80211_hdr_3addr);
  5270. pattrib->pktlen = sizeof(struct rtw_ieee80211_hdr_3addr);
  5271. pframe = rtw_set_fixed_ie(pframe, 1, &(category), &(pattrib->pktlen));
  5272. pframe = rtw_set_fixed_ie(pframe, 1, &(action), &(pattrib->pktlen));
  5273. pframe = rtw_set_fixed_ie(pframe, 4, (unsigned char *) &(p2poui), &(pattrib->pktlen));
  5274. pframe = rtw_set_fixed_ie(pframe, 1, &(oui_subtype), &(pattrib->pktlen));
  5275. pframe = rtw_set_fixed_ie(pframe, 1, &(dialogToken), &(pattrib->pktlen));
  5276. /* build_prov_disc_request_p2p_ie */
  5277. /* P2P OUI */
  5278. p2pielen = 0;
  5279. p2p_ie[p2pielen++] = 0x50;
  5280. p2p_ie[p2pielen++] = 0x6F;
  5281. p2p_ie[p2pielen++] = 0x9A;
  5282. p2p_ie[p2pielen++] = 0x09; /* WFA P2P v1.0 */
  5283. /* Commented by Albert 20110301 */
  5284. /* According to the P2P Specification, the provision discovery request frame should contain 3 P2P attributes */
  5285. /* 1. P2P Capability */
  5286. /* 2. Device Info */
  5287. /* 3. Group ID ( When joining an operating P2P Group ) */
  5288. /* P2P Capability ATTR */
  5289. /* Type: */
  5290. p2p_ie[p2pielen++] = P2P_ATTR_CAPABILITY;
  5291. /* Length: */
  5292. /* *(u16*) ( p2pie + p2pielen ) = cpu_to_le16( 0x0002 ); */
  5293. RTW_PUT_LE16(p2p_ie + p2pielen, 0x0002);
  5294. p2pielen += 2;
  5295. /* Value: */
  5296. /* Device Capability Bitmap, 1 byte */
  5297. /* Group Capability Bitmap, 1 byte */
  5298. _rtw_memcpy(p2p_ie + p2pielen, &capability, 2);
  5299. p2pielen += 2;
  5300. /* Device Info ATTR */
  5301. /* Type: */
  5302. p2p_ie[p2pielen++] = P2P_ATTR_DEVICE_INFO;
  5303. /* Length: */
  5304. /* 21->P2P Device Address (6bytes) + Config Methods (2bytes) + Primary Device Type (8bytes) */
  5305. /* + NumofSecondDevType (1byte) + WPS Device Name ID field (2bytes) + WPS Device Name Len field (2bytes) */
  5306. /* *(u16*) ( p2pie + p2pielen ) = cpu_to_le16( 21 + pwdinfo->device_name_len ); */
  5307. RTW_PUT_LE16(p2p_ie + p2pielen, devinfo_contentlen);
  5308. p2pielen += 2;
  5309. /* Value: */
  5310. _rtw_memcpy(p2p_ie + p2pielen, devinfo_content, devinfo_contentlen);
  5311. p2pielen += devinfo_contentlen;
  5312. pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, p2pielen, (unsigned char *) p2p_ie, &p2p_ielen);
  5313. /* p2pielen = build_prov_disc_request_p2p_ie( pwdinfo, pframe, NULL, 0, pwdinfo->tx_prov_disc_info.peerDevAddr); */
  5314. /* pframe += p2pielen; */
  5315. pattrib->pktlen += p2p_ielen;
  5316. wpsielen = 0;
  5317. /* WPS OUI */
  5318. *(u32 *)(wpsie) = cpu_to_be32(WPSOUI);
  5319. wpsielen += 4;
  5320. /* WPS version */
  5321. /* Type: */
  5322. *(u16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_VER1);
  5323. wpsielen += 2;
  5324. /* Length: */
  5325. *(u16 *)(wpsie + wpsielen) = cpu_to_be16(0x0001);
  5326. wpsielen += 2;
  5327. /* Value: */
  5328. wpsie[wpsielen++] = WPS_VERSION_1; /* Version 1.0 */
  5329. /* Config Method */
  5330. /* Type: */
  5331. *(u16 *)(wpsie + wpsielen) = cpu_to_be16(WPS_ATTR_CONF_METHOD);
  5332. wpsielen += 2;
  5333. /* Length: */
  5334. *(u16 *)(wpsie + wpsielen) = cpu_to_be16(0x0002);
  5335. wpsielen += 2;
  5336. /* Value: */
  5337. *(u16 *)(wpsie + wpsielen) = cpu_to_be16(pwdinfo->tx_prov_disc_info.wps_config_method_request);
  5338. wpsielen += 2;
  5339. pframe = rtw_set_ie(pframe, _VENDOR_SPECIFIC_IE_, wpsielen, (unsigned char *) wpsie, &pattrib->pktlen);
  5340. #ifdef CONFIG_WFD
  5341. wfdielen = build_provdisc_req_wfd_ie(pwdinfo, pframe);
  5342. pframe += wfdielen;
  5343. pattrib->pktlen += wfdielen;
  5344. #endif
  5345. pattrib->last_txcmdsz = pattrib->pktlen;
  5346. /* dump_mgntframe(padapter, pmgntframe); */
  5347. if (dump_mgntframe_and_wait_ack(padapter, pmgntframe) != _SUCCESS)
  5348. RTW_INFO("%s, ack to\n", __func__);
  5349. #if 0
  5350. if(wps_devicepassword_id == WPS_DPID_REGISTRAR_SPEC) {
  5351. RTW_INFO("waiting for p2p peer key-in PIN CODE\n");
  5352. rtw_msleep_os(15000); /* 15 sec for key in PIN CODE, workaround for GS2 before issuing Nego Req. */
  5353. }
  5354. #endif
  5355. }
  5356. #ifdef CONFIG_RTW_80211R
  5357. static s32 cfg80211_rtw_update_ft_ies(struct wiphy *wiphy,
  5358. struct net_device *ndev,
  5359. struct cfg80211_update_ft_ies_params *ftie)
  5360. {
  5361. _adapter *padapter = NULL;
  5362. struct mlme_priv *pmlmepriv = NULL;
  5363. struct ft_roam_info *pft_roam = NULL;
  5364. _irqL irqL;
  5365. u8 *p;
  5366. u8 *pie = NULL;
  5367. u32 ie_len = 0;
  5368. if (ndev == NULL)
  5369. return -EINVAL;
  5370. padapter = (_adapter *)rtw_netdev_priv(ndev);
  5371. pmlmepriv = &(padapter->mlmepriv);
  5372. pft_roam = &(pmlmepriv->ft_roam);
  5373. p = (u8 *)ftie->ie;
  5374. if (ftie->ie_len <= sizeof(pft_roam->updated_ft_ies)) {
  5375. _enter_critical_bh(&pmlmepriv->lock, &irqL);
  5376. _rtw_memcpy(pft_roam->updated_ft_ies, ftie->ie, ftie->ie_len);
  5377. pft_roam->updated_ft_ies_len = ftie->ie_len;
  5378. _exit_critical_bh(&pmlmepriv->lock, &irqL);
  5379. } else {
  5380. RTW_ERR("FTIEs parsing fail!\n");
  5381. return -EINVAL;
  5382. }
  5383. if (rtw_ft_roam_status(padapter, RTW_FT_AUTHENTICATED_STA)) {
  5384. RTW_PRINT("auth success, start reassoc\n");
  5385. rtw_ft_lock_set_status(padapter, RTW_FT_ASSOCIATING_STA, &irqL);
  5386. start_clnt_assoc(padapter);
  5387. }
  5388. return 0;
  5389. }
  5390. #endif
  5391. inline void rtw_cfg80211_set_is_roch(_adapter *adapter, bool val)
  5392. {
  5393. adapter->cfg80211_wdinfo.is_ro_ch = val;
  5394. rtw_mi_update_iface_status(&(adapter->mlmepriv), 0);
  5395. }
  5396. inline bool rtw_cfg80211_get_is_roch(_adapter *adapter)
  5397. {
  5398. return adapter->cfg80211_wdinfo.is_ro_ch;
  5399. }
  5400. inline bool rtw_cfg80211_is_ro_ch_once(_adapter *adapter)
  5401. {
  5402. return adapter->cfg80211_wdinfo.last_ro_ch_time ? 1 : 0;
  5403. }
  5404. inline void rtw_cfg80211_set_last_ro_ch_time(_adapter *adapter)
  5405. {
  5406. adapter->cfg80211_wdinfo.last_ro_ch_time = rtw_get_current_time();
  5407. if (!adapter->cfg80211_wdinfo.last_ro_ch_time)
  5408. adapter->cfg80211_wdinfo.last_ro_ch_time++;
  5409. }
  5410. inline s32 rtw_cfg80211_get_last_ro_ch_passing_ms(_adapter *adapter)
  5411. {
  5412. return rtw_get_passing_time_ms(adapter->cfg80211_wdinfo.last_ro_ch_time);
  5413. }
  5414. static s32 cfg80211_rtw_remain_on_channel(struct wiphy *wiphy,
  5415. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  5416. struct wireless_dev *wdev,
  5417. #else
  5418. struct net_device *ndev,
  5419. #endif
  5420. struct ieee80211_channel *channel,
  5421. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0))
  5422. enum nl80211_channel_type channel_type,
  5423. #endif
  5424. unsigned int duration, u64 *cookie)
  5425. {
  5426. s32 err = 0;
  5427. u8 remain_ch = (u8) ieee80211_frequency_to_channel(channel->center_freq);
  5428. _adapter *padapter = NULL;
  5429. struct rtw_wdev_priv *pwdev_priv;
  5430. struct wifidirect_info *pwdinfo;
  5431. struct cfg80211_wifidirect_info *pcfg80211_wdinfo;
  5432. #ifdef CONFIG_CONCURRENT_MODE
  5433. u8 is_p2p_find = _FALSE;
  5434. #endif
  5435. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  5436. #if defined(RTW_DEDICATED_P2P_DEVICE)
  5437. if (wdev == wiphy_to_pd_wdev(wiphy))
  5438. padapter = wiphy_to_adapter(wiphy);
  5439. else
  5440. #endif
  5441. if (wdev_to_ndev(wdev))
  5442. padapter = (_adapter *)rtw_netdev_priv(wdev_to_ndev(wdev));
  5443. else {
  5444. err = -EINVAL;
  5445. goto exit;
  5446. }
  5447. #else
  5448. struct wireless_dev *wdev;
  5449. if (ndev == NULL) {
  5450. err = -EINVAL;
  5451. goto exit;
  5452. }
  5453. padapter = (_adapter *)rtw_netdev_priv(ndev);
  5454. wdev = ndev_to_wdev(ndev);
  5455. #endif
  5456. pwdev_priv = adapter_wdev_data(padapter);
  5457. pwdinfo = &padapter->wdinfo;
  5458. pcfg80211_wdinfo = &padapter->cfg80211_wdinfo;
  5459. #ifdef CONFIG_CONCURRENT_MODE
  5460. is_p2p_find = (duration < (pwdinfo->ext_listen_interval)) ? _TRUE : _FALSE;
  5461. #endif
  5462. *cookie = ATOMIC_INC_RETURN(&pcfg80211_wdinfo->ro_ch_cookie_gen);
  5463. RTW_INFO(FUNC_ADPT_FMT"%s ch:%u duration:%d, cookie:0x%llx\n"
  5464. , FUNC_ADPT_ARG(padapter), wdev == wiphy_to_pd_wdev(wiphy) ? " PD" : ""
  5465. , remain_ch, duration, *cookie);
  5466. if (rtw_chset_search_ch(adapter_to_chset(padapter), remain_ch) < 0) {
  5467. RTW_WARN(FUNC_ADPT_FMT" invalid ch:%u\n", FUNC_ADPT_ARG(padapter), remain_ch);
  5468. err = -EFAULT;
  5469. goto exit;
  5470. }
  5471. #ifdef CONFIG_MP_INCLUDED
  5472. if (rtw_mp_mode_check(padapter)) {
  5473. RTW_INFO("MP mode block remain_on_channel request\n");
  5474. err = -EFAULT;
  5475. goto exit;
  5476. }
  5477. #endif
  5478. if (_FAIL == rtw_pwr_wakeup(padapter)) {
  5479. err = -EFAULT;
  5480. goto exit;
  5481. }
  5482. rtw_scan_abort(padapter);
  5483. #ifdef CONFIG_CONCURRENT_MODE
  5484. /*don't scan_abort during p2p_listen.*/
  5485. if (is_p2p_find)
  5486. rtw_mi_buddy_scan_abort(padapter, _TRUE);
  5487. #endif /*CONFIG_CONCURRENT_MODE*/
  5488. if (rtw_cfg80211_get_is_roch(padapter) == _TRUE) {
  5489. _cancel_timer_ex(&padapter->cfg80211_wdinfo.remain_on_ch_timer);
  5490. p2p_cancel_roch_cmd(padapter, 0, NULL, RTW_CMDF_WAIT_ACK);
  5491. }
  5492. /* if(!rtw_p2p_chk_role(pwdinfo, P2P_ROLE_CLIENT) && !rtw_p2p_chk_role(pwdinfo, P2P_ROLE_GO)) */
  5493. if (rtw_p2p_chk_state(pwdinfo, P2P_STATE_NONE)) {
  5494. rtw_p2p_enable(padapter, P2P_ROLE_DEVICE);
  5495. padapter->wdinfo.listen_channel = remain_ch;
  5496. RTW_INFO(FUNC_ADPT_FMT" init listen_channel %u\n"
  5497. , FUNC_ADPT_ARG(padapter), padapter->wdinfo.listen_channel);
  5498. } else if (rtw_p2p_chk_state(pwdinfo , P2P_STATE_LISTEN)
  5499. && (time_after_eq(rtw_get_current_time(), pwdev_priv->probe_resp_ie_update_time)
  5500. && rtw_get_passing_time_ms(pwdev_priv->probe_resp_ie_update_time) < 50)
  5501. ) {
  5502. if (padapter->wdinfo.listen_channel != remain_ch) {
  5503. padapter->wdinfo.listen_channel = remain_ch;
  5504. RTW_INFO(FUNC_ADPT_FMT" update listen_channel %u\n"
  5505. , FUNC_ADPT_ARG(padapter), padapter->wdinfo.listen_channel);
  5506. }
  5507. } else {
  5508. rtw_p2p_set_pre_state(pwdinfo, rtw_p2p_state(pwdinfo));
  5509. #ifdef CONFIG_DEBUG_CFG80211
  5510. RTW_INFO("%s, role=%d, p2p_state=%d\n", __func__, rtw_p2p_role(pwdinfo), rtw_p2p_state(pwdinfo));
  5511. #endif
  5512. }
  5513. rtw_p2p_set_state(pwdinfo, P2P_STATE_LISTEN);
  5514. #ifdef RTW_ROCH_DURATION_ENLARGE
  5515. if (duration < 400)
  5516. duration = duration * 3; /* extend from exper */
  5517. #endif
  5518. #if defined(RTW_ROCH_BACK_OP) && defined(CONFIG_CONCURRENT_MODE)
  5519. if (rtw_mi_check_status(padapter, MI_LINKED)) {
  5520. if (is_p2p_find) /* p2p_find , duration<1000 */
  5521. duration = duration + pwdinfo->ext_listen_interval;
  5522. else /* p2p_listen, duration=5000 */
  5523. duration = pwdinfo->ext_listen_interval + (pwdinfo->ext_listen_interval / 4);
  5524. }
  5525. #endif /*defined (RTW_ROCH_BACK_OP) && defined(CONFIG_CONCURRENT_MODE) */
  5526. rtw_cfg80211_set_is_roch(padapter, _TRUE);
  5527. pcfg80211_wdinfo->ro_ch_wdev = wdev;
  5528. pcfg80211_wdinfo->remain_on_ch_cookie = *cookie;
  5529. rtw_cfg80211_set_last_ro_ch_time(padapter);
  5530. _rtw_memcpy(&pcfg80211_wdinfo->remain_on_ch_channel, channel, sizeof(struct ieee80211_channel));
  5531. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0))
  5532. pcfg80211_wdinfo->remain_on_ch_type = channel_type;
  5533. #endif
  5534. pcfg80211_wdinfo->restore_channel = rtw_get_oper_ch(padapter);
  5535. p2p_roch_cmd(padapter, *cookie, wdev, channel, pcfg80211_wdinfo->remain_on_ch_type,
  5536. duration, RTW_CMDF_WAIT_ACK);
  5537. rtw_cfg80211_ready_on_channel(wdev, *cookie, channel, channel_type, duration, GFP_KERNEL);
  5538. exit:
  5539. return err;
  5540. }
  5541. static s32 cfg80211_rtw_cancel_remain_on_channel(struct wiphy *wiphy,
  5542. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  5543. struct wireless_dev *wdev,
  5544. #else
  5545. struct net_device *ndev,
  5546. #endif
  5547. u64 cookie)
  5548. {
  5549. s32 err = 0;
  5550. _adapter *padapter;
  5551. struct rtw_wdev_priv *pwdev_priv;
  5552. struct wifidirect_info *pwdinfo;
  5553. struct cfg80211_wifidirect_info *pcfg80211_wdinfo;
  5554. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  5555. #if defined(RTW_DEDICATED_P2P_DEVICE)
  5556. if (wdev == wiphy_to_pd_wdev(wiphy))
  5557. padapter = wiphy_to_adapter(wiphy);
  5558. else
  5559. #endif
  5560. if (wdev_to_ndev(wdev))
  5561. padapter = (_adapter *)rtw_netdev_priv(wdev_to_ndev(wdev));
  5562. else {
  5563. err = -EINVAL;
  5564. goto exit;
  5565. }
  5566. #else
  5567. struct wireless_dev *wdev;
  5568. if (ndev == NULL) {
  5569. err = -EINVAL;
  5570. goto exit;
  5571. }
  5572. padapter = (_adapter *)rtw_netdev_priv(ndev);
  5573. wdev = ndev_to_wdev(ndev);
  5574. #endif
  5575. pwdev_priv = adapter_wdev_data(padapter);
  5576. pwdinfo = &padapter->wdinfo;
  5577. pcfg80211_wdinfo = &padapter->cfg80211_wdinfo;
  5578. RTW_INFO(FUNC_ADPT_FMT"%s cookie:0x%llx\n"
  5579. , FUNC_ADPT_ARG(padapter), wdev == wiphy_to_pd_wdev(wiphy) ? " PD" : ""
  5580. , cookie);
  5581. if (rtw_cfg80211_get_is_roch(padapter) == _TRUE) {
  5582. _cancel_timer_ex(&padapter->cfg80211_wdinfo.remain_on_ch_timer);
  5583. p2p_cancel_roch_cmd(padapter, cookie, wdev, RTW_CMDF_WAIT_ACK);
  5584. }
  5585. exit:
  5586. return err;
  5587. }
  5588. inline int rtw_cfg80211_iface_has_p2p_group_cap(_adapter *adapter)
  5589. {
  5590. #if RTW_P2P_GROUP_INTERFACE
  5591. if (is_primary_adapter(adapter))
  5592. return 0;
  5593. #endif
  5594. return 1;
  5595. }
  5596. inline int rtw_cfg80211_is_p2p_scan(_adapter *adapter)
  5597. {
  5598. #if RTW_P2P_GROUP_INTERFACE
  5599. if (rtw_cfg80211_iface_has_p2p_group_cap(adapter))
  5600. #endif
  5601. {
  5602. struct wifidirect_info *wdinfo = &adapter->wdinfo;
  5603. return rtw_p2p_chk_state(wdinfo, P2P_STATE_SCAN)
  5604. || rtw_p2p_chk_state(wdinfo, P2P_STATE_FIND_PHASE_SEARCH);
  5605. }
  5606. #if RTW_P2P_GROUP_INTERFACE
  5607. #if defined(RTW_DEDICATED_P2P_DEVICE)
  5608. if (wiphy_to_pd_wdev(adapter_to_wiphy(adapter))) /* pd_wdev exist */
  5609. return rtw_cfg80211_is_scan_by_pd_wdev(adapter);
  5610. #endif
  5611. {
  5612. /*
  5613. * For 2 RTW_P2P_GROUP_INTERFACE cases:
  5614. * 1. RTW_DEDICATED_P2P_DEVICE defined but upper layer don't use pd_wdev or
  5615. * 2. RTW_DEDICATED_P2P_DEVICE not defined
  5616. */
  5617. struct rtw_wdev_priv *wdev_data = adapter_wdev_data(adapter);
  5618. _irqL irqL;
  5619. int is_p2p_scan = 0;
  5620. _enter_critical_bh(&wdev_data->scan_req_lock, &irqL);
  5621. if (wdev_data->scan_request
  5622. && wdev_data->scan_request->ssids
  5623. && wdev_data->scan_request->ie
  5624. ) {
  5625. if (_rtw_memcmp(wdev_data->scan_request->ssids->ssid, "DIRECT-", 7)
  5626. && rtw_get_p2p_ie((u8 *)wdev_data->scan_request->ie, wdev_data->scan_request->ie_len, NULL, NULL))
  5627. is_p2p_scan = 1;
  5628. }
  5629. _exit_critical_bh(&wdev_data->scan_req_lock, &irqL);
  5630. return is_p2p_scan;
  5631. }
  5632. #endif
  5633. }
  5634. #if defined(RTW_DEDICATED_P2P_DEVICE)
  5635. int rtw_pd_iface_alloc(struct wiphy *wiphy, const char *name, struct wireless_dev **pd_wdev)
  5636. {
  5637. struct rtw_wiphy_data *wiphy_data = rtw_wiphy_priv(wiphy);
  5638. struct wireless_dev *wdev = NULL;
  5639. struct rtw_netdev_priv_indicator *npi;
  5640. _adapter *primary_adpt = wiphy_to_adapter(wiphy);
  5641. int ret = 0;
  5642. if (wiphy_data->pd_wdev) {
  5643. RTW_WARN(FUNC_WIPHY_FMT" pd_wdev already exists\n", FUNC_WIPHY_ARG(wiphy));
  5644. ret = -EBUSY;
  5645. goto exit;
  5646. }
  5647. wdev = (struct wireless_dev *)rtw_zmalloc(sizeof(struct wireless_dev));
  5648. if (!wdev) {
  5649. RTW_WARN(FUNC_WIPHY_FMT" allocate wdev fail\n", FUNC_WIPHY_ARG(wiphy));
  5650. ret = -ENOMEM;
  5651. goto exit;
  5652. }
  5653. wdev->wiphy = wiphy;
  5654. wdev->iftype = NL80211_IFTYPE_P2P_DEVICE;
  5655. _rtw_memcpy(wdev->address, adapter_mac_addr(primary_adpt), ETH_ALEN);
  5656. wiphy_data->pd_wdev = wdev;
  5657. *pd_wdev = wdev;
  5658. RTW_INFO(FUNC_WIPHY_FMT" pd_wdev:%p, addr="MAC_FMT" added\n"
  5659. , FUNC_WIPHY_ARG(wiphy), wdev, MAC_ARG(wdev_address(wdev)));
  5660. exit:
  5661. if (ret && wdev) {
  5662. rtw_mfree((u8 *)wdev, sizeof(struct wireless_dev));
  5663. wdev = NULL;
  5664. }
  5665. return ret;
  5666. }
  5667. void rtw_pd_iface_free(struct wiphy *wiphy)
  5668. {
  5669. struct dvobj_priv *dvobj = wiphy_to_dvobj(wiphy);
  5670. struct rtw_wiphy_data *wiphy_data = rtw_wiphy_priv(wiphy);
  5671. u8 rtnl_lock_needed;
  5672. if (!wiphy_data->pd_wdev)
  5673. goto exit;
  5674. RTW_INFO(FUNC_WIPHY_FMT" pd_wdev:%p, addr="MAC_FMT"\n"
  5675. , FUNC_WIPHY_ARG(wiphy), wiphy_data->pd_wdev
  5676. , MAC_ARG(wdev_address(wiphy_data->pd_wdev)));
  5677. rtnl_lock_needed = rtw_rtnl_lock_needed(dvobj);
  5678. if (rtnl_lock_needed)
  5679. rtnl_lock();
  5680. cfg80211_unregister_wdev(wiphy_data->pd_wdev);
  5681. if (rtnl_lock_needed)
  5682. rtnl_unlock();
  5683. rtw_mfree((u8 *)wiphy_data->pd_wdev, sizeof(struct wireless_dev));
  5684. wiphy_data->pd_wdev = NULL;
  5685. exit:
  5686. return;
  5687. }
  5688. static int cfg80211_rtw_start_p2p_device(struct wiphy *wiphy, struct wireless_dev *wdev)
  5689. {
  5690. _adapter *adapter = wiphy_to_adapter(wiphy);
  5691. RTW_INFO(FUNC_WIPHY_FMT" wdev=%p\n", FUNC_WIPHY_ARG(wiphy), wdev);
  5692. rtw_p2p_enable(adapter, P2P_ROLE_DEVICE);
  5693. return 0;
  5694. }
  5695. static void cfg80211_rtw_stop_p2p_device(struct wiphy *wiphy, struct wireless_dev *wdev)
  5696. {
  5697. _adapter *adapter = wiphy_to_adapter(wiphy);
  5698. RTW_INFO(FUNC_WIPHY_FMT" wdev=%p\n", FUNC_WIPHY_ARG(wiphy), wdev);
  5699. if (rtw_cfg80211_is_p2p_scan(adapter))
  5700. rtw_scan_abort(adapter);
  5701. rtw_p2p_enable(adapter, P2P_ROLE_DISABLE);
  5702. }
  5703. inline int rtw_cfg80211_redirect_pd_wdev(struct wiphy *wiphy, u8 *ra, struct wireless_dev **wdev)
  5704. {
  5705. struct wireless_dev *pd_wdev = wiphy_to_pd_wdev(wiphy);
  5706. if (pd_wdev && pd_wdev != *wdev
  5707. && _rtw_memcmp(wdev_address(pd_wdev), ra, ETH_ALEN) == _TRUE
  5708. ) {
  5709. *wdev = pd_wdev;
  5710. return 1;
  5711. }
  5712. return 0;
  5713. }
  5714. inline int rtw_cfg80211_is_scan_by_pd_wdev(_adapter *adapter)
  5715. {
  5716. struct wiphy *wiphy = adapter_to_wiphy(adapter);
  5717. struct rtw_wdev_priv *wdev_data = adapter_wdev_data(adapter);
  5718. struct wireless_dev *wdev = NULL;
  5719. _irqL irqL;
  5720. _enter_critical_bh(&wdev_data->scan_req_lock, &irqL);
  5721. if (wdev_data->scan_request)
  5722. wdev = wdev_data->scan_request->wdev;
  5723. _exit_critical_bh(&wdev_data->scan_req_lock, &irqL);
  5724. if (wdev && wdev == wiphy_to_pd_wdev(wiphy))
  5725. return 1;
  5726. return 0;
  5727. }
  5728. #endif /* RTW_DEDICATED_P2P_DEVICE */
  5729. #endif /* CONFIG_P2P */
  5730. inline void rtw_cfg80211_set_is_mgmt_tx(_adapter *adapter, u8 val)
  5731. {
  5732. struct rtw_wdev_priv *wdev_priv = adapter_wdev_data(adapter);
  5733. wdev_priv->is_mgmt_tx = val;
  5734. rtw_mi_update_iface_status(&(adapter->mlmepriv), 0);
  5735. }
  5736. inline u8 rtw_cfg80211_get_is_mgmt_tx(_adapter *adapter)
  5737. {
  5738. struct rtw_wdev_priv *wdev_priv = adapter_wdev_data(adapter);
  5739. return wdev_priv->is_mgmt_tx;
  5740. }
  5741. static int _cfg80211_rtw_mgmt_tx(_adapter *padapter, u8 tx_ch, u8 no_cck, const u8 *buf, size_t len, int wait_ack)
  5742. {
  5743. struct xmit_frame *pmgntframe;
  5744. struct pkt_attrib *pattrib;
  5745. unsigned char *pframe;
  5746. int ret = _FAIL;
  5747. bool ack = _TRUE;
  5748. struct rtw_ieee80211_hdr *pwlanhdr;
  5749. #if defined(RTW_ROCH_BACK_OP) && defined(CONFIG_P2P) && defined(CONFIG_CONCURRENT_MODE)
  5750. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  5751. #endif
  5752. struct xmit_priv *pxmitpriv = &(padapter->xmitpriv);
  5753. struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
  5754. u8 u_ch = rtw_mi_get_union_chan(padapter);
  5755. u8 leave_op = 0;
  5756. #ifdef CONFIG_P2P
  5757. struct cfg80211_wifidirect_info *pcfg80211_wdinfo = &padapter->cfg80211_wdinfo;
  5758. #ifdef CONFIG_CONCURRENT_MODE
  5759. struct wifidirect_info *pwdinfo = &padapter->wdinfo;
  5760. #endif
  5761. #endif
  5762. rtw_cfg80211_set_is_mgmt_tx(padapter, 1);
  5763. #ifdef CONFIG_BT_COEXIST
  5764. rtw_btcoex_ScanNotify(padapter, _TRUE);
  5765. #endif
  5766. #ifdef CONFIG_P2P
  5767. if (rtw_cfg80211_get_is_roch(padapter) == _TRUE) {
  5768. #ifdef CONFIG_CONCURRENT_MODE
  5769. if (!check_fwstate(&padapter->mlmepriv, _FW_LINKED)) {
  5770. RTW_INFO("%s, extend ro ch time\n", __func__);
  5771. _set_timer(&padapter->cfg80211_wdinfo.remain_on_ch_timer, pwdinfo->ext_listen_period);
  5772. }
  5773. #endif /* CONFIG_CONCURRENT_MODE */
  5774. }
  5775. #endif /* CONFIG_P2P */
  5776. #ifdef CONFIG_MCC_MODE
  5777. if (MCC_EN(padapter)) {
  5778. if (rtw_hal_check_mcc_status(padapter, MCC_STATUS_DOING_MCC))
  5779. /* don't set channel, issue frame directly */
  5780. goto issue_mgmt_frame;
  5781. }
  5782. #endif /* CONFIG_MCC_MODE */
  5783. if (rtw_mi_check_status(padapter, MI_LINKED)
  5784. && tx_ch != u_ch
  5785. ) {
  5786. rtw_leave_opch(padapter);
  5787. leave_op = 1;
  5788. #if defined(RTW_ROCH_BACK_OP) && defined(CONFIG_P2P) && defined(CONFIG_CONCURRENT_MODE)
  5789. if (rtw_cfg80211_get_is_roch(padapter)
  5790. && ATOMIC_READ(&pwdev_priv->switch_ch_to) == 1
  5791. ) {
  5792. u16 ext_listen_period;
  5793. if (check_fwstate(&padapter->mlmepriv, _FW_LINKED))
  5794. ext_listen_period = 500;
  5795. else
  5796. ext_listen_period = pwdinfo->ext_listen_period;
  5797. ATOMIC_SET(&pwdev_priv->switch_ch_to, 0);
  5798. _set_timer(&pwdinfo->ap_p2p_switch_timer, ext_listen_period);
  5799. RTW_INFO("%s, set switch ch timer, period=%d\n", __func__, ext_listen_period);
  5800. }
  5801. #endif /* RTW_ROCH_BACK_OP && CONFIG_P2P && CONFIG_CONCURRENT_MODE */
  5802. }
  5803. if (tx_ch != rtw_get_oper_ch(padapter))
  5804. set_channel_bwmode(padapter, tx_ch, HAL_PRIME_CHNL_OFFSET_DONT_CARE, CHANNEL_WIDTH_20);
  5805. issue_mgmt_frame:
  5806. /* starting alloc mgmt frame to dump it */
  5807. pmgntframe = alloc_mgtxmitframe(pxmitpriv);
  5808. if (pmgntframe == NULL) {
  5809. /* ret = -ENOMEM; */
  5810. ret = _FAIL;
  5811. goto exit;
  5812. }
  5813. /* update attribute */
  5814. pattrib = &pmgntframe->attrib;
  5815. update_mgntframe_attrib(padapter, pattrib);
  5816. if (no_cck && IS_CCK_RATE(pattrib->rate)) {
  5817. /* force OFDM 6M rate*/
  5818. pattrib->rate = MGN_6M;
  5819. pattrib->raid = rtw_get_mgntframe_raid(padapter, WIRELESS_11G);
  5820. }
  5821. pattrib->retry_ctrl = _FALSE;
  5822. _rtw_memset(pmgntframe->buf_addr, 0, WLANHDR_OFFSET + TXDESC_OFFSET);
  5823. pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET;
  5824. _rtw_memcpy(pframe, (void *)buf, len);
  5825. pattrib->pktlen = len;
  5826. pwlanhdr = (struct rtw_ieee80211_hdr *)pframe;
  5827. /* update seq number */
  5828. pmlmeext->mgnt_seq = GetSequence(pwlanhdr);
  5829. pattrib->seqnum = pmlmeext->mgnt_seq;
  5830. pmlmeext->mgnt_seq++;
  5831. #ifdef CONFIG_P2P
  5832. rtw_xframe_chk_wfd_ie(pmgntframe);
  5833. #endif /* CONFIG_P2P */
  5834. pattrib->last_txcmdsz = pattrib->pktlen;
  5835. if (wait_ack) {
  5836. if (dump_mgntframe_and_wait_ack(padapter, pmgntframe) != _SUCCESS) {
  5837. ack = _FALSE;
  5838. ret = _FAIL;
  5839. #ifdef CONFIG_DEBUG_CFG80211
  5840. RTW_INFO("%s, ack == _FAIL\n", __func__);
  5841. #endif
  5842. } else {
  5843. #ifdef CONFIG_XMIT_ACK
  5844. if (!MLME_IS_MESH(padapter)) /* TODO: remove this sleep for all mode */
  5845. rtw_msleep_os(50);
  5846. #endif
  5847. #ifdef CONFIG_DEBUG_CFG80211
  5848. RTW_INFO("%s, ack=%d, ok!\n", __func__, ack);
  5849. #endif
  5850. ret = _SUCCESS;
  5851. }
  5852. } else {
  5853. dump_mgntframe(padapter, pmgntframe);
  5854. ret = _SUCCESS;
  5855. }
  5856. exit:
  5857. #ifdef CONFIG_P2P
  5858. if (rtw_cfg80211_get_is_roch(padapter)
  5859. && !roch_stay_in_cur_chan(padapter)
  5860. && pcfg80211_wdinfo->remain_on_ch_channel.hw_value != u_ch
  5861. ) {
  5862. /* roch is ongoing, switch back to rch */
  5863. if (pcfg80211_wdinfo->remain_on_ch_channel.hw_value != tx_ch)
  5864. set_channel_bwmode(padapter, pcfg80211_wdinfo->remain_on_ch_channel.hw_value
  5865. , HAL_PRIME_CHNL_OFFSET_DONT_CARE, CHANNEL_WIDTH_20);
  5866. } else
  5867. #endif
  5868. if (leave_op) {
  5869. if (rtw_mi_check_status(padapter, MI_LINKED)) {
  5870. u8 u_bw = rtw_mi_get_union_bw(padapter);
  5871. u8 u_offset = rtw_mi_get_union_offset(padapter);
  5872. set_channel_bwmode(padapter, u_ch, u_offset, u_bw);
  5873. }
  5874. rtw_back_opch(padapter);
  5875. }
  5876. rtw_cfg80211_set_is_mgmt_tx(padapter, 0);
  5877. #ifdef CONFIG_BT_COEXIST
  5878. rtw_btcoex_ScanNotify(padapter, _FALSE);
  5879. #endif
  5880. #ifdef CONFIG_DEBUG_CFG80211
  5881. RTW_INFO("%s, ret=%d\n", __func__, ret);
  5882. #endif
  5883. return ret;
  5884. }
  5885. u8 rtw_mgnt_tx_handler(_adapter *adapter, u8 *buf)
  5886. {
  5887. u8 rst = H2C_CMD_FAIL;
  5888. struct mgnt_tx_parm *mgnt_parm = (struct mgnt_tx_parm *)buf;
  5889. if (_cfg80211_rtw_mgmt_tx(adapter, mgnt_parm->tx_ch, mgnt_parm->no_cck,
  5890. mgnt_parm->buf, mgnt_parm->len, mgnt_parm->wait_ack) == _SUCCESS)
  5891. rst = H2C_SUCCESS;
  5892. return rst;
  5893. }
  5894. static int cfg80211_rtw_mgmt_tx(struct wiphy *wiphy,
  5895. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  5896. struct wireless_dev *wdev,
  5897. #else
  5898. struct net_device *ndev,
  5899. #endif
  5900. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 14, 0)) || defined(COMPAT_KERNEL_RELEASE)
  5901. struct ieee80211_channel *chan,
  5902. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)) || defined(COMPAT_KERNEL_RELEASE)
  5903. bool offchan,
  5904. #endif
  5905. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 34)) && (LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0))
  5906. enum nl80211_channel_type channel_type,
  5907. #endif
  5908. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 36)) && (LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0))
  5909. bool channel_type_valid,
  5910. #endif
  5911. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)) || defined(COMPAT_KERNEL_RELEASE)
  5912. unsigned int wait,
  5913. #endif
  5914. const u8 *buf, size_t len,
  5915. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  5916. bool no_cck,
  5917. #endif
  5918. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  5919. bool dont_wait_for_ack,
  5920. #endif
  5921. #else
  5922. struct cfg80211_mgmt_tx_params *params,
  5923. #endif
  5924. u64 *cookie)
  5925. {
  5926. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0)) || defined(COMPAT_KERNEL_RELEASE)
  5927. struct ieee80211_channel *chan = params->chan;
  5928. const u8 *buf = params->buf;
  5929. size_t len = params->len;
  5930. bool no_cck = params->no_cck;
  5931. #endif
  5932. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 2, 0))
  5933. bool no_cck = 0;
  5934. #endif
  5935. int ret = 0;
  5936. u8 tx_ret;
  5937. int wait_ack = 1;
  5938. const u8 *dump_buf = buf;
  5939. size_t dump_len = len;
  5940. u32 dump_limit = RTW_MAX_MGMT_TX_CNT;
  5941. u32 dump_cnt = 0;
  5942. u32 sleep_ms = 0;
  5943. u32 retry_guarantee_ms = 0;
  5944. bool ack = _TRUE;
  5945. u8 tx_ch;
  5946. u8 category, action;
  5947. u8 frame_styp;
  5948. #ifdef CONFIG_P2P
  5949. u8 is_p2p = 0;
  5950. #endif
  5951. int type = (-1);
  5952. systime start = rtw_get_current_time();
  5953. _adapter *padapter;
  5954. struct dvobj_priv *dvobj;
  5955. struct rtw_wdev_priv *pwdev_priv;
  5956. struct rf_ctl_t *rfctl;
  5957. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  5958. #if defined(RTW_DEDICATED_P2P_DEVICE)
  5959. if (wdev == wiphy_to_pd_wdev(wiphy))
  5960. padapter = wiphy_to_adapter(wiphy);
  5961. else
  5962. #endif
  5963. if (wdev_to_ndev(wdev))
  5964. padapter = (_adapter *)rtw_netdev_priv(wdev_to_ndev(wdev));
  5965. else {
  5966. ret = -EINVAL;
  5967. goto exit;
  5968. }
  5969. #else
  5970. struct wireless_dev *wdev;
  5971. if (ndev == NULL) {
  5972. ret = -EINVAL;
  5973. goto exit;
  5974. }
  5975. padapter = (_adapter *)rtw_netdev_priv(ndev);
  5976. wdev = ndev_to_wdev(ndev);
  5977. #endif
  5978. if (chan == NULL) {
  5979. ret = -EINVAL;
  5980. goto exit;
  5981. }
  5982. rfctl = adapter_to_rfctl(padapter);
  5983. tx_ch = (u8)ieee80211_frequency_to_channel(chan->center_freq);
  5984. if (IS_CH_WAITING(rfctl)) {
  5985. #ifdef CONFIG_DFS_MASTER
  5986. if (_rtw_rfctl_overlap_radar_detect_ch(rfctl, tx_ch, CHANNEL_WIDTH_20, HAL_PRIME_CHNL_OFFSET_DONT_CARE)) {
  5987. ret = -EINVAL;
  5988. goto exit;
  5989. }
  5990. #endif
  5991. }
  5992. dvobj = adapter_to_dvobj(padapter);
  5993. pwdev_priv = adapter_wdev_data(padapter);
  5994. /* cookie generation */
  5995. *cookie = pwdev_priv->mgmt_tx_cookie++;
  5996. #ifdef CONFIG_DEBUG_CFG80211
  5997. RTW_INFO(FUNC_ADPT_FMT"%s len=%zu, ch=%d"
  5998. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 34)) && (LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0))
  5999. ", ch_type=%d"
  6000. #endif
  6001. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 36)) && (LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0))
  6002. ", channel_type_valid=%d"
  6003. #endif
  6004. "\n", FUNC_ADPT_ARG(padapter), wdev == wiphy_to_pd_wdev(wiphy) ? " PD" : ""
  6005. , len, tx_ch
  6006. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 34)) && (LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0))
  6007. , channel_type
  6008. #endif
  6009. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 34)) && (LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0))
  6010. , channel_type_valid
  6011. #endif
  6012. );
  6013. #endif /* CONFIG_DEBUG_CFG80211 */
  6014. /* indicate ack before issue frame to avoid racing with rsp frame */
  6015. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  6016. rtw_cfg80211_mgmt_tx_status(wdev, *cookie, buf, len, ack, GFP_KERNEL);
  6017. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 34) && LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 36))
  6018. cfg80211_action_tx_status(ndev, *cookie, buf, len, ack, GFP_KERNEL);
  6019. #endif
  6020. frame_styp = le16_to_cpu(((struct rtw_ieee80211_hdr_3addr *)buf)->frame_ctl) & IEEE80211_FCTL_STYPE;
  6021. if (IEEE80211_STYPE_PROBE_RESP == frame_styp) {
  6022. #ifdef CONFIG_DEBUG_CFG80211
  6023. RTW_INFO("RTW_Tx: probe_resp tx_ch=%d, no_cck=%u, da="MAC_FMT"\n", tx_ch, no_cck, MAC_ARG(GetAddr1Ptr(buf)));
  6024. #endif /* CONFIG_DEBUG_CFG80211 */
  6025. wait_ack = 0;
  6026. goto dump;
  6027. }
  6028. #ifdef CONFIG_RTW_MESH
  6029. else if (frame_styp == RTW_IEEE80211_STYPE_AUTH) {
  6030. RTW_INFO("RTW_Tx:tx_ch=%d, no_cck=%u, da="MAC_FMT"\n", tx_ch, no_cck, MAC_ARG(GetAddr1Ptr(buf)));
  6031. if (!rtw_sae_check_frames(padapter, buf, len, _TRUE))
  6032. RTW_INFO("RTW_Tx:AUTH\n");
  6033. dump_limit = 1;
  6034. goto dump;
  6035. }
  6036. #endif
  6037. if (rtw_action_frame_parse(buf, len, &category, &action) == _FALSE) {
  6038. RTW_INFO(FUNC_ADPT_FMT" frame_control:0x%02x\n", FUNC_ADPT_ARG(padapter),
  6039. le16_to_cpu(((struct rtw_ieee80211_hdr_3addr *)buf)->frame_ctl));
  6040. goto exit;
  6041. }
  6042. RTW_INFO("RTW_Tx:tx_ch=%d, no_cck=%u, da="MAC_FMT"\n", tx_ch, no_cck, MAC_ARG(GetAddr1Ptr(buf)));
  6043. #ifdef CONFIG_P2P
  6044. type = rtw_p2p_check_frames(padapter, buf, len, _TRUE);
  6045. if (type >= 0) {
  6046. is_p2p = 1;
  6047. no_cck = 1; /* force no CCK for P2P frames */
  6048. goto dump;
  6049. }
  6050. #endif
  6051. #ifdef CONFIG_RTW_MESH
  6052. if (MLME_IS_MESH(padapter)) {
  6053. type = rtw_mesh_check_frames_tx(padapter, &dump_buf, &dump_len);
  6054. if (type >= 0) {
  6055. dump_limit = 1;
  6056. goto dump;
  6057. }
  6058. }
  6059. #endif
  6060. if (category == RTW_WLAN_CATEGORY_PUBLIC) {
  6061. RTW_INFO("RTW_Tx:%s\n", action_public_str(action));
  6062. switch (action) {
  6063. case ACT_PUBLIC_GAS_INITIAL_REQ:
  6064. case ACT_PUBLIC_GAS_INITIAL_RSP:
  6065. sleep_ms = 50;
  6066. retry_guarantee_ms = RTW_MAX_MGMT_TX_MS_GAS;
  6067. break;
  6068. }
  6069. }
  6070. #ifdef CONFIG_RTW_80211K
  6071. else if (category == RTW_WLAN_CATEGORY_RADIO_MEAS)
  6072. RTW_INFO("RTW_Tx: RRM Action\n");
  6073. #endif
  6074. else
  6075. RTW_INFO("RTW_Tx:category(%u), action(%u)\n", category, action);
  6076. dump:
  6077. rtw_ps_deny(padapter, PS_DENY_MGNT_TX);
  6078. if (_FAIL == rtw_pwr_wakeup(padapter)) {
  6079. ret = -EFAULT;
  6080. goto cancel_ps_deny;
  6081. }
  6082. while (1) {
  6083. dump_cnt++;
  6084. rtw_mi_set_scan_deny(padapter, 1000);
  6085. rtw_mi_scan_abort(padapter, _TRUE);
  6086. tx_ret = rtw_mgnt_tx_cmd(padapter, tx_ch, no_cck, dump_buf, dump_len, wait_ack, RTW_CMDF_WAIT_ACK);
  6087. if (tx_ret == _SUCCESS
  6088. || (dump_cnt >= dump_limit && rtw_get_passing_time_ms(start) >= retry_guarantee_ms))
  6089. break;
  6090. if (sleep_ms > 0)
  6091. rtw_msleep_os(sleep_ms);
  6092. }
  6093. if (tx_ret != _SUCCESS || dump_cnt > 1) {
  6094. RTW_INFO(FUNC_ADPT_FMT" %s (%d/%d) in %d ms\n", FUNC_ADPT_ARG(padapter),
  6095. tx_ret == _SUCCESS ? "OK" : "FAIL", dump_cnt, dump_limit, rtw_get_passing_time_ms(start));
  6096. }
  6097. #ifdef CONFIG_P2P
  6098. if (is_p2p) {
  6099. switch (type) {
  6100. case P2P_GO_NEGO_CONF:
  6101. if (0) {
  6102. RTW_INFO(FUNC_ADPT_FMT" Nego confirm. state=%u, status=%u, iaddr="MAC_FMT"\n"
  6103. , FUNC_ADPT_ARG(padapter), pwdev_priv->nego_info.state, pwdev_priv->nego_info.status
  6104. , MAC_ARG(pwdev_priv->nego_info.iface_addr));
  6105. }
  6106. if (pwdev_priv->nego_info.state == 2
  6107. && pwdev_priv->nego_info.status == 0
  6108. && rtw_check_invalid_mac_address(pwdev_priv->nego_info.iface_addr, _FALSE) == _FALSE
  6109. ) {
  6110. _adapter *intended_iface = dvobj_get_adapter_by_addr(dvobj, pwdev_priv->nego_info.iface_addr);
  6111. if (intended_iface) {
  6112. RTW_INFO(FUNC_ADPT_FMT" Nego confirm. Allow only "ADPT_FMT" to scan for 2000 ms\n"
  6113. , FUNC_ADPT_ARG(padapter), ADPT_ARG(intended_iface));
  6114. /* allow only intended_iface to do scan for 2000 ms */
  6115. rtw_mi_set_scan_deny(padapter, 2000);
  6116. rtw_clear_scan_deny(intended_iface);
  6117. }
  6118. }
  6119. break;
  6120. case P2P_INVIT_RESP:
  6121. if (pwdev_priv->invit_info.flags & BIT(0)
  6122. && pwdev_priv->invit_info.status == 0
  6123. ) {
  6124. rtw_clear_scan_deny(padapter);
  6125. RTW_INFO(FUNC_ADPT_FMT" agree with invitation of persistent group\n",
  6126. FUNC_ADPT_ARG(padapter));
  6127. #if !RTW_P2P_GROUP_INTERFACE
  6128. rtw_mi_buddy_set_scan_deny(padapter, 5000);
  6129. #endif
  6130. rtw_pwr_wakeup_ex(padapter, 5000);
  6131. }
  6132. break;
  6133. }
  6134. }
  6135. #endif /* CONFIG_P2P */
  6136. cancel_ps_deny:
  6137. rtw_ps_deny_cancel(padapter, PS_DENY_MGNT_TX);
  6138. if (dump_buf != buf)
  6139. rtw_mfree((u8 *)dump_buf, dump_len);
  6140. exit:
  6141. return ret;
  6142. }
  6143. static void cfg80211_rtw_mgmt_frame_register(struct wiphy *wiphy,
  6144. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6145. struct wireless_dev *wdev,
  6146. #else
  6147. struct net_device *ndev,
  6148. #endif
  6149. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 8, 0))
  6150. struct mgmt_frame_regs *upd)
  6151. #else
  6152. u16 frame_type, bool reg)
  6153. #endif
  6154. {
  6155. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6156. struct net_device *ndev = wdev_to_ndev(wdev);
  6157. #endif
  6158. /* hardcoded always true, to make it pass compilation */
  6159. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 8, 0))
  6160. bool reg = true;
  6161. #endif
  6162. _adapter *adapter;
  6163. struct rtw_wdev_priv *pwdev_priv;
  6164. if (ndev == NULL)
  6165. goto exit;
  6166. adapter = (_adapter *)rtw_netdev_priv(ndev);
  6167. pwdev_priv = adapter_wdev_data(adapter);
  6168. #ifdef CONFIG_DEBUG_CFG80211
  6169. RTW_INFO(FUNC_ADPT_FMT" frame_type:%x, reg:%d\n", FUNC_ADPT_ARG(adapter),
  6170. frame_type, reg);
  6171. #endif
  6172. /* Wait QC Verify */
  6173. return;
  6174. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 8, 0))
  6175. switch (upd->interface_stypes) {
  6176. #else
  6177. switch (frame_type) {
  6178. #endif
  6179. case IEEE80211_STYPE_PROBE_REQ: /* 0x0040 */
  6180. SET_CFG80211_REPORT_MGMT(pwdev_priv, IEEE80211_STYPE_PROBE_REQ, reg);
  6181. break;
  6182. case IEEE80211_STYPE_ACTION: /* 0x00D0 */
  6183. SET_CFG80211_REPORT_MGMT(pwdev_priv, IEEE80211_STYPE_ACTION, reg);
  6184. break;
  6185. default:
  6186. break;
  6187. }
  6188. exit:
  6189. return;
  6190. }
  6191. #if defined(CONFIG_TDLS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  6192. static int cfg80211_rtw_tdls_mgmt(struct wiphy *wiphy,
  6193. struct net_device *ndev,
  6194. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  6195. const u8 *peer,
  6196. #else
  6197. u8 *peer,
  6198. #endif
  6199. u8 action_code,
  6200. u8 dialog_token,
  6201. u16 status_code,
  6202. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0))
  6203. u32 peer_capability,
  6204. #endif
  6205. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0))
  6206. bool initiator,
  6207. #endif
  6208. const u8 *buf,
  6209. size_t len)
  6210. {
  6211. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  6212. struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
  6213. struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info;
  6214. int ret = 0;
  6215. struct tdls_txmgmt txmgmt;
  6216. if (hal_chk_wl_func(padapter, WL_FUNC_TDLS) == _FALSE) {
  6217. RTW_INFO("Discard tdls action:%d, since hal doesn't support tdls\n", action_code);
  6218. goto discard;
  6219. }
  6220. if (rtw_is_tdls_enabled(padapter) == _FALSE) {
  6221. RTW_INFO("TDLS is not enabled\n");
  6222. goto discard;
  6223. }
  6224. if (rtw_tdls_is_driver_setup(padapter)) {
  6225. RTW_INFO("Discard tdls action:%d, let driver to set up direct link\n", action_code);
  6226. goto discard;
  6227. }
  6228. _rtw_memset(&txmgmt, 0x00, sizeof(struct tdls_txmgmt));
  6229. _rtw_memcpy(txmgmt.peer, peer, ETH_ALEN);
  6230. txmgmt.action_code = action_code;
  6231. txmgmt.dialog_token = dialog_token;
  6232. txmgmt.status_code = status_code;
  6233. txmgmt.len = len;
  6234. txmgmt.buf = (u8 *)rtw_malloc(txmgmt.len);
  6235. if (txmgmt.buf == NULL) {
  6236. ret = -ENOMEM;
  6237. goto bad;
  6238. }
  6239. _rtw_memcpy(txmgmt.buf, (void *)buf, txmgmt.len);
  6240. /* Debug purpose */
  6241. #if 1
  6242. RTW_INFO("%s %d\n", __FUNCTION__, __LINE__);
  6243. RTW_INFO("peer:"MAC_FMT", action code:%d, dialog:%d, status code:%d\n",
  6244. MAC_ARG(txmgmt.peer), txmgmt.action_code,
  6245. txmgmt.dialog_token, txmgmt.status_code);
  6246. if (txmgmt.len > 0) {
  6247. int i = 0;
  6248. for (; i < len; i++)
  6249. printk("%02x ", *(txmgmt.buf + i));
  6250. RTW_INFO("len:%d\n", (u32)txmgmt.len);
  6251. }
  6252. #endif
  6253. switch (txmgmt.action_code) {
  6254. case TDLS_SETUP_REQUEST:
  6255. issue_tdls_setup_req(padapter, &txmgmt, _TRUE);
  6256. break;
  6257. case TDLS_SETUP_RESPONSE:
  6258. issue_tdls_setup_rsp(padapter, &txmgmt);
  6259. break;
  6260. case TDLS_SETUP_CONFIRM:
  6261. issue_tdls_setup_cfm(padapter, &txmgmt);
  6262. break;
  6263. case TDLS_TEARDOWN:
  6264. issue_tdls_teardown(padapter, &txmgmt, _TRUE);
  6265. break;
  6266. case TDLS_DISCOVERY_REQUEST:
  6267. issue_tdls_dis_req(padapter, &txmgmt);
  6268. break;
  6269. case TDLS_DISCOVERY_RESPONSE:
  6270. issue_tdls_dis_rsp(padapter, &txmgmt, pmlmeinfo->enc_algo ? _TRUE : _FALSE);
  6271. break;
  6272. }
  6273. bad:
  6274. if (txmgmt.buf)
  6275. rtw_mfree(txmgmt.buf, txmgmt.len);
  6276. discard:
  6277. return ret;
  6278. }
  6279. static int cfg80211_rtw_tdls_oper(struct wiphy *wiphy,
  6280. struct net_device *ndev,
  6281. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  6282. const u8 *peer,
  6283. #else
  6284. u8 *peer,
  6285. #endif
  6286. enum nl80211_tdls_operation oper)
  6287. {
  6288. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  6289. struct tdls_info *ptdlsinfo = &padapter->tdlsinfo;
  6290. struct tdls_txmgmt txmgmt;
  6291. struct sta_info *ptdls_sta = NULL;
  6292. RTW_INFO(FUNC_NDEV_FMT", nl80211_tdls_operation:%d\n", FUNC_NDEV_ARG(ndev), oper);
  6293. if (hal_chk_wl_func(padapter, WL_FUNC_TDLS) == _FALSE) {
  6294. RTW_INFO("Discard tdls oper:%d, since hal doesn't support tdls\n", oper);
  6295. return 0;
  6296. }
  6297. if (rtw_is_tdls_enabled(padapter) == _FALSE) {
  6298. RTW_INFO("TDLS is not enabled\n");
  6299. return 0;
  6300. }
  6301. #ifdef CONFIG_LPS
  6302. rtw_lps_ctrl_wk_cmd(padapter, LPS_CTRL_LEAVE, 1);
  6303. #endif /* CONFIG_LPS */
  6304. _rtw_memset(&txmgmt, 0x00, sizeof(struct tdls_txmgmt));
  6305. if (peer)
  6306. _rtw_memcpy(txmgmt.peer, peer, ETH_ALEN);
  6307. if (rtw_tdls_is_driver_setup(padapter)) {
  6308. /* these two cases are done by driver itself */
  6309. if (oper == NL80211_TDLS_ENABLE_LINK || oper == NL80211_TDLS_DISABLE_LINK)
  6310. return 0;
  6311. }
  6312. switch (oper) {
  6313. case NL80211_TDLS_DISCOVERY_REQ:
  6314. issue_tdls_dis_req(padapter, &txmgmt);
  6315. break;
  6316. case NL80211_TDLS_SETUP:
  6317. #ifdef CONFIG_WFD
  6318. if (_AES_ != padapter->securitypriv.dot11PrivacyAlgrthm) {
  6319. if (padapter->wdinfo.wfd_tdls_weaksec == _TRUE)
  6320. issue_tdls_setup_req(padapter, &txmgmt, _TRUE);
  6321. else
  6322. RTW_INFO("[%s] Current link is not AES, SKIP sending the tdls setup request!!\n", __FUNCTION__);
  6323. } else
  6324. #endif /* CONFIG_WFD */
  6325. {
  6326. issue_tdls_setup_req(padapter, &txmgmt, _TRUE);
  6327. }
  6328. break;
  6329. case NL80211_TDLS_TEARDOWN:
  6330. ptdls_sta = rtw_get_stainfo(&(padapter->stapriv), txmgmt.peer);
  6331. if (ptdls_sta != NULL) {
  6332. txmgmt.status_code = _RSON_TDLS_TEAR_UN_RSN_;
  6333. issue_tdls_teardown(padapter, &txmgmt, _TRUE);
  6334. } else
  6335. RTW_INFO("TDLS peer not found\n");
  6336. break;
  6337. case NL80211_TDLS_ENABLE_LINK:
  6338. RTW_INFO(FUNC_NDEV_FMT", NL80211_TDLS_ENABLE_LINK;mac:"MAC_FMT"\n", FUNC_NDEV_ARG(ndev), MAC_ARG(peer));
  6339. ptdls_sta = rtw_get_stainfo(&(padapter->stapriv), (u8 *)peer);
  6340. if (ptdls_sta != NULL) {
  6341. rtw_tdls_set_link_established(padapter, _TRUE);
  6342. ptdls_sta->tdls_sta_state |= TDLS_LINKED_STATE;
  6343. ptdls_sta->state |= _FW_LINKED;
  6344. rtw_tdls_cmd(padapter, txmgmt.peer, TDLS_ESTABLISHED);
  6345. }
  6346. break;
  6347. case NL80211_TDLS_DISABLE_LINK:
  6348. RTW_INFO(FUNC_NDEV_FMT", NL80211_TDLS_DISABLE_LINK;mac:"MAC_FMT"\n", FUNC_NDEV_ARG(ndev), MAC_ARG(peer));
  6349. ptdls_sta = rtw_get_stainfo(&(padapter->stapriv), (u8 *)peer);
  6350. if (ptdls_sta != NULL) {
  6351. rtw_tdls_teardown_pre_hdl(padapter, ptdls_sta);
  6352. rtw_tdls_cmd(padapter, (u8 *)peer, TDLS_TEARDOWN_STA_LOCALLY_POST);
  6353. }
  6354. break;
  6355. }
  6356. return 0;
  6357. }
  6358. #endif /* CONFIG_TDLS */
  6359. #if defined(CONFIG_RTW_MESH) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38))
  6360. #if DBG_RTW_CFG80211_MESH_CONF
  6361. #define LEGACY_RATES_STR_LEN (RTW_G_RATES_NUM * 5 + 1)
  6362. int get_legacy_rates_str(struct wiphy *wiphy, enum nl80211_band band, u32 mask, char *buf)
  6363. {
  6364. int i;
  6365. int cnt = 0;
  6366. for (i = 0; i < wiphy->bands[band]->n_bitrates; i++) {
  6367. if (mask & BIT(i)) {
  6368. cnt += snprintf(buf + cnt, LEGACY_RATES_STR_LEN - cnt -1, "%d.%d "
  6369. , wiphy->bands[band]->bitrates[i].bitrate / 10
  6370. , wiphy->bands[band]->bitrates[i].bitrate % 10);
  6371. if (cnt >= LEGACY_RATES_STR_LEN - 1)
  6372. break;
  6373. }
  6374. }
  6375. return cnt;
  6376. }
  6377. void dump_mesh_setup(void *sel, struct wiphy *wiphy, const struct mesh_setup *setup)
  6378. {
  6379. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6380. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6381. struct cfg80211_chan_def *chdef = (struct cfg80211_chan_def *)(&setup->chandef);
  6382. #endif
  6383. struct ieee80211_channel *chan;
  6384. #endif
  6385. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6386. chan = (struct ieee80211_channel *)chdef->chan;
  6387. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6388. chan = (struct ieee80211_channel *)setup->channel;
  6389. #endif
  6390. RTW_PRINT_SEL(sel, "mesh_id:\"%s\", len:%u\n", setup->mesh_id, setup->mesh_id_len);
  6391. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6392. RTW_PRINT_SEL(sel, "sync_method:%u\n", setup->sync_method);
  6393. #endif
  6394. RTW_PRINT_SEL(sel, "path_sel_proto:%u, path_metric:%u\n", setup->path_sel_proto, setup->path_metric);
  6395. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6396. RTW_PRINT_SEL(sel, "auth_id:%u\n", setup->auth_id);
  6397. #endif
  6398. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  6399. if (setup->ie && setup->ie_len) {
  6400. RTW_PRINT_SEL(sel, "ie:%p, len:%u\n", setup->ie, setup->ie_len);
  6401. dump_ies(RTW_DBGDUMP, setup->ie, setup->ie_len);
  6402. }
  6403. #else
  6404. if (setup->vendor_ie && setup->vendor_ie_len) {
  6405. RTW_PRINT_SEL(sel, "ie:%p, len:%u\n", setup->vendor_ie, setup->vendor_ie_len);
  6406. dump_ies(RTW_DBGDUMP, setup->vendor_ie, setup->vendor_ie_len);
  6407. }
  6408. #endif
  6409. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  6410. RTW_PRINT_SEL(sel, "is_authenticated:%d, is_secure:%d\n", setup->is_authenticated, setup->is_secure);
  6411. #endif
  6412. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  6413. RTW_PRINT_SEL(sel, "user_mpm:%d\n", setup->user_mpm);
  6414. #endif
  6415. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  6416. RTW_PRINT_SEL(sel, "dtim_period:%u, beacon_interval:%u\n", setup->dtim_period, setup->beacon_interval);
  6417. #endif
  6418. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6419. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6420. RTW_PRINT_SEL(sel, "center_freq:%u, ch:%u, width:%s, cfreq1:%u, cfreq2:%u\n"
  6421. , chan->center_freq, chan->hw_value, nl80211_chan_width_str(chdef->width), chdef->center_freq1, chdef->center_freq2);
  6422. #else
  6423. RTW_PRINT_SEL(sel, "center_freq:%u, ch:%u, channel_type:%s\n"
  6424. , chan->center_freq, chan->hw_value, nl80211_channel_type_str(setup->channel_type));
  6425. #endif
  6426. #endif
  6427. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  6428. if (setup->mcast_rate[chan->band]) {
  6429. RTW_PRINT_SEL(sel, "mcast_rate:%d.%d\n"
  6430. , wiphy->bands[chan->band]->bitrates[setup->mcast_rate[chan->band] - 1].bitrate / 10
  6431. , wiphy->bands[chan->band]->bitrates[setup->mcast_rate[chan->band] - 1].bitrate % 10
  6432. );
  6433. }
  6434. #endif
  6435. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6436. if (setup->basic_rates) {
  6437. char buf[LEGACY_RATES_STR_LEN] = {0};
  6438. get_legacy_rates_str(wiphy, chan->band, setup->basic_rates, buf);
  6439. RTW_PRINT_SEL(sel, "basic_rates:%s\n", buf);
  6440. }
  6441. #endif
  6442. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0))
  6443. if (setup->beacon_rate.control[chan->band].legacy) {
  6444. char buf[LEGACY_RATES_STR_LEN] = {0};
  6445. get_legacy_rates_str(wiphy, chan->band, setup->beacon_rate.control[chan->band].legacy, buf);
  6446. RTW_PRINT_SEL(sel, "beacon_rate.legacy:%s\n", buf);
  6447. }
  6448. if (*((u32 *)&(setup->beacon_rate.control[chan->band].ht_mcs[0]))
  6449. || *((u32 *)&(setup->beacon_rate.control[chan->band].ht_mcs[4]))
  6450. || *((u16 *)&(setup->beacon_rate.control[chan->band].ht_mcs[8]))
  6451. ) {
  6452. RTW_PRINT_SEL(sel, "beacon_rate.ht_mcs:"HT_RX_MCS_BMP_FMT"\n"
  6453. , HT_RX_MCS_BMP_ARG(setup->beacon_rate.control[chan->band].ht_mcs));
  6454. }
  6455. if (setup->beacon_rate.control[chan->band].vht_mcs[0]
  6456. || setup->beacon_rate.control[chan->band].vht_mcs[1]
  6457. || setup->beacon_rate.control[chan->band].vht_mcs[2]
  6458. || setup->beacon_rate.control[chan->band].vht_mcs[3]
  6459. ) {
  6460. int i;
  6461. for (i = 0; i < 4; i++) {/* parsing up to 4SS */
  6462. u16 mcs_mask = setup->beacon_rate.control[chan->band].vht_mcs[i];
  6463. RTW_PRINT_SEL(sel, "beacon_rate.vht_mcs[%d]:%s\n", i
  6464. , mcs_mask == 0x00FF ? "0~7" : mcs_mask == 0x01FF ? "0~8" : mcs_mask == 0x03FF ? "0~9" : "invalid");
  6465. }
  6466. }
  6467. if (setup->beacon_rate.control[chan->band].gi) {
  6468. RTW_PRINT_SEL(sel, "beacon_rate.gi:%s\n"
  6469. , setup->beacon_rate.control[chan->band].gi == NL80211_TXRATE_FORCE_SGI ? "SGI" :
  6470. setup->beacon_rate.control[chan->band].gi == NL80211_TXRATE_FORCE_LGI ? "LGI" : "invalid"
  6471. );
  6472. }
  6473. #endif
  6474. }
  6475. void dump_mesh_config(void *sel, const struct mesh_config *conf)
  6476. {
  6477. RTW_PRINT_SEL(sel, "dot11MeshRetryTimeout:%u\n", conf->dot11MeshRetryTimeout);
  6478. RTW_PRINT_SEL(sel, "dot11MeshConfirmTimeout:%u\n", conf->dot11MeshConfirmTimeout);
  6479. RTW_PRINT_SEL(sel, "dot11MeshHoldingTimeout:%u\n", conf->dot11MeshHoldingTimeout);
  6480. RTW_PRINT_SEL(sel, "dot11MeshMaxPeerLinks:%u\n", conf->dot11MeshMaxPeerLinks);
  6481. RTW_PRINT_SEL(sel, "dot11MeshMaxRetries:%u\n", conf->dot11MeshMaxRetries);
  6482. RTW_PRINT_SEL(sel, "dot11MeshTTL:%u\n", conf->dot11MeshTTL);
  6483. RTW_PRINT_SEL(sel, "element_ttl:%u\n", conf->element_ttl);
  6484. RTW_PRINT_SEL(sel, "auto_open_plinks:%d\n", conf->auto_open_plinks);
  6485. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6486. RTW_PRINT_SEL(sel, "dot11MeshNbrOffsetMaxNeighbor:%u\n", conf->dot11MeshNbrOffsetMaxNeighbor);
  6487. #endif
  6488. RTW_PRINT_SEL(sel, "dot11MeshHWMPmaxPREQretries:%u\n", conf->dot11MeshHWMPmaxPREQretries);
  6489. RTW_PRINT_SEL(sel, "path_refresh_time:%u\n", conf->path_refresh_time);
  6490. RTW_PRINT_SEL(sel, "min_discovery_timeout:%u\n", conf->min_discovery_timeout);
  6491. RTW_PRINT_SEL(sel, "dot11MeshHWMPactivePathTimeout:%u\n", conf->dot11MeshHWMPactivePathTimeout);
  6492. RTW_PRINT_SEL(sel, "dot11MeshHWMPpreqMinInterval:%u\n", conf->dot11MeshHWMPpreqMinInterval);
  6493. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  6494. RTW_PRINT_SEL(sel, "dot11MeshHWMPperrMinInterval:%u\n", conf->dot11MeshHWMPperrMinInterval);
  6495. #endif
  6496. RTW_PRINT_SEL(sel, "dot11MeshHWMPnetDiameterTraversalTime:%u\n", conf->dot11MeshHWMPnetDiameterTraversalTime);
  6497. RTW_PRINT_SEL(sel, "dot11MeshHWMPRootMode:%u\n", conf->dot11MeshHWMPRootMode);
  6498. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  6499. RTW_PRINT_SEL(sel, "dot11MeshHWMPRannInterval:%u\n", conf->dot11MeshHWMPRannInterval);
  6500. RTW_PRINT_SEL(sel, "dot11MeshGateAnnouncementProtocol:%d\n", conf->dot11MeshGateAnnouncementProtocol);
  6501. #endif
  6502. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 4, 0))
  6503. RTW_PRINT_SEL(sel, "dot11MeshForwarding:%d\n", conf->dot11MeshForwarding);
  6504. RTW_PRINT_SEL(sel, "rssi_threshold:%d\n", conf->rssi_threshold);
  6505. #endif
  6506. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6507. RTW_PRINT_SEL(sel, "ht_opmode:0x%04x\n", conf->ht_opmode);
  6508. #endif
  6509. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6510. RTW_PRINT_SEL(sel, "dot11MeshHWMPactivePathToRootTimeout:%u\n", conf->dot11MeshHWMPactivePathToRootTimeout);
  6511. RTW_PRINT_SEL(sel, "dot11MeshHWMProotInterval:%u\n", conf->dot11MeshHWMProotInterval);
  6512. RTW_PRINT_SEL(sel, "dot11MeshHWMPconfirmationInterval:%u\n", conf->dot11MeshHWMPconfirmationInterval);
  6513. #endif
  6514. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  6515. RTW_PRINT_SEL(sel, "power_mode:%s\n", nl80211_mesh_power_mode_str(conf->power_mode));
  6516. RTW_PRINT_SEL(sel, "dot11MeshAwakeWindowDuration:%u\n", conf->dot11MeshAwakeWindowDuration);
  6517. #endif
  6518. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6519. RTW_PRINT_SEL(sel, "plink_timeout:%u\n", conf->plink_timeout);
  6520. #endif
  6521. }
  6522. #endif /* DBG_RTW_CFG80211_MESH_CONF */
  6523. static void rtw_cfg80211_mesh_info_set_profile(struct rtw_mesh_info *minfo, const struct mesh_setup *setup)
  6524. {
  6525. _rtw_memcpy(minfo->mesh_id, setup->mesh_id, setup->mesh_id_len);
  6526. minfo->mesh_id_len = setup->mesh_id_len;
  6527. minfo->mesh_pp_id = setup->path_sel_proto;
  6528. minfo->mesh_pm_id = setup->path_metric;
  6529. minfo->mesh_cc_id = 0;
  6530. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6531. minfo->mesh_sp_id = setup->sync_method;
  6532. #endif
  6533. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6534. minfo->mesh_auth_id = setup->auth_id;
  6535. #else
  6536. if (setup->is_authenticated) {
  6537. u8 *rsn_ie;
  6538. sint rsn_ie_len;
  6539. struct rsne_info info;
  6540. u8 *akm;
  6541. u8 AKM_SUITE_SAE[4] = {0x00, 0x0F, 0xAC, 0x08};
  6542. rsn_ie = rtw_get_ie(setup->ie, WLAN_EID_RSN, &rsn_ie_len, setup->ie_len);
  6543. if (!rsn_ie || !rsn_ie_len) {
  6544. rtw_warn_on(1);
  6545. return;
  6546. }
  6547. if (rtw_rsne_info_parse(rsn_ie, rsn_ie_len + 2, &info) != _SUCCESS) {
  6548. rtw_warn_on(1);
  6549. return;
  6550. }
  6551. if (!info.akm_list || !info.akm_cnt) {
  6552. rtw_warn_on(1);
  6553. return;
  6554. }
  6555. akm = info.akm_list;
  6556. while (akm < info.akm_list + info.akm_cnt * 4) {
  6557. if (_rtw_memcmp(akm, AKM_SUITE_SAE, 4) == _TRUE) {
  6558. minfo->mesh_auth_id = 0x01;
  6559. break;
  6560. }
  6561. }
  6562. if (!minfo->mesh_auth_id) {
  6563. rtw_warn_on(1);
  6564. return;
  6565. }
  6566. }
  6567. #endif
  6568. }
  6569. static inline bool chk_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
  6570. {
  6571. return (mask >> (parm - 1)) & 0x1;
  6572. }
  6573. static void rtw_cfg80211_mesh_cfg_set(_adapter *adapter, const struct mesh_config *conf, u32 mask)
  6574. {
  6575. struct rtw_mesh_cfg *mcfg = &adapter->mesh_cfg;
  6576. #if 0 /* driver MPM */
  6577. if (chk_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask));
  6578. if (chk_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask));
  6579. if (chk_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask));
  6580. if (chk_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask));
  6581. if (chk_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask));
  6582. #endif
  6583. if (chk_mesh_attr(NL80211_MESHCONF_TTL, mask))
  6584. mcfg->dot11MeshTTL = conf->dot11MeshTTL;
  6585. if (chk_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
  6586. mcfg->element_ttl = conf->element_ttl;
  6587. #if 0 /* driver MPM */
  6588. if (chk_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask));
  6589. #endif
  6590. #if 0 /* TBD: synchronization */
  6591. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6592. if (chk_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask));
  6593. #endif
  6594. #endif
  6595. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
  6596. mcfg->dot11MeshHWMPmaxPREQretries = conf->dot11MeshHWMPmaxPREQretries;
  6597. if (chk_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
  6598. mcfg->path_refresh_time = conf->path_refresh_time;
  6599. if (chk_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
  6600. mcfg->min_discovery_timeout = conf->min_discovery_timeout;
  6601. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
  6602. mcfg->dot11MeshHWMPactivePathTimeout = conf->dot11MeshHWMPactivePathTimeout;
  6603. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
  6604. mcfg->dot11MeshHWMPpreqMinInterval = conf->dot11MeshHWMPpreqMinInterval;
  6605. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  6606. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
  6607. mcfg->dot11MeshHWMPperrMinInterval = conf->dot11MeshHWMPperrMinInterval;
  6608. #endif
  6609. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, mask))
  6610. mcfg->dot11MeshHWMPnetDiameterTraversalTime = conf->dot11MeshHWMPnetDiameterTraversalTime;
  6611. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask))
  6612. mcfg->dot11MeshHWMPRootMode = conf->dot11MeshHWMPRootMode;
  6613. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  6614. if (chk_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask))
  6615. mcfg->dot11MeshGateAnnouncementProtocol = conf->dot11MeshGateAnnouncementProtocol;
  6616. /* our current gate annc implementation rides on root annc with gate annc bit in PREQ flags */
  6617. if (mcfg->dot11MeshGateAnnouncementProtocol
  6618. && mcfg->dot11MeshHWMPRootMode <= RTW_IEEE80211_ROOTMODE_ROOT
  6619. ) {
  6620. mcfg->dot11MeshHWMPRootMode = RTW_IEEE80211_PROACTIVE_RANN;
  6621. RTW_INFO(ADPT_FMT" enable PROACTIVE_RANN becaue gate annc is needed\n", ADPT_ARG(adapter));
  6622. }
  6623. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
  6624. mcfg->dot11MeshHWMPRannInterval = conf->dot11MeshHWMPRannInterval;
  6625. #endif
  6626. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 4, 0))
  6627. if (chk_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
  6628. mcfg->dot11MeshForwarding = conf->dot11MeshForwarding;
  6629. if (chk_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask))
  6630. mcfg->rssi_threshold = conf->rssi_threshold;
  6631. #endif
  6632. #if 0 /* controlled by driver */
  6633. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6634. if (chk_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask));
  6635. #endif
  6636. #endif
  6637. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6638. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
  6639. mcfg->dot11MeshHWMPactivePathToRootTimeout = conf->dot11MeshHWMPactivePathToRootTimeout;
  6640. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
  6641. mcfg->dot11MeshHWMProotInterval = conf->dot11MeshHWMProotInterval;
  6642. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
  6643. mcfg->dot11MeshHWMPconfirmationInterval = conf->dot11MeshHWMPconfirmationInterval;
  6644. #endif
  6645. #if 0 /* TBD */
  6646. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  6647. if (chk_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask));
  6648. if (chk_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask));
  6649. #endif
  6650. #endif
  6651. #if 0 /* driver MPM */
  6652. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6653. if (chk_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask));
  6654. #endif
  6655. #endif
  6656. }
  6657. u8 *rtw_cfg80211_construct_mesh_beacon_ies(struct wiphy *wiphy, _adapter *adapter
  6658. , const struct mesh_config *conf, const struct mesh_setup *setup
  6659. , uint *ies_len)
  6660. {
  6661. struct rtw_mesh_info *minfo = &adapter->mesh_info;
  6662. struct rtw_mesh_cfg *mcfg = &adapter->mesh_cfg;
  6663. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6664. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6665. struct cfg80211_chan_def *chdef = (struct cfg80211_chan_def *)(&setup->chandef);
  6666. #endif
  6667. struct ieee80211_channel *chan;
  6668. u8 ch, bw, offset;
  6669. #endif
  6670. uint len;
  6671. u8 n_bitrates;
  6672. u8 ht = 0;
  6673. u8 vht = 0;
  6674. u8 *rsn_ie = NULL;
  6675. sint rsn_ie_len = 0;
  6676. u8 *ies = NULL, *c;
  6677. u8 supported_rates[RTW_G_RATES_NUM] = {0};
  6678. int i;
  6679. *ies_len = 0;
  6680. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6681. chan = (struct ieee80211_channel *)chdef->chan;
  6682. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6683. chan = (struct ieee80211_channel *)setup->channel;
  6684. #endif
  6685. n_bitrates = wiphy->bands[chan->band]->n_bitrates;
  6686. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6687. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6688. rtw_get_chbw_from_cfg80211_chan_def(chdef, &ht, &ch, &bw, &offset);
  6689. #else
  6690. rtw_get_chbw_from_nl80211_channel_type(chan, setup->channel_type, &ht, &ch, &bw, &offset);
  6691. #endif
  6692. if (!ch)
  6693. goto exit;
  6694. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6695. vht = ht && ch > 14 && bw >= CHANNEL_WIDTH_80; /* VHT40/VHT20? */
  6696. #endif
  6697. RTW_INFO(FUNC_ADPT_FMT" => ch:%u,%u,%u, ht:%u, vht:%u\n"
  6698. , FUNC_ADPT_ARG(adapter), ch, bw, offset, ht, vht);
  6699. #endif
  6700. rsn_ie = rtw_get_ie(setup->ie, WLAN_EID_RSN, &rsn_ie_len, setup->ie_len);
  6701. if (rsn_ie && !rsn_ie_len) {
  6702. rtw_warn_on(1);
  6703. rsn_ie = NULL;
  6704. }
  6705. len = _BEACON_IE_OFFSET_
  6706. + 2 /* 0-length SSID */
  6707. + (n_bitrates >= 8 ? 8 : n_bitrates) + 2 /* Supported Rates */
  6708. + 3 /* DS parameter set */
  6709. + 6 /* TIM */
  6710. + (n_bitrates > 8 ? n_bitrates - 8 + 2 : 0) /* Extended Supported Rates */
  6711. + (rsn_ie ? rsn_ie_len + 2 : 0) /* RSN */
  6712. #if defined(CONFIG_80211N_HT)
  6713. + (ht ? HT_CAP_IE_LEN + 2 + HT_OP_IE_LEN + 2 : 0) /* HT */
  6714. #endif
  6715. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6716. + (vht ? VHT_CAP_IE_LEN + 2 + VHT_OP_IE_LEN + 2 : 0) /* VHT */
  6717. #endif
  6718. + minfo->mesh_id_len + 2 /* Mesh ID */
  6719. + 9 /* Mesh configuration */
  6720. ;
  6721. ies = rtw_zmalloc(len);
  6722. if (!ies)
  6723. goto exit;
  6724. /* timestamp */
  6725. c = ies + 8;
  6726. /* beacon interval */
  6727. RTW_PUT_LE16(c , setup->beacon_interval);
  6728. c += 2;
  6729. /* capability */
  6730. if (rsn_ie)
  6731. *((u16 *)c) |= cpu_to_le16(cap_Privacy);
  6732. c += 2;
  6733. /* SSID */
  6734. c = rtw_set_ie(c, WLAN_EID_SSID, 0, NULL, NULL);
  6735. /* Supported Rates */
  6736. for (i = 0; i < n_bitrates; i++) {
  6737. supported_rates[i] = wiphy->bands[chan->band]->bitrates[i].bitrate / 5;
  6738. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6739. if (setup->basic_rates & BIT(i))
  6740. #else
  6741. if (rtw_is_basic_rate_mix(supported_rates[i]))
  6742. #endif
  6743. supported_rates[i] |= IEEE80211_BASIC_RATE_MASK;
  6744. }
  6745. c = rtw_set_ie(c, WLAN_EID_SUPP_RATES, (n_bitrates >= 8 ? 8 : n_bitrates), supported_rates, NULL);
  6746. /* DS parameter set */
  6747. c = rtw_set_ie(c, WLAN_EID_DS_PARAMS, 1, &ch, NULL);
  6748. /* TIM */
  6749. *c = WLAN_EID_TIM;
  6750. *(c + 1) = 4;
  6751. c += 6;
  6752. //c = rtw_set_ie(c, _TIM_IE_, 4, NULL, NULL);
  6753. /* Extended Supported Rates */
  6754. if (n_bitrates > 8)
  6755. c = rtw_set_ie(c, WLAN_EID_EXT_SUPP_RATES, n_bitrates - 8, supported_rates + 8, NULL);
  6756. /* RSN */
  6757. if (rsn_ie)
  6758. c = rtw_set_ie(c, WLAN_EID_RSN, rsn_ie_len, rsn_ie + 2, NULL);
  6759. #if defined(CONFIG_80211N_HT)
  6760. if (ht) {
  6761. struct ieee80211_sta_ht_cap *sta_ht_cap = &wiphy->bands[chan->band]->ht_cap;
  6762. u8 ht_cap[HT_CAP_IE_LEN];
  6763. u8 ht_op[HT_OP_IE_LEN];
  6764. _rtw_memset(ht_cap, 0, HT_CAP_IE_LEN);
  6765. _rtw_memset(ht_op, 0, HT_OP_IE_LEN);
  6766. /* WLAN_EID_HT_CAP */
  6767. RTW_PUT_LE16(HT_CAP_ELE_CAP_INFO(ht_cap), sta_ht_cap->cap);
  6768. SET_HT_CAP_ELE_MAX_AMPDU_LEN_EXP(ht_cap, sta_ht_cap->ampdu_factor);
  6769. SET_HT_CAP_ELE_MIN_MPDU_S_SPACE(ht_cap, sta_ht_cap->ampdu_density);
  6770. _rtw_memcpy(HT_CAP_ELE_SUP_MCS_SET(ht_cap), &sta_ht_cap->mcs, 16);
  6771. c = rtw_set_ie(c, WLAN_EID_HT_CAP, HT_CAP_IE_LEN, ht_cap, NULL);
  6772. /* WLAN_EID_HT_OPERATION */
  6773. SET_HT_OP_ELE_PRI_CHL(ht_op, ch);
  6774. switch (offset) {
  6775. case HAL_PRIME_CHNL_OFFSET_LOWER:
  6776. SET_HT_OP_ELE_2ND_CHL_OFFSET(ht_op, SCA);
  6777. break;
  6778. case HAL_PRIME_CHNL_OFFSET_UPPER:
  6779. SET_HT_OP_ELE_2ND_CHL_OFFSET(ht_op, SCB);
  6780. break;
  6781. case HAL_PRIME_CHNL_OFFSET_DONT_CARE:
  6782. default:
  6783. SET_HT_OP_ELE_2ND_CHL_OFFSET(ht_op, SCN);
  6784. break;
  6785. }
  6786. if (bw >= CHANNEL_WIDTH_40)
  6787. SET_HT_OP_ELE_STA_CHL_WIDTH(ht_op, 1);
  6788. else
  6789. SET_HT_OP_ELE_STA_CHL_WIDTH(ht_op, 0);
  6790. c = rtw_set_ie(c, WLAN_EID_HT_OPERATION, HT_OP_IE_LEN, ht_op, NULL);
  6791. }
  6792. #endif /* defined(CONFIG_80211N_HT) */
  6793. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6794. if (vht) {
  6795. struct ieee80211_sta_vht_cap *sta_vht_cap = &wiphy->bands[chan->band]->vht_cap;
  6796. u8 vht_cap[VHT_CAP_IE_LEN];
  6797. u8 vht_op[VHT_OP_IE_LEN];
  6798. u8 cch = rtw_get_center_ch(ch, bw, offset);
  6799. _rtw_memset(vht_op, 0, VHT_OP_IE_LEN);
  6800. /* WLAN_EID_VHT_CAPABILITY */
  6801. _rtw_memcpy(vht_cap, &sta_vht_cap->cap, 4);
  6802. _rtw_memcpy(vht_cap + 4, &sta_vht_cap->vht_mcs, 8);
  6803. c = rtw_set_ie(c, WLAN_EID_VHT_CAPABILITY, VHT_CAP_IE_LEN, vht_cap, NULL);
  6804. /* WLAN_EID_VHT_OPERATION */
  6805. if (bw < CHANNEL_WIDTH_80) {
  6806. SET_VHT_OPERATION_ELE_CHL_WIDTH(vht_op, 0);
  6807. SET_VHT_OPERATION_ELE_CHL_CENTER_FREQ1(vht_op, 0);
  6808. SET_VHT_OPERATION_ELE_CHL_CENTER_FREQ2(vht_op, 0);
  6809. } else if (bw == CHANNEL_WIDTH_80) {
  6810. SET_VHT_OPERATION_ELE_CHL_WIDTH(vht_op, 1);
  6811. SET_VHT_OPERATION_ELE_CHL_CENTER_FREQ1(vht_op, cch);
  6812. SET_VHT_OPERATION_ELE_CHL_CENTER_FREQ2(vht_op, 0);
  6813. } else {
  6814. RTW_ERR(FUNC_ADPT_FMT" unsupported BW:%u\n", FUNC_ADPT_ARG(adapter), bw);
  6815. rtw_warn_on(1);
  6816. rtw_mfree(ies, len);
  6817. goto exit;
  6818. }
  6819. /* Hard code 1 stream, MCS0-7 is a min Basic VHT MCS rates */
  6820. vht_op[3] = 0xfc;
  6821. vht_op[4] = 0xff;
  6822. c = rtw_set_ie(c, WLAN_EID_VHT_OPERATION, VHT_OP_IE_LEN, vht_op, NULL);
  6823. }
  6824. #endif /* defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) */
  6825. /* Mesh ID */
  6826. c = rtw_set_ie_mesh_id(c, NULL, minfo->mesh_id, minfo->mesh_id_len);
  6827. /* Mesh configuration */
  6828. c = rtw_set_ie_mesh_config(c, NULL
  6829. , minfo->mesh_pp_id
  6830. , minfo->mesh_pm_id
  6831. , minfo->mesh_cc_id
  6832. , minfo->mesh_sp_id
  6833. , minfo->mesh_auth_id
  6834. , 0, 0, 0
  6835. , 1
  6836. , 0, 0
  6837. , mcfg->dot11MeshForwarding
  6838. , 0, 0, 0
  6839. );
  6840. #if DBG_RTW_CFG80211_MESH_CONF
  6841. RTW_INFO(FUNC_ADPT_FMT" ies_len:%u\n", FUNC_ADPT_ARG(adapter), len);
  6842. dump_ies(RTW_DBGDUMP, ies + _BEACON_IE_OFFSET_, len - _BEACON_IE_OFFSET_);
  6843. #endif
  6844. exit:
  6845. if (ies)
  6846. *ies_len = len;
  6847. return ies;
  6848. }
  6849. static int cfg80211_rtw_get_mesh_config(struct wiphy *wiphy, struct net_device *dev
  6850. , struct mesh_config *conf)
  6851. {
  6852. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6853. struct rtw_mesh_cfg *mesh_cfg = &adapter->mesh_cfg;
  6854. int ret = 0;
  6855. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(adapter));
  6856. /* driver MPM */
  6857. conf->dot11MeshRetryTimeout = 0;
  6858. conf->dot11MeshConfirmTimeout = 0;
  6859. conf->dot11MeshHoldingTimeout = 0;
  6860. conf->dot11MeshMaxPeerLinks = mesh_cfg->max_peer_links;
  6861. conf->dot11MeshMaxRetries = 0;
  6862. conf->dot11MeshTTL = mesh_cfg->dot11MeshTTL;
  6863. conf->element_ttl = mesh_cfg->element_ttl;
  6864. /* driver MPM */
  6865. conf->auto_open_plinks = 0;
  6866. /* TBD: synchronization */
  6867. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6868. conf->dot11MeshNbrOffsetMaxNeighbor = 0;
  6869. #endif
  6870. conf->dot11MeshHWMPmaxPREQretries = mesh_cfg->dot11MeshHWMPmaxPREQretries;
  6871. conf->path_refresh_time = mesh_cfg->path_refresh_time;
  6872. conf->min_discovery_timeout = mesh_cfg->min_discovery_timeout;
  6873. conf->dot11MeshHWMPactivePathTimeout = mesh_cfg->dot11MeshHWMPactivePathTimeout;
  6874. conf->dot11MeshHWMPpreqMinInterval = mesh_cfg->dot11MeshHWMPpreqMinInterval;
  6875. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  6876. conf->dot11MeshHWMPperrMinInterval = mesh_cfg->dot11MeshHWMPperrMinInterval;
  6877. #endif
  6878. conf->dot11MeshHWMPnetDiameterTraversalTime = mesh_cfg->dot11MeshHWMPnetDiameterTraversalTime;
  6879. conf->dot11MeshHWMPRootMode = mesh_cfg->dot11MeshHWMPRootMode;
  6880. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  6881. conf->dot11MeshHWMPRannInterval = mesh_cfg->dot11MeshHWMPRannInterval;
  6882. #endif
  6883. conf->dot11MeshGateAnnouncementProtocol = mesh_cfg->dot11MeshGateAnnouncementProtocol;
  6884. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 4, 0))
  6885. conf->dot11MeshForwarding = mesh_cfg->dot11MeshForwarding;
  6886. conf->rssi_threshold = mesh_cfg->rssi_threshold;
  6887. #endif
  6888. /* TBD */
  6889. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6890. conf->ht_opmode = 0xffff;
  6891. #endif
  6892. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6893. conf->dot11MeshHWMPactivePathToRootTimeout = mesh_cfg->dot11MeshHWMPactivePathToRootTimeout;
  6894. conf->dot11MeshHWMProotInterval = mesh_cfg->dot11MeshHWMProotInterval;
  6895. conf->dot11MeshHWMPconfirmationInterval = mesh_cfg->dot11MeshHWMPconfirmationInterval;
  6896. #endif
  6897. /* TBD: power save */
  6898. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  6899. conf->power_mode = NL80211_MESH_POWER_ACTIVE;
  6900. conf->dot11MeshAwakeWindowDuration = 0;
  6901. #endif
  6902. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6903. conf->plink_timeout = mesh_cfg->plink_timeout;
  6904. #endif
  6905. return ret;
  6906. }
  6907. static void rtw_mbss_info_change_notify(_adapter *adapter, bool minfo_changed, bool need_work)
  6908. {
  6909. if (need_work)
  6910. rtw_mesh_work(&adapter->mesh_work);
  6911. }
  6912. static int cfg80211_rtw_update_mesh_config(struct wiphy *wiphy, struct net_device *dev
  6913. , u32 mask, const struct mesh_config *nconf)
  6914. {
  6915. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6916. int ret = 0;
  6917. bool minfo_changed = _FALSE, need_work = _FALSE;
  6918. RTW_INFO(FUNC_ADPT_FMT" mask:0x%08x\n", FUNC_ADPT_ARG(adapter), mask);
  6919. rtw_cfg80211_mesh_cfg_set(adapter, nconf, mask);
  6920. update_beacon(adapter, WLAN_EID_MESH_CONFIG, NULL, _TRUE);
  6921. #if CONFIG_RTW_MESH_CTO_MGATE_CARRIER
  6922. if (rtw_mesh_cto_mgate_required(adapter))
  6923. rtw_netif_carrier_off(adapter->pnetdev);
  6924. else
  6925. rtw_netif_carrier_on(adapter->pnetdev);
  6926. #endif
  6927. need_work = rtw_ieee80211_mesh_root_setup(adapter);
  6928. rtw_mbss_info_change_notify(adapter, minfo_changed, need_work);
  6929. return ret;
  6930. }
  6931. static int cfg80211_rtw_join_mesh(struct wiphy *wiphy, struct net_device *dev,
  6932. const struct mesh_config *conf, const struct mesh_setup *setup)
  6933. {
  6934. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6935. u8 *ies = NULL;
  6936. uint ies_len;
  6937. int ret = 0;
  6938. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(adapter));
  6939. #if DBG_RTW_CFG80211_MESH_CONF
  6940. RTW_INFO(FUNC_ADPT_FMT" mesh_setup:\n", FUNC_ADPT_ARG(adapter));
  6941. dump_mesh_setup(RTW_DBGDUMP, wiphy, setup);
  6942. RTW_INFO(FUNC_ADPT_FMT" mesh_config:\n", FUNC_ADPT_ARG(adapter));
  6943. dump_mesh_config(RTW_DBGDUMP, conf);
  6944. #endif
  6945. if (rtw_cfg80211_sync_iftype(adapter) != _SUCCESS) {
  6946. ret = -ENOTSUPP;
  6947. goto exit;
  6948. }
  6949. /* initialization */
  6950. rtw_mesh_init_mesh_info(adapter);
  6951. /* apply cfg80211 settings*/
  6952. rtw_cfg80211_mesh_info_set_profile(&adapter->mesh_info, setup);
  6953. rtw_cfg80211_mesh_cfg_set(adapter, conf, 0xFFFFFFFF);
  6954. /* apply cfg80211 settings (join only) */
  6955. rtw_mesh_cfg_init_max_peer_links(adapter, conf->dot11MeshMaxPeerLinks);
  6956. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6957. rtw_mesh_cfg_init_plink_timeout(adapter, conf->plink_timeout);
  6958. #endif
  6959. rtw_ieee80211_mesh_root_setup(adapter);
  6960. ies = rtw_cfg80211_construct_mesh_beacon_ies(wiphy, adapter, conf, setup, &ies_len);
  6961. if (!ies) {
  6962. ret = -EINVAL;
  6963. goto exit;
  6964. }
  6965. /* start mbss */
  6966. if (rtw_check_beacon_data(adapter, ies, ies_len) != _SUCCESS) {
  6967. ret = -EINVAL;
  6968. goto exit;
  6969. }
  6970. rtw_mesh_work(&adapter->mesh_work);
  6971. exit:
  6972. if (ies)
  6973. rtw_mfree(ies, ies_len);
  6974. if (ret)
  6975. rtw_mesh_deinit_mesh_info(adapter);
  6976. return ret;
  6977. }
  6978. static int cfg80211_rtw_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
  6979. {
  6980. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6981. int ret = 0;
  6982. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(adapter));
  6983. rtw_mesh_deinit_mesh_info(adapter);
  6984. rtw_set_802_11_infrastructure_mode(adapter, Ndis802_11Infrastructure);
  6985. rtw_setopmode_cmd(adapter, Ndis802_11Infrastructure, RTW_CMDF_WAIT_ACK);
  6986. return ret;
  6987. }
  6988. static int cfg80211_rtw_add_mpath(struct wiphy *wiphy, struct net_device *dev
  6989. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  6990. , const u8 *dst, const u8 *next_hop
  6991. #else
  6992. , u8 *dst, u8 *next_hop
  6993. #endif
  6994. )
  6995. {
  6996. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6997. struct sta_priv *stapriv = &adapter->stapriv;
  6998. struct sta_info *sta;
  6999. struct rtw_mesh_path *mpath;
  7000. int ret = 0;
  7001. rtw_rcu_read_lock();
  7002. sta = rtw_get_stainfo(stapriv, next_hop);
  7003. if (!sta) {
  7004. ret = -ENOENT;
  7005. goto exit;
  7006. }
  7007. mpath = rtw_mesh_path_add(adapter, dst);
  7008. if (!mpath) {
  7009. ret = -ENOENT;
  7010. goto exit;
  7011. }
  7012. rtw_mesh_path_fix_nexthop(mpath, sta);
  7013. exit:
  7014. rtw_rcu_read_unlock();
  7015. return ret;
  7016. }
  7017. static int cfg80211_rtw_del_mpath(struct wiphy *wiphy, struct net_device *dev
  7018. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  7019. , const u8 *dst
  7020. #else
  7021. , u8 *dst
  7022. #endif
  7023. )
  7024. {
  7025. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7026. int ret = 0;
  7027. if (dst) {
  7028. if (rtw_mesh_path_del(adapter, dst)) {
  7029. ret = -ENOENT;
  7030. goto exit;
  7031. }
  7032. } else {
  7033. rtw_mesh_path_flush_by_iface(adapter);
  7034. }
  7035. exit:
  7036. return ret;
  7037. }
  7038. static int cfg80211_rtw_change_mpath(struct wiphy *wiphy, struct net_device *dev
  7039. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  7040. , const u8 *dst, const u8 *next_hop
  7041. #else
  7042. , u8 *dst, u8 *next_hop
  7043. #endif
  7044. )
  7045. {
  7046. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7047. struct sta_priv *stapriv = &adapter->stapriv;
  7048. struct sta_info *sta;
  7049. struct rtw_mesh_path *mpath;
  7050. int ret = 0;
  7051. rtw_rcu_read_lock();
  7052. sta = rtw_get_stainfo(stapriv, next_hop);
  7053. if (!sta) {
  7054. ret = -ENOENT;
  7055. goto exit;
  7056. }
  7057. mpath = rtw_mesh_path_lookup(adapter, dst);
  7058. if (!mpath) {
  7059. ret = -ENOENT;
  7060. goto exit;
  7061. }
  7062. rtw_mesh_path_fix_nexthop(mpath, sta);
  7063. exit:
  7064. rtw_rcu_read_unlock();
  7065. return ret;
  7066. }
  7067. static void rtw_cfg80211_mpath_set_pinfo(struct rtw_mesh_path *mpath, u8 *next_hop, struct mpath_info *pinfo)
  7068. {
  7069. struct sta_info *next_hop_sta = rtw_rcu_dereference(mpath->next_hop);
  7070. if (next_hop_sta)
  7071. _rtw_memcpy(next_hop, next_hop_sta->cmn.mac_addr, ETH_ALEN);
  7072. else
  7073. _rtw_memset(next_hop, 0, ETH_ALEN);
  7074. _rtw_memset(pinfo, 0, sizeof(*pinfo));
  7075. pinfo->generation = mpath->adapter->mesh_info.mesh_paths_generation;
  7076. pinfo->filled = 0
  7077. | MPATH_INFO_FRAME_QLEN
  7078. | MPATH_INFO_SN
  7079. | MPATH_INFO_METRIC
  7080. | MPATH_INFO_EXPTIME
  7081. | MPATH_INFO_DISCOVERY_TIMEOUT
  7082. | MPATH_INFO_DISCOVERY_RETRIES
  7083. | MPATH_INFO_FLAGS
  7084. ;
  7085. pinfo->frame_qlen = mpath->frame_queue_len;
  7086. pinfo->sn = mpath->sn;
  7087. pinfo->metric = mpath->metric;
  7088. if (rtw_time_after(mpath->exp_time, rtw_get_current_time()))
  7089. pinfo->exptime = rtw_get_remaining_time_ms(mpath->exp_time);
  7090. pinfo->discovery_timeout = rtw_systime_to_ms(mpath->discovery_timeout);
  7091. pinfo->discovery_retries = mpath->discovery_retries;
  7092. if (mpath->flags & RTW_MESH_PATH_ACTIVE)
  7093. pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
  7094. if (mpath->flags & RTW_MESH_PATH_RESOLVING)
  7095. pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
  7096. if (mpath->flags & RTW_MESH_PATH_SN_VALID)
  7097. pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
  7098. if (mpath->flags & RTW_MESH_PATH_FIXED)
  7099. pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
  7100. if (mpath->flags & RTW_MESH_PATH_RESOLVED)
  7101. pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
  7102. }
  7103. static int cfg80211_rtw_get_mpath(struct wiphy *wiphy, struct net_device *dev, u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
  7104. {
  7105. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7106. struct rtw_mesh_path *mpath;
  7107. int ret = 0;
  7108. rtw_rcu_read_lock();
  7109. mpath = rtw_mesh_path_lookup(adapter, dst);
  7110. if (!mpath) {
  7111. ret = -ENOENT;
  7112. goto exit;
  7113. }
  7114. rtw_cfg80211_mpath_set_pinfo(mpath, next_hop, pinfo);
  7115. exit:
  7116. rtw_rcu_read_unlock();
  7117. return ret;
  7118. }
  7119. static int cfg80211_rtw_dump_mpath(struct wiphy *wiphy, struct net_device *dev, int idx, u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
  7120. {
  7121. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7122. struct rtw_mesh_path *mpath;
  7123. int ret = 0;
  7124. rtw_rcu_read_lock();
  7125. mpath = rtw_mesh_path_lookup_by_idx(adapter, idx);
  7126. if (!mpath) {
  7127. ret = -ENOENT;
  7128. goto exit;
  7129. }
  7130. _rtw_memcpy(dst, mpath->dst, ETH_ALEN);
  7131. rtw_cfg80211_mpath_set_pinfo(mpath, next_hop, pinfo);
  7132. exit:
  7133. rtw_rcu_read_unlock();
  7134. return ret;
  7135. }
  7136. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0))
  7137. static void rtw_cfg80211_mpp_set_pinfo(struct rtw_mesh_path *mpath, u8 *mpp, struct mpath_info *pinfo)
  7138. {
  7139. _rtw_memcpy(mpp, mpath->mpp, ETH_ALEN);
  7140. _rtw_memset(pinfo, 0, sizeof(*pinfo));
  7141. pinfo->generation = mpath->adapter->mesh_info.mpp_paths_generation;
  7142. }
  7143. static int cfg80211_rtw_get_mpp(struct wiphy *wiphy, struct net_device *dev, u8 *dst, u8 *mpp, struct mpath_info *pinfo)
  7144. {
  7145. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7146. struct rtw_mesh_path *mpath;
  7147. int ret = 0;
  7148. rtw_rcu_read_lock();
  7149. mpath = rtw_mpp_path_lookup(adapter, dst);
  7150. if (!mpath) {
  7151. ret = -ENOENT;
  7152. goto exit;
  7153. }
  7154. rtw_cfg80211_mpp_set_pinfo(mpath, mpp, pinfo);
  7155. exit:
  7156. rtw_rcu_read_unlock();
  7157. return ret;
  7158. }
  7159. static int cfg80211_rtw_dump_mpp(struct wiphy *wiphy, struct net_device *dev, int idx, u8 *dst, u8 *mpp, struct mpath_info *pinfo)
  7160. {
  7161. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7162. struct rtw_mesh_path *mpath;
  7163. int ret = 0;
  7164. rtw_rcu_read_lock();
  7165. mpath = rtw_mpp_path_lookup_by_idx(adapter, idx);
  7166. if (!mpath) {
  7167. ret = -ENOENT;
  7168. goto exit;
  7169. }
  7170. _rtw_memcpy(dst, mpath->dst, ETH_ALEN);
  7171. rtw_cfg80211_mpp_set_pinfo(mpath, mpp, pinfo);
  7172. exit:
  7173. rtw_rcu_read_unlock();
  7174. return ret;
  7175. }
  7176. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)) */
  7177. #endif /* defined(CONFIG_RTW_MESH) */
  7178. #if defined(CONFIG_PNO_SUPPORT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7179. static int cfg80211_rtw_sched_scan_start(struct wiphy *wiphy,
  7180. struct net_device *dev,
  7181. struct cfg80211_sched_scan_request *request)
  7182. {
  7183. _adapter *padapter = (_adapter *)rtw_netdev_priv(dev);
  7184. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  7185. struct cfg80211_ssid *ssids;
  7186. int n_ssids = 0;
  7187. int interval = 0;
  7188. int i = 0;
  7189. u8 ret;
  7190. if (padapter->bup == _FALSE) {
  7191. RTW_INFO("%s: net device is down.\n", __func__);
  7192. return -EIO;
  7193. }
  7194. if (check_fwstate(pmlmepriv, _FW_UNDER_SURVEY) == _TRUE ||
  7195. check_fwstate(pmlmepriv, _FW_LINKED) == _TRUE ||
  7196. check_fwstate(pmlmepriv, _FW_UNDER_LINKING) == _TRUE) {
  7197. RTW_INFO("%s: device is busy.\n", __func__);
  7198. rtw_scan_abort(padapter);
  7199. }
  7200. if (request == NULL) {
  7201. RTW_INFO("%s: invalid cfg80211_requests parameters.\n", __func__);
  7202. return -EINVAL;
  7203. }
  7204. #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0)
  7205. #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0)
  7206. interval = request->scan_plans->interval;
  7207. #else
  7208. interval = request->interval;
  7209. #endif
  7210. n_ssids = request->n_match_sets;
  7211. ssids = (struct cfg80211_ssid *)rtw_zmalloc(n_ssids * sizeof(struct cfg80211_ssid));
  7212. if(ssids == NULL) {
  7213. RTW_ERR("Fail to allocate ssids for PNO\n");
  7214. return -ENOMEM;
  7215. }
  7216. for (i=0;i<request->n_match_sets;i++) {
  7217. ssids[i].ssid_len = request->match_sets[i].ssid.ssid_len;
  7218. memcpy(ssids[i].ssid, request->match_sets[i].ssid.ssid,
  7219. request->match_sets[i].ssid.ssid_len);
  7220. }
  7221. #else
  7222. interval = request->interval;
  7223. n_ssids = request->n_ssids;
  7224. ssids = request->ssids;
  7225. #endif
  7226. ret = rtw_android_cfg80211_pno_setup(dev, ssids,
  7227. n_ssids, interval);
  7228. if (ret < 0) {
  7229. RTW_INFO("%s ret: %d\n", __func__, ret);
  7230. goto exit;
  7231. }
  7232. ret = rtw_android_pno_enable(dev, _TRUE);
  7233. if (ret < 0) {
  7234. RTW_INFO("%s ret: %d\n", __func__, ret);
  7235. goto exit;
  7236. }
  7237. exit:
  7238. return ret;
  7239. }
  7240. static int cfg80211_rtw_sched_scan_stop(struct wiphy *wiphy,
  7241. struct net_device *dev)
  7242. {
  7243. return rtw_android_pno_enable(dev, _FALSE);
  7244. }
  7245. int cfg80211_rtw_suspend(struct wiphy *wiphy, struct cfg80211_wowlan *wow) {
  7246. RTW_DBG("==> %s\n",__func__);
  7247. RTW_DBG("<== %s\n",__func__);
  7248. return 0;
  7249. }
  7250. int cfg80211_rtw_resume(struct wiphy *wiphy) {
  7251. _adapter *padapter;
  7252. struct pwrctrl_priv *pwrpriv;
  7253. struct mlme_priv *pmlmepriv;
  7254. padapter = wiphy_to_adapter(wiphy);
  7255. pwrpriv = adapter_to_pwrctl(padapter);
  7256. pmlmepriv = &padapter->mlmepriv;
  7257. struct sitesurvey_parm parm;
  7258. int i, len;
  7259. RTW_DBG("==> %s\n",__func__);
  7260. if (pwrpriv->wowlan_last_wake_reason == RX_PNO) {
  7261. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  7262. _irqL irqL;
  7263. int PNOWakeupScanWaitCnt = 0;
  7264. rtw_cfg80211_disconnected(padapter->rtw_wdev, 0, NULL, 0, 1, GFP_ATOMIC);
  7265. rtw_init_sitesurvey_parm(padapter, &parm);
  7266. for (i=0;i<pwrpriv->pnlo_info->ssid_num && i < RTW_SSID_SCAN_AMOUNT; i++) {
  7267. len = pwrpriv->pno_ssid_list->node[i].SSID_len;
  7268. _rtw_memcpy(&parm.ssid[i].Ssid, pwrpriv->pno_ssid_list->node[i].SSID, len);
  7269. parm.ssid[i].SsidLength = len;
  7270. }
  7271. parm.ssid_num = pwrpriv->pnlo_info->ssid_num;
  7272. _enter_critical_bh(&pmlmepriv->lock, &irqL);
  7273. //This modification fix PNO wakeup reconnect issue with hidden SSID AP.
  7274. //rtw_sitesurvey_cmd(padapter, NULL);
  7275. rtw_sitesurvey_cmd(padapter, &parm);
  7276. _exit_critical_bh(&pmlmepriv->lock, &irqL);
  7277. for (PNOWakeupScanWaitCnt = 0; PNOWakeupScanWaitCnt < 10; PNOWakeupScanWaitCnt++) {
  7278. if(check_fwstate(pmlmepriv, _FW_UNDER_SURVEY) == _FALSE)
  7279. break;
  7280. rtw_msleep_os(1000);
  7281. }
  7282. _enter_critical_bh(&pmlmepriv->lock, &irqL);
  7283. cfg80211_sched_scan_results(padapter->rtw_wdev->wiphy);
  7284. _exit_critical_bh(&pmlmepriv->lock, &irqL);
  7285. }
  7286. RTW_DBG("<== %s\n",__func__);
  7287. return 0;
  7288. }
  7289. #endif /* CONFIG_PNO_SUPPORT */
  7290. static int rtw_cfg80211_set_beacon_wpsp2pie(struct net_device *ndev, char *buf, int len)
  7291. {
  7292. int ret = 0;
  7293. uint wps_ielen = 0;
  7294. u8 *wps_ie;
  7295. u32 p2p_ielen = 0;
  7296. u8 wps_oui[8] = {0x0, 0x50, 0xf2, 0x04};
  7297. u8 *p2p_ie;
  7298. u32 wfd_ielen = 0;
  7299. u8 *wfd_ie;
  7300. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  7301. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  7302. struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
  7303. RTW_INFO(FUNC_NDEV_FMT" ielen=%d\n", FUNC_NDEV_ARG(ndev), len);
  7304. if (len > 0) {
  7305. wps_ie = rtw_get_wps_ie(buf, len, NULL, &wps_ielen);
  7306. if (wps_ie) {
  7307. #ifdef CONFIG_DEBUG_CFG80211
  7308. RTW_INFO("bcn_wps_ielen=%d\n", wps_ielen);
  7309. #endif
  7310. if (pmlmepriv->wps_beacon_ie) {
  7311. u32 free_len = pmlmepriv->wps_beacon_ie_len;
  7312. pmlmepriv->wps_beacon_ie_len = 0;
  7313. rtw_mfree(pmlmepriv->wps_beacon_ie, free_len);
  7314. pmlmepriv->wps_beacon_ie = NULL;
  7315. }
  7316. pmlmepriv->wps_beacon_ie = rtw_malloc(wps_ielen);
  7317. if (pmlmepriv->wps_beacon_ie == NULL) {
  7318. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7319. return -EINVAL;
  7320. }
  7321. _rtw_memcpy(pmlmepriv->wps_beacon_ie, wps_ie, wps_ielen);
  7322. pmlmepriv->wps_beacon_ie_len = wps_ielen;
  7323. update_beacon(padapter, _VENDOR_SPECIFIC_IE_, wps_oui, _TRUE);
  7324. }
  7325. /* buf += wps_ielen; */
  7326. /* len -= wps_ielen; */
  7327. #ifdef CONFIG_P2P
  7328. p2p_ie = rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen);
  7329. if (p2p_ie) {
  7330. #ifdef CONFIG_DEBUG_CFG80211
  7331. RTW_INFO("bcn_p2p_ielen=%d\n", p2p_ielen);
  7332. #endif
  7333. if (pmlmepriv->p2p_beacon_ie) {
  7334. u32 free_len = pmlmepriv->p2p_beacon_ie_len;
  7335. pmlmepriv->p2p_beacon_ie_len = 0;
  7336. rtw_mfree(pmlmepriv->p2p_beacon_ie, free_len);
  7337. pmlmepriv->p2p_beacon_ie = NULL;
  7338. }
  7339. pmlmepriv->p2p_beacon_ie = rtw_malloc(p2p_ielen);
  7340. if (pmlmepriv->p2p_beacon_ie == NULL) {
  7341. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7342. return -EINVAL;
  7343. }
  7344. _rtw_memcpy(pmlmepriv->p2p_beacon_ie, p2p_ie, p2p_ielen);
  7345. pmlmepriv->p2p_beacon_ie_len = p2p_ielen;
  7346. }
  7347. #endif /* CONFIG_P2P */
  7348. #ifdef CONFIG_WFD
  7349. wfd_ie = rtw_get_wfd_ie(buf, len, NULL, &wfd_ielen);
  7350. if (wfd_ie) {
  7351. #ifdef CONFIG_DEBUG_CFG80211
  7352. RTW_INFO("bcn_wfd_ielen=%d\n", wfd_ielen);
  7353. #endif
  7354. if (rtw_mlme_update_wfd_ie_data(pmlmepriv, MLME_BEACON_IE, wfd_ie, wfd_ielen) != _SUCCESS)
  7355. return -EINVAL;
  7356. }
  7357. #endif /* CONFIG_WFD */
  7358. pmlmeext->bstart_bss = _TRUE;
  7359. }
  7360. return ret;
  7361. }
  7362. static int rtw_cfg80211_set_probe_resp_wpsp2pie(struct net_device *net, char *buf, int len)
  7363. {
  7364. int ret = 0;
  7365. uint wps_ielen = 0;
  7366. u8 *wps_ie;
  7367. u32 p2p_ielen = 0;
  7368. u8 *p2p_ie;
  7369. u32 wfd_ielen = 0;
  7370. u8 *wfd_ie;
  7371. _adapter *padapter = (_adapter *)rtw_netdev_priv(net);
  7372. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  7373. #ifdef CONFIG_DEBUG_CFG80211
  7374. RTW_INFO("%s, ielen=%d\n", __func__, len);
  7375. #endif
  7376. if (len > 0) {
  7377. wps_ie = rtw_get_wps_ie(buf, len, NULL, &wps_ielen);
  7378. if (wps_ie) {
  7379. uint attr_contentlen = 0;
  7380. u16 uconfig_method, *puconfig_method = NULL;
  7381. #ifdef CONFIG_DEBUG_CFG80211
  7382. RTW_INFO("probe_resp_wps_ielen=%d\n", wps_ielen);
  7383. #endif
  7384. if (check_fwstate(pmlmepriv, WIFI_UNDER_WPS)) {
  7385. u8 sr = 0;
  7386. rtw_get_wps_attr_content(wps_ie, wps_ielen, WPS_ATTR_SELECTED_REGISTRAR, (u8 *)(&sr), NULL);
  7387. if (sr != 0)
  7388. RTW_INFO("%s, got sr\n", __func__);
  7389. else {
  7390. RTW_INFO("GO mode process WPS under site-survey, sr no set\n");
  7391. return ret;
  7392. }
  7393. }
  7394. if (pmlmepriv->wps_probe_resp_ie) {
  7395. u32 free_len = pmlmepriv->wps_probe_resp_ie_len;
  7396. pmlmepriv->wps_probe_resp_ie_len = 0;
  7397. rtw_mfree(pmlmepriv->wps_probe_resp_ie, free_len);
  7398. pmlmepriv->wps_probe_resp_ie = NULL;
  7399. }
  7400. pmlmepriv->wps_probe_resp_ie = rtw_malloc(wps_ielen);
  7401. if (pmlmepriv->wps_probe_resp_ie == NULL) {
  7402. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7403. return -EINVAL;
  7404. }
  7405. /* add PUSH_BUTTON config_method by driver self in wpsie of probe_resp at GO Mode */
  7406. puconfig_method = (u16 *)rtw_get_wps_attr_content(wps_ie, wps_ielen, WPS_ATTR_CONF_METHOD , NULL, &attr_contentlen);
  7407. if (puconfig_method != NULL) {
  7408. /* struct registry_priv *pregistrypriv = &padapter->registrypriv; */
  7409. struct wireless_dev *wdev = padapter->rtw_wdev;
  7410. #ifdef CONFIG_DEBUG_CFG80211
  7411. /* printk("config_method in wpsie of probe_resp = 0x%x\n", be16_to_cpu(*puconfig_method)); */
  7412. #endif
  7413. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  7414. /* for WIFI-DIRECT LOGO 4.2.2, AUTO GO can't set PUSH_BUTTON flags */
  7415. if (wdev->iftype == NL80211_IFTYPE_P2P_GO) {
  7416. uconfig_method = WPS_CM_PUSH_BUTTON;
  7417. uconfig_method = cpu_to_be16(uconfig_method);
  7418. *puconfig_method &= ~uconfig_method;
  7419. }
  7420. #endif
  7421. }
  7422. _rtw_memcpy(pmlmepriv->wps_probe_resp_ie, wps_ie, wps_ielen);
  7423. pmlmepriv->wps_probe_resp_ie_len = wps_ielen;
  7424. }
  7425. /* buf += wps_ielen; */
  7426. /* len -= wps_ielen; */
  7427. #ifdef CONFIG_P2P
  7428. p2p_ie = rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen);
  7429. if (p2p_ie) {
  7430. u8 is_GO = _FALSE;
  7431. u32 attr_contentlen = 0;
  7432. u16 cap_attr = 0;
  7433. #ifdef CONFIG_DEBUG_CFG80211
  7434. RTW_INFO("probe_resp_p2p_ielen=%d\n", p2p_ielen);
  7435. #endif
  7436. /* Check P2P Capability ATTR */
  7437. if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8 *)&cap_attr, (uint *) &attr_contentlen)) {
  7438. u8 grp_cap = 0;
  7439. /* RTW_INFO( "[%s] Got P2P Capability Attr!!\n", __FUNCTION__ ); */
  7440. cap_attr = le16_to_cpu(cap_attr);
  7441. grp_cap = (u8)((cap_attr >> 8) & 0xff);
  7442. is_GO = (grp_cap & BIT(0)) ? _TRUE : _FALSE;
  7443. if (is_GO)
  7444. RTW_INFO("Got P2P Capability Attr, grp_cap=0x%x, is_GO\n", grp_cap);
  7445. }
  7446. if (is_GO == _FALSE) {
  7447. if (pmlmepriv->p2p_probe_resp_ie) {
  7448. u32 free_len = pmlmepriv->p2p_probe_resp_ie_len;
  7449. pmlmepriv->p2p_probe_resp_ie_len = 0;
  7450. rtw_mfree(pmlmepriv->p2p_probe_resp_ie, free_len);
  7451. pmlmepriv->p2p_probe_resp_ie = NULL;
  7452. }
  7453. pmlmepriv->p2p_probe_resp_ie = rtw_malloc(p2p_ielen);
  7454. if (pmlmepriv->p2p_probe_resp_ie == NULL) {
  7455. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7456. return -EINVAL;
  7457. }
  7458. _rtw_memcpy(pmlmepriv->p2p_probe_resp_ie, p2p_ie, p2p_ielen);
  7459. pmlmepriv->p2p_probe_resp_ie_len = p2p_ielen;
  7460. } else {
  7461. if (pmlmepriv->p2p_go_probe_resp_ie) {
  7462. u32 free_len = pmlmepriv->p2p_go_probe_resp_ie_len;
  7463. pmlmepriv->p2p_go_probe_resp_ie_len = 0;
  7464. rtw_mfree(pmlmepriv->p2p_go_probe_resp_ie, free_len);
  7465. pmlmepriv->p2p_go_probe_resp_ie = NULL;
  7466. }
  7467. pmlmepriv->p2p_go_probe_resp_ie = rtw_malloc(p2p_ielen);
  7468. if (pmlmepriv->p2p_go_probe_resp_ie == NULL) {
  7469. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7470. return -EINVAL;
  7471. }
  7472. _rtw_memcpy(pmlmepriv->p2p_go_probe_resp_ie, p2p_ie, p2p_ielen);
  7473. pmlmepriv->p2p_go_probe_resp_ie_len = p2p_ielen;
  7474. }
  7475. }
  7476. #endif /* CONFIG_P2P */
  7477. #ifdef CONFIG_WFD
  7478. wfd_ie = rtw_get_wfd_ie(buf, len, NULL, &wfd_ielen);
  7479. if (wfd_ie) {
  7480. #ifdef CONFIG_DEBUG_CFG80211
  7481. RTW_INFO("probe_resp_wfd_ielen=%d\n", wfd_ielen);
  7482. #endif
  7483. if (rtw_mlme_update_wfd_ie_data(pmlmepriv, MLME_PROBE_RESP_IE, wfd_ie, wfd_ielen) != _SUCCESS)
  7484. return -EINVAL;
  7485. }
  7486. #endif /* CONFIG_WFD */
  7487. }
  7488. return ret;
  7489. }
  7490. static int rtw_cfg80211_set_assoc_resp_wpsp2pie(struct net_device *net, char *buf, int len)
  7491. {
  7492. int ret = 0;
  7493. _adapter *padapter = (_adapter *)rtw_netdev_priv(net);
  7494. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  7495. u8 *ie;
  7496. u32 ie_len;
  7497. RTW_INFO("%s, ielen=%d\n", __func__, len);
  7498. if (len <= 0)
  7499. goto exit;
  7500. ie = rtw_get_wps_ie(buf, len, NULL, &ie_len);
  7501. if (ie && ie_len) {
  7502. if (pmlmepriv->wps_assoc_resp_ie) {
  7503. u32 free_len = pmlmepriv->wps_assoc_resp_ie_len;
  7504. pmlmepriv->wps_assoc_resp_ie_len = 0;
  7505. rtw_mfree(pmlmepriv->wps_assoc_resp_ie, free_len);
  7506. pmlmepriv->wps_assoc_resp_ie = NULL;
  7507. }
  7508. pmlmepriv->wps_assoc_resp_ie = rtw_malloc(ie_len);
  7509. if (pmlmepriv->wps_assoc_resp_ie == NULL) {
  7510. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7511. return -EINVAL;
  7512. }
  7513. _rtw_memcpy(pmlmepriv->wps_assoc_resp_ie, ie, ie_len);
  7514. pmlmepriv->wps_assoc_resp_ie_len = ie_len;
  7515. }
  7516. ie = rtw_get_p2p_ie(buf, len, NULL, &ie_len);
  7517. if (ie && ie_len) {
  7518. if (pmlmepriv->p2p_assoc_resp_ie) {
  7519. u32 free_len = pmlmepriv->p2p_assoc_resp_ie_len;
  7520. pmlmepriv->p2p_assoc_resp_ie_len = 0;
  7521. rtw_mfree(pmlmepriv->p2p_assoc_resp_ie, free_len);
  7522. pmlmepriv->p2p_assoc_resp_ie = NULL;
  7523. }
  7524. pmlmepriv->p2p_assoc_resp_ie = rtw_malloc(ie_len);
  7525. if (pmlmepriv->p2p_assoc_resp_ie == NULL) {
  7526. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7527. return -EINVAL;
  7528. }
  7529. _rtw_memcpy(pmlmepriv->p2p_assoc_resp_ie, ie, ie_len);
  7530. pmlmepriv->p2p_assoc_resp_ie_len = ie_len;
  7531. }
  7532. #ifdef CONFIG_WFD
  7533. ie = rtw_get_wfd_ie(buf, len, NULL, &ie_len);
  7534. if (rtw_mlme_update_wfd_ie_data(pmlmepriv, MLME_ASSOC_RESP_IE, ie, ie_len) != _SUCCESS)
  7535. return -EINVAL;
  7536. #endif
  7537. exit:
  7538. return ret;
  7539. }
  7540. int rtw_cfg80211_set_mgnt_wpsp2pie(struct net_device *net, char *buf, int len,
  7541. int type)
  7542. {
  7543. int ret = 0;
  7544. uint wps_ielen = 0;
  7545. u32 p2p_ielen = 0;
  7546. #ifdef CONFIG_DEBUG_CFG80211
  7547. RTW_INFO("%s, ielen=%d\n", __func__, len);
  7548. #endif
  7549. if ((rtw_get_wps_ie(buf, len, NULL, &wps_ielen) && (wps_ielen > 0))
  7550. #ifdef CONFIG_P2P
  7551. || (rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen) && (p2p_ielen > 0))
  7552. #endif
  7553. ) {
  7554. if (net != NULL) {
  7555. switch (type) {
  7556. case 0x1: /* BEACON */
  7557. ret = rtw_cfg80211_set_beacon_wpsp2pie(net, buf, len);
  7558. break;
  7559. case 0x2: /* PROBE_RESP */
  7560. ret = rtw_cfg80211_set_probe_resp_wpsp2pie(net, buf, len);
  7561. #ifdef CONFIG_P2P
  7562. if (ret == 0)
  7563. adapter_wdev_data((_adapter *)rtw_netdev_priv(net))->probe_resp_ie_update_time = rtw_get_current_time();
  7564. #endif
  7565. break;
  7566. case 0x4: /* ASSOC_RESP */
  7567. ret = rtw_cfg80211_set_assoc_resp_wpsp2pie(net, buf, len);
  7568. break;
  7569. }
  7570. }
  7571. }
  7572. return ret;
  7573. }
  7574. #ifdef CONFIG_80211N_HT
  7575. static void rtw_cfg80211_init_ht_capab_ex(_adapter *padapter
  7576. , struct ieee80211_sta_ht_cap *ht_cap, BAND_TYPE band, u8 rf_type)
  7577. {
  7578. struct registry_priv *pregistrypriv = &padapter->registrypriv;
  7579. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  7580. struct ht_priv *phtpriv = &pmlmepriv->htpriv;
  7581. u8 stbc_rx_enable = _FALSE;
  7582. rtw_ht_use_default_setting(padapter);
  7583. /* RX LDPC */
  7584. if (TEST_FLAG(phtpriv->ldpc_cap, LDPC_HT_ENABLE_RX))
  7585. ht_cap->cap |= IEEE80211_HT_CAP_LDPC_CODING;
  7586. /* TX STBC */
  7587. if (TEST_FLAG(phtpriv->stbc_cap, STBC_HT_ENABLE_TX))
  7588. ht_cap->cap |= IEEE80211_HT_CAP_TX_STBC;
  7589. /* RX STBC */
  7590. if (TEST_FLAG(phtpriv->stbc_cap, STBC_HT_ENABLE_RX)) {
  7591. /*rtw_rx_stbc 0: disable, bit(0):enable 2.4g, bit(1):enable 5g*/
  7592. if (band == BAND_ON_2_4G)
  7593. stbc_rx_enable = (pregistrypriv->rx_stbc & BIT(0)) ? _TRUE : _FALSE;
  7594. if (band == BAND_ON_5G)
  7595. stbc_rx_enable = (pregistrypriv->rx_stbc & BIT(1)) ? _TRUE : _FALSE;
  7596. if (stbc_rx_enable) {
  7597. switch (rf_type) {
  7598. case RF_1T1R:
  7599. ht_cap->cap |= IEEE80211_HT_CAP_RX_STBC_1R;/*RX STBC One spatial stream*/
  7600. break;
  7601. case RF_2T2R:
  7602. case RF_1T2R:
  7603. ht_cap->cap |= IEEE80211_HT_CAP_RX_STBC_1R;/* Only one spatial-stream STBC RX is supported */
  7604. break;
  7605. case RF_3T3R:
  7606. case RF_3T4R:
  7607. case RF_4T4R:
  7608. ht_cap->cap |= IEEE80211_HT_CAP_RX_STBC_1R;/* Only one spatial-stream STBC RX is supported */
  7609. break;
  7610. default:
  7611. RTW_INFO("[warning] rf_type %d is not expected\n", rf_type);
  7612. break;
  7613. }
  7614. }
  7615. }
  7616. }
  7617. static void rtw_cfg80211_init_ht_capab(_adapter *padapter
  7618. , struct ieee80211_sta_ht_cap *ht_cap, BAND_TYPE band, u8 rf_type)
  7619. {
  7620. struct registry_priv *regsty = &padapter->registrypriv;
  7621. struct hal_spec_t *hal_spec = GET_HAL_SPEC(padapter);
  7622. u8 rx_nss = 0;
  7623. if (!regsty->ht_enable || !is_supported_ht(regsty->wireless_mode))
  7624. return;
  7625. ht_cap->ht_supported = 1;
  7626. ht_cap->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
  7627. IEEE80211_HT_CAP_SGI_40 | IEEE80211_HT_CAP_SGI_20 |
  7628. IEEE80211_HT_CAP_DSSSCCK40 | IEEE80211_HT_CAP_MAX_AMSDU;
  7629. rtw_cfg80211_init_ht_capab_ex(padapter, ht_cap, band, rf_type);
  7630. /*
  7631. *Maximum length of AMPDU that the STA can receive.
  7632. *Length = 2 ^ (13 + max_ampdu_length_exp) - 1 (octets)
  7633. */
  7634. ht_cap->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
  7635. /*Minimum MPDU start spacing , */
  7636. ht_cap->ampdu_density = IEEE80211_HT_MPDU_DENSITY_16;
  7637. ht_cap->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
  7638. rx_nss = rtw_min(rf_type_to_rf_rx_cnt(rf_type), hal_spec->rx_nss_num);
  7639. switch (rx_nss) {
  7640. case 1:
  7641. ht_cap->mcs.rx_mask[0] = 0xFF;
  7642. break;
  7643. case 2:
  7644. ht_cap->mcs.rx_mask[0] = 0xFF;
  7645. ht_cap->mcs.rx_mask[1] = 0xFF;
  7646. break;
  7647. case 3:
  7648. ht_cap->mcs.rx_mask[0] = 0xFF;
  7649. ht_cap->mcs.rx_mask[1] = 0xFF;
  7650. ht_cap->mcs.rx_mask[2] = 0xFF;
  7651. break;
  7652. case 4:
  7653. ht_cap->mcs.rx_mask[0] = 0xFF;
  7654. ht_cap->mcs.rx_mask[1] = 0xFF;
  7655. ht_cap->mcs.rx_mask[2] = 0xFF;
  7656. ht_cap->mcs.rx_mask[3] = 0xFF;
  7657. break;
  7658. default:
  7659. rtw_warn_on(1);
  7660. RTW_INFO("%s, error rf_type=%d\n", __func__, rf_type);
  7661. };
  7662. ht_cap->mcs.rx_highest = cpu_to_le16(
  7663. rtw_mcs_rate(rf_type
  7664. , hal_is_bw_support(padapter, CHANNEL_WIDTH_40)
  7665. , hal_is_bw_support(padapter, CHANNEL_WIDTH_40) ? ht_cap->cap & IEEE80211_HT_CAP_SGI_40 : ht_cap->cap & IEEE80211_HT_CAP_SGI_20
  7666. , ht_cap->mcs.rx_mask) / 10);
  7667. }
  7668. #endif /* CONFIG_80211N_HT */
  7669. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  7670. static void rtw_cfg80211_init_vht_capab(_adapter *padapter
  7671. , struct ieee80211_sta_vht_cap *sta_vht_cap, BAND_TYPE band, u8 rf_type)
  7672. {
  7673. struct registry_priv *regsty = &padapter->registrypriv;
  7674. u8 vht_cap_ie[2 + 12] = {0};
  7675. if (!REGSTY_IS_11AC_ENABLE(regsty) || !is_supported_vht(regsty->wireless_mode))
  7676. return;
  7677. rtw_vht_use_default_setting(padapter);
  7678. rtw_build_vht_cap_ie(padapter, vht_cap_ie);
  7679. sta_vht_cap->vht_supported = 1;
  7680. _rtw_memcpy(&sta_vht_cap->cap, vht_cap_ie + 2, 4);
  7681. _rtw_memcpy(&sta_vht_cap->vht_mcs, vht_cap_ie + 2 + 4, 8);
  7682. }
  7683. #endif /* defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) */
  7684. void rtw_cfg80211_init_wdev_data(_adapter *padapter)
  7685. {
  7686. #ifdef CONFIG_CONCURRENT_MODE
  7687. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  7688. ATOMIC_SET(&pwdev_priv->switch_ch_to, 1);
  7689. #endif
  7690. }
  7691. void rtw_cfg80211_init_wiphy(_adapter *padapter)
  7692. {
  7693. u8 rf_type;
  7694. struct ieee80211_supported_band *band;
  7695. struct wireless_dev *pwdev = padapter->rtw_wdev;
  7696. struct wiphy *wiphy = pwdev->wiphy;
  7697. rtw_hal_get_hwreg(padapter, HW_VAR_RF_TYPE, (u8 *)(&rf_type));
  7698. RTW_INFO("%s:rf_type=%d\n", __func__, rf_type);
  7699. if (IsSupported24G(padapter->registrypriv.wireless_mode)) {
  7700. band = wiphy->bands[NL80211_BAND_2GHZ];
  7701. if (band) {
  7702. #if defined(CONFIG_80211N_HT)
  7703. rtw_cfg80211_init_ht_capab(padapter, &band->ht_cap, BAND_ON_2_4G, rf_type);
  7704. #endif
  7705. }
  7706. }
  7707. #ifdef CONFIG_IEEE80211_BAND_5GHZ
  7708. if (is_supported_5g(padapter->registrypriv.wireless_mode)) {
  7709. band = wiphy->bands[NL80211_BAND_5GHZ];
  7710. if (band) {
  7711. #if defined(CONFIG_80211N_HT)
  7712. rtw_cfg80211_init_ht_capab(padapter, &band->ht_cap, BAND_ON_5G, rf_type);
  7713. #endif
  7714. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  7715. rtw_cfg80211_init_vht_capab(padapter, &band->vht_cap, BAND_ON_5G, rf_type);
  7716. #endif
  7717. }
  7718. }
  7719. #endif
  7720. /* copy mac_addr to wiphy */
  7721. _rtw_memcpy(wiphy->perm_addr, adapter_mac_addr(padapter), ETH_ALEN);
  7722. }
  7723. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7724. struct ieee80211_iface_limit rtw_limits[] = {
  7725. {
  7726. .max = 2,
  7727. .types = BIT(NL80211_IFTYPE_STATION)
  7728. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  7729. | BIT(NL80211_IFTYPE_P2P_CLIENT)
  7730. #endif
  7731. },
  7732. #ifdef CONFIG_AP_MODE
  7733. {
  7734. .max = 1,
  7735. .types = BIT(NL80211_IFTYPE_AP)
  7736. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  7737. | BIT(NL80211_IFTYPE_P2P_GO)
  7738. #endif
  7739. },
  7740. #endif
  7741. #if defined(RTW_DEDICATED_P2P_DEVICE)
  7742. {
  7743. .max = 1,
  7744. .types = BIT(NL80211_IFTYPE_P2P_DEVICE)
  7745. },
  7746. #endif
  7747. #if defined(CONFIG_RTW_MESH)
  7748. {
  7749. .max = 1,
  7750. .types = BIT(NL80211_IFTYPE_MESH_POINT)
  7751. },
  7752. #endif
  7753. };
  7754. struct ieee80211_iface_combination rtw_combinations[] = {
  7755. {
  7756. .limits = rtw_limits,
  7757. .n_limits = ARRAY_SIZE(rtw_limits),
  7758. #if defined(RTW_DEDICATED_P2P_DEVICE)
  7759. .max_interfaces = 3,
  7760. #else
  7761. .max_interfaces = 2,
  7762. #endif
  7763. .num_different_channels = 1,
  7764. },
  7765. };
  7766. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0)) */
  7767. static void rtw_cfg80211_preinit_wiphy(_adapter *adapter, struct wiphy *wiphy)
  7768. {
  7769. struct dvobj_priv *dvobj = adapter_to_dvobj(adapter);
  7770. struct registry_priv *regsty = dvobj_to_regsty(dvobj);
  7771. wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
  7772. wiphy->max_scan_ssids = RTW_SSID_SCAN_AMOUNT;
  7773. wiphy->max_scan_ie_len = RTW_SCAN_IE_LEN_MAX;
  7774. wiphy->max_num_pmkids = RTW_MAX_NUM_PMKIDS;
  7775. #if CONFIG_RTW_MACADDR_ACL && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  7776. wiphy->max_acl_mac_addrs = NUM_ACL;
  7777. #endif
  7778. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)) || defined(COMPAT_KERNEL_RELEASE)
  7779. wiphy->max_remain_on_channel_duration = RTW_MAX_REMAIN_ON_CHANNEL_DURATION;
  7780. #endif
  7781. wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
  7782. | BIT(NL80211_IFTYPE_ADHOC)
  7783. #ifdef CONFIG_AP_MODE
  7784. | BIT(NL80211_IFTYPE_AP)
  7785. #ifdef CONFIG_WIFI_MONITOR
  7786. | BIT(NL80211_IFTYPE_MONITOR)
  7787. #endif
  7788. #endif
  7789. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  7790. | BIT(NL80211_IFTYPE_P2P_CLIENT)
  7791. | BIT(NL80211_IFTYPE_P2P_GO)
  7792. #if defined(RTW_DEDICATED_P2P_DEVICE)
  7793. | BIT(NL80211_IFTYPE_P2P_DEVICE)
  7794. #endif
  7795. #endif
  7796. #ifdef CONFIG_RTW_MESH
  7797. | BIT(NL80211_IFTYPE_MESH_POINT) /* 2.6.26 */
  7798. #endif
  7799. ;
  7800. #if defined(CONFIG_ANDROID) && !defined(RTW_SINGLE_WIPHY)
  7801. if (is_primary_adapter(adapter)) {
  7802. wiphy->interface_modes &= ~(BIT(NL80211_IFTYPE_P2P_GO) | BIT(NL80211_IFTYPE_P2P_CLIENT));
  7803. RTW_INFO("%s primary- don't set p2p capability\n", __func__);
  7804. }
  7805. #endif
  7806. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  7807. #ifdef CONFIG_AP_MODE
  7808. wiphy->mgmt_stypes = rtw_cfg80211_default_mgmt_stypes;
  7809. #endif /* CONFIG_AP_MODE */
  7810. #endif
  7811. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7812. #ifdef CONFIG_WIFI_MONITOR
  7813. wiphy->software_iftypes |= BIT(NL80211_IFTYPE_MONITOR);
  7814. #endif
  7815. #endif
  7816. #if defined(RTW_SINGLE_WIPHY) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7817. wiphy->iface_combinations = rtw_combinations;
  7818. wiphy->n_iface_combinations = ARRAY_SIZE(rtw_combinations);
  7819. #endif
  7820. wiphy->cipher_suites = rtw_cipher_suites;
  7821. wiphy->n_cipher_suites = ARRAY_SIZE(rtw_cipher_suites);
  7822. if (IsSupported24G(adapter->registrypriv.wireless_mode))
  7823. wiphy->bands[NL80211_BAND_2GHZ] = rtw_spt_band_alloc(BAND_ON_2_4G);
  7824. #ifdef CONFIG_IEEE80211_BAND_5GHZ
  7825. if (is_supported_5g(adapter->registrypriv.wireless_mode))
  7826. wiphy->bands[NL80211_BAND_5GHZ] = rtw_spt_band_alloc(BAND_ON_5G);
  7827. #endif
  7828. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38) && LINUX_VERSION_CODE < KERNEL_VERSION(3, 0, 0))
  7829. wiphy->flags |= WIPHY_FLAG_SUPPORTS_SEPARATE_DEFAULT_KEYS;
  7830. #endif
  7831. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  7832. wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
  7833. wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME;
  7834. /* remove WIPHY_FLAG_OFFCHAN_TX, because we not support this feature */
  7835. /* wiphy->flags |= WIPHY_FLAG_OFFCHAN_TX | WIPHY_FLAG_HAVE_AP_SME; */
  7836. #endif
  7837. #if defined(CONFIG_PM) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0) && \
  7838. LINUX_VERSION_CODE < KERNEL_VERSION(4, 12, 0))
  7839. wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
  7840. #ifdef CONFIG_PNO_SUPPORT
  7841. wiphy->max_sched_scan_ssids = MAX_PNO_LIST_COUNT;
  7842. #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0)
  7843. wiphy->max_match_sets = MAX_PNO_LIST_COUNT;
  7844. #endif
  7845. #endif
  7846. #endif
  7847. #if defined(CONFIG_PM) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7848. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 11, 0))
  7849. wiphy->wowlan = wowlan_stub;
  7850. #else
  7851. wiphy->wowlan = &wowlan_stub;
  7852. #endif
  7853. #endif
  7854. #if defined(CONFIG_TDLS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  7855. wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS;
  7856. #ifndef CONFIG_TDLS_DRIVER_SETUP
  7857. wiphy->flags |= WIPHY_FLAG_TDLS_EXTERNAL_SETUP; /* Driver handles key exchange */
  7858. wiphy->flags |= NL80211_ATTR_HT_CAPABILITY;
  7859. #endif /* CONFIG_TDLS_DRIVER_SETUP */
  7860. #endif /* CONFIG_TDLS */
  7861. if (regsty->power_mgnt != PS_MODE_ACTIVE)
  7862. wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
  7863. else
  7864. wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
  7865. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  7866. /* wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM; */
  7867. #endif
  7868. #ifdef CONFIG_RTW_MESH
  7869. wiphy->flags |= 0
  7870. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7871. | WIPHY_FLAG_IBSS_RSN
  7872. #endif
  7873. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7874. | WIPHY_FLAG_MESH_AUTH
  7875. #endif
  7876. ;
  7877. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  7878. wiphy->features |= 0
  7879. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  7880. | NL80211_FEATURE_USERSPACE_MPM
  7881. #endif
  7882. ;
  7883. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0)) */
  7884. #endif /* CONFIG_RTW_MESH */
  7885. }
  7886. #ifdef CONFIG_RFKILL_POLL
  7887. void rtw_cfg80211_init_rfkill(struct wiphy *wiphy)
  7888. {
  7889. wiphy_rfkill_set_hw_state(wiphy, 0);
  7890. wiphy_rfkill_start_polling(wiphy);
  7891. }
  7892. void rtw_cfg80211_deinit_rfkill(struct wiphy *wiphy)
  7893. {
  7894. wiphy_rfkill_stop_polling(wiphy);
  7895. }
  7896. static void cfg80211_rtw_rfkill_poll(struct wiphy *wiphy)
  7897. {
  7898. _adapter *padapter = NULL;
  7899. bool blocked = _FALSE;
  7900. u8 valid = 0;
  7901. padapter = wiphy_to_adapter(wiphy);
  7902. if (adapter_to_dvobj(padapter)->processing_dev_remove == _TRUE) {
  7903. /*RTW_INFO("cfg80211_rtw_rfkill_poll: device is removed!\n");*/
  7904. return;
  7905. }
  7906. blocked = rtw_hal_rfkill_poll(padapter, &valid);
  7907. /*RTW_INFO("cfg80211_rtw_rfkill_poll: valid=%d, blocked=%d\n",
  7908. valid, blocked);*/
  7909. if (valid)
  7910. wiphy_rfkill_set_hw_state(wiphy, blocked);
  7911. }
  7912. #endif
  7913. #if defined(CONFIG_RTW_HOSTAPD_ACS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33))
  7914. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) && (LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0))
  7915. #define SURVEY_INFO_TIME SURVEY_INFO_CHANNEL_TIME
  7916. #define SURVEY_INFO_TIME_BUSY SURVEY_INFO_CHANNEL_TIME_BUSY
  7917. #define SURVEY_INFO_TIME_EXT_BUSY SURVEY_INFO_CHANNEL_TIME_EXT_BUSY
  7918. #define SURVEY_INFO_TIME_RX SURVEY_INFO_CHANNEL_TIME_RX
  7919. #define SURVEY_INFO_TIME_TX SURVEY_INFO_CHANNEL_TIME_TX
  7920. #endif
  7921. #ifdef CONFIG_FIND_BEST_CHANNEL
  7922. static void rtw_cfg80211_set_survey_info_with_find_best_channel(struct wiphy *wiphy
  7923. , struct net_device *netdev, int idx, struct survey_info *info)
  7924. {
  7925. _adapter *adapter = (_adapter *)rtw_netdev_priv(netdev);
  7926. struct rf_ctl_t *rfctl = adapter_to_rfctl(adapter);
  7927. RT_CHANNEL_INFO *ch_set = rfctl->channel_set;
  7928. u8 ch_num = rfctl->max_chan_nums;
  7929. u32 total_rx_cnt = 0;
  7930. int i;
  7931. s8 noise = -50; /*channel noise in dBm. This and all following fields are optional */
  7932. u64 time = 100; /*amount of time in ms the radio was turn on (on the channel)*/
  7933. u64 time_busy = 0; /*amount of time the primary channel was sensed busy*/
  7934. info->filled = SURVEY_INFO_NOISE_DBM
  7935. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7936. | SURVEY_INFO_TIME | SURVEY_INFO_TIME_BUSY
  7937. #endif
  7938. ;
  7939. for (i = 0; i < ch_num; i++)
  7940. total_rx_cnt += ch_set[i].rx_count;
  7941. time_busy = ch_set[idx].rx_count * time / total_rx_cnt;
  7942. noise += ch_set[idx].rx_count * 50 / total_rx_cnt;
  7943. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7944. #if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0))
  7945. info->channel_time = time;
  7946. info->channel_time_busy = time_busy;
  7947. #else
  7948. info->time = time;
  7949. info->time_busy = time_busy;
  7950. #endif
  7951. #endif
  7952. info->noise = noise;
  7953. /* reset if final channel is got */
  7954. if (idx == ch_num - 1) {
  7955. for (i = 0; i < ch_num; i++)
  7956. ch_set[i].rx_count = 0;
  7957. }
  7958. }
  7959. #endif /* CONFIG_FIND_BEST_CHANNEL */
  7960. #if defined(CONFIG_RTW_ACS) && defined(CONFIG_BACKGROUND_NOISE_MONITOR)
  7961. static void rtw_cfg80211_set_survey_info_with_clm(PADAPTER padapter, int idx, struct survey_info *pinfo)
  7962. {
  7963. s8 noise = -50; /*channel noise in dBm. This and all following fields are optional */
  7964. u64 time = SURVEY_TO; /*amount of time in ms the radio was turn on (on the channel)*/
  7965. u64 time_busy = 0; /*amount of time the primary channel was sensed busy*/
  7966. u8 chan = (u8)idx;
  7967. if ((idx < 0) || (pinfo == NULL))
  7968. return;
  7969. pinfo->filled = SURVEY_INFO_NOISE_DBM
  7970. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7971. | SURVEY_INFO_TIME | SURVEY_INFO_TIME_BUSY
  7972. #endif
  7973. ;
  7974. time_busy = rtw_acs_get_clm_ratio_by_ch_idx(padapter, chan);
  7975. noise = rtw_noise_query_by_chan_idx(padapter, chan);
  7976. /* RTW_INFO("%s: ch-idx:%d time=%llu(ms), time_busy=%llu(ms), noise=%d(dbm)\n", __func__, idx, time, time_busy, noise); */
  7977. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7978. #if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0))
  7979. pinfo->channel_time = time;
  7980. pinfo->channel_time_busy = time_busy;
  7981. #else
  7982. pinfo->time = time;
  7983. pinfo->time_busy = time_busy;
  7984. #endif
  7985. #endif
  7986. pinfo->noise = noise;
  7987. }
  7988. #endif
  7989. int rtw_hostapd_acs_dump_survey(struct wiphy *wiphy, struct net_device *netdev, int idx, struct survey_info *info)
  7990. {
  7991. PADAPTER padapter = (_adapter *)rtw_netdev_priv(netdev);
  7992. struct rf_ctl_t *rfctl = adapter_to_rfctl(padapter);
  7993. RT_CHANNEL_INFO *pch_set = rfctl->channel_set;
  7994. u8 max_chan_nums = rfctl->max_chan_nums;
  7995. u32 freq = 0;
  7996. u8 ret = 0;
  7997. u16 channel = 0;
  7998. if (!netdev || !info) {
  7999. RTW_INFO("%s: invial parameters.\n", __func__);
  8000. return -EINVAL;
  8001. }
  8002. _rtw_memset(info, 0, sizeof(struct survey_info));
  8003. if (padapter->bup == _FALSE) {
  8004. RTW_INFO("%s: net device is down.\n", __func__);
  8005. return -EIO;
  8006. }
  8007. if (idx >= max_chan_nums)
  8008. return -ENOENT;
  8009. channel = pch_set[idx].ChannelNum;
  8010. freq = rtw_ch2freq(channel);
  8011. info->channel = ieee80211_get_channel(wiphy, freq);
  8012. /* RTW_INFO("%s: channel %d, freq %d\n", __func__, channel, freq); */
  8013. if (!info->channel)
  8014. return -EINVAL;
  8015. if (info->channel->flags == IEEE80211_CHAN_DISABLED)
  8016. return ret;
  8017. #ifdef CONFIG_FIND_BEST_CHANNEL
  8018. rtw_cfg80211_set_survey_info_with_find_best_channel(wiphy, netdev, idx, info);
  8019. #elif defined(CONFIG_RTW_ACS) && defined(CONFIG_BACKGROUND_NOISE_MONITOR)
  8020. rtw_cfg80211_set_survey_info_with_clm(padapter, idx, info);
  8021. #else
  8022. RTW_ERR("%s: unknown acs operation!\n", __func__);
  8023. #endif
  8024. return ret;
  8025. }
  8026. #endif /* defined(CONFIG_RTW_HOSTAPD_ACS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33)) */
  8027. static struct cfg80211_ops rtw_cfg80211_ops = {
  8028. .change_virtual_intf = cfg80211_rtw_change_iface,
  8029. .add_key = cfg80211_rtw_add_key,
  8030. .get_key = cfg80211_rtw_get_key,
  8031. .del_key = cfg80211_rtw_del_key,
  8032. .set_default_key = cfg80211_rtw_set_default_key,
  8033. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 30))
  8034. .set_default_mgmt_key = cfg80211_rtw_set_default_mgmt_key,
  8035. #endif
  8036. #if defined(CONFIG_GTK_OL) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0))
  8037. .set_rekey_data = cfg80211_rtw_set_rekey_data,
  8038. #endif /*CONFIG_GTK_OL*/
  8039. .get_station = cfg80211_rtw_get_station,
  8040. .scan = cfg80211_rtw_scan,
  8041. .set_wiphy_params = cfg80211_rtw_set_wiphy_params,
  8042. .connect = cfg80211_rtw_connect,
  8043. .disconnect = cfg80211_rtw_disconnect,
  8044. .join_ibss = cfg80211_rtw_join_ibss,
  8045. .leave_ibss = cfg80211_rtw_leave_ibss,
  8046. .set_tx_power = cfg80211_rtw_set_txpower,
  8047. .get_tx_power = cfg80211_rtw_get_txpower,
  8048. .set_power_mgmt = cfg80211_rtw_set_power_mgmt,
  8049. .set_pmksa = cfg80211_rtw_set_pmksa,
  8050. .del_pmksa = cfg80211_rtw_del_pmksa,
  8051. .flush_pmksa = cfg80211_rtw_flush_pmksa,
  8052. #ifdef CONFIG_AP_MODE
  8053. .add_virtual_intf = cfg80211_rtw_add_virtual_intf,
  8054. .del_virtual_intf = cfg80211_rtw_del_virtual_intf,
  8055. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)) && !defined(COMPAT_KERNEL_RELEASE)
  8056. .add_beacon = cfg80211_rtw_add_beacon,
  8057. .set_beacon = cfg80211_rtw_set_beacon,
  8058. .del_beacon = cfg80211_rtw_del_beacon,
  8059. #else
  8060. .start_ap = cfg80211_rtw_start_ap,
  8061. .change_beacon = cfg80211_rtw_change_beacon,
  8062. .stop_ap = cfg80211_rtw_stop_ap,
  8063. #endif
  8064. #if CONFIG_RTW_MACADDR_ACL && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  8065. .set_mac_acl = cfg80211_rtw_set_mac_acl,
  8066. #endif
  8067. .add_station = cfg80211_rtw_add_station,
  8068. .del_station = cfg80211_rtw_del_station,
  8069. .change_station = cfg80211_rtw_change_station,
  8070. .dump_station = cfg80211_rtw_dump_station,
  8071. .change_bss = cfg80211_rtw_change_bss,
  8072. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29))
  8073. .set_txq_params = cfg80211_rtw_set_txq_params,
  8074. #endif
  8075. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 6, 0))
  8076. .set_channel = cfg80211_rtw_set_channel,
  8077. #endif
  8078. /* .auth = cfg80211_rtw_auth, */
  8079. /* .assoc = cfg80211_rtw_assoc, */
  8080. #endif /* CONFIG_AP_MODE */
  8081. #if defined(CONFIG_RTW_MESH) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38))
  8082. .get_mesh_config = cfg80211_rtw_get_mesh_config,
  8083. .update_mesh_config = cfg80211_rtw_update_mesh_config,
  8084. .join_mesh = cfg80211_rtw_join_mesh,
  8085. .leave_mesh = cfg80211_rtw_leave_mesh,
  8086. .add_mpath = cfg80211_rtw_add_mpath,
  8087. .del_mpath = cfg80211_rtw_del_mpath,
  8088. .change_mpath = cfg80211_rtw_change_mpath,
  8089. .get_mpath = cfg80211_rtw_get_mpath,
  8090. .dump_mpath = cfg80211_rtw_dump_mpath,
  8091. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0))
  8092. .get_mpp = cfg80211_rtw_get_mpp,
  8093. .dump_mpp = cfg80211_rtw_dump_mpp,
  8094. #endif
  8095. #endif
  8096. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  8097. .set_monitor_channel = cfg80211_rtw_set_monitor_channel,
  8098. #endif
  8099. #ifdef CONFIG_P2P
  8100. .remain_on_channel = cfg80211_rtw_remain_on_channel,
  8101. .cancel_remain_on_channel = cfg80211_rtw_cancel_remain_on_channel,
  8102. #if defined(RTW_DEDICATED_P2P_DEVICE)
  8103. .start_p2p_device = cfg80211_rtw_start_p2p_device,
  8104. .stop_p2p_device = cfg80211_rtw_stop_p2p_device,
  8105. #endif
  8106. #endif /* CONFIG_P2P */
  8107. #ifdef CONFIG_RTW_80211R
  8108. .update_ft_ies = cfg80211_rtw_update_ft_ies,
  8109. #endif
  8110. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  8111. .mgmt_tx = cfg80211_rtw_mgmt_tx,
  8112. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 8, 0))
  8113. .update_mgmt_frame_registrations = cfg80211_rtw_mgmt_frame_register,
  8114. #else
  8115. .mgmt_frame_register = cfg80211_rtw_mgmt_frame_register,
  8116. #endif
  8117. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 34) && LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35))
  8118. .action = cfg80211_rtw_mgmt_tx,
  8119. #endif
  8120. #if defined(CONFIG_TDLS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  8121. .tdls_mgmt = cfg80211_rtw_tdls_mgmt,
  8122. .tdls_oper = cfg80211_rtw_tdls_oper,
  8123. #endif /* CONFIG_TDLS */
  8124. #if defined(CONFIG_PNO_SUPPORT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  8125. .sched_scan_start = cfg80211_rtw_sched_scan_start,
  8126. .sched_scan_stop = cfg80211_rtw_sched_scan_stop,
  8127. .suspend = cfg80211_rtw_suspend,
  8128. .resume = cfg80211_rtw_resume,
  8129. #endif /* CONFIG_PNO_SUPPORT */
  8130. #ifdef CONFIG_RFKILL_POLL
  8131. .rfkill_poll = cfg80211_rtw_rfkill_poll,
  8132. #endif
  8133. #if defined(CONFIG_RTW_HOSTAPD_ACS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33))
  8134. .dump_survey = rtw_hostapd_acs_dump_survey,
  8135. #endif
  8136. };
  8137. struct wiphy *rtw_wiphy_alloc(_adapter *padapter, struct device *dev)
  8138. {
  8139. struct wiphy *wiphy;
  8140. struct rtw_wiphy_data *wiphy_data;
  8141. /* wiphy */
  8142. wiphy = wiphy_new(&rtw_cfg80211_ops, sizeof(struct rtw_wiphy_data));
  8143. if (!wiphy) {
  8144. RTW_INFO("Couldn't allocate wiphy device\n");
  8145. goto exit;
  8146. }
  8147. set_wiphy_dev(wiphy, dev);
  8148. /* wiphy_data */
  8149. wiphy_data = rtw_wiphy_priv(wiphy);
  8150. wiphy_data->dvobj = adapter_to_dvobj(padapter);
  8151. #ifndef RTW_SINGLE_WIPHY
  8152. wiphy_data->adapter = padapter;
  8153. #endif
  8154. rtw_cfg80211_preinit_wiphy(padapter, wiphy);
  8155. RTW_INFO(FUNC_WIPHY_FMT"\n", FUNC_WIPHY_ARG(wiphy));
  8156. exit:
  8157. return wiphy;
  8158. }
  8159. void rtw_wiphy_free(struct wiphy *wiphy)
  8160. {
  8161. if (!wiphy)
  8162. return;
  8163. RTW_INFO(FUNC_WIPHY_FMT"\n", FUNC_WIPHY_ARG(wiphy));
  8164. if (wiphy->bands[NL80211_BAND_2GHZ]) {
  8165. rtw_spt_band_free(wiphy->bands[NL80211_BAND_2GHZ]);
  8166. wiphy->bands[NL80211_BAND_2GHZ] = NULL;
  8167. }
  8168. if (wiphy->bands[NL80211_BAND_5GHZ]) {
  8169. rtw_spt_band_free(wiphy->bands[NL80211_BAND_5GHZ]);
  8170. wiphy->bands[NL80211_BAND_5GHZ] = NULL;
  8171. }
  8172. wiphy_free(wiphy);
  8173. }
  8174. int rtw_wiphy_register(struct wiphy *wiphy)
  8175. {
  8176. RTW_INFO(FUNC_WIPHY_FMT"\n", FUNC_WIPHY_ARG(wiphy));
  8177. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0)) || defined(RTW_VENDOR_EXT_SUPPORT)
  8178. rtw_cfgvendor_attach(wiphy);
  8179. #endif
  8180. rtw_regd_init(wiphy);
  8181. return wiphy_register(wiphy);
  8182. }
  8183. void rtw_wiphy_unregister(struct wiphy *wiphy)
  8184. {
  8185. RTW_INFO(FUNC_WIPHY_FMT"\n", FUNC_WIPHY_ARG(wiphy));
  8186. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0)) || defined(RTW_VENDOR_EXT_SUPPORT)
  8187. rtw_cfgvendor_detach(wiphy);
  8188. #endif
  8189. #if defined(RTW_DEDICATED_P2P_DEVICE)
  8190. rtw_pd_iface_free(wiphy);
  8191. #endif
  8192. return wiphy_unregister(wiphy);
  8193. }
  8194. int rtw_wdev_alloc(_adapter *padapter, struct wiphy *wiphy)
  8195. {
  8196. int ret = 0;
  8197. struct net_device *pnetdev = padapter->pnetdev;
  8198. struct wireless_dev *wdev;
  8199. struct rtw_wdev_priv *pwdev_priv;
  8200. RTW_INFO("%s(padapter=%p)\n", __func__, padapter);
  8201. /* wdev */
  8202. wdev = (struct wireless_dev *)rtw_zmalloc(sizeof(struct wireless_dev));
  8203. if (!wdev) {
  8204. RTW_INFO("Couldn't allocate wireless device\n");
  8205. ret = -ENOMEM;
  8206. goto exit;
  8207. }
  8208. wdev->wiphy = wiphy;
  8209. wdev->netdev = pnetdev;
  8210. wdev->iftype = NL80211_IFTYPE_STATION;
  8211. padapter->rtw_wdev = wdev;
  8212. pnetdev->ieee80211_ptr = wdev;
  8213. /* init pwdev_priv */
  8214. pwdev_priv = adapter_wdev_data(padapter);
  8215. pwdev_priv->rtw_wdev = wdev;
  8216. pwdev_priv->pmon_ndev = NULL;
  8217. pwdev_priv->ifname_mon[0] = '\0';
  8218. pwdev_priv->padapter = padapter;
  8219. pwdev_priv->scan_request = NULL;
  8220. _rtw_spinlock_init(&pwdev_priv->scan_req_lock);
  8221. pwdev_priv->connect_req = NULL;
  8222. _rtw_spinlock_init(&pwdev_priv->connect_req_lock);
  8223. pwdev_priv->p2p_enabled = _FALSE;
  8224. pwdev_priv->probe_resp_ie_update_time = rtw_get_current_time();
  8225. pwdev_priv->provdisc_req_issued = _FALSE;
  8226. rtw_wdev_invit_info_init(&pwdev_priv->invit_info);
  8227. rtw_wdev_nego_info_init(&pwdev_priv->nego_info);
  8228. pwdev_priv->bandroid_scan = _FALSE;
  8229. if (padapter->registrypriv.power_mgnt != PS_MODE_ACTIVE)
  8230. pwdev_priv->power_mgmt = _TRUE;
  8231. else
  8232. pwdev_priv->power_mgmt = _FALSE;
  8233. _rtw_mutex_init(&pwdev_priv->roch_mutex);
  8234. #ifdef CONFIG_CONCURRENT_MODE
  8235. ATOMIC_SET(&pwdev_priv->switch_ch_to, 1);
  8236. #endif
  8237. #ifdef CONFIG_RTW_CFGVEDNOR_RSSIMONITOR
  8238. pwdev_priv->rssi_monitor_enable = 0;
  8239. pwdev_priv->rssi_monitor_max = 0;
  8240. pwdev_priv->rssi_monitor_min = 0;
  8241. #endif
  8242. exit:
  8243. return ret;
  8244. }
  8245. void rtw_wdev_free(struct wireless_dev *wdev)
  8246. {
  8247. if (!wdev)
  8248. return;
  8249. RTW_INFO("%s(wdev=%p)\n", __func__, wdev);
  8250. if (wdev_to_ndev(wdev)) {
  8251. _adapter *adapter = (_adapter *)rtw_netdev_priv(wdev_to_ndev(wdev));
  8252. struct rtw_wdev_priv *wdev_priv = adapter_wdev_data(adapter);
  8253. _irqL irqL;
  8254. _rtw_spinlock_free(&wdev_priv->scan_req_lock);
  8255. _enter_critical_bh(&wdev_priv->connect_req_lock, &irqL);
  8256. rtw_wdev_free_connect_req(wdev_priv);
  8257. _exit_critical_bh(&wdev_priv->connect_req_lock, &irqL);
  8258. _rtw_spinlock_free(&wdev_priv->connect_req_lock);
  8259. _rtw_mutex_free(&wdev_priv->roch_mutex);
  8260. }
  8261. rtw_mfree((u8 *)wdev, sizeof(struct wireless_dev));
  8262. }
  8263. void rtw_wdev_unregister(struct wireless_dev *wdev)
  8264. {
  8265. struct net_device *ndev;
  8266. _adapter *adapter;
  8267. struct rtw_wdev_priv *pwdev_priv;
  8268. if (!wdev)
  8269. return;
  8270. RTW_INFO("%s(wdev=%p)\n", __func__, wdev);
  8271. ndev = wdev_to_ndev(wdev);
  8272. if (!ndev)
  8273. return;
  8274. adapter = (_adapter *)rtw_netdev_priv(ndev);
  8275. pwdev_priv = adapter_wdev_data(adapter);
  8276. rtw_cfg80211_indicate_scan_done(adapter, _TRUE);
  8277. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0)) || defined(COMPAT_KERNEL_RELEASE)
  8278. #if LINUX_VERSION_CODE < KERNEL_VERSION(5, 19, 2)
  8279. if (wdev->current_bss) {
  8280. #else
  8281. if (wdev->connected) {
  8282. #endif
  8283. RTW_INFO(FUNC_ADPT_FMT" clear current_bss by cfg80211_disconnected\n", FUNC_ADPT_ARG(adapter));
  8284. rtw_cfg80211_indicate_disconnect(adapter, 0, 1);
  8285. }
  8286. #endif
  8287. if (pwdev_priv->pmon_ndev) {
  8288. RTW_INFO("%s, unregister monitor interface\n", __func__);
  8289. unregister_netdev(pwdev_priv->pmon_ndev);
  8290. }
  8291. }
  8292. int rtw_cfg80211_ndev_res_alloc(_adapter *adapter)
  8293. {
  8294. int ret = _FAIL;
  8295. #if !defined(RTW_SINGLE_WIPHY)
  8296. struct wiphy *wiphy;
  8297. struct device *dev = dvobj_to_dev(adapter_to_dvobj(adapter));
  8298. wiphy = rtw_wiphy_alloc(adapter, dev);
  8299. if (wiphy == NULL)
  8300. goto exit;
  8301. adapter->wiphy = wiphy;
  8302. #endif
  8303. if (rtw_wdev_alloc(adapter, adapter_to_wiphy(adapter)) == 0)
  8304. ret = _SUCCESS;
  8305. #if !defined(RTW_SINGLE_WIPHY)
  8306. if (ret != _SUCCESS) {
  8307. rtw_wiphy_free(wiphy);
  8308. adapter->wiphy = NULL;
  8309. }
  8310. #endif
  8311. exit:
  8312. return ret;
  8313. }
  8314. void rtw_cfg80211_ndev_res_free(_adapter *adapter)
  8315. {
  8316. rtw_wdev_free(adapter->rtw_wdev);
  8317. adapter->rtw_wdev = NULL;
  8318. #if !defined(RTW_SINGLE_WIPHY)
  8319. rtw_wiphy_free(adapter_to_wiphy(adapter));
  8320. adapter->wiphy = NULL;
  8321. #endif
  8322. }
  8323. int rtw_cfg80211_ndev_res_register(_adapter *adapter)
  8324. {
  8325. int ret = _FAIL;
  8326. #if !defined(RTW_SINGLE_WIPHY)
  8327. if (rtw_wiphy_register(adapter_to_wiphy(adapter)) < 0) {
  8328. RTW_INFO("%s rtw_wiphy_register fail for if%d\n", __func__, (adapter->iface_id + 1));
  8329. goto exit;
  8330. }
  8331. #ifdef CONFIG_RFKILL_POLL
  8332. rtw_cfg80211_init_rfkill(adapter_to_wiphy(adapter));
  8333. #endif
  8334. #endif
  8335. ret = _SUCCESS;
  8336. exit:
  8337. return ret;
  8338. }
  8339. void rtw_cfg80211_ndev_res_unregister(_adapter *adapter)
  8340. {
  8341. rtw_wdev_unregister(adapter->rtw_wdev);
  8342. }
  8343. int rtw_cfg80211_dev_res_alloc(struct dvobj_priv *dvobj)
  8344. {
  8345. int ret = _FAIL;
  8346. #if defined(RTW_SINGLE_WIPHY)
  8347. struct wiphy *wiphy;
  8348. struct device *dev = dvobj_to_dev(dvobj);
  8349. wiphy = rtw_wiphy_alloc(dvobj_get_primary_adapter(dvobj), dev);
  8350. if (wiphy == NULL)
  8351. goto exit;
  8352. dvobj->wiphy = wiphy;
  8353. #endif
  8354. ret = _SUCCESS;
  8355. exit:
  8356. return ret;
  8357. }
  8358. void rtw_cfg80211_dev_res_free(struct dvobj_priv *dvobj)
  8359. {
  8360. #if defined(RTW_SINGLE_WIPHY)
  8361. rtw_wiphy_free(dvobj_to_wiphy(dvobj));
  8362. dvobj->wiphy = NULL;
  8363. #endif
  8364. }
  8365. int rtw_cfg80211_dev_res_register(struct dvobj_priv *dvobj)
  8366. {
  8367. int ret = _FAIL;
  8368. #if defined(RTW_SINGLE_WIPHY)
  8369. if (rtw_wiphy_register(dvobj_to_wiphy(dvobj)) != 0)
  8370. goto exit;
  8371. #ifdef CONFIG_RFKILL_POLL
  8372. rtw_cfg80211_init_rfkill(dvobj_to_wiphy(dvobj));
  8373. #endif
  8374. #endif
  8375. ret = _SUCCESS;
  8376. exit:
  8377. return ret;
  8378. }
  8379. void rtw_cfg80211_dev_res_unregister(struct dvobj_priv *dvobj)
  8380. {
  8381. #if defined(RTW_SINGLE_WIPHY)
  8382. #ifdef CONFIG_RFKILL_POLL
  8383. rtw_cfg80211_deinit_rfkill(dvobj_to_wiphy(dvobj));
  8384. #endif
  8385. rtw_wiphy_unregister(dvobj_to_wiphy(dvobj));
  8386. #endif
  8387. }
  8388. #endif /* CONFIG_IOCTL_CFG80211 */