ioctl_cfg80211.c 289 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997
  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. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 8, 0))
  6118. struct mgmt_frame_regs *upd)
  6119. #else
  6120. u16 frame_type, bool reg)
  6121. #endif
  6122. {
  6123. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6124. struct net_device *ndev = wdev_to_ndev(wdev);
  6125. #endif
  6126. /* hardcoded always true, to make it pass compilation */
  6127. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 8, 0))
  6128. bool reg = true;
  6129. #endif
  6130. _adapter *adapter;
  6131. struct rtw_wdev_priv *pwdev_priv;
  6132. if (ndev == NULL)
  6133. goto exit;
  6134. adapter = (_adapter *)rtw_netdev_priv(ndev);
  6135. pwdev_priv = adapter_wdev_data(adapter);
  6136. #ifdef CONFIG_DEBUG_CFG80211
  6137. RTW_INFO(FUNC_ADPT_FMT" frame_type:%x, reg:%d\n", FUNC_ADPT_ARG(adapter),
  6138. frame_type, reg);
  6139. #endif
  6140. /* Wait QC Verify */
  6141. return;
  6142. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 8, 0))
  6143. switch (upd->interface_stypes) {
  6144. #else
  6145. switch (frame_type) {
  6146. #endif
  6147. case IEEE80211_STYPE_PROBE_REQ: /* 0x0040 */
  6148. SET_CFG80211_REPORT_MGMT(pwdev_priv, IEEE80211_STYPE_PROBE_REQ, reg);
  6149. break;
  6150. case IEEE80211_STYPE_ACTION: /* 0x00D0 */
  6151. SET_CFG80211_REPORT_MGMT(pwdev_priv, IEEE80211_STYPE_ACTION, reg);
  6152. break;
  6153. default:
  6154. break;
  6155. }
  6156. exit:
  6157. return;
  6158. }
  6159. #if defined(CONFIG_TDLS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  6160. static int cfg80211_rtw_tdls_mgmt(struct wiphy *wiphy,
  6161. struct net_device *ndev,
  6162. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  6163. const u8 *peer,
  6164. #else
  6165. u8 *peer,
  6166. #endif
  6167. u8 action_code,
  6168. u8 dialog_token,
  6169. u16 status_code,
  6170. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0))
  6171. u32 peer_capability,
  6172. #endif
  6173. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0))
  6174. bool initiator,
  6175. #endif
  6176. const u8 *buf,
  6177. size_t len)
  6178. {
  6179. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  6180. struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
  6181. struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info;
  6182. int ret = 0;
  6183. struct tdls_txmgmt txmgmt;
  6184. if (hal_chk_wl_func(padapter, WL_FUNC_TDLS) == _FALSE) {
  6185. RTW_INFO("Discard tdls action:%d, since hal doesn't support tdls\n", action_code);
  6186. goto discard;
  6187. }
  6188. if (rtw_is_tdls_enabled(padapter) == _FALSE) {
  6189. RTW_INFO("TDLS is not enabled\n");
  6190. goto discard;
  6191. }
  6192. if (rtw_tdls_is_driver_setup(padapter)) {
  6193. RTW_INFO("Discard tdls action:%d, let driver to set up direct link\n", action_code);
  6194. goto discard;
  6195. }
  6196. _rtw_memset(&txmgmt, 0x00, sizeof(struct tdls_txmgmt));
  6197. _rtw_memcpy(txmgmt.peer, peer, ETH_ALEN);
  6198. txmgmt.action_code = action_code;
  6199. txmgmt.dialog_token = dialog_token;
  6200. txmgmt.status_code = status_code;
  6201. txmgmt.len = len;
  6202. txmgmt.buf = (u8 *)rtw_malloc(txmgmt.len);
  6203. if (txmgmt.buf == NULL) {
  6204. ret = -ENOMEM;
  6205. goto bad;
  6206. }
  6207. _rtw_memcpy(txmgmt.buf, (void *)buf, txmgmt.len);
  6208. /* Debug purpose */
  6209. #if 1
  6210. RTW_INFO("%s %d\n", __FUNCTION__, __LINE__);
  6211. RTW_INFO("peer:"MAC_FMT", action code:%d, dialog:%d, status code:%d\n",
  6212. MAC_ARG(txmgmt.peer), txmgmt.action_code,
  6213. txmgmt.dialog_token, txmgmt.status_code);
  6214. if (txmgmt.len > 0) {
  6215. int i = 0;
  6216. for (; i < len; i++)
  6217. printk("%02x ", *(txmgmt.buf + i));
  6218. RTW_INFO("len:%d\n", (u32)txmgmt.len);
  6219. }
  6220. #endif
  6221. switch (txmgmt.action_code) {
  6222. case TDLS_SETUP_REQUEST:
  6223. issue_tdls_setup_req(padapter, &txmgmt, _TRUE);
  6224. break;
  6225. case TDLS_SETUP_RESPONSE:
  6226. issue_tdls_setup_rsp(padapter, &txmgmt);
  6227. break;
  6228. case TDLS_SETUP_CONFIRM:
  6229. issue_tdls_setup_cfm(padapter, &txmgmt);
  6230. break;
  6231. case TDLS_TEARDOWN:
  6232. issue_tdls_teardown(padapter, &txmgmt, _TRUE);
  6233. break;
  6234. case TDLS_DISCOVERY_REQUEST:
  6235. issue_tdls_dis_req(padapter, &txmgmt);
  6236. break;
  6237. case TDLS_DISCOVERY_RESPONSE:
  6238. issue_tdls_dis_rsp(padapter, &txmgmt, pmlmeinfo->enc_algo ? _TRUE : _FALSE);
  6239. break;
  6240. }
  6241. bad:
  6242. if (txmgmt.buf)
  6243. rtw_mfree(txmgmt.buf, txmgmt.len);
  6244. discard:
  6245. return ret;
  6246. }
  6247. static int cfg80211_rtw_tdls_oper(struct wiphy *wiphy,
  6248. struct net_device *ndev,
  6249. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  6250. const u8 *peer,
  6251. #else
  6252. u8 *peer,
  6253. #endif
  6254. enum nl80211_tdls_operation oper)
  6255. {
  6256. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  6257. struct tdls_info *ptdlsinfo = &padapter->tdlsinfo;
  6258. struct tdls_txmgmt txmgmt;
  6259. struct sta_info *ptdls_sta = NULL;
  6260. RTW_INFO(FUNC_NDEV_FMT", nl80211_tdls_operation:%d\n", FUNC_NDEV_ARG(ndev), oper);
  6261. if (hal_chk_wl_func(padapter, WL_FUNC_TDLS) == _FALSE) {
  6262. RTW_INFO("Discard tdls oper:%d, since hal doesn't support tdls\n", oper);
  6263. return 0;
  6264. }
  6265. if (rtw_is_tdls_enabled(padapter) == _FALSE) {
  6266. RTW_INFO("TDLS is not enabled\n");
  6267. return 0;
  6268. }
  6269. #ifdef CONFIG_LPS
  6270. rtw_lps_ctrl_wk_cmd(padapter, LPS_CTRL_LEAVE, 1);
  6271. #endif /* CONFIG_LPS */
  6272. _rtw_memset(&txmgmt, 0x00, sizeof(struct tdls_txmgmt));
  6273. if (peer)
  6274. _rtw_memcpy(txmgmt.peer, peer, ETH_ALEN);
  6275. if (rtw_tdls_is_driver_setup(padapter)) {
  6276. /* these two cases are done by driver itself */
  6277. if (oper == NL80211_TDLS_ENABLE_LINK || oper == NL80211_TDLS_DISABLE_LINK)
  6278. return 0;
  6279. }
  6280. switch (oper) {
  6281. case NL80211_TDLS_DISCOVERY_REQ:
  6282. issue_tdls_dis_req(padapter, &txmgmt);
  6283. break;
  6284. case NL80211_TDLS_SETUP:
  6285. #ifdef CONFIG_WFD
  6286. if (_AES_ != padapter->securitypriv.dot11PrivacyAlgrthm) {
  6287. if (padapter->wdinfo.wfd_tdls_weaksec == _TRUE)
  6288. issue_tdls_setup_req(padapter, &txmgmt, _TRUE);
  6289. else
  6290. RTW_INFO("[%s] Current link is not AES, SKIP sending the tdls setup request!!\n", __FUNCTION__);
  6291. } else
  6292. #endif /* CONFIG_WFD */
  6293. {
  6294. issue_tdls_setup_req(padapter, &txmgmt, _TRUE);
  6295. }
  6296. break;
  6297. case NL80211_TDLS_TEARDOWN:
  6298. ptdls_sta = rtw_get_stainfo(&(padapter->stapriv), txmgmt.peer);
  6299. if (ptdls_sta != NULL) {
  6300. txmgmt.status_code = _RSON_TDLS_TEAR_UN_RSN_;
  6301. issue_tdls_teardown(padapter, &txmgmt, _TRUE);
  6302. } else
  6303. RTW_INFO("TDLS peer not found\n");
  6304. break;
  6305. case NL80211_TDLS_ENABLE_LINK:
  6306. RTW_INFO(FUNC_NDEV_FMT", NL80211_TDLS_ENABLE_LINK;mac:"MAC_FMT"\n", FUNC_NDEV_ARG(ndev), MAC_ARG(peer));
  6307. ptdls_sta = rtw_get_stainfo(&(padapter->stapriv), (u8 *)peer);
  6308. if (ptdls_sta != NULL) {
  6309. rtw_tdls_set_link_established(padapter, _TRUE);
  6310. ptdls_sta->tdls_sta_state |= TDLS_LINKED_STATE;
  6311. ptdls_sta->state |= _FW_LINKED;
  6312. rtw_tdls_cmd(padapter, txmgmt.peer, TDLS_ESTABLISHED);
  6313. }
  6314. break;
  6315. case NL80211_TDLS_DISABLE_LINK:
  6316. RTW_INFO(FUNC_NDEV_FMT", NL80211_TDLS_DISABLE_LINK;mac:"MAC_FMT"\n", FUNC_NDEV_ARG(ndev), MAC_ARG(peer));
  6317. ptdls_sta = rtw_get_stainfo(&(padapter->stapriv), (u8 *)peer);
  6318. if (ptdls_sta != NULL) {
  6319. rtw_tdls_teardown_pre_hdl(padapter, ptdls_sta);
  6320. rtw_tdls_cmd(padapter, (u8 *)peer, TDLS_TEARDOWN_STA_LOCALLY_POST);
  6321. }
  6322. break;
  6323. }
  6324. return 0;
  6325. }
  6326. #endif /* CONFIG_TDLS */
  6327. #if defined(CONFIG_RTW_MESH) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38))
  6328. #if DBG_RTW_CFG80211_MESH_CONF
  6329. #define LEGACY_RATES_STR_LEN (RTW_G_RATES_NUM * 5 + 1)
  6330. int get_legacy_rates_str(struct wiphy *wiphy, enum nl80211_band band, u32 mask, char *buf)
  6331. {
  6332. int i;
  6333. int cnt = 0;
  6334. for (i = 0; i < wiphy->bands[band]->n_bitrates; i++) {
  6335. if (mask & BIT(i)) {
  6336. cnt += snprintf(buf + cnt, LEGACY_RATES_STR_LEN - cnt -1, "%d.%d "
  6337. , wiphy->bands[band]->bitrates[i].bitrate / 10
  6338. , wiphy->bands[band]->bitrates[i].bitrate % 10);
  6339. if (cnt >= LEGACY_RATES_STR_LEN - 1)
  6340. break;
  6341. }
  6342. }
  6343. return cnt;
  6344. }
  6345. void dump_mesh_setup(void *sel, struct wiphy *wiphy, const struct mesh_setup *setup)
  6346. {
  6347. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6348. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6349. struct cfg80211_chan_def *chdef = (struct cfg80211_chan_def *)(&setup->chandef);
  6350. #endif
  6351. struct ieee80211_channel *chan;
  6352. #endif
  6353. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6354. chan = (struct ieee80211_channel *)chdef->chan;
  6355. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6356. chan = (struct ieee80211_channel *)setup->channel;
  6357. #endif
  6358. RTW_PRINT_SEL(sel, "mesh_id:\"%s\", len:%u\n", setup->mesh_id, setup->mesh_id_len);
  6359. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6360. RTW_PRINT_SEL(sel, "sync_method:%u\n", setup->sync_method);
  6361. #endif
  6362. RTW_PRINT_SEL(sel, "path_sel_proto:%u, path_metric:%u\n", setup->path_sel_proto, setup->path_metric);
  6363. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6364. RTW_PRINT_SEL(sel, "auth_id:%u\n", setup->auth_id);
  6365. #endif
  6366. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  6367. if (setup->ie && setup->ie_len) {
  6368. RTW_PRINT_SEL(sel, "ie:%p, len:%u\n", setup->ie, setup->ie_len);
  6369. dump_ies(RTW_DBGDUMP, setup->ie, setup->ie_len);
  6370. }
  6371. #else
  6372. if (setup->vendor_ie && setup->vendor_ie_len) {
  6373. RTW_PRINT_SEL(sel, "ie:%p, len:%u\n", setup->vendor_ie, setup->vendor_ie_len);
  6374. dump_ies(RTW_DBGDUMP, setup->vendor_ie, setup->vendor_ie_len);
  6375. }
  6376. #endif
  6377. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  6378. RTW_PRINT_SEL(sel, "is_authenticated:%d, is_secure:%d\n", setup->is_authenticated, setup->is_secure);
  6379. #endif
  6380. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  6381. RTW_PRINT_SEL(sel, "user_mpm:%d\n", setup->user_mpm);
  6382. #endif
  6383. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  6384. RTW_PRINT_SEL(sel, "dtim_period:%u, beacon_interval:%u\n", setup->dtim_period, setup->beacon_interval);
  6385. #endif
  6386. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6387. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6388. RTW_PRINT_SEL(sel, "center_freq:%u, ch:%u, width:%s, cfreq1:%u, cfreq2:%u\n"
  6389. , chan->center_freq, chan->hw_value, nl80211_chan_width_str(chdef->width), chdef->center_freq1, chdef->center_freq2);
  6390. #else
  6391. RTW_PRINT_SEL(sel, "center_freq:%u, ch:%u, channel_type:%s\n"
  6392. , chan->center_freq, chan->hw_value, nl80211_channel_type_str(setup->channel_type));
  6393. #endif
  6394. #endif
  6395. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  6396. if (setup->mcast_rate[chan->band]) {
  6397. RTW_PRINT_SEL(sel, "mcast_rate:%d.%d\n"
  6398. , wiphy->bands[chan->band]->bitrates[setup->mcast_rate[chan->band] - 1].bitrate / 10
  6399. , wiphy->bands[chan->band]->bitrates[setup->mcast_rate[chan->band] - 1].bitrate % 10
  6400. );
  6401. }
  6402. #endif
  6403. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6404. if (setup->basic_rates) {
  6405. char buf[LEGACY_RATES_STR_LEN] = {0};
  6406. get_legacy_rates_str(wiphy, chan->band, setup->basic_rates, buf);
  6407. RTW_PRINT_SEL(sel, "basic_rates:%s\n", buf);
  6408. }
  6409. #endif
  6410. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0))
  6411. if (setup->beacon_rate.control[chan->band].legacy) {
  6412. char buf[LEGACY_RATES_STR_LEN] = {0};
  6413. get_legacy_rates_str(wiphy, chan->band, setup->beacon_rate.control[chan->band].legacy, buf);
  6414. RTW_PRINT_SEL(sel, "beacon_rate.legacy:%s\n", buf);
  6415. }
  6416. if (*((u32 *)&(setup->beacon_rate.control[chan->band].ht_mcs[0]))
  6417. || *((u32 *)&(setup->beacon_rate.control[chan->band].ht_mcs[4]))
  6418. || *((u16 *)&(setup->beacon_rate.control[chan->band].ht_mcs[8]))
  6419. ) {
  6420. RTW_PRINT_SEL(sel, "beacon_rate.ht_mcs:"HT_RX_MCS_BMP_FMT"\n"
  6421. , HT_RX_MCS_BMP_ARG(setup->beacon_rate.control[chan->band].ht_mcs));
  6422. }
  6423. if (setup->beacon_rate.control[chan->band].vht_mcs[0]
  6424. || setup->beacon_rate.control[chan->band].vht_mcs[1]
  6425. || setup->beacon_rate.control[chan->band].vht_mcs[2]
  6426. || setup->beacon_rate.control[chan->band].vht_mcs[3]
  6427. ) {
  6428. int i;
  6429. for (i = 0; i < 4; i++) {/* parsing up to 4SS */
  6430. u16 mcs_mask = setup->beacon_rate.control[chan->band].vht_mcs[i];
  6431. RTW_PRINT_SEL(sel, "beacon_rate.vht_mcs[%d]:%s\n", i
  6432. , mcs_mask == 0x00FF ? "0~7" : mcs_mask == 0x01FF ? "0~8" : mcs_mask == 0x03FF ? "0~9" : "invalid");
  6433. }
  6434. }
  6435. if (setup->beacon_rate.control[chan->band].gi) {
  6436. RTW_PRINT_SEL(sel, "beacon_rate.gi:%s\n"
  6437. , setup->beacon_rate.control[chan->band].gi == NL80211_TXRATE_FORCE_SGI ? "SGI" :
  6438. setup->beacon_rate.control[chan->band].gi == NL80211_TXRATE_FORCE_LGI ? "LGI" : "invalid"
  6439. );
  6440. }
  6441. #endif
  6442. }
  6443. void dump_mesh_config(void *sel, const struct mesh_config *conf)
  6444. {
  6445. RTW_PRINT_SEL(sel, "dot11MeshRetryTimeout:%u\n", conf->dot11MeshRetryTimeout);
  6446. RTW_PRINT_SEL(sel, "dot11MeshConfirmTimeout:%u\n", conf->dot11MeshConfirmTimeout);
  6447. RTW_PRINT_SEL(sel, "dot11MeshHoldingTimeout:%u\n", conf->dot11MeshHoldingTimeout);
  6448. RTW_PRINT_SEL(sel, "dot11MeshMaxPeerLinks:%u\n", conf->dot11MeshMaxPeerLinks);
  6449. RTW_PRINT_SEL(sel, "dot11MeshMaxRetries:%u\n", conf->dot11MeshMaxRetries);
  6450. RTW_PRINT_SEL(sel, "dot11MeshTTL:%u\n", conf->dot11MeshTTL);
  6451. RTW_PRINT_SEL(sel, "element_ttl:%u\n", conf->element_ttl);
  6452. RTW_PRINT_SEL(sel, "auto_open_plinks:%d\n", conf->auto_open_plinks);
  6453. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6454. RTW_PRINT_SEL(sel, "dot11MeshNbrOffsetMaxNeighbor:%u\n", conf->dot11MeshNbrOffsetMaxNeighbor);
  6455. #endif
  6456. RTW_PRINT_SEL(sel, "dot11MeshHWMPmaxPREQretries:%u\n", conf->dot11MeshHWMPmaxPREQretries);
  6457. RTW_PRINT_SEL(sel, "path_refresh_time:%u\n", conf->path_refresh_time);
  6458. RTW_PRINT_SEL(sel, "min_discovery_timeout:%u\n", conf->min_discovery_timeout);
  6459. RTW_PRINT_SEL(sel, "dot11MeshHWMPactivePathTimeout:%u\n", conf->dot11MeshHWMPactivePathTimeout);
  6460. RTW_PRINT_SEL(sel, "dot11MeshHWMPpreqMinInterval:%u\n", conf->dot11MeshHWMPpreqMinInterval);
  6461. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  6462. RTW_PRINT_SEL(sel, "dot11MeshHWMPperrMinInterval:%u\n", conf->dot11MeshHWMPperrMinInterval);
  6463. #endif
  6464. RTW_PRINT_SEL(sel, "dot11MeshHWMPnetDiameterTraversalTime:%u\n", conf->dot11MeshHWMPnetDiameterTraversalTime);
  6465. RTW_PRINT_SEL(sel, "dot11MeshHWMPRootMode:%u\n", conf->dot11MeshHWMPRootMode);
  6466. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  6467. RTW_PRINT_SEL(sel, "dot11MeshHWMPRannInterval:%u\n", conf->dot11MeshHWMPRannInterval);
  6468. RTW_PRINT_SEL(sel, "dot11MeshGateAnnouncementProtocol:%d\n", conf->dot11MeshGateAnnouncementProtocol);
  6469. #endif
  6470. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 4, 0))
  6471. RTW_PRINT_SEL(sel, "dot11MeshForwarding:%d\n", conf->dot11MeshForwarding);
  6472. RTW_PRINT_SEL(sel, "rssi_threshold:%d\n", conf->rssi_threshold);
  6473. #endif
  6474. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6475. RTW_PRINT_SEL(sel, "ht_opmode:0x%04x\n", conf->ht_opmode);
  6476. #endif
  6477. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6478. RTW_PRINT_SEL(sel, "dot11MeshHWMPactivePathToRootTimeout:%u\n", conf->dot11MeshHWMPactivePathToRootTimeout);
  6479. RTW_PRINT_SEL(sel, "dot11MeshHWMProotInterval:%u\n", conf->dot11MeshHWMProotInterval);
  6480. RTW_PRINT_SEL(sel, "dot11MeshHWMPconfirmationInterval:%u\n", conf->dot11MeshHWMPconfirmationInterval);
  6481. #endif
  6482. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  6483. RTW_PRINT_SEL(sel, "power_mode:%s\n", nl80211_mesh_power_mode_str(conf->power_mode));
  6484. RTW_PRINT_SEL(sel, "dot11MeshAwakeWindowDuration:%u\n", conf->dot11MeshAwakeWindowDuration);
  6485. #endif
  6486. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6487. RTW_PRINT_SEL(sel, "plink_timeout:%u\n", conf->plink_timeout);
  6488. #endif
  6489. }
  6490. #endif /* DBG_RTW_CFG80211_MESH_CONF */
  6491. static void rtw_cfg80211_mesh_info_set_profile(struct rtw_mesh_info *minfo, const struct mesh_setup *setup)
  6492. {
  6493. _rtw_memcpy(minfo->mesh_id, setup->mesh_id, setup->mesh_id_len);
  6494. minfo->mesh_id_len = setup->mesh_id_len;
  6495. minfo->mesh_pp_id = setup->path_sel_proto;
  6496. minfo->mesh_pm_id = setup->path_metric;
  6497. minfo->mesh_cc_id = 0;
  6498. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6499. minfo->mesh_sp_id = setup->sync_method;
  6500. #endif
  6501. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6502. minfo->mesh_auth_id = setup->auth_id;
  6503. #else
  6504. if (setup->is_authenticated) {
  6505. u8 *rsn_ie;
  6506. sint rsn_ie_len;
  6507. struct rsne_info info;
  6508. u8 *akm;
  6509. u8 AKM_SUITE_SAE[4] = {0x00, 0x0F, 0xAC, 0x08};
  6510. rsn_ie = rtw_get_ie(setup->ie, WLAN_EID_RSN, &rsn_ie_len, setup->ie_len);
  6511. if (!rsn_ie || !rsn_ie_len) {
  6512. rtw_warn_on(1);
  6513. return;
  6514. }
  6515. if (rtw_rsne_info_parse(rsn_ie, rsn_ie_len + 2, &info) != _SUCCESS) {
  6516. rtw_warn_on(1);
  6517. return;
  6518. }
  6519. if (!info.akm_list || !info.akm_cnt) {
  6520. rtw_warn_on(1);
  6521. return;
  6522. }
  6523. akm = info.akm_list;
  6524. while (akm < info.akm_list + info.akm_cnt * 4) {
  6525. if (_rtw_memcmp(akm, AKM_SUITE_SAE, 4) == _TRUE) {
  6526. minfo->mesh_auth_id = 0x01;
  6527. break;
  6528. }
  6529. }
  6530. if (!minfo->mesh_auth_id) {
  6531. rtw_warn_on(1);
  6532. return;
  6533. }
  6534. }
  6535. #endif
  6536. }
  6537. static inline bool chk_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
  6538. {
  6539. return (mask >> (parm - 1)) & 0x1;
  6540. }
  6541. static void rtw_cfg80211_mesh_cfg_set(_adapter *adapter, const struct mesh_config *conf, u32 mask)
  6542. {
  6543. struct rtw_mesh_cfg *mcfg = &adapter->mesh_cfg;
  6544. #if 0 /* driver MPM */
  6545. if (chk_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask));
  6546. if (chk_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask));
  6547. if (chk_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask));
  6548. if (chk_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask));
  6549. if (chk_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask));
  6550. #endif
  6551. if (chk_mesh_attr(NL80211_MESHCONF_TTL, mask))
  6552. mcfg->dot11MeshTTL = conf->dot11MeshTTL;
  6553. if (chk_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
  6554. mcfg->element_ttl = conf->element_ttl;
  6555. #if 0 /* driver MPM */
  6556. if (chk_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask));
  6557. #endif
  6558. #if 0 /* TBD: synchronization */
  6559. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6560. if (chk_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask));
  6561. #endif
  6562. #endif
  6563. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
  6564. mcfg->dot11MeshHWMPmaxPREQretries = conf->dot11MeshHWMPmaxPREQretries;
  6565. if (chk_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
  6566. mcfg->path_refresh_time = conf->path_refresh_time;
  6567. if (chk_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
  6568. mcfg->min_discovery_timeout = conf->min_discovery_timeout;
  6569. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
  6570. mcfg->dot11MeshHWMPactivePathTimeout = conf->dot11MeshHWMPactivePathTimeout;
  6571. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
  6572. mcfg->dot11MeshHWMPpreqMinInterval = conf->dot11MeshHWMPpreqMinInterval;
  6573. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  6574. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
  6575. mcfg->dot11MeshHWMPperrMinInterval = conf->dot11MeshHWMPperrMinInterval;
  6576. #endif
  6577. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME, mask))
  6578. mcfg->dot11MeshHWMPnetDiameterTraversalTime = conf->dot11MeshHWMPnetDiameterTraversalTime;
  6579. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask))
  6580. mcfg->dot11MeshHWMPRootMode = conf->dot11MeshHWMPRootMode;
  6581. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  6582. if (chk_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask))
  6583. mcfg->dot11MeshGateAnnouncementProtocol = conf->dot11MeshGateAnnouncementProtocol;
  6584. /* our current gate annc implementation rides on root annc with gate annc bit in PREQ flags */
  6585. if (mcfg->dot11MeshGateAnnouncementProtocol
  6586. && mcfg->dot11MeshHWMPRootMode <= RTW_IEEE80211_ROOTMODE_ROOT
  6587. ) {
  6588. mcfg->dot11MeshHWMPRootMode = RTW_IEEE80211_PROACTIVE_RANN;
  6589. RTW_INFO(ADPT_FMT" enable PROACTIVE_RANN becaue gate annc is needed\n", ADPT_ARG(adapter));
  6590. }
  6591. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
  6592. mcfg->dot11MeshHWMPRannInterval = conf->dot11MeshHWMPRannInterval;
  6593. #endif
  6594. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 4, 0))
  6595. if (chk_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
  6596. mcfg->dot11MeshForwarding = conf->dot11MeshForwarding;
  6597. if (chk_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask))
  6598. mcfg->rssi_threshold = conf->rssi_threshold;
  6599. #endif
  6600. #if 0 /* controlled by driver */
  6601. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6602. if (chk_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask));
  6603. #endif
  6604. #endif
  6605. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6606. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
  6607. mcfg->dot11MeshHWMPactivePathToRootTimeout = conf->dot11MeshHWMPactivePathToRootTimeout;
  6608. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
  6609. mcfg->dot11MeshHWMProotInterval = conf->dot11MeshHWMProotInterval;
  6610. if (chk_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
  6611. mcfg->dot11MeshHWMPconfirmationInterval = conf->dot11MeshHWMPconfirmationInterval;
  6612. #endif
  6613. #if 0 /* TBD */
  6614. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  6615. if (chk_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask));
  6616. if (chk_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask));
  6617. #endif
  6618. #endif
  6619. #if 0 /* driver MPM */
  6620. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6621. if (chk_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask));
  6622. #endif
  6623. #endif
  6624. }
  6625. u8 *rtw_cfg80211_construct_mesh_beacon_ies(struct wiphy *wiphy, _adapter *adapter
  6626. , const struct mesh_config *conf, const struct mesh_setup *setup
  6627. , uint *ies_len)
  6628. {
  6629. struct rtw_mesh_info *minfo = &adapter->mesh_info;
  6630. struct rtw_mesh_cfg *mcfg = &adapter->mesh_cfg;
  6631. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6632. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6633. struct cfg80211_chan_def *chdef = (struct cfg80211_chan_def *)(&setup->chandef);
  6634. #endif
  6635. struct ieee80211_channel *chan;
  6636. u8 ch, bw, offset;
  6637. #endif
  6638. uint len;
  6639. u8 n_bitrates;
  6640. u8 ht = 0;
  6641. u8 vht = 0;
  6642. u8 *rsn_ie = NULL;
  6643. sint rsn_ie_len = 0;
  6644. u8 *ies = NULL, *c;
  6645. u8 supported_rates[RTW_G_RATES_NUM] = {0};
  6646. int i;
  6647. *ies_len = 0;
  6648. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6649. chan = (struct ieee80211_channel *)chdef->chan;
  6650. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6651. chan = (struct ieee80211_channel *)setup->channel;
  6652. #endif
  6653. n_bitrates = wiphy->bands[chan->band]->n_bitrates;
  6654. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6655. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 8, 0))
  6656. rtw_get_chbw_from_cfg80211_chan_def(chdef, &ht, &ch, &bw, &offset);
  6657. #else
  6658. rtw_get_chbw_from_nl80211_channel_type(chan, setup->channel_type, &ht, &ch, &bw, &offset);
  6659. #endif
  6660. if (!ch)
  6661. goto exit;
  6662. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6663. vht = ht && ch > 14 && bw >= CHANNEL_WIDTH_80; /* VHT40/VHT20? */
  6664. #endif
  6665. RTW_INFO(FUNC_ADPT_FMT" => ch:%u,%u,%u, ht:%u, vht:%u\n"
  6666. , FUNC_ADPT_ARG(adapter), ch, bw, offset, ht, vht);
  6667. #endif
  6668. rsn_ie = rtw_get_ie(setup->ie, WLAN_EID_RSN, &rsn_ie_len, setup->ie_len);
  6669. if (rsn_ie && !rsn_ie_len) {
  6670. rtw_warn_on(1);
  6671. rsn_ie = NULL;
  6672. }
  6673. len = _BEACON_IE_OFFSET_
  6674. + 2 /* 0-length SSID */
  6675. + (n_bitrates >= 8 ? 8 : n_bitrates) + 2 /* Supported Rates */
  6676. + 3 /* DS parameter set */
  6677. + 6 /* TIM */
  6678. + (n_bitrates > 8 ? n_bitrates - 8 + 2 : 0) /* Extended Supported Rates */
  6679. + (rsn_ie ? rsn_ie_len + 2 : 0) /* RSN */
  6680. #if defined(CONFIG_80211N_HT)
  6681. + (ht ? HT_CAP_IE_LEN + 2 + HT_OP_IE_LEN + 2 : 0) /* HT */
  6682. #endif
  6683. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6684. + (vht ? VHT_CAP_IE_LEN + 2 + VHT_OP_IE_LEN + 2 : 0) /* VHT */
  6685. #endif
  6686. + minfo->mesh_id_len + 2 /* Mesh ID */
  6687. + 9 /* Mesh configuration */
  6688. ;
  6689. ies = rtw_zmalloc(len);
  6690. if (!ies)
  6691. goto exit;
  6692. /* timestamp */
  6693. c = ies + 8;
  6694. /* beacon interval */
  6695. RTW_PUT_LE16(c , setup->beacon_interval);
  6696. c += 2;
  6697. /* capability */
  6698. if (rsn_ie)
  6699. *((u16 *)c) |= cpu_to_le16(cap_Privacy);
  6700. c += 2;
  6701. /* SSID */
  6702. c = rtw_set_ie(c, WLAN_EID_SSID, 0, NULL, NULL);
  6703. /* Supported Rates */
  6704. for (i = 0; i < n_bitrates; i++) {
  6705. supported_rates[i] = wiphy->bands[chan->band]->bitrates[i].bitrate / 5;
  6706. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6707. if (setup->basic_rates & BIT(i))
  6708. #else
  6709. if (rtw_is_basic_rate_mix(supported_rates[i]))
  6710. #endif
  6711. supported_rates[i] |= IEEE80211_BASIC_RATE_MASK;
  6712. }
  6713. c = rtw_set_ie(c, WLAN_EID_SUPP_RATES, (n_bitrates >= 8 ? 8 : n_bitrates), supported_rates, NULL);
  6714. /* DS parameter set */
  6715. c = rtw_set_ie(c, WLAN_EID_DS_PARAMS, 1, &ch, NULL);
  6716. /* TIM */
  6717. *c = WLAN_EID_TIM;
  6718. *(c + 1) = 4;
  6719. c += 6;
  6720. //c = rtw_set_ie(c, _TIM_IE_, 4, NULL, NULL);
  6721. /* Extended Supported Rates */
  6722. if (n_bitrates > 8)
  6723. c = rtw_set_ie(c, WLAN_EID_EXT_SUPP_RATES, n_bitrates - 8, supported_rates + 8, NULL);
  6724. /* RSN */
  6725. if (rsn_ie)
  6726. c = rtw_set_ie(c, WLAN_EID_RSN, rsn_ie_len, rsn_ie + 2, NULL);
  6727. #if defined(CONFIG_80211N_HT)
  6728. if (ht) {
  6729. struct ieee80211_sta_ht_cap *sta_ht_cap = &wiphy->bands[chan->band]->ht_cap;
  6730. u8 ht_cap[HT_CAP_IE_LEN];
  6731. u8 ht_op[HT_OP_IE_LEN];
  6732. _rtw_memset(ht_cap, 0, HT_CAP_IE_LEN);
  6733. _rtw_memset(ht_op, 0, HT_OP_IE_LEN);
  6734. /* WLAN_EID_HT_CAP */
  6735. RTW_PUT_LE16(HT_CAP_ELE_CAP_INFO(ht_cap), sta_ht_cap->cap);
  6736. SET_HT_CAP_ELE_MAX_AMPDU_LEN_EXP(ht_cap, sta_ht_cap->ampdu_factor);
  6737. SET_HT_CAP_ELE_MIN_MPDU_S_SPACE(ht_cap, sta_ht_cap->ampdu_density);
  6738. _rtw_memcpy(HT_CAP_ELE_SUP_MCS_SET(ht_cap), &sta_ht_cap->mcs, 16);
  6739. c = rtw_set_ie(c, WLAN_EID_HT_CAP, HT_CAP_IE_LEN, ht_cap, NULL);
  6740. /* WLAN_EID_HT_OPERATION */
  6741. SET_HT_OP_ELE_PRI_CHL(ht_op, ch);
  6742. switch (offset) {
  6743. case HAL_PRIME_CHNL_OFFSET_LOWER:
  6744. SET_HT_OP_ELE_2ND_CHL_OFFSET(ht_op, SCA);
  6745. break;
  6746. case HAL_PRIME_CHNL_OFFSET_UPPER:
  6747. SET_HT_OP_ELE_2ND_CHL_OFFSET(ht_op, SCB);
  6748. break;
  6749. case HAL_PRIME_CHNL_OFFSET_DONT_CARE:
  6750. default:
  6751. SET_HT_OP_ELE_2ND_CHL_OFFSET(ht_op, SCN);
  6752. break;
  6753. }
  6754. if (bw >= CHANNEL_WIDTH_40)
  6755. SET_HT_OP_ELE_STA_CHL_WIDTH(ht_op, 1);
  6756. else
  6757. SET_HT_OP_ELE_STA_CHL_WIDTH(ht_op, 0);
  6758. c = rtw_set_ie(c, WLAN_EID_HT_OPERATION, HT_OP_IE_LEN, ht_op, NULL);
  6759. }
  6760. #endif /* defined(CONFIG_80211N_HT) */
  6761. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6762. if (vht) {
  6763. struct ieee80211_sta_vht_cap *sta_vht_cap = &wiphy->bands[chan->band]->vht_cap;
  6764. u8 vht_cap[VHT_CAP_IE_LEN];
  6765. u8 vht_op[VHT_OP_IE_LEN];
  6766. u8 cch = rtw_get_center_ch(ch, bw, offset);
  6767. _rtw_memset(vht_op, 0, VHT_OP_IE_LEN);
  6768. /* WLAN_EID_VHT_CAPABILITY */
  6769. _rtw_memcpy(vht_cap, &sta_vht_cap->cap, 4);
  6770. _rtw_memcpy(vht_cap + 4, &sta_vht_cap->vht_mcs, 8);
  6771. c = rtw_set_ie(c, WLAN_EID_VHT_CAPABILITY, VHT_CAP_IE_LEN, vht_cap, NULL);
  6772. /* WLAN_EID_VHT_OPERATION */
  6773. if (bw < CHANNEL_WIDTH_80) {
  6774. SET_VHT_OPERATION_ELE_CHL_WIDTH(vht_op, 0);
  6775. SET_VHT_OPERATION_ELE_CHL_CENTER_FREQ1(vht_op, 0);
  6776. SET_VHT_OPERATION_ELE_CHL_CENTER_FREQ2(vht_op, 0);
  6777. } else if (bw == CHANNEL_WIDTH_80) {
  6778. SET_VHT_OPERATION_ELE_CHL_WIDTH(vht_op, 1);
  6779. SET_VHT_OPERATION_ELE_CHL_CENTER_FREQ1(vht_op, cch);
  6780. SET_VHT_OPERATION_ELE_CHL_CENTER_FREQ2(vht_op, 0);
  6781. } else {
  6782. RTW_ERR(FUNC_ADPT_FMT" unsupported BW:%u\n", FUNC_ADPT_ARG(adapter), bw);
  6783. rtw_warn_on(1);
  6784. rtw_mfree(ies, len);
  6785. goto exit;
  6786. }
  6787. /* Hard code 1 stream, MCS0-7 is a min Basic VHT MCS rates */
  6788. vht_op[3] = 0xfc;
  6789. vht_op[4] = 0xff;
  6790. c = rtw_set_ie(c, WLAN_EID_VHT_OPERATION, VHT_OP_IE_LEN, vht_op, NULL);
  6791. }
  6792. #endif /* defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) */
  6793. /* Mesh ID */
  6794. c = rtw_set_ie_mesh_id(c, NULL, minfo->mesh_id, minfo->mesh_id_len);
  6795. /* Mesh configuration */
  6796. c = rtw_set_ie_mesh_config(c, NULL
  6797. , minfo->mesh_pp_id
  6798. , minfo->mesh_pm_id
  6799. , minfo->mesh_cc_id
  6800. , minfo->mesh_sp_id
  6801. , minfo->mesh_auth_id
  6802. , 0, 0, 0
  6803. , 1
  6804. , 0, 0
  6805. , mcfg->dot11MeshForwarding
  6806. , 0, 0, 0
  6807. );
  6808. #if DBG_RTW_CFG80211_MESH_CONF
  6809. RTW_INFO(FUNC_ADPT_FMT" ies_len:%u\n", FUNC_ADPT_ARG(adapter), len);
  6810. dump_ies(RTW_DBGDUMP, ies + _BEACON_IE_OFFSET_, len - _BEACON_IE_OFFSET_);
  6811. #endif
  6812. exit:
  6813. if (ies)
  6814. *ies_len = len;
  6815. return ies;
  6816. }
  6817. static int cfg80211_rtw_get_mesh_config(struct wiphy *wiphy, struct net_device *dev
  6818. , struct mesh_config *conf)
  6819. {
  6820. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6821. struct rtw_mesh_cfg *mesh_cfg = &adapter->mesh_cfg;
  6822. int ret = 0;
  6823. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(adapter));
  6824. /* driver MPM */
  6825. conf->dot11MeshRetryTimeout = 0;
  6826. conf->dot11MeshConfirmTimeout = 0;
  6827. conf->dot11MeshHoldingTimeout = 0;
  6828. conf->dot11MeshMaxPeerLinks = mesh_cfg->max_peer_links;
  6829. conf->dot11MeshMaxRetries = 0;
  6830. conf->dot11MeshTTL = mesh_cfg->dot11MeshTTL;
  6831. conf->element_ttl = mesh_cfg->element_ttl;
  6832. /* driver MPM */
  6833. conf->auto_open_plinks = 0;
  6834. /* TBD: synchronization */
  6835. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6836. conf->dot11MeshNbrOffsetMaxNeighbor = 0;
  6837. #endif
  6838. conf->dot11MeshHWMPmaxPREQretries = mesh_cfg->dot11MeshHWMPmaxPREQretries;
  6839. conf->path_refresh_time = mesh_cfg->path_refresh_time;
  6840. conf->min_discovery_timeout = mesh_cfg->min_discovery_timeout;
  6841. conf->dot11MeshHWMPactivePathTimeout = mesh_cfg->dot11MeshHWMPactivePathTimeout;
  6842. conf->dot11MeshHWMPpreqMinInterval = mesh_cfg->dot11MeshHWMPpreqMinInterval;
  6843. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  6844. conf->dot11MeshHWMPperrMinInterval = mesh_cfg->dot11MeshHWMPperrMinInterval;
  6845. #endif
  6846. conf->dot11MeshHWMPnetDiameterTraversalTime = mesh_cfg->dot11MeshHWMPnetDiameterTraversalTime;
  6847. conf->dot11MeshHWMPRootMode = mesh_cfg->dot11MeshHWMPRootMode;
  6848. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  6849. conf->dot11MeshHWMPRannInterval = mesh_cfg->dot11MeshHWMPRannInterval;
  6850. #endif
  6851. conf->dot11MeshGateAnnouncementProtocol = mesh_cfg->dot11MeshGateAnnouncementProtocol;
  6852. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 4, 0))
  6853. conf->dot11MeshForwarding = mesh_cfg->dot11MeshForwarding;
  6854. conf->rssi_threshold = mesh_cfg->rssi_threshold;
  6855. #endif
  6856. /* TBD */
  6857. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 5, 0))
  6858. conf->ht_opmode = 0xffff;
  6859. #endif
  6860. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  6861. conf->dot11MeshHWMPactivePathToRootTimeout = mesh_cfg->dot11MeshHWMPactivePathToRootTimeout;
  6862. conf->dot11MeshHWMProotInterval = mesh_cfg->dot11MeshHWMProotInterval;
  6863. conf->dot11MeshHWMPconfirmationInterval = mesh_cfg->dot11MeshHWMPconfirmationInterval;
  6864. #endif
  6865. /* TBD: power save */
  6866. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  6867. conf->power_mode = NL80211_MESH_POWER_ACTIVE;
  6868. conf->dot11MeshAwakeWindowDuration = 0;
  6869. #endif
  6870. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6871. conf->plink_timeout = mesh_cfg->plink_timeout;
  6872. #endif
  6873. return ret;
  6874. }
  6875. static void rtw_mbss_info_change_notify(_adapter *adapter, bool minfo_changed, bool need_work)
  6876. {
  6877. if (need_work)
  6878. rtw_mesh_work(&adapter->mesh_work);
  6879. }
  6880. static int cfg80211_rtw_update_mesh_config(struct wiphy *wiphy, struct net_device *dev
  6881. , u32 mask, const struct mesh_config *nconf)
  6882. {
  6883. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6884. int ret = 0;
  6885. bool minfo_changed = _FALSE, need_work = _FALSE;
  6886. RTW_INFO(FUNC_ADPT_FMT" mask:0x%08x\n", FUNC_ADPT_ARG(adapter), mask);
  6887. rtw_cfg80211_mesh_cfg_set(adapter, nconf, mask);
  6888. update_beacon(adapter, WLAN_EID_MESH_CONFIG, NULL, _TRUE);
  6889. #if CONFIG_RTW_MESH_CTO_MGATE_CARRIER
  6890. if (rtw_mesh_cto_mgate_required(adapter))
  6891. rtw_netif_carrier_off(adapter->pnetdev);
  6892. else
  6893. rtw_netif_carrier_on(adapter->pnetdev);
  6894. #endif
  6895. need_work = rtw_ieee80211_mesh_root_setup(adapter);
  6896. rtw_mbss_info_change_notify(adapter, minfo_changed, need_work);
  6897. return ret;
  6898. }
  6899. static int cfg80211_rtw_join_mesh(struct wiphy *wiphy, struct net_device *dev,
  6900. const struct mesh_config *conf, const struct mesh_setup *setup)
  6901. {
  6902. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6903. u8 *ies = NULL;
  6904. uint ies_len;
  6905. int ret = 0;
  6906. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(adapter));
  6907. #if DBG_RTW_CFG80211_MESH_CONF
  6908. RTW_INFO(FUNC_ADPT_FMT" mesh_setup:\n", FUNC_ADPT_ARG(adapter));
  6909. dump_mesh_setup(RTW_DBGDUMP, wiphy, setup);
  6910. RTW_INFO(FUNC_ADPT_FMT" mesh_config:\n", FUNC_ADPT_ARG(adapter));
  6911. dump_mesh_config(RTW_DBGDUMP, conf);
  6912. #endif
  6913. if (rtw_cfg80211_sync_iftype(adapter) != _SUCCESS) {
  6914. ret = -ENOTSUPP;
  6915. goto exit;
  6916. }
  6917. /* initialization */
  6918. rtw_mesh_init_mesh_info(adapter);
  6919. /* apply cfg80211 settings*/
  6920. rtw_cfg80211_mesh_info_set_profile(&adapter->mesh_info, setup);
  6921. rtw_cfg80211_mesh_cfg_set(adapter, conf, 0xFFFFFFFF);
  6922. /* apply cfg80211 settings (join only) */
  6923. rtw_mesh_cfg_init_max_peer_links(adapter, conf->dot11MeshMaxPeerLinks);
  6924. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
  6925. rtw_mesh_cfg_init_plink_timeout(adapter, conf->plink_timeout);
  6926. #endif
  6927. rtw_ieee80211_mesh_root_setup(adapter);
  6928. ies = rtw_cfg80211_construct_mesh_beacon_ies(wiphy, adapter, conf, setup, &ies_len);
  6929. if (!ies) {
  6930. ret = -EINVAL;
  6931. goto exit;
  6932. }
  6933. /* start mbss */
  6934. if (rtw_check_beacon_data(adapter, ies, ies_len) != _SUCCESS) {
  6935. ret = -EINVAL;
  6936. goto exit;
  6937. }
  6938. rtw_mesh_work(&adapter->mesh_work);
  6939. exit:
  6940. if (ies)
  6941. rtw_mfree(ies, ies_len);
  6942. if (ret)
  6943. rtw_mesh_deinit_mesh_info(adapter);
  6944. return ret;
  6945. }
  6946. static int cfg80211_rtw_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
  6947. {
  6948. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6949. int ret = 0;
  6950. RTW_INFO(FUNC_ADPT_FMT"\n", FUNC_ADPT_ARG(adapter));
  6951. rtw_mesh_deinit_mesh_info(adapter);
  6952. rtw_set_802_11_infrastructure_mode(adapter, Ndis802_11Infrastructure);
  6953. rtw_setopmode_cmd(adapter, Ndis802_11Infrastructure, RTW_CMDF_WAIT_ACK);
  6954. return ret;
  6955. }
  6956. static int cfg80211_rtw_add_mpath(struct wiphy *wiphy, struct net_device *dev
  6957. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  6958. , const u8 *dst, const u8 *next_hop
  6959. #else
  6960. , u8 *dst, u8 *next_hop
  6961. #endif
  6962. )
  6963. {
  6964. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6965. struct sta_priv *stapriv = &adapter->stapriv;
  6966. struct sta_info *sta;
  6967. struct rtw_mesh_path *mpath;
  6968. int ret = 0;
  6969. rtw_rcu_read_lock();
  6970. sta = rtw_get_stainfo(stapriv, next_hop);
  6971. if (!sta) {
  6972. ret = -ENOENT;
  6973. goto exit;
  6974. }
  6975. mpath = rtw_mesh_path_add(adapter, dst);
  6976. if (!mpath) {
  6977. ret = -ENOENT;
  6978. goto exit;
  6979. }
  6980. rtw_mesh_path_fix_nexthop(mpath, sta);
  6981. exit:
  6982. rtw_rcu_read_unlock();
  6983. return ret;
  6984. }
  6985. static int cfg80211_rtw_del_mpath(struct wiphy *wiphy, struct net_device *dev
  6986. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  6987. , const u8 *dst
  6988. #else
  6989. , u8 *dst
  6990. #endif
  6991. )
  6992. {
  6993. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  6994. int ret = 0;
  6995. if (dst) {
  6996. if (rtw_mesh_path_del(adapter, dst)) {
  6997. ret = -ENOENT;
  6998. goto exit;
  6999. }
  7000. } else {
  7001. rtw_mesh_path_flush_by_iface(adapter);
  7002. }
  7003. exit:
  7004. return ret;
  7005. }
  7006. static int cfg80211_rtw_change_mpath(struct wiphy *wiphy, struct net_device *dev
  7007. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
  7008. , const u8 *dst, const u8 *next_hop
  7009. #else
  7010. , u8 *dst, u8 *next_hop
  7011. #endif
  7012. )
  7013. {
  7014. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7015. struct sta_priv *stapriv = &adapter->stapriv;
  7016. struct sta_info *sta;
  7017. struct rtw_mesh_path *mpath;
  7018. int ret = 0;
  7019. rtw_rcu_read_lock();
  7020. sta = rtw_get_stainfo(stapriv, next_hop);
  7021. if (!sta) {
  7022. ret = -ENOENT;
  7023. goto exit;
  7024. }
  7025. mpath = rtw_mesh_path_lookup(adapter, dst);
  7026. if (!mpath) {
  7027. ret = -ENOENT;
  7028. goto exit;
  7029. }
  7030. rtw_mesh_path_fix_nexthop(mpath, sta);
  7031. exit:
  7032. rtw_rcu_read_unlock();
  7033. return ret;
  7034. }
  7035. static void rtw_cfg80211_mpath_set_pinfo(struct rtw_mesh_path *mpath, u8 *next_hop, struct mpath_info *pinfo)
  7036. {
  7037. struct sta_info *next_hop_sta = rtw_rcu_dereference(mpath->next_hop);
  7038. if (next_hop_sta)
  7039. _rtw_memcpy(next_hop, next_hop_sta->cmn.mac_addr, ETH_ALEN);
  7040. else
  7041. _rtw_memset(next_hop, 0, ETH_ALEN);
  7042. _rtw_memset(pinfo, 0, sizeof(*pinfo));
  7043. pinfo->generation = mpath->adapter->mesh_info.mesh_paths_generation;
  7044. pinfo->filled = 0
  7045. | MPATH_INFO_FRAME_QLEN
  7046. | MPATH_INFO_SN
  7047. | MPATH_INFO_METRIC
  7048. | MPATH_INFO_EXPTIME
  7049. | MPATH_INFO_DISCOVERY_TIMEOUT
  7050. | MPATH_INFO_DISCOVERY_RETRIES
  7051. | MPATH_INFO_FLAGS
  7052. ;
  7053. pinfo->frame_qlen = mpath->frame_queue_len;
  7054. pinfo->sn = mpath->sn;
  7055. pinfo->metric = mpath->metric;
  7056. if (rtw_time_after(mpath->exp_time, rtw_get_current_time()))
  7057. pinfo->exptime = rtw_get_remaining_time_ms(mpath->exp_time);
  7058. pinfo->discovery_timeout = rtw_systime_to_ms(mpath->discovery_timeout);
  7059. pinfo->discovery_retries = mpath->discovery_retries;
  7060. if (mpath->flags & RTW_MESH_PATH_ACTIVE)
  7061. pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
  7062. if (mpath->flags & RTW_MESH_PATH_RESOLVING)
  7063. pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
  7064. if (mpath->flags & RTW_MESH_PATH_SN_VALID)
  7065. pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
  7066. if (mpath->flags & RTW_MESH_PATH_FIXED)
  7067. pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
  7068. if (mpath->flags & RTW_MESH_PATH_RESOLVED)
  7069. pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
  7070. }
  7071. static int cfg80211_rtw_get_mpath(struct wiphy *wiphy, struct net_device *dev, u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
  7072. {
  7073. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7074. struct rtw_mesh_path *mpath;
  7075. int ret = 0;
  7076. rtw_rcu_read_lock();
  7077. mpath = rtw_mesh_path_lookup(adapter, dst);
  7078. if (!mpath) {
  7079. ret = -ENOENT;
  7080. goto exit;
  7081. }
  7082. rtw_cfg80211_mpath_set_pinfo(mpath, next_hop, pinfo);
  7083. exit:
  7084. rtw_rcu_read_unlock();
  7085. return ret;
  7086. }
  7087. static int cfg80211_rtw_dump_mpath(struct wiphy *wiphy, struct net_device *dev, int idx, u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
  7088. {
  7089. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7090. struct rtw_mesh_path *mpath;
  7091. int ret = 0;
  7092. rtw_rcu_read_lock();
  7093. mpath = rtw_mesh_path_lookup_by_idx(adapter, idx);
  7094. if (!mpath) {
  7095. ret = -ENOENT;
  7096. goto exit;
  7097. }
  7098. _rtw_memcpy(dst, mpath->dst, ETH_ALEN);
  7099. rtw_cfg80211_mpath_set_pinfo(mpath, next_hop, pinfo);
  7100. exit:
  7101. rtw_rcu_read_unlock();
  7102. return ret;
  7103. }
  7104. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0))
  7105. static void rtw_cfg80211_mpp_set_pinfo(struct rtw_mesh_path *mpath, u8 *mpp, struct mpath_info *pinfo)
  7106. {
  7107. _rtw_memcpy(mpp, mpath->mpp, ETH_ALEN);
  7108. _rtw_memset(pinfo, 0, sizeof(*pinfo));
  7109. pinfo->generation = mpath->adapter->mesh_info.mpp_paths_generation;
  7110. }
  7111. static int cfg80211_rtw_get_mpp(struct wiphy *wiphy, struct net_device *dev, u8 *dst, u8 *mpp, struct mpath_info *pinfo)
  7112. {
  7113. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7114. struct rtw_mesh_path *mpath;
  7115. int ret = 0;
  7116. rtw_rcu_read_lock();
  7117. mpath = rtw_mpp_path_lookup(adapter, dst);
  7118. if (!mpath) {
  7119. ret = -ENOENT;
  7120. goto exit;
  7121. }
  7122. rtw_cfg80211_mpp_set_pinfo(mpath, mpp, pinfo);
  7123. exit:
  7124. rtw_rcu_read_unlock();
  7125. return ret;
  7126. }
  7127. static int cfg80211_rtw_dump_mpp(struct wiphy *wiphy, struct net_device *dev, int idx, u8 *dst, u8 *mpp, struct mpath_info *pinfo)
  7128. {
  7129. _adapter *adapter = (_adapter *)rtw_netdev_priv(dev);
  7130. struct rtw_mesh_path *mpath;
  7131. int ret = 0;
  7132. rtw_rcu_read_lock();
  7133. mpath = rtw_mpp_path_lookup_by_idx(adapter, idx);
  7134. if (!mpath) {
  7135. ret = -ENOENT;
  7136. goto exit;
  7137. }
  7138. _rtw_memcpy(dst, mpath->dst, ETH_ALEN);
  7139. rtw_cfg80211_mpp_set_pinfo(mpath, mpp, pinfo);
  7140. exit:
  7141. rtw_rcu_read_unlock();
  7142. return ret;
  7143. }
  7144. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)) */
  7145. #endif /* defined(CONFIG_RTW_MESH) */
  7146. #if defined(CONFIG_PNO_SUPPORT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7147. static int cfg80211_rtw_sched_scan_start(struct wiphy *wiphy,
  7148. struct net_device *dev,
  7149. struct cfg80211_sched_scan_request *request)
  7150. {
  7151. _adapter *padapter = (_adapter *)rtw_netdev_priv(dev);
  7152. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  7153. struct cfg80211_ssid *ssids;
  7154. int n_ssids = 0;
  7155. int interval = 0;
  7156. int i = 0;
  7157. u8 ret;
  7158. if (padapter->bup == _FALSE) {
  7159. RTW_INFO("%s: net device is down.\n", __func__);
  7160. return -EIO;
  7161. }
  7162. if (check_fwstate(pmlmepriv, _FW_UNDER_SURVEY) == _TRUE ||
  7163. check_fwstate(pmlmepriv, _FW_LINKED) == _TRUE ||
  7164. check_fwstate(pmlmepriv, _FW_UNDER_LINKING) == _TRUE) {
  7165. RTW_INFO("%s: device is busy.\n", __func__);
  7166. rtw_scan_abort(padapter);
  7167. }
  7168. if (request == NULL) {
  7169. RTW_INFO("%s: invalid cfg80211_requests parameters.\n", __func__);
  7170. return -EINVAL;
  7171. }
  7172. #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0)
  7173. #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0)
  7174. interval = request->scan_plans->interval;
  7175. #else
  7176. interval = request->interval;
  7177. #endif
  7178. n_ssids = request->n_match_sets;
  7179. ssids = (struct cfg80211_ssid *)rtw_zmalloc(n_ssids * sizeof(struct cfg80211_ssid));
  7180. if(ssids == NULL) {
  7181. RTW_ERR("Fail to allocate ssids for PNO\n");
  7182. return -ENOMEM;
  7183. }
  7184. for (i=0;i<request->n_match_sets;i++) {
  7185. ssids[i].ssid_len = request->match_sets[i].ssid.ssid_len;
  7186. memcpy(ssids[i].ssid, request->match_sets[i].ssid.ssid,
  7187. request->match_sets[i].ssid.ssid_len);
  7188. }
  7189. #else
  7190. interval = request->interval;
  7191. n_ssids = request->n_ssids;
  7192. ssids = request->ssids;
  7193. #endif
  7194. ret = rtw_android_cfg80211_pno_setup(dev, ssids,
  7195. n_ssids, interval);
  7196. if (ret < 0) {
  7197. RTW_INFO("%s ret: %d\n", __func__, ret);
  7198. goto exit;
  7199. }
  7200. ret = rtw_android_pno_enable(dev, _TRUE);
  7201. if (ret < 0) {
  7202. RTW_INFO("%s ret: %d\n", __func__, ret);
  7203. goto exit;
  7204. }
  7205. exit:
  7206. return ret;
  7207. }
  7208. static int cfg80211_rtw_sched_scan_stop(struct wiphy *wiphy,
  7209. struct net_device *dev)
  7210. {
  7211. return rtw_android_pno_enable(dev, _FALSE);
  7212. }
  7213. int cfg80211_rtw_suspend(struct wiphy *wiphy, struct cfg80211_wowlan *wow) {
  7214. RTW_DBG("==> %s\n",__func__);
  7215. RTW_DBG("<== %s\n",__func__);
  7216. return 0;
  7217. }
  7218. int cfg80211_rtw_resume(struct wiphy *wiphy) {
  7219. _adapter *padapter;
  7220. struct pwrctrl_priv *pwrpriv;
  7221. struct mlme_priv *pmlmepriv;
  7222. padapter = wiphy_to_adapter(wiphy);
  7223. pwrpriv = adapter_to_pwrctl(padapter);
  7224. pmlmepriv = &padapter->mlmepriv;
  7225. struct sitesurvey_parm parm;
  7226. int i, len;
  7227. RTW_DBG("==> %s\n",__func__);
  7228. if (pwrpriv->wowlan_last_wake_reason == RX_PNO) {
  7229. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  7230. _irqL irqL;
  7231. int PNOWakeupScanWaitCnt = 0;
  7232. rtw_cfg80211_disconnected(padapter->rtw_wdev, 0, NULL, 0, 1, GFP_ATOMIC);
  7233. rtw_init_sitesurvey_parm(padapter, &parm);
  7234. for (i=0;i<pwrpriv->pnlo_info->ssid_num && i < RTW_SSID_SCAN_AMOUNT; i++) {
  7235. len = pwrpriv->pno_ssid_list->node[i].SSID_len;
  7236. _rtw_memcpy(&parm.ssid[i].Ssid, pwrpriv->pno_ssid_list->node[i].SSID, len);
  7237. parm.ssid[i].SsidLength = len;
  7238. }
  7239. parm.ssid_num = pwrpriv->pnlo_info->ssid_num;
  7240. _enter_critical_bh(&pmlmepriv->lock, &irqL);
  7241. //This modification fix PNO wakeup reconnect issue with hidden SSID AP.
  7242. //rtw_sitesurvey_cmd(padapter, NULL);
  7243. rtw_sitesurvey_cmd(padapter, &parm);
  7244. _exit_critical_bh(&pmlmepriv->lock, &irqL);
  7245. for (PNOWakeupScanWaitCnt = 0; PNOWakeupScanWaitCnt < 10; PNOWakeupScanWaitCnt++) {
  7246. if(check_fwstate(pmlmepriv, _FW_UNDER_SURVEY) == _FALSE)
  7247. break;
  7248. rtw_msleep_os(1000);
  7249. }
  7250. _enter_critical_bh(&pmlmepriv->lock, &irqL);
  7251. cfg80211_sched_scan_results(padapter->rtw_wdev->wiphy);
  7252. _exit_critical_bh(&pmlmepriv->lock, &irqL);
  7253. }
  7254. RTW_DBG("<== %s\n",__func__);
  7255. return 0;
  7256. }
  7257. #endif /* CONFIG_PNO_SUPPORT */
  7258. static int rtw_cfg80211_set_beacon_wpsp2pie(struct net_device *ndev, char *buf, int len)
  7259. {
  7260. int ret = 0;
  7261. uint wps_ielen = 0;
  7262. u8 *wps_ie;
  7263. u32 p2p_ielen = 0;
  7264. u8 wps_oui[8] = {0x0, 0x50, 0xf2, 0x04};
  7265. u8 *p2p_ie;
  7266. u32 wfd_ielen = 0;
  7267. u8 *wfd_ie;
  7268. _adapter *padapter = (_adapter *)rtw_netdev_priv(ndev);
  7269. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  7270. struct mlme_ext_priv *pmlmeext = &(padapter->mlmeextpriv);
  7271. RTW_INFO(FUNC_NDEV_FMT" ielen=%d\n", FUNC_NDEV_ARG(ndev), len);
  7272. if (len > 0) {
  7273. wps_ie = rtw_get_wps_ie(buf, len, NULL, &wps_ielen);
  7274. if (wps_ie) {
  7275. #ifdef CONFIG_DEBUG_CFG80211
  7276. RTW_INFO("bcn_wps_ielen=%d\n", wps_ielen);
  7277. #endif
  7278. if (pmlmepriv->wps_beacon_ie) {
  7279. u32 free_len = pmlmepriv->wps_beacon_ie_len;
  7280. pmlmepriv->wps_beacon_ie_len = 0;
  7281. rtw_mfree(pmlmepriv->wps_beacon_ie, free_len);
  7282. pmlmepriv->wps_beacon_ie = NULL;
  7283. }
  7284. pmlmepriv->wps_beacon_ie = rtw_malloc(wps_ielen);
  7285. if (pmlmepriv->wps_beacon_ie == NULL) {
  7286. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7287. return -EINVAL;
  7288. }
  7289. _rtw_memcpy(pmlmepriv->wps_beacon_ie, wps_ie, wps_ielen);
  7290. pmlmepriv->wps_beacon_ie_len = wps_ielen;
  7291. update_beacon(padapter, _VENDOR_SPECIFIC_IE_, wps_oui, _TRUE);
  7292. }
  7293. /* buf += wps_ielen; */
  7294. /* len -= wps_ielen; */
  7295. #ifdef CONFIG_P2P
  7296. p2p_ie = rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen);
  7297. if (p2p_ie) {
  7298. #ifdef CONFIG_DEBUG_CFG80211
  7299. RTW_INFO("bcn_p2p_ielen=%d\n", p2p_ielen);
  7300. #endif
  7301. if (pmlmepriv->p2p_beacon_ie) {
  7302. u32 free_len = pmlmepriv->p2p_beacon_ie_len;
  7303. pmlmepriv->p2p_beacon_ie_len = 0;
  7304. rtw_mfree(pmlmepriv->p2p_beacon_ie, free_len);
  7305. pmlmepriv->p2p_beacon_ie = NULL;
  7306. }
  7307. pmlmepriv->p2p_beacon_ie = rtw_malloc(p2p_ielen);
  7308. if (pmlmepriv->p2p_beacon_ie == NULL) {
  7309. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7310. return -EINVAL;
  7311. }
  7312. _rtw_memcpy(pmlmepriv->p2p_beacon_ie, p2p_ie, p2p_ielen);
  7313. pmlmepriv->p2p_beacon_ie_len = p2p_ielen;
  7314. }
  7315. #endif /* CONFIG_P2P */
  7316. #ifdef CONFIG_WFD
  7317. wfd_ie = rtw_get_wfd_ie(buf, len, NULL, &wfd_ielen);
  7318. if (wfd_ie) {
  7319. #ifdef CONFIG_DEBUG_CFG80211
  7320. RTW_INFO("bcn_wfd_ielen=%d\n", wfd_ielen);
  7321. #endif
  7322. if (rtw_mlme_update_wfd_ie_data(pmlmepriv, MLME_BEACON_IE, wfd_ie, wfd_ielen) != _SUCCESS)
  7323. return -EINVAL;
  7324. }
  7325. #endif /* CONFIG_WFD */
  7326. pmlmeext->bstart_bss = _TRUE;
  7327. }
  7328. return ret;
  7329. }
  7330. static int rtw_cfg80211_set_probe_resp_wpsp2pie(struct net_device *net, char *buf, int len)
  7331. {
  7332. int ret = 0;
  7333. uint wps_ielen = 0;
  7334. u8 *wps_ie;
  7335. u32 p2p_ielen = 0;
  7336. u8 *p2p_ie;
  7337. u32 wfd_ielen = 0;
  7338. u8 *wfd_ie;
  7339. _adapter *padapter = (_adapter *)rtw_netdev_priv(net);
  7340. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  7341. #ifdef CONFIG_DEBUG_CFG80211
  7342. RTW_INFO("%s, ielen=%d\n", __func__, len);
  7343. #endif
  7344. if (len > 0) {
  7345. wps_ie = rtw_get_wps_ie(buf, len, NULL, &wps_ielen);
  7346. if (wps_ie) {
  7347. uint attr_contentlen = 0;
  7348. u16 uconfig_method, *puconfig_method = NULL;
  7349. #ifdef CONFIG_DEBUG_CFG80211
  7350. RTW_INFO("probe_resp_wps_ielen=%d\n", wps_ielen);
  7351. #endif
  7352. if (check_fwstate(pmlmepriv, WIFI_UNDER_WPS)) {
  7353. u8 sr = 0;
  7354. rtw_get_wps_attr_content(wps_ie, wps_ielen, WPS_ATTR_SELECTED_REGISTRAR, (u8 *)(&sr), NULL);
  7355. if (sr != 0)
  7356. RTW_INFO("%s, got sr\n", __func__);
  7357. else {
  7358. RTW_INFO("GO mode process WPS under site-survey, sr no set\n");
  7359. return ret;
  7360. }
  7361. }
  7362. if (pmlmepriv->wps_probe_resp_ie) {
  7363. u32 free_len = pmlmepriv->wps_probe_resp_ie_len;
  7364. pmlmepriv->wps_probe_resp_ie_len = 0;
  7365. rtw_mfree(pmlmepriv->wps_probe_resp_ie, free_len);
  7366. pmlmepriv->wps_probe_resp_ie = NULL;
  7367. }
  7368. pmlmepriv->wps_probe_resp_ie = rtw_malloc(wps_ielen);
  7369. if (pmlmepriv->wps_probe_resp_ie == NULL) {
  7370. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7371. return -EINVAL;
  7372. }
  7373. /* add PUSH_BUTTON config_method by driver self in wpsie of probe_resp at GO Mode */
  7374. puconfig_method = (u16 *)rtw_get_wps_attr_content(wps_ie, wps_ielen, WPS_ATTR_CONF_METHOD , NULL, &attr_contentlen);
  7375. if (puconfig_method != NULL) {
  7376. /* struct registry_priv *pregistrypriv = &padapter->registrypriv; */
  7377. struct wireless_dev *wdev = padapter->rtw_wdev;
  7378. #ifdef CONFIG_DEBUG_CFG80211
  7379. /* printk("config_method in wpsie of probe_resp = 0x%x\n", be16_to_cpu(*puconfig_method)); */
  7380. #endif
  7381. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  7382. /* for WIFI-DIRECT LOGO 4.2.2, AUTO GO can't set PUSH_BUTTON flags */
  7383. if (wdev->iftype == NL80211_IFTYPE_P2P_GO) {
  7384. uconfig_method = WPS_CM_PUSH_BUTTON;
  7385. uconfig_method = cpu_to_be16(uconfig_method);
  7386. *puconfig_method &= ~uconfig_method;
  7387. }
  7388. #endif
  7389. }
  7390. _rtw_memcpy(pmlmepriv->wps_probe_resp_ie, wps_ie, wps_ielen);
  7391. pmlmepriv->wps_probe_resp_ie_len = wps_ielen;
  7392. }
  7393. /* buf += wps_ielen; */
  7394. /* len -= wps_ielen; */
  7395. #ifdef CONFIG_P2P
  7396. p2p_ie = rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen);
  7397. if (p2p_ie) {
  7398. u8 is_GO = _FALSE;
  7399. u32 attr_contentlen = 0;
  7400. u16 cap_attr = 0;
  7401. #ifdef CONFIG_DEBUG_CFG80211
  7402. RTW_INFO("probe_resp_p2p_ielen=%d\n", p2p_ielen);
  7403. #endif
  7404. /* Check P2P Capability ATTR */
  7405. if (rtw_get_p2p_attr_content(p2p_ie, p2p_ielen, P2P_ATTR_CAPABILITY, (u8 *)&cap_attr, (uint *) &attr_contentlen)) {
  7406. u8 grp_cap = 0;
  7407. /* RTW_INFO( "[%s] Got P2P Capability Attr!!\n", __FUNCTION__ ); */
  7408. cap_attr = le16_to_cpu(cap_attr);
  7409. grp_cap = (u8)((cap_attr >> 8) & 0xff);
  7410. is_GO = (grp_cap & BIT(0)) ? _TRUE : _FALSE;
  7411. if (is_GO)
  7412. RTW_INFO("Got P2P Capability Attr, grp_cap=0x%x, is_GO\n", grp_cap);
  7413. }
  7414. if (is_GO == _FALSE) {
  7415. if (pmlmepriv->p2p_probe_resp_ie) {
  7416. u32 free_len = pmlmepriv->p2p_probe_resp_ie_len;
  7417. pmlmepriv->p2p_probe_resp_ie_len = 0;
  7418. rtw_mfree(pmlmepriv->p2p_probe_resp_ie, free_len);
  7419. pmlmepriv->p2p_probe_resp_ie = NULL;
  7420. }
  7421. pmlmepriv->p2p_probe_resp_ie = rtw_malloc(p2p_ielen);
  7422. if (pmlmepriv->p2p_probe_resp_ie == NULL) {
  7423. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7424. return -EINVAL;
  7425. }
  7426. _rtw_memcpy(pmlmepriv->p2p_probe_resp_ie, p2p_ie, p2p_ielen);
  7427. pmlmepriv->p2p_probe_resp_ie_len = p2p_ielen;
  7428. } else {
  7429. if (pmlmepriv->p2p_go_probe_resp_ie) {
  7430. u32 free_len = pmlmepriv->p2p_go_probe_resp_ie_len;
  7431. pmlmepriv->p2p_go_probe_resp_ie_len = 0;
  7432. rtw_mfree(pmlmepriv->p2p_go_probe_resp_ie, free_len);
  7433. pmlmepriv->p2p_go_probe_resp_ie = NULL;
  7434. }
  7435. pmlmepriv->p2p_go_probe_resp_ie = rtw_malloc(p2p_ielen);
  7436. if (pmlmepriv->p2p_go_probe_resp_ie == NULL) {
  7437. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7438. return -EINVAL;
  7439. }
  7440. _rtw_memcpy(pmlmepriv->p2p_go_probe_resp_ie, p2p_ie, p2p_ielen);
  7441. pmlmepriv->p2p_go_probe_resp_ie_len = p2p_ielen;
  7442. }
  7443. }
  7444. #endif /* CONFIG_P2P */
  7445. #ifdef CONFIG_WFD
  7446. wfd_ie = rtw_get_wfd_ie(buf, len, NULL, &wfd_ielen);
  7447. if (wfd_ie) {
  7448. #ifdef CONFIG_DEBUG_CFG80211
  7449. RTW_INFO("probe_resp_wfd_ielen=%d\n", wfd_ielen);
  7450. #endif
  7451. if (rtw_mlme_update_wfd_ie_data(pmlmepriv, MLME_PROBE_RESP_IE, wfd_ie, wfd_ielen) != _SUCCESS)
  7452. return -EINVAL;
  7453. }
  7454. #endif /* CONFIG_WFD */
  7455. }
  7456. return ret;
  7457. }
  7458. static int rtw_cfg80211_set_assoc_resp_wpsp2pie(struct net_device *net, char *buf, int len)
  7459. {
  7460. int ret = 0;
  7461. _adapter *padapter = (_adapter *)rtw_netdev_priv(net);
  7462. struct mlme_priv *pmlmepriv = &(padapter->mlmepriv);
  7463. u8 *ie;
  7464. u32 ie_len;
  7465. RTW_INFO("%s, ielen=%d\n", __func__, len);
  7466. if (len <= 0)
  7467. goto exit;
  7468. ie = rtw_get_wps_ie(buf, len, NULL, &ie_len);
  7469. if (ie && ie_len) {
  7470. if (pmlmepriv->wps_assoc_resp_ie) {
  7471. u32 free_len = pmlmepriv->wps_assoc_resp_ie_len;
  7472. pmlmepriv->wps_assoc_resp_ie_len = 0;
  7473. rtw_mfree(pmlmepriv->wps_assoc_resp_ie, free_len);
  7474. pmlmepriv->wps_assoc_resp_ie = NULL;
  7475. }
  7476. pmlmepriv->wps_assoc_resp_ie = rtw_malloc(ie_len);
  7477. if (pmlmepriv->wps_assoc_resp_ie == NULL) {
  7478. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7479. return -EINVAL;
  7480. }
  7481. _rtw_memcpy(pmlmepriv->wps_assoc_resp_ie, ie, ie_len);
  7482. pmlmepriv->wps_assoc_resp_ie_len = ie_len;
  7483. }
  7484. ie = rtw_get_p2p_ie(buf, len, NULL, &ie_len);
  7485. if (ie && ie_len) {
  7486. if (pmlmepriv->p2p_assoc_resp_ie) {
  7487. u32 free_len = pmlmepriv->p2p_assoc_resp_ie_len;
  7488. pmlmepriv->p2p_assoc_resp_ie_len = 0;
  7489. rtw_mfree(pmlmepriv->p2p_assoc_resp_ie, free_len);
  7490. pmlmepriv->p2p_assoc_resp_ie = NULL;
  7491. }
  7492. pmlmepriv->p2p_assoc_resp_ie = rtw_malloc(ie_len);
  7493. if (pmlmepriv->p2p_assoc_resp_ie == NULL) {
  7494. RTW_INFO("%s()-%d: rtw_malloc() ERROR!\n", __FUNCTION__, __LINE__);
  7495. return -EINVAL;
  7496. }
  7497. _rtw_memcpy(pmlmepriv->p2p_assoc_resp_ie, ie, ie_len);
  7498. pmlmepriv->p2p_assoc_resp_ie_len = ie_len;
  7499. }
  7500. #ifdef CONFIG_WFD
  7501. ie = rtw_get_wfd_ie(buf, len, NULL, &ie_len);
  7502. if (rtw_mlme_update_wfd_ie_data(pmlmepriv, MLME_ASSOC_RESP_IE, ie, ie_len) != _SUCCESS)
  7503. return -EINVAL;
  7504. #endif
  7505. exit:
  7506. return ret;
  7507. }
  7508. int rtw_cfg80211_set_mgnt_wpsp2pie(struct net_device *net, char *buf, int len,
  7509. int type)
  7510. {
  7511. int ret = 0;
  7512. uint wps_ielen = 0;
  7513. u32 p2p_ielen = 0;
  7514. #ifdef CONFIG_DEBUG_CFG80211
  7515. RTW_INFO("%s, ielen=%d\n", __func__, len);
  7516. #endif
  7517. if ((rtw_get_wps_ie(buf, len, NULL, &wps_ielen) && (wps_ielen > 0))
  7518. #ifdef CONFIG_P2P
  7519. || (rtw_get_p2p_ie(buf, len, NULL, &p2p_ielen) && (p2p_ielen > 0))
  7520. #endif
  7521. ) {
  7522. if (net != NULL) {
  7523. switch (type) {
  7524. case 0x1: /* BEACON */
  7525. ret = rtw_cfg80211_set_beacon_wpsp2pie(net, buf, len);
  7526. break;
  7527. case 0x2: /* PROBE_RESP */
  7528. ret = rtw_cfg80211_set_probe_resp_wpsp2pie(net, buf, len);
  7529. #ifdef CONFIG_P2P
  7530. if (ret == 0)
  7531. adapter_wdev_data((_adapter *)rtw_netdev_priv(net))->probe_resp_ie_update_time = rtw_get_current_time();
  7532. #endif
  7533. break;
  7534. case 0x4: /* ASSOC_RESP */
  7535. ret = rtw_cfg80211_set_assoc_resp_wpsp2pie(net, buf, len);
  7536. break;
  7537. }
  7538. }
  7539. }
  7540. return ret;
  7541. }
  7542. #ifdef CONFIG_80211N_HT
  7543. static void rtw_cfg80211_init_ht_capab_ex(_adapter *padapter
  7544. , struct ieee80211_sta_ht_cap *ht_cap, BAND_TYPE band, u8 rf_type)
  7545. {
  7546. struct registry_priv *pregistrypriv = &padapter->registrypriv;
  7547. struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
  7548. struct ht_priv *phtpriv = &pmlmepriv->htpriv;
  7549. u8 stbc_rx_enable = _FALSE;
  7550. rtw_ht_use_default_setting(padapter);
  7551. /* RX LDPC */
  7552. if (TEST_FLAG(phtpriv->ldpc_cap, LDPC_HT_ENABLE_RX))
  7553. ht_cap->cap |= IEEE80211_HT_CAP_LDPC_CODING;
  7554. /* TX STBC */
  7555. if (TEST_FLAG(phtpriv->stbc_cap, STBC_HT_ENABLE_TX))
  7556. ht_cap->cap |= IEEE80211_HT_CAP_TX_STBC;
  7557. /* RX STBC */
  7558. if (TEST_FLAG(phtpriv->stbc_cap, STBC_HT_ENABLE_RX)) {
  7559. /*rtw_rx_stbc 0: disable, bit(0):enable 2.4g, bit(1):enable 5g*/
  7560. if (band == BAND_ON_2_4G)
  7561. stbc_rx_enable = (pregistrypriv->rx_stbc & BIT(0)) ? _TRUE : _FALSE;
  7562. if (band == BAND_ON_5G)
  7563. stbc_rx_enable = (pregistrypriv->rx_stbc & BIT(1)) ? _TRUE : _FALSE;
  7564. if (stbc_rx_enable) {
  7565. switch (rf_type) {
  7566. case RF_1T1R:
  7567. ht_cap->cap |= IEEE80211_HT_CAP_RX_STBC_1R;/*RX STBC One spatial stream*/
  7568. break;
  7569. case RF_2T2R:
  7570. case RF_1T2R:
  7571. ht_cap->cap |= IEEE80211_HT_CAP_RX_STBC_1R;/* Only one spatial-stream STBC RX is supported */
  7572. break;
  7573. case RF_3T3R:
  7574. case RF_3T4R:
  7575. case RF_4T4R:
  7576. ht_cap->cap |= IEEE80211_HT_CAP_RX_STBC_1R;/* Only one spatial-stream STBC RX is supported */
  7577. break;
  7578. default:
  7579. RTW_INFO("[warning] rf_type %d is not expected\n", rf_type);
  7580. break;
  7581. }
  7582. }
  7583. }
  7584. }
  7585. static void rtw_cfg80211_init_ht_capab(_adapter *padapter
  7586. , struct ieee80211_sta_ht_cap *ht_cap, BAND_TYPE band, u8 rf_type)
  7587. {
  7588. struct registry_priv *regsty = &padapter->registrypriv;
  7589. struct hal_spec_t *hal_spec = GET_HAL_SPEC(padapter);
  7590. u8 rx_nss = 0;
  7591. if (!regsty->ht_enable || !is_supported_ht(regsty->wireless_mode))
  7592. return;
  7593. ht_cap->ht_supported = 1;
  7594. ht_cap->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
  7595. IEEE80211_HT_CAP_SGI_40 | IEEE80211_HT_CAP_SGI_20 |
  7596. IEEE80211_HT_CAP_DSSSCCK40 | IEEE80211_HT_CAP_MAX_AMSDU;
  7597. rtw_cfg80211_init_ht_capab_ex(padapter, ht_cap, band, rf_type);
  7598. /*
  7599. *Maximum length of AMPDU that the STA can receive.
  7600. *Length = 2 ^ (13 + max_ampdu_length_exp) - 1 (octets)
  7601. */
  7602. ht_cap->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
  7603. /*Minimum MPDU start spacing , */
  7604. ht_cap->ampdu_density = IEEE80211_HT_MPDU_DENSITY_16;
  7605. ht_cap->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
  7606. rx_nss = rtw_min(rf_type_to_rf_rx_cnt(rf_type), hal_spec->rx_nss_num);
  7607. switch (rx_nss) {
  7608. case 1:
  7609. ht_cap->mcs.rx_mask[0] = 0xFF;
  7610. break;
  7611. case 2:
  7612. ht_cap->mcs.rx_mask[0] = 0xFF;
  7613. ht_cap->mcs.rx_mask[1] = 0xFF;
  7614. break;
  7615. case 3:
  7616. ht_cap->mcs.rx_mask[0] = 0xFF;
  7617. ht_cap->mcs.rx_mask[1] = 0xFF;
  7618. ht_cap->mcs.rx_mask[2] = 0xFF;
  7619. break;
  7620. case 4:
  7621. ht_cap->mcs.rx_mask[0] = 0xFF;
  7622. ht_cap->mcs.rx_mask[1] = 0xFF;
  7623. ht_cap->mcs.rx_mask[2] = 0xFF;
  7624. ht_cap->mcs.rx_mask[3] = 0xFF;
  7625. break;
  7626. default:
  7627. rtw_warn_on(1);
  7628. RTW_INFO("%s, error rf_type=%d\n", __func__, rf_type);
  7629. };
  7630. ht_cap->mcs.rx_highest = cpu_to_le16(
  7631. rtw_mcs_rate(rf_type
  7632. , hal_is_bw_support(padapter, CHANNEL_WIDTH_40)
  7633. , hal_is_bw_support(padapter, CHANNEL_WIDTH_40) ? ht_cap->cap & IEEE80211_HT_CAP_SGI_40 : ht_cap->cap & IEEE80211_HT_CAP_SGI_20
  7634. , ht_cap->mcs.rx_mask) / 10);
  7635. }
  7636. #endif /* CONFIG_80211N_HT */
  7637. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  7638. static void rtw_cfg80211_init_vht_capab(_adapter *padapter
  7639. , struct ieee80211_sta_vht_cap *sta_vht_cap, BAND_TYPE band, u8 rf_type)
  7640. {
  7641. struct registry_priv *regsty = &padapter->registrypriv;
  7642. u8 vht_cap_ie[2 + 12] = {0};
  7643. if (!REGSTY_IS_11AC_ENABLE(regsty) || !is_supported_vht(regsty->wireless_mode))
  7644. return;
  7645. rtw_vht_use_default_setting(padapter);
  7646. rtw_build_vht_cap_ie(padapter, vht_cap_ie);
  7647. sta_vht_cap->vht_supported = 1;
  7648. _rtw_memcpy(&sta_vht_cap->cap, vht_cap_ie + 2, 4);
  7649. _rtw_memcpy(&sta_vht_cap->vht_mcs, vht_cap_ie + 2 + 4, 8);
  7650. }
  7651. #endif /* defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0)) */
  7652. void rtw_cfg80211_init_wdev_data(_adapter *padapter)
  7653. {
  7654. #ifdef CONFIG_CONCURRENT_MODE
  7655. struct rtw_wdev_priv *pwdev_priv = adapter_wdev_data(padapter);
  7656. ATOMIC_SET(&pwdev_priv->switch_ch_to, 1);
  7657. #endif
  7658. }
  7659. void rtw_cfg80211_init_wiphy(_adapter *padapter)
  7660. {
  7661. u8 rf_type;
  7662. struct ieee80211_supported_band *band;
  7663. struct wireless_dev *pwdev = padapter->rtw_wdev;
  7664. struct wiphy *wiphy = pwdev->wiphy;
  7665. rtw_hal_get_hwreg(padapter, HW_VAR_RF_TYPE, (u8 *)(&rf_type));
  7666. RTW_INFO("%s:rf_type=%d\n", __func__, rf_type);
  7667. if (IsSupported24G(padapter->registrypriv.wireless_mode)) {
  7668. band = wiphy->bands[NL80211_BAND_2GHZ];
  7669. if (band) {
  7670. #if defined(CONFIG_80211N_HT)
  7671. rtw_cfg80211_init_ht_capab(padapter, &band->ht_cap, BAND_ON_2_4G, rf_type);
  7672. #endif
  7673. }
  7674. }
  7675. #ifdef CONFIG_IEEE80211_BAND_5GHZ
  7676. if (is_supported_5g(padapter->registrypriv.wireless_mode)) {
  7677. band = wiphy->bands[NL80211_BAND_5GHZ];
  7678. if (band) {
  7679. #if defined(CONFIG_80211N_HT)
  7680. rtw_cfg80211_init_ht_capab(padapter, &band->ht_cap, BAND_ON_5G, rf_type);
  7681. #endif
  7682. #if defined(CONFIG_80211AC_VHT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  7683. rtw_cfg80211_init_vht_capab(padapter, &band->vht_cap, BAND_ON_5G, rf_type);
  7684. #endif
  7685. }
  7686. }
  7687. #endif
  7688. /* copy mac_addr to wiphy */
  7689. _rtw_memcpy(wiphy->perm_addr, adapter_mac_addr(padapter), ETH_ALEN);
  7690. }
  7691. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7692. struct ieee80211_iface_limit rtw_limits[] = {
  7693. {
  7694. .max = 2,
  7695. .types = BIT(NL80211_IFTYPE_STATION)
  7696. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  7697. | BIT(NL80211_IFTYPE_P2P_CLIENT)
  7698. #endif
  7699. },
  7700. #ifdef CONFIG_AP_MODE
  7701. {
  7702. .max = 1,
  7703. .types = BIT(NL80211_IFTYPE_AP)
  7704. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  7705. | BIT(NL80211_IFTYPE_P2P_GO)
  7706. #endif
  7707. },
  7708. #endif
  7709. #if defined(RTW_DEDICATED_P2P_DEVICE)
  7710. {
  7711. .max = 1,
  7712. .types = BIT(NL80211_IFTYPE_P2P_DEVICE)
  7713. },
  7714. #endif
  7715. #if defined(CONFIG_RTW_MESH)
  7716. {
  7717. .max = 1,
  7718. .types = BIT(NL80211_IFTYPE_MESH_POINT)
  7719. },
  7720. #endif
  7721. };
  7722. struct ieee80211_iface_combination rtw_combinations[] = {
  7723. {
  7724. .limits = rtw_limits,
  7725. .n_limits = ARRAY_SIZE(rtw_limits),
  7726. #if defined(RTW_DEDICATED_P2P_DEVICE)
  7727. .max_interfaces = 3,
  7728. #else
  7729. .max_interfaces = 2,
  7730. #endif
  7731. .num_different_channels = 1,
  7732. },
  7733. };
  7734. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0)) */
  7735. static void rtw_cfg80211_preinit_wiphy(_adapter *adapter, struct wiphy *wiphy)
  7736. {
  7737. struct dvobj_priv *dvobj = adapter_to_dvobj(adapter);
  7738. struct registry_priv *regsty = dvobj_to_regsty(dvobj);
  7739. wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
  7740. wiphy->max_scan_ssids = RTW_SSID_SCAN_AMOUNT;
  7741. wiphy->max_scan_ie_len = RTW_SCAN_IE_LEN_MAX;
  7742. wiphy->max_num_pmkids = RTW_MAX_NUM_PMKIDS;
  7743. #if CONFIG_RTW_MACADDR_ACL && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  7744. wiphy->max_acl_mac_addrs = NUM_ACL;
  7745. #endif
  7746. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38)) || defined(COMPAT_KERNEL_RELEASE)
  7747. wiphy->max_remain_on_channel_duration = RTW_MAX_REMAIN_ON_CHANNEL_DURATION;
  7748. #endif
  7749. wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
  7750. | BIT(NL80211_IFTYPE_ADHOC)
  7751. #ifdef CONFIG_AP_MODE
  7752. | BIT(NL80211_IFTYPE_AP)
  7753. #ifdef CONFIG_WIFI_MONITOR
  7754. | BIT(NL80211_IFTYPE_MONITOR)
  7755. #endif
  7756. #endif
  7757. #if defined(CONFIG_P2P) && ((LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE))
  7758. | BIT(NL80211_IFTYPE_P2P_CLIENT)
  7759. | BIT(NL80211_IFTYPE_P2P_GO)
  7760. #if defined(RTW_DEDICATED_P2P_DEVICE)
  7761. | BIT(NL80211_IFTYPE_P2P_DEVICE)
  7762. #endif
  7763. #endif
  7764. #ifdef CONFIG_RTW_MESH
  7765. | BIT(NL80211_IFTYPE_MESH_POINT) /* 2.6.26 */
  7766. #endif
  7767. ;
  7768. #if defined(CONFIG_ANDROID) && !defined(RTW_SINGLE_WIPHY)
  7769. if (is_primary_adapter(adapter)) {
  7770. wiphy->interface_modes &= ~(BIT(NL80211_IFTYPE_P2P_GO) | BIT(NL80211_IFTYPE_P2P_CLIENT));
  7771. RTW_INFO("%s primary- don't set p2p capability\n", __func__);
  7772. }
  7773. #endif
  7774. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  7775. #ifdef CONFIG_AP_MODE
  7776. wiphy->mgmt_stypes = rtw_cfg80211_default_mgmt_stypes;
  7777. #endif /* CONFIG_AP_MODE */
  7778. #endif
  7779. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7780. #ifdef CONFIG_WIFI_MONITOR
  7781. wiphy->software_iftypes |= BIT(NL80211_IFTYPE_MONITOR);
  7782. #endif
  7783. #endif
  7784. #if defined(RTW_SINGLE_WIPHY) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7785. wiphy->iface_combinations = rtw_combinations;
  7786. wiphy->n_iface_combinations = ARRAY_SIZE(rtw_combinations);
  7787. #endif
  7788. wiphy->cipher_suites = rtw_cipher_suites;
  7789. wiphy->n_cipher_suites = ARRAY_SIZE(rtw_cipher_suites);
  7790. if (IsSupported24G(adapter->registrypriv.wireless_mode))
  7791. wiphy->bands[NL80211_BAND_2GHZ] = rtw_spt_band_alloc(BAND_ON_2_4G);
  7792. #ifdef CONFIG_IEEE80211_BAND_5GHZ
  7793. if (is_supported_5g(adapter->registrypriv.wireless_mode))
  7794. wiphy->bands[NL80211_BAND_5GHZ] = rtw_spt_band_alloc(BAND_ON_5G);
  7795. #endif
  7796. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38) && LINUX_VERSION_CODE < KERNEL_VERSION(3, 0, 0))
  7797. wiphy->flags |= WIPHY_FLAG_SUPPORTS_SEPARATE_DEFAULT_KEYS;
  7798. #endif
  7799. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  7800. wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
  7801. wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME;
  7802. /* remove WIPHY_FLAG_OFFCHAN_TX, because we not support this feature */
  7803. /* wiphy->flags |= WIPHY_FLAG_OFFCHAN_TX | WIPHY_FLAG_HAVE_AP_SME; */
  7804. #endif
  7805. #if defined(CONFIG_PM) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0) && \
  7806. LINUX_VERSION_CODE < KERNEL_VERSION(4, 12, 0))
  7807. wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
  7808. #ifdef CONFIG_PNO_SUPPORT
  7809. wiphy->max_sched_scan_ssids = MAX_PNO_LIST_COUNT;
  7810. #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0)
  7811. wiphy->max_match_sets = MAX_PNO_LIST_COUNT;
  7812. #endif
  7813. #endif
  7814. #endif
  7815. #if defined(CONFIG_PM) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7816. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 11, 0))
  7817. wiphy->wowlan = wowlan_stub;
  7818. #else
  7819. wiphy->wowlan = &wowlan_stub;
  7820. #endif
  7821. #endif
  7822. #if defined(CONFIG_TDLS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  7823. wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS;
  7824. #ifndef CONFIG_TDLS_DRIVER_SETUP
  7825. wiphy->flags |= WIPHY_FLAG_TDLS_EXTERNAL_SETUP; /* Driver handles key exchange */
  7826. wiphy->flags |= NL80211_ATTR_HT_CAPABILITY;
  7827. #endif /* CONFIG_TDLS_DRIVER_SETUP */
  7828. #endif /* CONFIG_TDLS */
  7829. if (regsty->power_mgnt != PS_MODE_ACTIVE)
  7830. wiphy->flags |= WIPHY_FLAG_PS_ON_BY_DEFAULT;
  7831. else
  7832. wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
  7833. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  7834. /* wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM; */
  7835. #endif
  7836. #ifdef CONFIG_RTW_MESH
  7837. wiphy->flags |= 0
  7838. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7839. | WIPHY_FLAG_IBSS_RSN
  7840. #endif
  7841. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  7842. | WIPHY_FLAG_MESH_AUTH
  7843. #endif
  7844. ;
  7845. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0))
  7846. wiphy->features |= 0
  7847. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0))
  7848. | NL80211_FEATURE_USERSPACE_MPM
  7849. #endif
  7850. ;
  7851. #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0)) */
  7852. #endif /* CONFIG_RTW_MESH */
  7853. }
  7854. #ifdef CONFIG_RFKILL_POLL
  7855. void rtw_cfg80211_init_rfkill(struct wiphy *wiphy)
  7856. {
  7857. wiphy_rfkill_set_hw_state(wiphy, 0);
  7858. wiphy_rfkill_start_polling(wiphy);
  7859. }
  7860. void rtw_cfg80211_deinit_rfkill(struct wiphy *wiphy)
  7861. {
  7862. wiphy_rfkill_stop_polling(wiphy);
  7863. }
  7864. static void cfg80211_rtw_rfkill_poll(struct wiphy *wiphy)
  7865. {
  7866. _adapter *padapter = NULL;
  7867. bool blocked = _FALSE;
  7868. u8 valid = 0;
  7869. padapter = wiphy_to_adapter(wiphy);
  7870. if (adapter_to_dvobj(padapter)->processing_dev_remove == _TRUE) {
  7871. /*RTW_INFO("cfg80211_rtw_rfkill_poll: device is removed!\n");*/
  7872. return;
  7873. }
  7874. blocked = rtw_hal_rfkill_poll(padapter, &valid);
  7875. /*RTW_INFO("cfg80211_rtw_rfkill_poll: valid=%d, blocked=%d\n",
  7876. valid, blocked);*/
  7877. if (valid)
  7878. wiphy_rfkill_set_hw_state(wiphy, blocked);
  7879. }
  7880. #endif
  7881. #if defined(CONFIG_RTW_HOSTAPD_ACS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33))
  7882. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) && (LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0))
  7883. #define SURVEY_INFO_TIME SURVEY_INFO_CHANNEL_TIME
  7884. #define SURVEY_INFO_TIME_BUSY SURVEY_INFO_CHANNEL_TIME_BUSY
  7885. #define SURVEY_INFO_TIME_EXT_BUSY SURVEY_INFO_CHANNEL_TIME_EXT_BUSY
  7886. #define SURVEY_INFO_TIME_RX SURVEY_INFO_CHANNEL_TIME_RX
  7887. #define SURVEY_INFO_TIME_TX SURVEY_INFO_CHANNEL_TIME_TX
  7888. #endif
  7889. #ifdef CONFIG_FIND_BEST_CHANNEL
  7890. static void rtw_cfg80211_set_survey_info_with_find_best_channel(struct wiphy *wiphy
  7891. , struct net_device *netdev, int idx, struct survey_info *info)
  7892. {
  7893. _adapter *adapter = (_adapter *)rtw_netdev_priv(netdev);
  7894. struct rf_ctl_t *rfctl = adapter_to_rfctl(adapter);
  7895. RT_CHANNEL_INFO *ch_set = rfctl->channel_set;
  7896. u8 ch_num = rfctl->max_chan_nums;
  7897. u32 total_rx_cnt = 0;
  7898. int i;
  7899. s8 noise = -50; /*channel noise in dBm. This and all following fields are optional */
  7900. u64 time = 100; /*amount of time in ms the radio was turn on (on the channel)*/
  7901. u64 time_busy = 0; /*amount of time the primary channel was sensed busy*/
  7902. info->filled = SURVEY_INFO_NOISE_DBM
  7903. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7904. | SURVEY_INFO_TIME | SURVEY_INFO_TIME_BUSY
  7905. #endif
  7906. ;
  7907. for (i = 0; i < ch_num; i++)
  7908. total_rx_cnt += ch_set[i].rx_count;
  7909. time_busy = ch_set[idx].rx_count * time / total_rx_cnt;
  7910. noise += ch_set[idx].rx_count * 50 / total_rx_cnt;
  7911. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7912. #if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0))
  7913. info->channel_time = time;
  7914. info->channel_time_busy = time_busy;
  7915. #else
  7916. info->time = time;
  7917. info->time_busy = time_busy;
  7918. #endif
  7919. #endif
  7920. info->noise = noise;
  7921. /* reset if final channel is got */
  7922. if (idx == ch_num - 1) {
  7923. for (i = 0; i < ch_num; i++)
  7924. ch_set[i].rx_count = 0;
  7925. }
  7926. }
  7927. #endif /* CONFIG_FIND_BEST_CHANNEL */
  7928. #if defined(CONFIG_RTW_ACS) && defined(CONFIG_BACKGROUND_NOISE_MONITOR)
  7929. static void rtw_cfg80211_set_survey_info_with_clm(PADAPTER padapter, int idx, struct survey_info *pinfo)
  7930. {
  7931. s8 noise = -50; /*channel noise in dBm. This and all following fields are optional */
  7932. u64 time = SURVEY_TO; /*amount of time in ms the radio was turn on (on the channel)*/
  7933. u64 time_busy = 0; /*amount of time the primary channel was sensed busy*/
  7934. u8 chan = (u8)idx;
  7935. if ((idx < 0) || (pinfo == NULL))
  7936. return;
  7937. pinfo->filled = SURVEY_INFO_NOISE_DBM
  7938. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7939. | SURVEY_INFO_TIME | SURVEY_INFO_TIME_BUSY
  7940. #endif
  7941. ;
  7942. time_busy = rtw_acs_get_clm_ratio_by_ch_idx(padapter, chan);
  7943. noise = rtw_noise_query_by_chan_idx(padapter, chan);
  7944. /* RTW_INFO("%s: ch-idx:%d time=%llu(ms), time_busy=%llu(ms), noise=%d(dbm)\n", __func__, idx, time, time_busy, noise); */
  7945. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37))
  7946. #if (LINUX_VERSION_CODE < KERNEL_VERSION(4, 0, 0))
  7947. pinfo->channel_time = time;
  7948. pinfo->channel_time_busy = time_busy;
  7949. #else
  7950. pinfo->time = time;
  7951. pinfo->time_busy = time_busy;
  7952. #endif
  7953. #endif
  7954. pinfo->noise = noise;
  7955. }
  7956. #endif
  7957. int rtw_hostapd_acs_dump_survey(struct wiphy *wiphy, struct net_device *netdev, int idx, struct survey_info *info)
  7958. {
  7959. PADAPTER padapter = (_adapter *)rtw_netdev_priv(netdev);
  7960. struct rf_ctl_t *rfctl = adapter_to_rfctl(padapter);
  7961. RT_CHANNEL_INFO *pch_set = rfctl->channel_set;
  7962. u8 max_chan_nums = rfctl->max_chan_nums;
  7963. u32 freq = 0;
  7964. u8 ret = 0;
  7965. u16 channel = 0;
  7966. if (!netdev || !info) {
  7967. RTW_INFO("%s: invial parameters.\n", __func__);
  7968. return -EINVAL;
  7969. }
  7970. _rtw_memset(info, 0, sizeof(struct survey_info));
  7971. if (padapter->bup == _FALSE) {
  7972. RTW_INFO("%s: net device is down.\n", __func__);
  7973. return -EIO;
  7974. }
  7975. if (idx >= max_chan_nums)
  7976. return -ENOENT;
  7977. channel = pch_set[idx].ChannelNum;
  7978. freq = rtw_ch2freq(channel);
  7979. info->channel = ieee80211_get_channel(wiphy, freq);
  7980. /* RTW_INFO("%s: channel %d, freq %d\n", __func__, channel, freq); */
  7981. if (!info->channel)
  7982. return -EINVAL;
  7983. if (info->channel->flags == IEEE80211_CHAN_DISABLED)
  7984. return ret;
  7985. #ifdef CONFIG_FIND_BEST_CHANNEL
  7986. rtw_cfg80211_set_survey_info_with_find_best_channel(wiphy, netdev, idx, info);
  7987. #elif defined(CONFIG_RTW_ACS) && defined(CONFIG_BACKGROUND_NOISE_MONITOR)
  7988. rtw_cfg80211_set_survey_info_with_clm(padapter, idx, info);
  7989. #else
  7990. RTW_ERR("%s: unknown acs operation!\n", __func__);
  7991. #endif
  7992. return ret;
  7993. }
  7994. #endif /* defined(CONFIG_RTW_HOSTAPD_ACS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33)) */
  7995. static struct cfg80211_ops rtw_cfg80211_ops = {
  7996. .change_virtual_intf = cfg80211_rtw_change_iface,
  7997. .add_key = cfg80211_rtw_add_key,
  7998. .get_key = cfg80211_rtw_get_key,
  7999. .del_key = cfg80211_rtw_del_key,
  8000. .set_default_key = cfg80211_rtw_set_default_key,
  8001. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 30))
  8002. .set_default_mgmt_key = cfg80211_rtw_set_default_mgmt_key,
  8003. #endif
  8004. #if defined(CONFIG_GTK_OL) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0))
  8005. .set_rekey_data = cfg80211_rtw_set_rekey_data,
  8006. #endif /*CONFIG_GTK_OL*/
  8007. .get_station = cfg80211_rtw_get_station,
  8008. .scan = cfg80211_rtw_scan,
  8009. .set_wiphy_params = cfg80211_rtw_set_wiphy_params,
  8010. .connect = cfg80211_rtw_connect,
  8011. .disconnect = cfg80211_rtw_disconnect,
  8012. .join_ibss = cfg80211_rtw_join_ibss,
  8013. .leave_ibss = cfg80211_rtw_leave_ibss,
  8014. .set_tx_power = cfg80211_rtw_set_txpower,
  8015. .get_tx_power = cfg80211_rtw_get_txpower,
  8016. .set_power_mgmt = cfg80211_rtw_set_power_mgmt,
  8017. .set_pmksa = cfg80211_rtw_set_pmksa,
  8018. .del_pmksa = cfg80211_rtw_del_pmksa,
  8019. .flush_pmksa = cfg80211_rtw_flush_pmksa,
  8020. #ifdef CONFIG_AP_MODE
  8021. .add_virtual_intf = cfg80211_rtw_add_virtual_intf,
  8022. .del_virtual_intf = cfg80211_rtw_del_virtual_intf,
  8023. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0)) && !defined(COMPAT_KERNEL_RELEASE)
  8024. .add_beacon = cfg80211_rtw_add_beacon,
  8025. .set_beacon = cfg80211_rtw_set_beacon,
  8026. .del_beacon = cfg80211_rtw_del_beacon,
  8027. #else
  8028. .start_ap = cfg80211_rtw_start_ap,
  8029. .change_beacon = cfg80211_rtw_change_beacon,
  8030. .stop_ap = cfg80211_rtw_stop_ap,
  8031. #endif
  8032. #if CONFIG_RTW_MACADDR_ACL && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0))
  8033. .set_mac_acl = cfg80211_rtw_set_mac_acl,
  8034. #endif
  8035. .add_station = cfg80211_rtw_add_station,
  8036. .del_station = cfg80211_rtw_del_station,
  8037. .change_station = cfg80211_rtw_change_station,
  8038. .dump_station = cfg80211_rtw_dump_station,
  8039. .change_bss = cfg80211_rtw_change_bss,
  8040. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 29))
  8041. .set_txq_params = cfg80211_rtw_set_txq_params,
  8042. #endif
  8043. #if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 6, 0))
  8044. .set_channel = cfg80211_rtw_set_channel,
  8045. #endif
  8046. /* .auth = cfg80211_rtw_auth, */
  8047. /* .assoc = cfg80211_rtw_assoc, */
  8048. #endif /* CONFIG_AP_MODE */
  8049. #if defined(CONFIG_RTW_MESH) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 38))
  8050. .get_mesh_config = cfg80211_rtw_get_mesh_config,
  8051. .update_mesh_config = cfg80211_rtw_update_mesh_config,
  8052. .join_mesh = cfg80211_rtw_join_mesh,
  8053. .leave_mesh = cfg80211_rtw_leave_mesh,
  8054. .add_mpath = cfg80211_rtw_add_mpath,
  8055. .del_mpath = cfg80211_rtw_del_mpath,
  8056. .change_mpath = cfg80211_rtw_change_mpath,
  8057. .get_mpath = cfg80211_rtw_get_mpath,
  8058. .dump_mpath = cfg80211_rtw_dump_mpath,
  8059. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0))
  8060. .get_mpp = cfg80211_rtw_get_mpp,
  8061. .dump_mpp = cfg80211_rtw_dump_mpp,
  8062. #endif
  8063. #endif
  8064. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 6, 0))
  8065. .set_monitor_channel = cfg80211_rtw_set_monitor_channel,
  8066. #endif
  8067. #ifdef CONFIG_P2P
  8068. .remain_on_channel = cfg80211_rtw_remain_on_channel,
  8069. .cancel_remain_on_channel = cfg80211_rtw_cancel_remain_on_channel,
  8070. #if defined(RTW_DEDICATED_P2P_DEVICE)
  8071. .start_p2p_device = cfg80211_rtw_start_p2p_device,
  8072. .stop_p2p_device = cfg80211_rtw_stop_p2p_device,
  8073. #endif
  8074. #endif /* CONFIG_P2P */
  8075. #ifdef CONFIG_RTW_80211R
  8076. .update_ft_ies = cfg80211_rtw_update_ft_ies,
  8077. #endif
  8078. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37)) || defined(COMPAT_KERNEL_RELEASE)
  8079. .mgmt_tx = cfg80211_rtw_mgmt_tx,
  8080. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 8, 0))
  8081. .update_mgmt_frame_registrations = cfg80211_rtw_mgmt_frame_register,
  8082. #else
  8083. .mgmt_frame_register = cfg80211_rtw_mgmt_frame_register,
  8084. #endif
  8085. #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 34) && LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 35))
  8086. .action = cfg80211_rtw_mgmt_tx,
  8087. #endif
  8088. #if defined(CONFIG_TDLS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0))
  8089. .tdls_mgmt = cfg80211_rtw_tdls_mgmt,
  8090. .tdls_oper = cfg80211_rtw_tdls_oper,
  8091. #endif /* CONFIG_TDLS */
  8092. #if defined(CONFIG_PNO_SUPPORT) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 0, 0))
  8093. .sched_scan_start = cfg80211_rtw_sched_scan_start,
  8094. .sched_scan_stop = cfg80211_rtw_sched_scan_stop,
  8095. .suspend = cfg80211_rtw_suspend,
  8096. .resume = cfg80211_rtw_resume,
  8097. #endif /* CONFIG_PNO_SUPPORT */
  8098. #ifdef CONFIG_RFKILL_POLL
  8099. .rfkill_poll = cfg80211_rtw_rfkill_poll,
  8100. #endif
  8101. #if defined(CONFIG_RTW_HOSTAPD_ACS) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 33))
  8102. .dump_survey = rtw_hostapd_acs_dump_survey,
  8103. #endif
  8104. };
  8105. struct wiphy *rtw_wiphy_alloc(_adapter *padapter, struct device *dev)
  8106. {
  8107. struct wiphy *wiphy;
  8108. struct rtw_wiphy_data *wiphy_data;
  8109. /* wiphy */
  8110. wiphy = wiphy_new(&rtw_cfg80211_ops, sizeof(struct rtw_wiphy_data));
  8111. if (!wiphy) {
  8112. RTW_INFO("Couldn't allocate wiphy device\n");
  8113. goto exit;
  8114. }
  8115. set_wiphy_dev(wiphy, dev);
  8116. /* wiphy_data */
  8117. wiphy_data = rtw_wiphy_priv(wiphy);
  8118. wiphy_data->dvobj = adapter_to_dvobj(padapter);
  8119. #ifndef RTW_SINGLE_WIPHY
  8120. wiphy_data->adapter = padapter;
  8121. #endif
  8122. rtw_cfg80211_preinit_wiphy(padapter, wiphy);
  8123. RTW_INFO(FUNC_WIPHY_FMT"\n", FUNC_WIPHY_ARG(wiphy));
  8124. exit:
  8125. return wiphy;
  8126. }
  8127. void rtw_wiphy_free(struct wiphy *wiphy)
  8128. {
  8129. if (!wiphy)
  8130. return;
  8131. RTW_INFO(FUNC_WIPHY_FMT"\n", FUNC_WIPHY_ARG(wiphy));
  8132. if (wiphy->bands[NL80211_BAND_2GHZ]) {
  8133. rtw_spt_band_free(wiphy->bands[NL80211_BAND_2GHZ]);
  8134. wiphy->bands[NL80211_BAND_2GHZ] = NULL;
  8135. }
  8136. if (wiphy->bands[NL80211_BAND_5GHZ]) {
  8137. rtw_spt_band_free(wiphy->bands[NL80211_BAND_5GHZ]);
  8138. wiphy->bands[NL80211_BAND_5GHZ] = NULL;
  8139. }
  8140. wiphy_free(wiphy);
  8141. }
  8142. int rtw_wiphy_register(struct wiphy *wiphy)
  8143. {
  8144. RTW_INFO(FUNC_WIPHY_FMT"\n", FUNC_WIPHY_ARG(wiphy));
  8145. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0)) || defined(RTW_VENDOR_EXT_SUPPORT)
  8146. rtw_cfgvendor_attach(wiphy);
  8147. #endif
  8148. rtw_regd_init(wiphy);
  8149. return wiphy_register(wiphy);
  8150. }
  8151. void rtw_wiphy_unregister(struct wiphy *wiphy)
  8152. {
  8153. RTW_INFO(FUNC_WIPHY_FMT"\n", FUNC_WIPHY_ARG(wiphy));
  8154. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0)) || defined(RTW_VENDOR_EXT_SUPPORT)
  8155. rtw_cfgvendor_detach(wiphy);
  8156. #endif
  8157. #if defined(RTW_DEDICATED_P2P_DEVICE)
  8158. rtw_pd_iface_free(wiphy);
  8159. #endif
  8160. return wiphy_unregister(wiphy);
  8161. }
  8162. int rtw_wdev_alloc(_adapter *padapter, struct wiphy *wiphy)
  8163. {
  8164. int ret = 0;
  8165. struct net_device *pnetdev = padapter->pnetdev;
  8166. struct wireless_dev *wdev;
  8167. struct rtw_wdev_priv *pwdev_priv;
  8168. RTW_INFO("%s(padapter=%p)\n", __func__, padapter);
  8169. /* wdev */
  8170. wdev = (struct wireless_dev *)rtw_zmalloc(sizeof(struct wireless_dev));
  8171. if (!wdev) {
  8172. RTW_INFO("Couldn't allocate wireless device\n");
  8173. ret = -ENOMEM;
  8174. goto exit;
  8175. }
  8176. wdev->wiphy = wiphy;
  8177. wdev->netdev = pnetdev;
  8178. wdev->iftype = NL80211_IFTYPE_STATION;
  8179. padapter->rtw_wdev = wdev;
  8180. pnetdev->ieee80211_ptr = wdev;
  8181. /* init pwdev_priv */
  8182. pwdev_priv = adapter_wdev_data(padapter);
  8183. pwdev_priv->rtw_wdev = wdev;
  8184. pwdev_priv->pmon_ndev = NULL;
  8185. pwdev_priv->ifname_mon[0] = '\0';
  8186. pwdev_priv->padapter = padapter;
  8187. pwdev_priv->scan_request = NULL;
  8188. _rtw_spinlock_init(&pwdev_priv->scan_req_lock);
  8189. pwdev_priv->connect_req = NULL;
  8190. _rtw_spinlock_init(&pwdev_priv->connect_req_lock);
  8191. pwdev_priv->p2p_enabled = _FALSE;
  8192. pwdev_priv->probe_resp_ie_update_time = rtw_get_current_time();
  8193. pwdev_priv->provdisc_req_issued = _FALSE;
  8194. rtw_wdev_invit_info_init(&pwdev_priv->invit_info);
  8195. rtw_wdev_nego_info_init(&pwdev_priv->nego_info);
  8196. pwdev_priv->bandroid_scan = _FALSE;
  8197. if (padapter->registrypriv.power_mgnt != PS_MODE_ACTIVE)
  8198. pwdev_priv->power_mgmt = _TRUE;
  8199. else
  8200. pwdev_priv->power_mgmt = _FALSE;
  8201. _rtw_mutex_init(&pwdev_priv->roch_mutex);
  8202. #ifdef CONFIG_CONCURRENT_MODE
  8203. ATOMIC_SET(&pwdev_priv->switch_ch_to, 1);
  8204. #endif
  8205. #ifdef CONFIG_RTW_CFGVEDNOR_RSSIMONITOR
  8206. pwdev_priv->rssi_monitor_enable = 0;
  8207. pwdev_priv->rssi_monitor_max = 0;
  8208. pwdev_priv->rssi_monitor_min = 0;
  8209. #endif
  8210. exit:
  8211. return ret;
  8212. }
  8213. void rtw_wdev_free(struct wireless_dev *wdev)
  8214. {
  8215. if (!wdev)
  8216. return;
  8217. RTW_INFO("%s(wdev=%p)\n", __func__, wdev);
  8218. if (wdev_to_ndev(wdev)) {
  8219. _adapter *adapter = (_adapter *)rtw_netdev_priv(wdev_to_ndev(wdev));
  8220. struct rtw_wdev_priv *wdev_priv = adapter_wdev_data(adapter);
  8221. _irqL irqL;
  8222. _rtw_spinlock_free(&wdev_priv->scan_req_lock);
  8223. _enter_critical_bh(&wdev_priv->connect_req_lock, &irqL);
  8224. rtw_wdev_free_connect_req(wdev_priv);
  8225. _exit_critical_bh(&wdev_priv->connect_req_lock, &irqL);
  8226. _rtw_spinlock_free(&wdev_priv->connect_req_lock);
  8227. _rtw_mutex_free(&wdev_priv->roch_mutex);
  8228. }
  8229. rtw_mfree((u8 *)wdev, sizeof(struct wireless_dev));
  8230. }
  8231. void rtw_wdev_unregister(struct wireless_dev *wdev)
  8232. {
  8233. struct net_device *ndev;
  8234. _adapter *adapter;
  8235. struct rtw_wdev_priv *pwdev_priv;
  8236. if (!wdev)
  8237. return;
  8238. RTW_INFO("%s(wdev=%p)\n", __func__, wdev);
  8239. ndev = wdev_to_ndev(wdev);
  8240. if (!ndev)
  8241. return;
  8242. adapter = (_adapter *)rtw_netdev_priv(ndev);
  8243. pwdev_priv = adapter_wdev_data(adapter);
  8244. rtw_cfg80211_indicate_scan_done(adapter, _TRUE);
  8245. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0)) || defined(COMPAT_KERNEL_RELEASE)
  8246. if (wdev->current_bss) {
  8247. RTW_INFO(FUNC_ADPT_FMT" clear current_bss by cfg80211_disconnected\n", FUNC_ADPT_ARG(adapter));
  8248. rtw_cfg80211_indicate_disconnect(adapter, 0, 1);
  8249. }
  8250. #endif
  8251. if (pwdev_priv->pmon_ndev) {
  8252. RTW_INFO("%s, unregister monitor interface\n", __func__);
  8253. unregister_netdev(pwdev_priv->pmon_ndev);
  8254. }
  8255. }
  8256. int rtw_cfg80211_ndev_res_alloc(_adapter *adapter)
  8257. {
  8258. int ret = _FAIL;
  8259. #if !defined(RTW_SINGLE_WIPHY)
  8260. struct wiphy *wiphy;
  8261. struct device *dev = dvobj_to_dev(adapter_to_dvobj(adapter));
  8262. wiphy = rtw_wiphy_alloc(adapter, dev);
  8263. if (wiphy == NULL)
  8264. goto exit;
  8265. adapter->wiphy = wiphy;
  8266. #endif
  8267. if (rtw_wdev_alloc(adapter, adapter_to_wiphy(adapter)) == 0)
  8268. ret = _SUCCESS;
  8269. #if !defined(RTW_SINGLE_WIPHY)
  8270. if (ret != _SUCCESS) {
  8271. rtw_wiphy_free(wiphy);
  8272. adapter->wiphy = NULL;
  8273. }
  8274. #endif
  8275. exit:
  8276. return ret;
  8277. }
  8278. void rtw_cfg80211_ndev_res_free(_adapter *adapter)
  8279. {
  8280. rtw_wdev_free(adapter->rtw_wdev);
  8281. adapter->rtw_wdev = NULL;
  8282. #if !defined(RTW_SINGLE_WIPHY)
  8283. rtw_wiphy_free(adapter_to_wiphy(adapter));
  8284. adapter->wiphy = NULL;
  8285. #endif
  8286. }
  8287. int rtw_cfg80211_ndev_res_register(_adapter *adapter)
  8288. {
  8289. int ret = _FAIL;
  8290. #if !defined(RTW_SINGLE_WIPHY)
  8291. if (rtw_wiphy_register(adapter_to_wiphy(adapter)) < 0) {
  8292. RTW_INFO("%s rtw_wiphy_register fail for if%d\n", __func__, (adapter->iface_id + 1));
  8293. goto exit;
  8294. }
  8295. #ifdef CONFIG_RFKILL_POLL
  8296. rtw_cfg80211_init_rfkill(adapter_to_wiphy(adapter));
  8297. #endif
  8298. #endif
  8299. ret = _SUCCESS;
  8300. exit:
  8301. return ret;
  8302. }
  8303. void rtw_cfg80211_ndev_res_unregister(_adapter *adapter)
  8304. {
  8305. rtw_wdev_unregister(adapter->rtw_wdev);
  8306. }
  8307. int rtw_cfg80211_dev_res_alloc(struct dvobj_priv *dvobj)
  8308. {
  8309. int ret = _FAIL;
  8310. #if defined(RTW_SINGLE_WIPHY)
  8311. struct wiphy *wiphy;
  8312. struct device *dev = dvobj_to_dev(dvobj);
  8313. wiphy = rtw_wiphy_alloc(dvobj_get_primary_adapter(dvobj), dev);
  8314. if (wiphy == NULL)
  8315. goto exit;
  8316. dvobj->wiphy = wiphy;
  8317. #endif
  8318. ret = _SUCCESS;
  8319. exit:
  8320. return ret;
  8321. }
  8322. void rtw_cfg80211_dev_res_free(struct dvobj_priv *dvobj)
  8323. {
  8324. #if defined(RTW_SINGLE_WIPHY)
  8325. rtw_wiphy_free(dvobj_to_wiphy(dvobj));
  8326. dvobj->wiphy = NULL;
  8327. #endif
  8328. }
  8329. int rtw_cfg80211_dev_res_register(struct dvobj_priv *dvobj)
  8330. {
  8331. int ret = _FAIL;
  8332. #if defined(RTW_SINGLE_WIPHY)
  8333. if (rtw_wiphy_register(dvobj_to_wiphy(dvobj)) != 0)
  8334. goto exit;
  8335. #ifdef CONFIG_RFKILL_POLL
  8336. rtw_cfg80211_init_rfkill(dvobj_to_wiphy(dvobj));
  8337. #endif
  8338. #endif
  8339. ret = _SUCCESS;
  8340. exit:
  8341. return ret;
  8342. }
  8343. void rtw_cfg80211_dev_res_unregister(struct dvobj_priv *dvobj)
  8344. {
  8345. #if defined(RTW_SINGLE_WIPHY)
  8346. #ifdef CONFIG_RFKILL_POLL
  8347. rtw_cfg80211_deinit_rfkill(dvobj_to_wiphy(dvobj));
  8348. #endif
  8349. rtw_wiphy_unregister(dvobj_to_wiphy(dvobj));
  8350. #endif
  8351. }
  8352. #endif /* CONFIG_IOCTL_CFG80211 */