ioctl_cfg80211.c 288 KB

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