cfg80211.h 204 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834
  1. #ifndef __NET_CFG80211_H
  2. #define __NET_CFG80211_H
  3. /*
  4. * 802.11 device and configuration interface
  5. *
  6. * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
  7. * Copyright 2013-2014 Intel Mobile Communications GmbH
  8. * Copyright 2015-2016 Intel Deutschland GmbH
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/netdevice.h>
  15. #include <linux/debugfs.h>
  16. #include <linux/list.h>
  17. #include <linux/bug.h>
  18. #include <linux/netlink.h>
  19. #include <linux/skbuff.h>
  20. #include <linux/nl80211.h>
  21. #include <linux/if_ether.h>
  22. #include <linux/ieee80211.h>
  23. #include <linux/net.h>
  24. #include <net/regulatory.h>
  25. /**
  26. * DOC: Introduction
  27. *
  28. * cfg80211 is the configuration API for 802.11 devices in Linux. It bridges
  29. * userspace and drivers, and offers some utility functionality associated
  30. * with 802.11. cfg80211 must, directly or indirectly via mac80211, be used
  31. * by all modern wireless drivers in Linux, so that they offer a consistent
  32. * API through nl80211. For backward compatibility, cfg80211 also offers
  33. * wireless extensions to userspace, but hides them from drivers completely.
  34. *
  35. * Additionally, cfg80211 contains code to help enforce regulatory spectrum
  36. * use restrictions.
  37. */
  38. /**
  39. * DOC: Device registration
  40. *
  41. * In order for a driver to use cfg80211, it must register the hardware device
  42. * with cfg80211. This happens through a number of hardware capability structs
  43. * described below.
  44. *
  45. * The fundamental structure for each device is the 'wiphy', of which each
  46. * instance describes a physical wireless device connected to the system. Each
  47. * such wiphy can have zero, one, or many virtual interfaces associated with
  48. * it, which need to be identified as such by pointing the network interface's
  49. * @ieee80211_ptr pointer to a &struct wireless_dev which further describes
  50. * the wireless part of the interface, normally this struct is embedded in the
  51. * network interface's private data area. Drivers can optionally allow creating
  52. * or destroying virtual interfaces on the fly, but without at least one or the
  53. * ability to create some the wireless device isn't useful.
  54. *
  55. * Each wiphy structure contains device capability information, and also has
  56. * a pointer to the various operations the driver offers. The definitions and
  57. * structures here describe these capabilities in detail.
  58. */
  59. struct wiphy;
  60. /*
  61. * wireless hardware capability structures
  62. */
  63. /**
  64. * enum ieee80211_channel_flags - channel flags
  65. *
  66. * Channel flags set by the regulatory control code.
  67. *
  68. * @IEEE80211_CHAN_DISABLED: This channel is disabled.
  69. * @IEEE80211_CHAN_NO_IR: do not initiate radiation, this includes
  70. * sending probe requests or beaconing.
  71. * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel.
  72. * @IEEE80211_CHAN_NO_HT40PLUS: extension channel above this channel
  73. * is not permitted.
  74. * @IEEE80211_CHAN_NO_HT40MINUS: extension channel below this channel
  75. * is not permitted.
  76. * @IEEE80211_CHAN_NO_OFDM: OFDM is not allowed on this channel.
  77. * @IEEE80211_CHAN_NO_80MHZ: If the driver supports 80 MHz on the band,
  78. * this flag indicates that an 80 MHz channel cannot use this
  79. * channel as the control or any of the secondary channels.
  80. * This may be due to the driver or due to regulatory bandwidth
  81. * restrictions.
  82. * @IEEE80211_CHAN_NO_160MHZ: If the driver supports 160 MHz on the band,
  83. * this flag indicates that an 160 MHz channel cannot use this
  84. * channel as the control or any of the secondary channels.
  85. * This may be due to the driver or due to regulatory bandwidth
  86. * restrictions.
  87. * @IEEE80211_CHAN_INDOOR_ONLY: see %NL80211_FREQUENCY_ATTR_INDOOR_ONLY
  88. * @IEEE80211_CHAN_IR_CONCURRENT: see %NL80211_FREQUENCY_ATTR_IR_CONCURRENT
  89. * @IEEE80211_CHAN_NO_20MHZ: 20 MHz bandwidth is not permitted
  90. * on this channel.
  91. * @IEEE80211_CHAN_NO_10MHZ: 10 MHz bandwidth is not permitted
  92. * on this channel.
  93. *
  94. */
  95. enum ieee80211_channel_flags {
  96. IEEE80211_CHAN_DISABLED = 1<<0,
  97. IEEE80211_CHAN_NO_IR = 1<<1,
  98. /* hole at 1<<2 */
  99. IEEE80211_CHAN_RADAR = 1<<3,
  100. IEEE80211_CHAN_NO_HT40PLUS = 1<<4,
  101. IEEE80211_CHAN_NO_HT40MINUS = 1<<5,
  102. IEEE80211_CHAN_NO_OFDM = 1<<6,
  103. IEEE80211_CHAN_NO_80MHZ = 1<<7,
  104. IEEE80211_CHAN_NO_160MHZ = 1<<8,
  105. IEEE80211_CHAN_INDOOR_ONLY = 1<<9,
  106. IEEE80211_CHAN_IR_CONCURRENT = 1<<10,
  107. IEEE80211_CHAN_NO_20MHZ = 1<<11,
  108. IEEE80211_CHAN_NO_10MHZ = 1<<12,
  109. };
  110. #define IEEE80211_CHAN_NO_HT40 \
  111. (IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
  112. #define IEEE80211_DFS_MIN_CAC_TIME_MS 60000
  113. #define IEEE80211_DFS_MIN_NOP_TIME_MS (30 * 60 * 1000)
  114. /**
  115. * struct ieee80211_channel - channel definition
  116. *
  117. * This structure describes a single channel for use
  118. * with cfg80211.
  119. *
  120. * @center_freq: center frequency in MHz
  121. * @hw_value: hardware-specific value for the channel
  122. * @flags: channel flags from &enum ieee80211_channel_flags.
  123. * @orig_flags: channel flags at registration time, used by regulatory
  124. * code to support devices with additional restrictions
  125. * @band: band this channel belongs to.
  126. * @max_antenna_gain: maximum antenna gain in dBi
  127. * @max_power: maximum transmission power (in dBm)
  128. * @max_reg_power: maximum regulatory transmission power (in dBm)
  129. * @beacon_found: helper to regulatory code to indicate when a beacon
  130. * has been found on this channel. Use regulatory_hint_found_beacon()
  131. * to enable this, this is useful only on 5 GHz band.
  132. * @orig_mag: internal use
  133. * @orig_mpwr: internal use
  134. * @dfs_state: current state of this channel. Only relevant if radar is required
  135. * on this channel.
  136. * @dfs_state_entered: timestamp (jiffies) when the dfs state was entered.
  137. * @dfs_cac_ms: DFS CAC time in milliseconds, this is valid for DFS channels.
  138. */
  139. struct ieee80211_channel {
  140. enum nl80211_band band;
  141. u16 center_freq;
  142. u16 hw_value;
  143. u32 flags;
  144. int max_antenna_gain;
  145. int max_power;
  146. int max_reg_power;
  147. bool beacon_found;
  148. u32 orig_flags;
  149. int orig_mag, orig_mpwr;
  150. enum nl80211_dfs_state dfs_state;
  151. unsigned long dfs_state_entered;
  152. unsigned int dfs_cac_ms;
  153. };
  154. /**
  155. * enum ieee80211_rate_flags - rate flags
  156. *
  157. * Hardware/specification flags for rates. These are structured
  158. * in a way that allows using the same bitrate structure for
  159. * different bands/PHY modes.
  160. *
  161. * @IEEE80211_RATE_SHORT_PREAMBLE: Hardware can send with short
  162. * preamble on this bitrate; only relevant in 2.4GHz band and
  163. * with CCK rates.
  164. * @IEEE80211_RATE_MANDATORY_A: This bitrate is a mandatory rate
  165. * when used with 802.11a (on the 5 GHz band); filled by the
  166. * core code when registering the wiphy.
  167. * @IEEE80211_RATE_MANDATORY_B: This bitrate is a mandatory rate
  168. * when used with 802.11b (on the 2.4 GHz band); filled by the
  169. * core code when registering the wiphy.
  170. * @IEEE80211_RATE_MANDATORY_G: This bitrate is a mandatory rate
  171. * when used with 802.11g (on the 2.4 GHz band); filled by the
  172. * core code when registering the wiphy.
  173. * @IEEE80211_RATE_ERP_G: This is an ERP rate in 802.11g mode.
  174. * @IEEE80211_RATE_SUPPORTS_5MHZ: Rate can be used in 5 MHz mode
  175. * @IEEE80211_RATE_SUPPORTS_10MHZ: Rate can be used in 10 MHz mode
  176. */
  177. enum ieee80211_rate_flags {
  178. IEEE80211_RATE_SHORT_PREAMBLE = 1<<0,
  179. IEEE80211_RATE_MANDATORY_A = 1<<1,
  180. IEEE80211_RATE_MANDATORY_B = 1<<2,
  181. IEEE80211_RATE_MANDATORY_G = 1<<3,
  182. IEEE80211_RATE_ERP_G = 1<<4,
  183. IEEE80211_RATE_SUPPORTS_5MHZ = 1<<5,
  184. IEEE80211_RATE_SUPPORTS_10MHZ = 1<<6,
  185. };
  186. /**
  187. * enum ieee80211_bss_type - BSS type filter
  188. *
  189. * @IEEE80211_BSS_TYPE_ESS: Infrastructure BSS
  190. * @IEEE80211_BSS_TYPE_PBSS: Personal BSS
  191. * @IEEE80211_BSS_TYPE_IBSS: Independent BSS
  192. * @IEEE80211_BSS_TYPE_MBSS: Mesh BSS
  193. * @IEEE80211_BSS_TYPE_ANY: Wildcard value for matching any BSS type
  194. */
  195. enum ieee80211_bss_type {
  196. IEEE80211_BSS_TYPE_ESS,
  197. IEEE80211_BSS_TYPE_PBSS,
  198. IEEE80211_BSS_TYPE_IBSS,
  199. IEEE80211_BSS_TYPE_MBSS,
  200. IEEE80211_BSS_TYPE_ANY
  201. };
  202. /**
  203. * enum ieee80211_privacy - BSS privacy filter
  204. *
  205. * @IEEE80211_PRIVACY_ON: privacy bit set
  206. * @IEEE80211_PRIVACY_OFF: privacy bit clear
  207. * @IEEE80211_PRIVACY_ANY: Wildcard value for matching any privacy setting
  208. */
  209. enum ieee80211_privacy {
  210. IEEE80211_PRIVACY_ON,
  211. IEEE80211_PRIVACY_OFF,
  212. IEEE80211_PRIVACY_ANY
  213. };
  214. #define IEEE80211_PRIVACY(x) \
  215. ((x) ? IEEE80211_PRIVACY_ON : IEEE80211_PRIVACY_OFF)
  216. /**
  217. * struct ieee80211_rate - bitrate definition
  218. *
  219. * This structure describes a bitrate that an 802.11 PHY can
  220. * operate with. The two values @hw_value and @hw_value_short
  221. * are only for driver use when pointers to this structure are
  222. * passed around.
  223. *
  224. * @flags: rate-specific flags
  225. * @bitrate: bitrate in units of 100 Kbps
  226. * @hw_value: driver/hardware value for this rate
  227. * @hw_value_short: driver/hardware value for this rate when
  228. * short preamble is used
  229. */
  230. struct ieee80211_rate {
  231. u32 flags;
  232. u16 bitrate;
  233. u16 hw_value, hw_value_short;
  234. };
  235. /**
  236. * struct ieee80211_sta_ht_cap - STA's HT capabilities
  237. *
  238. * This structure describes most essential parameters needed
  239. * to describe 802.11n HT capabilities for an STA.
  240. *
  241. * @ht_supported: is HT supported by the STA
  242. * @cap: HT capabilities map as described in 802.11n spec
  243. * @ampdu_factor: Maximum A-MPDU length factor
  244. * @ampdu_density: Minimum A-MPDU spacing
  245. * @mcs: Supported MCS rates
  246. */
  247. struct ieee80211_sta_ht_cap {
  248. u16 cap; /* use IEEE80211_HT_CAP_ */
  249. bool ht_supported;
  250. u8 ampdu_factor;
  251. u8 ampdu_density;
  252. struct ieee80211_mcs_info mcs;
  253. };
  254. /**
  255. * struct ieee80211_sta_vht_cap - STA's VHT capabilities
  256. *
  257. * This structure describes most essential parameters needed
  258. * to describe 802.11ac VHT capabilities for an STA.
  259. *
  260. * @vht_supported: is VHT supported by the STA
  261. * @cap: VHT capabilities map as described in 802.11ac spec
  262. * @vht_mcs: Supported VHT MCS rates
  263. */
  264. struct ieee80211_sta_vht_cap {
  265. bool vht_supported;
  266. u32 cap; /* use IEEE80211_VHT_CAP_ */
  267. struct ieee80211_vht_mcs_info vht_mcs;
  268. };
  269. /**
  270. * struct ieee80211_supported_band - frequency band definition
  271. *
  272. * This structure describes a frequency band a wiphy
  273. * is able to operate in.
  274. *
  275. * @channels: Array of channels the hardware can operate in
  276. * in this band.
  277. * @band: the band this structure represents
  278. * @n_channels: Number of channels in @channels
  279. * @bitrates: Array of bitrates the hardware can operate with
  280. * in this band. Must be sorted to give a valid "supported
  281. * rates" IE, i.e. CCK rates first, then OFDM.
  282. * @n_bitrates: Number of bitrates in @bitrates
  283. * @ht_cap: HT capabilities in this band
  284. * @vht_cap: VHT capabilities in this band
  285. */
  286. struct ieee80211_supported_band {
  287. struct ieee80211_channel *channels;
  288. struct ieee80211_rate *bitrates;
  289. enum nl80211_band band;
  290. int n_channels;
  291. int n_bitrates;
  292. struct ieee80211_sta_ht_cap ht_cap;
  293. struct ieee80211_sta_vht_cap vht_cap;
  294. };
  295. /*
  296. * Wireless hardware/device configuration structures and methods
  297. */
  298. /**
  299. * DOC: Actions and configuration
  300. *
  301. * Each wireless device and each virtual interface offer a set of configuration
  302. * operations and other actions that are invoked by userspace. Each of these
  303. * actions is described in the operations structure, and the parameters these
  304. * operations use are described separately.
  305. *
  306. * Additionally, some operations are asynchronous and expect to get status
  307. * information via some functions that drivers need to call.
  308. *
  309. * Scanning and BSS list handling with its associated functionality is described
  310. * in a separate chapter.
  311. */
  312. #define VHT_MUMIMO_GROUPS_DATA_LEN (WLAN_MEMBERSHIP_LEN +\
  313. WLAN_USER_POSITION_LEN)
  314. /**
  315. * struct vif_params - describes virtual interface parameters
  316. * @use_4addr: use 4-address frames
  317. * @macaddr: address to use for this virtual interface.
  318. * If this parameter is set to zero address the driver may
  319. * determine the address as needed.
  320. * This feature is only fully supported by drivers that enable the
  321. * %NL80211_FEATURE_MAC_ON_CREATE flag. Others may support creating
  322. ** only p2p devices with specified MAC.
  323. * @vht_mumimo_groups: MU-MIMO groupID. used for monitoring only
  324. * packets belonging to that MU-MIMO groupID.
  325. */
  326. struct vif_params {
  327. int use_4addr;
  328. u8 macaddr[ETH_ALEN];
  329. u8 vht_mumimo_groups[VHT_MUMIMO_GROUPS_DATA_LEN];
  330. };
  331. /**
  332. * struct key_params - key information
  333. *
  334. * Information about a key
  335. *
  336. * @key: key material
  337. * @key_len: length of key material
  338. * @cipher: cipher suite selector
  339. * @seq: sequence counter (IV/PN) for TKIP and CCMP keys, only used
  340. * with the get_key() callback, must be in little endian,
  341. * length given by @seq_len.
  342. * @seq_len: length of @seq.
  343. */
  344. struct key_params {
  345. const u8 *key;
  346. const u8 *seq;
  347. int key_len;
  348. int seq_len;
  349. u32 cipher;
  350. };
  351. /**
  352. * struct cfg80211_chan_def - channel definition
  353. * @chan: the (control) channel
  354. * @width: channel width
  355. * @center_freq1: center frequency of first segment
  356. * @center_freq2: center frequency of second segment
  357. * (only with 80+80 MHz)
  358. */
  359. struct cfg80211_chan_def {
  360. struct ieee80211_channel *chan;
  361. enum nl80211_chan_width width;
  362. u32 center_freq1;
  363. u32 center_freq2;
  364. };
  365. /**
  366. * cfg80211_get_chandef_type - return old channel type from chandef
  367. * @chandef: the channel definition
  368. *
  369. * Return: The old channel type (NOHT, HT20, HT40+/-) from a given
  370. * chandef, which must have a bandwidth allowing this conversion.
  371. */
  372. static inline enum nl80211_channel_type
  373. cfg80211_get_chandef_type(const struct cfg80211_chan_def *chandef)
  374. {
  375. switch (chandef->width) {
  376. case NL80211_CHAN_WIDTH_20_NOHT:
  377. return NL80211_CHAN_NO_HT;
  378. case NL80211_CHAN_WIDTH_20:
  379. return NL80211_CHAN_HT20;
  380. case NL80211_CHAN_WIDTH_40:
  381. if (chandef->center_freq1 > chandef->chan->center_freq)
  382. return NL80211_CHAN_HT40PLUS;
  383. return NL80211_CHAN_HT40MINUS;
  384. default:
  385. WARN_ON(1);
  386. return NL80211_CHAN_NO_HT;
  387. }
  388. }
  389. /**
  390. * cfg80211_chandef_create - create channel definition using channel type
  391. * @chandef: the channel definition struct to fill
  392. * @channel: the control channel
  393. * @chantype: the channel type
  394. *
  395. * Given a channel type, create a channel definition.
  396. */
  397. void cfg80211_chandef_create(struct cfg80211_chan_def *chandef,
  398. struct ieee80211_channel *channel,
  399. enum nl80211_channel_type chantype);
  400. /**
  401. * cfg80211_chandef_identical - check if two channel definitions are identical
  402. * @chandef1: first channel definition
  403. * @chandef2: second channel definition
  404. *
  405. * Return: %true if the channels defined by the channel definitions are
  406. * identical, %false otherwise.
  407. */
  408. static inline bool
  409. cfg80211_chandef_identical(const struct cfg80211_chan_def *chandef1,
  410. const struct cfg80211_chan_def *chandef2)
  411. {
  412. return (chandef1->chan == chandef2->chan &&
  413. chandef1->width == chandef2->width &&
  414. chandef1->center_freq1 == chandef2->center_freq1 &&
  415. chandef1->center_freq2 == chandef2->center_freq2);
  416. }
  417. /**
  418. * cfg80211_chandef_compatible - check if two channel definitions are compatible
  419. * @chandef1: first channel definition
  420. * @chandef2: second channel definition
  421. *
  422. * Return: %NULL if the given channel definitions are incompatible,
  423. * chandef1 or chandef2 otherwise.
  424. */
  425. const struct cfg80211_chan_def *
  426. cfg80211_chandef_compatible(const struct cfg80211_chan_def *chandef1,
  427. const struct cfg80211_chan_def *chandef2);
  428. /**
  429. * cfg80211_chandef_valid - check if a channel definition is valid
  430. * @chandef: the channel definition to check
  431. * Return: %true if the channel definition is valid. %false otherwise.
  432. */
  433. bool cfg80211_chandef_valid(const struct cfg80211_chan_def *chandef);
  434. /**
  435. * cfg80211_chandef_usable - check if secondary channels can be used
  436. * @wiphy: the wiphy to validate against
  437. * @chandef: the channel definition to check
  438. * @prohibited_flags: the regulatory channel flags that must not be set
  439. * Return: %true if secondary channels are usable. %false otherwise.
  440. */
  441. bool cfg80211_chandef_usable(struct wiphy *wiphy,
  442. const struct cfg80211_chan_def *chandef,
  443. u32 prohibited_flags);
  444. /**
  445. * cfg80211_chandef_dfs_required - checks if radar detection is required
  446. * @wiphy: the wiphy to validate against
  447. * @chandef: the channel definition to check
  448. * @iftype: the interface type as specified in &enum nl80211_iftype
  449. * Returns:
  450. * 1 if radar detection is required, 0 if it is not, < 0 on error
  451. */
  452. int cfg80211_chandef_dfs_required(struct wiphy *wiphy,
  453. const struct cfg80211_chan_def *chandef,
  454. enum nl80211_iftype iftype);
  455. /**
  456. * ieee80211_chandef_rate_flags - returns rate flags for a channel
  457. *
  458. * In some channel types, not all rates may be used - for example CCK
  459. * rates may not be used in 5/10 MHz channels.
  460. *
  461. * @chandef: channel definition for the channel
  462. *
  463. * Returns: rate flags which apply for this channel
  464. */
  465. static inline enum ieee80211_rate_flags
  466. ieee80211_chandef_rate_flags(struct cfg80211_chan_def *chandef)
  467. {
  468. switch (chandef->width) {
  469. case NL80211_CHAN_WIDTH_5:
  470. return IEEE80211_RATE_SUPPORTS_5MHZ;
  471. case NL80211_CHAN_WIDTH_10:
  472. return IEEE80211_RATE_SUPPORTS_10MHZ;
  473. default:
  474. break;
  475. }
  476. return 0;
  477. }
  478. /**
  479. * ieee80211_chandef_max_power - maximum transmission power for the chandef
  480. *
  481. * In some regulations, the transmit power may depend on the configured channel
  482. * bandwidth which may be defined as dBm/MHz. This function returns the actual
  483. * max_power for non-standard (20 MHz) channels.
  484. *
  485. * @chandef: channel definition for the channel
  486. *
  487. * Returns: maximum allowed transmission power in dBm for the chandef
  488. */
  489. static inline int
  490. ieee80211_chandef_max_power(struct cfg80211_chan_def *chandef)
  491. {
  492. switch (chandef->width) {
  493. case NL80211_CHAN_WIDTH_5:
  494. return min(chandef->chan->max_reg_power - 6,
  495. chandef->chan->max_power);
  496. case NL80211_CHAN_WIDTH_10:
  497. return min(chandef->chan->max_reg_power - 3,
  498. chandef->chan->max_power);
  499. default:
  500. break;
  501. }
  502. return chandef->chan->max_power;
  503. }
  504. /**
  505. * enum survey_info_flags - survey information flags
  506. *
  507. * @SURVEY_INFO_NOISE_DBM: noise (in dBm) was filled in
  508. * @SURVEY_INFO_IN_USE: channel is currently being used
  509. * @SURVEY_INFO_TIME: active time (in ms) was filled in
  510. * @SURVEY_INFO_TIME_BUSY: busy time was filled in
  511. * @SURVEY_INFO_TIME_EXT_BUSY: extension channel busy time was filled in
  512. * @SURVEY_INFO_TIME_RX: receive time was filled in
  513. * @SURVEY_INFO_TIME_TX: transmit time was filled in
  514. * @SURVEY_INFO_TIME_SCAN: scan time was filled in
  515. *
  516. * Used by the driver to indicate which info in &struct survey_info
  517. * it has filled in during the get_survey().
  518. */
  519. enum survey_info_flags {
  520. SURVEY_INFO_NOISE_DBM = BIT(0),
  521. SURVEY_INFO_IN_USE = BIT(1),
  522. SURVEY_INFO_TIME = BIT(2),
  523. SURVEY_INFO_TIME_BUSY = BIT(3),
  524. SURVEY_INFO_TIME_EXT_BUSY = BIT(4),
  525. SURVEY_INFO_TIME_RX = BIT(5),
  526. SURVEY_INFO_TIME_TX = BIT(6),
  527. SURVEY_INFO_TIME_SCAN = BIT(7),
  528. };
  529. /**
  530. * struct survey_info - channel survey response
  531. *
  532. * @channel: the channel this survey record reports, may be %NULL for a single
  533. * record to report global statistics
  534. * @filled: bitflag of flags from &enum survey_info_flags
  535. * @noise: channel noise in dBm. This and all following fields are
  536. * optional
  537. * @time: amount of time in ms the radio was turn on (on the channel)
  538. * @time_busy: amount of time the primary channel was sensed busy
  539. * @time_ext_busy: amount of time the extension channel was sensed busy
  540. * @time_rx: amount of time the radio spent receiving data
  541. * @time_tx: amount of time the radio spent transmitting data
  542. * @time_scan: amount of time the radio spent for scanning
  543. *
  544. * Used by dump_survey() to report back per-channel survey information.
  545. *
  546. * This structure can later be expanded with things like
  547. * channel duty cycle etc.
  548. */
  549. struct survey_info {
  550. struct ieee80211_channel *channel;
  551. u64 time;
  552. u64 time_busy;
  553. u64 time_ext_busy;
  554. u64 time_rx;
  555. u64 time_tx;
  556. u64 time_scan;
  557. u32 filled;
  558. s8 noise;
  559. };
  560. #define CFG80211_MAX_WEP_KEYS 4
  561. /**
  562. * struct cfg80211_crypto_settings - Crypto settings
  563. * @wpa_versions: indicates which, if any, WPA versions are enabled
  564. * (from enum nl80211_wpa_versions)
  565. * @cipher_group: group key cipher suite (or 0 if unset)
  566. * @n_ciphers_pairwise: number of AP supported unicast ciphers
  567. * @ciphers_pairwise: unicast key cipher suites
  568. * @n_akm_suites: number of AKM suites
  569. * @akm_suites: AKM suites
  570. * @control_port: Whether user space controls IEEE 802.1X port, i.e.,
  571. * sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
  572. * required to assume that the port is unauthorized until authorized by
  573. * user space. Otherwise, port is marked authorized by default.
  574. * @control_port_ethertype: the control port protocol that should be
  575. * allowed through even on unauthorized ports
  576. * @control_port_no_encrypt: TRUE to prevent encryption of control port
  577. * protocol frames.
  578. * @wep_keys: static WEP keys, if not NULL points to an array of
  579. * CFG80211_MAX_WEP_KEYS WEP keys
  580. * @wep_tx_key: key index (0..3) of the default TX static WEP key
  581. */
  582. struct cfg80211_crypto_settings {
  583. u32 wpa_versions;
  584. u32 cipher_group;
  585. int n_ciphers_pairwise;
  586. u32 ciphers_pairwise[NL80211_MAX_NR_CIPHER_SUITES];
  587. int n_akm_suites;
  588. u32 akm_suites[NL80211_MAX_NR_AKM_SUITES];
  589. bool control_port;
  590. __be16 control_port_ethertype;
  591. bool control_port_no_encrypt;
  592. struct key_params *wep_keys;
  593. int wep_tx_key;
  594. };
  595. /**
  596. * struct cfg80211_beacon_data - beacon data
  597. * @head: head portion of beacon (before TIM IE)
  598. * or %NULL if not changed
  599. * @tail: tail portion of beacon (after TIM IE)
  600. * or %NULL if not changed
  601. * @head_len: length of @head
  602. * @tail_len: length of @tail
  603. * @beacon_ies: extra information element(s) to add into Beacon frames or %NULL
  604. * @beacon_ies_len: length of beacon_ies in octets
  605. * @proberesp_ies: extra information element(s) to add into Probe Response
  606. * frames or %NULL
  607. * @proberesp_ies_len: length of proberesp_ies in octets
  608. * @assocresp_ies: extra information element(s) to add into (Re)Association
  609. * Response frames or %NULL
  610. * @assocresp_ies_len: length of assocresp_ies in octets
  611. * @probe_resp_len: length of probe response template (@probe_resp)
  612. * @probe_resp: probe response template (AP mode only)
  613. */
  614. struct cfg80211_beacon_data {
  615. const u8 *head, *tail;
  616. const u8 *beacon_ies;
  617. const u8 *proberesp_ies;
  618. const u8 *assocresp_ies;
  619. const u8 *probe_resp;
  620. size_t head_len, tail_len;
  621. size_t beacon_ies_len;
  622. size_t proberesp_ies_len;
  623. size_t assocresp_ies_len;
  624. size_t probe_resp_len;
  625. };
  626. struct mac_address {
  627. u8 addr[ETH_ALEN];
  628. };
  629. /**
  630. * struct cfg80211_acl_data - Access control list data
  631. *
  632. * @acl_policy: ACL policy to be applied on the station's
  633. * entry specified by mac_addr
  634. * @n_acl_entries: Number of MAC address entries passed
  635. * @mac_addrs: List of MAC addresses of stations to be used for ACL
  636. */
  637. struct cfg80211_acl_data {
  638. enum nl80211_acl_policy acl_policy;
  639. int n_acl_entries;
  640. /* Keep it last */
  641. struct mac_address mac_addrs[];
  642. };
  643. /*
  644. * cfg80211_bitrate_mask - masks for bitrate control
  645. */
  646. struct cfg80211_bitrate_mask {
  647. struct {
  648. u32 legacy;
  649. u8 ht_mcs[IEEE80211_HT_MCS_MASK_LEN];
  650. u16 vht_mcs[NL80211_VHT_NSS_MAX];
  651. enum nl80211_txrate_gi gi;
  652. } control[NUM_NL80211_BANDS];
  653. };
  654. /**
  655. * struct cfg80211_ap_settings - AP configuration
  656. *
  657. * Used to configure an AP interface.
  658. *
  659. * @chandef: defines the channel to use
  660. * @beacon: beacon data
  661. * @beacon_interval: beacon interval
  662. * @dtim_period: DTIM period
  663. * @ssid: SSID to be used in the BSS (note: may be %NULL if not provided from
  664. * user space)
  665. * @ssid_len: length of @ssid
  666. * @hidden_ssid: whether to hide the SSID in Beacon/Probe Response frames
  667. * @crypto: crypto settings
  668. * @privacy: the BSS uses privacy
  669. * @auth_type: Authentication type (algorithm)
  670. * @smps_mode: SMPS mode
  671. * @inactivity_timeout: time in seconds to determine station's inactivity.
  672. * @p2p_ctwindow: P2P CT Window
  673. * @p2p_opp_ps: P2P opportunistic PS
  674. * @acl: ACL configuration used by the drivers which has support for
  675. * MAC address based access control
  676. * @pbss: If set, start as a PCP instead of AP. Relevant for DMG
  677. * networks.
  678. * @beacon_rate: bitrate to be used for beacons
  679. */
  680. struct cfg80211_ap_settings {
  681. struct cfg80211_chan_def chandef;
  682. struct cfg80211_beacon_data beacon;
  683. int beacon_interval, dtim_period;
  684. const u8 *ssid;
  685. size_t ssid_len;
  686. enum nl80211_hidden_ssid hidden_ssid;
  687. struct cfg80211_crypto_settings crypto;
  688. bool privacy;
  689. enum nl80211_auth_type auth_type;
  690. enum nl80211_smps_mode smps_mode;
  691. int inactivity_timeout;
  692. u8 p2p_ctwindow;
  693. bool p2p_opp_ps;
  694. const struct cfg80211_acl_data *acl;
  695. bool pbss;
  696. struct cfg80211_bitrate_mask beacon_rate;
  697. };
  698. /**
  699. * struct cfg80211_csa_settings - channel switch settings
  700. *
  701. * Used for channel switch
  702. *
  703. * @chandef: defines the channel to use after the switch
  704. * @beacon_csa: beacon data while performing the switch
  705. * @counter_offsets_beacon: offsets of the counters within the beacon (tail)
  706. * @counter_offsets_presp: offsets of the counters within the probe response
  707. * @n_counter_offsets_beacon: number of csa counters the beacon (tail)
  708. * @n_counter_offsets_presp: number of csa counters in the probe response
  709. * @beacon_after: beacon data to be used on the new channel
  710. * @radar_required: whether radar detection is required on the new channel
  711. * @block_tx: whether transmissions should be blocked while changing
  712. * @count: number of beacons until switch
  713. */
  714. struct cfg80211_csa_settings {
  715. struct cfg80211_chan_def chandef;
  716. struct cfg80211_beacon_data beacon_csa;
  717. const u16 *counter_offsets_beacon;
  718. const u16 *counter_offsets_presp;
  719. unsigned int n_counter_offsets_beacon;
  720. unsigned int n_counter_offsets_presp;
  721. struct cfg80211_beacon_data beacon_after;
  722. bool radar_required;
  723. bool block_tx;
  724. u8 count;
  725. };
  726. /**
  727. * enum station_parameters_apply_mask - station parameter values to apply
  728. * @STATION_PARAM_APPLY_UAPSD: apply new uAPSD parameters (uapsd_queues, max_sp)
  729. * @STATION_PARAM_APPLY_CAPABILITY: apply new capability
  730. * @STATION_PARAM_APPLY_PLINK_STATE: apply new plink state
  731. *
  732. * Not all station parameters have in-band "no change" signalling,
  733. * for those that don't these flags will are used.
  734. */
  735. enum station_parameters_apply_mask {
  736. STATION_PARAM_APPLY_UAPSD = BIT(0),
  737. STATION_PARAM_APPLY_CAPABILITY = BIT(1),
  738. STATION_PARAM_APPLY_PLINK_STATE = BIT(2),
  739. };
  740. /**
  741. * struct station_parameters - station parameters
  742. *
  743. * Used to change and create a new station.
  744. *
  745. * @vlan: vlan interface station should belong to
  746. * @supported_rates: supported rates in IEEE 802.11 format
  747. * (or NULL for no change)
  748. * @supported_rates_len: number of supported rates
  749. * @sta_flags_mask: station flags that changed
  750. * (bitmask of BIT(%NL80211_STA_FLAG_...))
  751. * @sta_flags_set: station flags values
  752. * (bitmask of BIT(%NL80211_STA_FLAG_...))
  753. * @listen_interval: listen interval or -1 for no change
  754. * @aid: AID or zero for no change
  755. * @peer_aid: mesh peer AID or zero for no change
  756. * @plink_action: plink action to take
  757. * @plink_state: set the peer link state for a station
  758. * @ht_capa: HT capabilities of station
  759. * @vht_capa: VHT capabilities of station
  760. * @uapsd_queues: bitmap of queues configured for uapsd. same format
  761. * as the AC bitmap in the QoS info field
  762. * @max_sp: max Service Period. same format as the MAX_SP in the
  763. * QoS info field (but already shifted down)
  764. * @sta_modify_mask: bitmap indicating which parameters changed
  765. * (for those that don't have a natural "no change" value),
  766. * see &enum station_parameters_apply_mask
  767. * @local_pm: local link-specific mesh power save mode (no change when set
  768. * to unknown)
  769. * @capability: station capability
  770. * @ext_capab: extended capabilities of the station
  771. * @ext_capab_len: number of extended capabilities
  772. * @supported_channels: supported channels in IEEE 802.11 format
  773. * @supported_channels_len: number of supported channels
  774. * @supported_oper_classes: supported oper classes in IEEE 802.11 format
  775. * @supported_oper_classes_len: number of supported operating classes
  776. * @opmode_notif: operating mode field from Operating Mode Notification
  777. * @opmode_notif_used: information if operating mode field is used
  778. * @support_p2p_ps: information if station supports P2P PS mechanism
  779. */
  780. struct station_parameters {
  781. const u8 *supported_rates;
  782. struct net_device *vlan;
  783. u32 sta_flags_mask, sta_flags_set;
  784. u32 sta_modify_mask;
  785. int listen_interval;
  786. u16 aid;
  787. u16 peer_aid;
  788. u8 supported_rates_len;
  789. u8 plink_action;
  790. u8 plink_state;
  791. const struct ieee80211_ht_cap *ht_capa;
  792. const struct ieee80211_vht_cap *vht_capa;
  793. u8 uapsd_queues;
  794. u8 max_sp;
  795. enum nl80211_mesh_power_mode local_pm;
  796. u16 capability;
  797. const u8 *ext_capab;
  798. u8 ext_capab_len;
  799. const u8 *supported_channels;
  800. u8 supported_channels_len;
  801. const u8 *supported_oper_classes;
  802. u8 supported_oper_classes_len;
  803. u8 opmode_notif;
  804. bool opmode_notif_used;
  805. int support_p2p_ps;
  806. };
  807. /**
  808. * struct station_del_parameters - station deletion parameters
  809. *
  810. * Used to delete a station entry (or all stations).
  811. *
  812. * @mac: MAC address of the station to remove or NULL to remove all stations
  813. * @subtype: Management frame subtype to use for indicating removal
  814. * (10 = Disassociation, 12 = Deauthentication)
  815. * @reason_code: Reason code for the Disassociation/Deauthentication frame
  816. */
  817. struct station_del_parameters {
  818. const u8 *mac;
  819. u8 subtype;
  820. u16 reason_code;
  821. };
  822. /**
  823. * enum cfg80211_station_type - the type of station being modified
  824. * @CFG80211_STA_AP_CLIENT: client of an AP interface
  825. * @CFG80211_STA_AP_CLIENT_UNASSOC: client of an AP interface that is still
  826. * unassociated (update properties for this type of client is permitted)
  827. * @CFG80211_STA_AP_MLME_CLIENT: client of an AP interface that has
  828. * the AP MLME in the device
  829. * @CFG80211_STA_AP_STA: AP station on managed interface
  830. * @CFG80211_STA_IBSS: IBSS station
  831. * @CFG80211_STA_TDLS_PEER_SETUP: TDLS peer on managed interface (dummy entry
  832. * while TDLS setup is in progress, it moves out of this state when
  833. * being marked authorized; use this only if TDLS with external setup is
  834. * supported/used)
  835. * @CFG80211_STA_TDLS_PEER_ACTIVE: TDLS peer on managed interface (active
  836. * entry that is operating, has been marked authorized by userspace)
  837. * @CFG80211_STA_MESH_PEER_KERNEL: peer on mesh interface (kernel managed)
  838. * @CFG80211_STA_MESH_PEER_USER: peer on mesh interface (user managed)
  839. */
  840. enum cfg80211_station_type {
  841. CFG80211_STA_AP_CLIENT,
  842. CFG80211_STA_AP_CLIENT_UNASSOC,
  843. CFG80211_STA_AP_MLME_CLIENT,
  844. CFG80211_STA_AP_STA,
  845. CFG80211_STA_IBSS,
  846. CFG80211_STA_TDLS_PEER_SETUP,
  847. CFG80211_STA_TDLS_PEER_ACTIVE,
  848. CFG80211_STA_MESH_PEER_KERNEL,
  849. CFG80211_STA_MESH_PEER_USER,
  850. };
  851. /**
  852. * cfg80211_check_station_change - validate parameter changes
  853. * @wiphy: the wiphy this operates on
  854. * @params: the new parameters for a station
  855. * @statype: the type of station being modified
  856. *
  857. * Utility function for the @change_station driver method. Call this function
  858. * with the appropriate station type looking up the station (and checking that
  859. * it exists). It will verify whether the station change is acceptable, and if
  860. * not will return an error code. Note that it may modify the parameters for
  861. * backward compatibility reasons, so don't use them before calling this.
  862. */
  863. int cfg80211_check_station_change(struct wiphy *wiphy,
  864. struct station_parameters *params,
  865. enum cfg80211_station_type statype);
  866. /**
  867. * enum station_info_rate_flags - bitrate info flags
  868. *
  869. * Used by the driver to indicate the specific rate transmission
  870. * type for 802.11n transmissions.
  871. *
  872. * @RATE_INFO_FLAGS_MCS: mcs field filled with HT MCS
  873. * @RATE_INFO_FLAGS_VHT_MCS: mcs field filled with VHT MCS
  874. * @RATE_INFO_FLAGS_SHORT_GI: 400ns guard interval
  875. * @RATE_INFO_FLAGS_60G: 60GHz MCS
  876. */
  877. enum rate_info_flags {
  878. RATE_INFO_FLAGS_MCS = BIT(0),
  879. RATE_INFO_FLAGS_VHT_MCS = BIT(1),
  880. RATE_INFO_FLAGS_SHORT_GI = BIT(2),
  881. RATE_INFO_FLAGS_60G = BIT(3),
  882. };
  883. /**
  884. * enum rate_info_bw - rate bandwidth information
  885. *
  886. * Used by the driver to indicate the rate bandwidth.
  887. *
  888. * @RATE_INFO_BW_5: 5 MHz bandwidth
  889. * @RATE_INFO_BW_10: 10 MHz bandwidth
  890. * @RATE_INFO_BW_20: 20 MHz bandwidth
  891. * @RATE_INFO_BW_40: 40 MHz bandwidth
  892. * @RATE_INFO_BW_80: 80 MHz bandwidth
  893. * @RATE_INFO_BW_160: 160 MHz bandwidth
  894. */
  895. enum rate_info_bw {
  896. RATE_INFO_BW_20 = 0,
  897. RATE_INFO_BW_5,
  898. RATE_INFO_BW_10,
  899. RATE_INFO_BW_40,
  900. RATE_INFO_BW_80,
  901. RATE_INFO_BW_160,
  902. };
  903. /**
  904. * struct rate_info - bitrate information
  905. *
  906. * Information about a receiving or transmitting bitrate
  907. *
  908. * @flags: bitflag of flags from &enum rate_info_flags
  909. * @mcs: mcs index if struct describes a 802.11n bitrate
  910. * @legacy: bitrate in 100kbit/s for 802.11abg
  911. * @nss: number of streams (VHT only)
  912. * @bw: bandwidth (from &enum rate_info_bw)
  913. */
  914. struct rate_info {
  915. u8 flags;
  916. u8 mcs;
  917. u16 legacy;
  918. u8 nss;
  919. u8 bw;
  920. };
  921. /**
  922. * enum station_info_rate_flags - bitrate info flags
  923. *
  924. * Used by the driver to indicate the specific rate transmission
  925. * type for 802.11n transmissions.
  926. *
  927. * @BSS_PARAM_FLAGS_CTS_PROT: whether CTS protection is enabled
  928. * @BSS_PARAM_FLAGS_SHORT_PREAMBLE: whether short preamble is enabled
  929. * @BSS_PARAM_FLAGS_SHORT_SLOT_TIME: whether short slot time is enabled
  930. */
  931. enum bss_param_flags {
  932. BSS_PARAM_FLAGS_CTS_PROT = 1<<0,
  933. BSS_PARAM_FLAGS_SHORT_PREAMBLE = 1<<1,
  934. BSS_PARAM_FLAGS_SHORT_SLOT_TIME = 1<<2,
  935. };
  936. /**
  937. * struct sta_bss_parameters - BSS parameters for the attached station
  938. *
  939. * Information about the currently associated BSS
  940. *
  941. * @flags: bitflag of flags from &enum bss_param_flags
  942. * @dtim_period: DTIM period for the BSS
  943. * @beacon_interval: beacon interval
  944. */
  945. struct sta_bss_parameters {
  946. u8 flags;
  947. u8 dtim_period;
  948. u16 beacon_interval;
  949. };
  950. /**
  951. * struct cfg80211_tid_stats - per-TID statistics
  952. * @filled: bitmap of flags using the bits of &enum nl80211_tid_stats to
  953. * indicate the relevant values in this struct are filled
  954. * @rx_msdu: number of received MSDUs
  955. * @tx_msdu: number of (attempted) transmitted MSDUs
  956. * @tx_msdu_retries: number of retries (not counting the first) for
  957. * transmitted MSDUs
  958. * @tx_msdu_failed: number of failed transmitted MSDUs
  959. */
  960. struct cfg80211_tid_stats {
  961. u32 filled;
  962. u64 rx_msdu;
  963. u64 tx_msdu;
  964. u64 tx_msdu_retries;
  965. u64 tx_msdu_failed;
  966. };
  967. #define IEEE80211_MAX_CHAINS 4
  968. /**
  969. * struct station_info - station information
  970. *
  971. * Station information filled by driver for get_station() and dump_station.
  972. *
  973. * @filled: bitflag of flags using the bits of &enum nl80211_sta_info to
  974. * indicate the relevant values in this struct for them
  975. * @connected_time: time(in secs) since a station is last connected
  976. * @inactive_time: time since last station activity (tx/rx) in milliseconds
  977. * @rx_bytes: bytes (size of MPDUs) received from this station
  978. * @tx_bytes: bytes (size of MPDUs) transmitted to this station
  979. * @llid: mesh local link id
  980. * @plid: mesh peer link id
  981. * @plink_state: mesh peer link state
  982. * @signal: The signal strength, type depends on the wiphy's signal_type.
  983. * For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
  984. * @signal_avg: Average signal strength, type depends on the wiphy's signal_type.
  985. * For CFG80211_SIGNAL_TYPE_MBM, value is expressed in _dBm_.
  986. * @chains: bitmask for filled values in @chain_signal, @chain_signal_avg
  987. * @chain_signal: per-chain signal strength of last received packet in dBm
  988. * @chain_signal_avg: per-chain signal strength average in dBm
  989. * @txrate: current unicast bitrate from this station
  990. * @rxrate: current unicast bitrate to this station
  991. * @rx_packets: packets (MSDUs & MMPDUs) received from this station
  992. * @tx_packets: packets (MSDUs & MMPDUs) transmitted to this station
  993. * @tx_retries: cumulative retry counts (MPDUs)
  994. * @tx_failed: number of failed transmissions (MPDUs) (retries exceeded, no ACK)
  995. * @rx_dropped_misc: Dropped for un-specified reason.
  996. * @bss_param: current BSS parameters
  997. * @generation: generation number for nl80211 dumps.
  998. * This number should increase every time the list of stations
  999. * changes, i.e. when a station is added or removed, so that
  1000. * userspace can tell whether it got a consistent snapshot.
  1001. * @assoc_req_ies: IEs from (Re)Association Request.
  1002. * This is used only when in AP mode with drivers that do not use
  1003. * user space MLME/SME implementation. The information is provided for
  1004. * the cfg80211_new_sta() calls to notify user space of the IEs.
  1005. * @assoc_req_ies_len: Length of assoc_req_ies buffer in octets.
  1006. * @sta_flags: station flags mask & values
  1007. * @beacon_loss_count: Number of times beacon loss event has triggered.
  1008. * @t_offset: Time offset of the station relative to this host.
  1009. * @local_pm: local mesh STA power save mode
  1010. * @peer_pm: peer mesh STA power save mode
  1011. * @nonpeer_pm: non-peer mesh STA power save mode
  1012. * @expected_throughput: expected throughput in kbps (including 802.11 headers)
  1013. * towards this station.
  1014. * @rx_beacon: number of beacons received from this peer
  1015. * @rx_beacon_signal_avg: signal strength average (in dBm) for beacons received
  1016. * from this peer
  1017. * @rx_duration: aggregate PPDU duration(usecs) for all the frames from a peer
  1018. * @pertid: per-TID statistics, see &struct cfg80211_tid_stats, using the last
  1019. * (IEEE80211_NUM_TIDS) index for MSDUs not encapsulated in QoS-MPDUs.
  1020. */
  1021. struct station_info {
  1022. u64 filled;
  1023. u32 connected_time;
  1024. u32 inactive_time;
  1025. u64 rx_bytes;
  1026. u64 tx_bytes;
  1027. u16 llid;
  1028. u16 plid;
  1029. u8 plink_state;
  1030. s8 signal;
  1031. s8 signal_avg;
  1032. u8 chains;
  1033. s8 chain_signal[IEEE80211_MAX_CHAINS];
  1034. s8 chain_signal_avg[IEEE80211_MAX_CHAINS];
  1035. struct rate_info txrate;
  1036. struct rate_info rxrate;
  1037. u32 rx_packets;
  1038. u32 tx_packets;
  1039. u32 tx_retries;
  1040. u32 tx_failed;
  1041. u32 rx_dropped_misc;
  1042. struct sta_bss_parameters bss_param;
  1043. struct nl80211_sta_flag_update sta_flags;
  1044. int generation;
  1045. const u8 *assoc_req_ies;
  1046. size_t assoc_req_ies_len;
  1047. u32 beacon_loss_count;
  1048. s64 t_offset;
  1049. enum nl80211_mesh_power_mode local_pm;
  1050. enum nl80211_mesh_power_mode peer_pm;
  1051. enum nl80211_mesh_power_mode nonpeer_pm;
  1052. u32 expected_throughput;
  1053. u64 rx_beacon;
  1054. u64 rx_duration;
  1055. u8 rx_beacon_signal_avg;
  1056. struct cfg80211_tid_stats pertid[IEEE80211_NUM_TIDS + 1];
  1057. };
  1058. #if IS_ENABLED(CONFIG_CFG80211)
  1059. /**
  1060. * cfg80211_get_station - retrieve information about a given station
  1061. * @dev: the device where the station is supposed to be connected to
  1062. * @mac_addr: the mac address of the station of interest
  1063. * @sinfo: pointer to the structure to fill with the information
  1064. *
  1065. * Returns 0 on success and sinfo is filled with the available information
  1066. * otherwise returns a negative error code and the content of sinfo has to be
  1067. * considered undefined.
  1068. */
  1069. int cfg80211_get_station(struct net_device *dev, const u8 *mac_addr,
  1070. struct station_info *sinfo);
  1071. #else
  1072. static inline int cfg80211_get_station(struct net_device *dev,
  1073. const u8 *mac_addr,
  1074. struct station_info *sinfo)
  1075. {
  1076. return -ENOENT;
  1077. }
  1078. #endif
  1079. /**
  1080. * enum monitor_flags - monitor flags
  1081. *
  1082. * Monitor interface configuration flags. Note that these must be the bits
  1083. * according to the nl80211 flags.
  1084. *
  1085. * @MONITOR_FLAG_FCSFAIL: pass frames with bad FCS
  1086. * @MONITOR_FLAG_PLCPFAIL: pass frames with bad PLCP
  1087. * @MONITOR_FLAG_CONTROL: pass control frames
  1088. * @MONITOR_FLAG_OTHER_BSS: disable BSSID filtering
  1089. * @MONITOR_FLAG_COOK_FRAMES: report frames after processing
  1090. * @MONITOR_FLAG_ACTIVE: active monitor, ACKs frames on its MAC address
  1091. */
  1092. enum monitor_flags {
  1093. MONITOR_FLAG_FCSFAIL = 1<<NL80211_MNTR_FLAG_FCSFAIL,
  1094. MONITOR_FLAG_PLCPFAIL = 1<<NL80211_MNTR_FLAG_PLCPFAIL,
  1095. MONITOR_FLAG_CONTROL = 1<<NL80211_MNTR_FLAG_CONTROL,
  1096. MONITOR_FLAG_OTHER_BSS = 1<<NL80211_MNTR_FLAG_OTHER_BSS,
  1097. MONITOR_FLAG_COOK_FRAMES = 1<<NL80211_MNTR_FLAG_COOK_FRAMES,
  1098. MONITOR_FLAG_ACTIVE = 1<<NL80211_MNTR_FLAG_ACTIVE,
  1099. };
  1100. /**
  1101. * enum mpath_info_flags - mesh path information flags
  1102. *
  1103. * Used by the driver to indicate which info in &struct mpath_info it has filled
  1104. * in during get_station() or dump_station().
  1105. *
  1106. * @MPATH_INFO_FRAME_QLEN: @frame_qlen filled
  1107. * @MPATH_INFO_SN: @sn filled
  1108. * @MPATH_INFO_METRIC: @metric filled
  1109. * @MPATH_INFO_EXPTIME: @exptime filled
  1110. * @MPATH_INFO_DISCOVERY_TIMEOUT: @discovery_timeout filled
  1111. * @MPATH_INFO_DISCOVERY_RETRIES: @discovery_retries filled
  1112. * @MPATH_INFO_FLAGS: @flags filled
  1113. */
  1114. enum mpath_info_flags {
  1115. MPATH_INFO_FRAME_QLEN = BIT(0),
  1116. MPATH_INFO_SN = BIT(1),
  1117. MPATH_INFO_METRIC = BIT(2),
  1118. MPATH_INFO_EXPTIME = BIT(3),
  1119. MPATH_INFO_DISCOVERY_TIMEOUT = BIT(4),
  1120. MPATH_INFO_DISCOVERY_RETRIES = BIT(5),
  1121. MPATH_INFO_FLAGS = BIT(6),
  1122. };
  1123. /**
  1124. * struct mpath_info - mesh path information
  1125. *
  1126. * Mesh path information filled by driver for get_mpath() and dump_mpath().
  1127. *
  1128. * @filled: bitfield of flags from &enum mpath_info_flags
  1129. * @frame_qlen: number of queued frames for this destination
  1130. * @sn: target sequence number
  1131. * @metric: metric (cost) of this mesh path
  1132. * @exptime: expiration time for the mesh path from now, in msecs
  1133. * @flags: mesh path flags
  1134. * @discovery_timeout: total mesh path discovery timeout, in msecs
  1135. * @discovery_retries: mesh path discovery retries
  1136. * @generation: generation number for nl80211 dumps.
  1137. * This number should increase every time the list of mesh paths
  1138. * changes, i.e. when a station is added or removed, so that
  1139. * userspace can tell whether it got a consistent snapshot.
  1140. */
  1141. struct mpath_info {
  1142. u32 filled;
  1143. u32 frame_qlen;
  1144. u32 sn;
  1145. u32 metric;
  1146. u32 exptime;
  1147. u32 discovery_timeout;
  1148. u8 discovery_retries;
  1149. u8 flags;
  1150. int generation;
  1151. };
  1152. /**
  1153. * struct bss_parameters - BSS parameters
  1154. *
  1155. * Used to change BSS parameters (mainly for AP mode).
  1156. *
  1157. * @use_cts_prot: Whether to use CTS protection
  1158. * (0 = no, 1 = yes, -1 = do not change)
  1159. * @use_short_preamble: Whether the use of short preambles is allowed
  1160. * (0 = no, 1 = yes, -1 = do not change)
  1161. * @use_short_slot_time: Whether the use of short slot time is allowed
  1162. * (0 = no, 1 = yes, -1 = do not change)
  1163. * @basic_rates: basic rates in IEEE 802.11 format
  1164. * (or NULL for no change)
  1165. * @basic_rates_len: number of basic rates
  1166. * @ap_isolate: do not forward packets between connected stations
  1167. * @ht_opmode: HT Operation mode
  1168. * (u16 = opmode, -1 = do not change)
  1169. * @p2p_ctwindow: P2P CT Window (-1 = no change)
  1170. * @p2p_opp_ps: P2P opportunistic PS (-1 = no change)
  1171. */
  1172. struct bss_parameters {
  1173. int use_cts_prot;
  1174. int use_short_preamble;
  1175. int use_short_slot_time;
  1176. const u8 *basic_rates;
  1177. u8 basic_rates_len;
  1178. int ap_isolate;
  1179. int ht_opmode;
  1180. s8 p2p_ctwindow, p2p_opp_ps;
  1181. };
  1182. /**
  1183. * struct mesh_config - 802.11s mesh configuration
  1184. *
  1185. * These parameters can be changed while the mesh is active.
  1186. *
  1187. * @dot11MeshRetryTimeout: the initial retry timeout in millisecond units used
  1188. * by the Mesh Peering Open message
  1189. * @dot11MeshConfirmTimeout: the initial retry timeout in millisecond units
  1190. * used by the Mesh Peering Open message
  1191. * @dot11MeshHoldingTimeout: the confirm timeout in millisecond units used by
  1192. * the mesh peering management to close a mesh peering
  1193. * @dot11MeshMaxPeerLinks: the maximum number of peer links allowed on this
  1194. * mesh interface
  1195. * @dot11MeshMaxRetries: the maximum number of peer link open retries that can
  1196. * be sent to establish a new peer link instance in a mesh
  1197. * @dot11MeshTTL: the value of TTL field set at a source mesh STA
  1198. * @element_ttl: the value of TTL field set at a mesh STA for path selection
  1199. * elements
  1200. * @auto_open_plinks: whether we should automatically open peer links when we
  1201. * detect compatible mesh peers
  1202. * @dot11MeshNbrOffsetMaxNeighbor: the maximum number of neighbors to
  1203. * synchronize to for 11s default synchronization method
  1204. * @dot11MeshHWMPmaxPREQretries: the number of action frames containing a PREQ
  1205. * that an originator mesh STA can send to a particular path target
  1206. * @path_refresh_time: how frequently to refresh mesh paths in milliseconds
  1207. * @min_discovery_timeout: the minimum length of time to wait until giving up on
  1208. * a path discovery in milliseconds
  1209. * @dot11MeshHWMPactivePathTimeout: the time (in TUs) for which mesh STAs
  1210. * receiving a PREQ shall consider the forwarding information from the
  1211. * root to be valid. (TU = time unit)
  1212. * @dot11MeshHWMPpreqMinInterval: the minimum interval of time (in TUs) during
  1213. * which a mesh STA can send only one action frame containing a PREQ
  1214. * element
  1215. * @dot11MeshHWMPperrMinInterval: the minimum interval of time (in TUs) during
  1216. * which a mesh STA can send only one Action frame containing a PERR
  1217. * element
  1218. * @dot11MeshHWMPnetDiameterTraversalTime: the interval of time (in TUs) that
  1219. * it takes for an HWMP information element to propagate across the mesh
  1220. * @dot11MeshHWMPRootMode: the configuration of a mesh STA as root mesh STA
  1221. * @dot11MeshHWMPRannInterval: the interval of time (in TUs) between root
  1222. * announcements are transmitted
  1223. * @dot11MeshGateAnnouncementProtocol: whether to advertise that this mesh
  1224. * station has access to a broader network beyond the MBSS. (This is
  1225. * missnamed in draft 12.0: dot11MeshGateAnnouncementProtocol set to true
  1226. * only means that the station will announce others it's a mesh gate, but
  1227. * not necessarily using the gate announcement protocol. Still keeping the
  1228. * same nomenclature to be in sync with the spec)
  1229. * @dot11MeshForwarding: whether the Mesh STA is forwarding or non-forwarding
  1230. * entity (default is TRUE - forwarding entity)
  1231. * @rssi_threshold: the threshold for average signal strength of candidate
  1232. * station to establish a peer link
  1233. * @ht_opmode: mesh HT protection mode
  1234. *
  1235. * @dot11MeshHWMPactivePathToRootTimeout: The time (in TUs) for which mesh STAs
  1236. * receiving a proactive PREQ shall consider the forwarding information to
  1237. * the root mesh STA to be valid.
  1238. *
  1239. * @dot11MeshHWMProotInterval: The interval of time (in TUs) between proactive
  1240. * PREQs are transmitted.
  1241. * @dot11MeshHWMPconfirmationInterval: The minimum interval of time (in TUs)
  1242. * during which a mesh STA can send only one Action frame containing
  1243. * a PREQ element for root path confirmation.
  1244. * @power_mode: The default mesh power save mode which will be the initial
  1245. * setting for new peer links.
  1246. * @dot11MeshAwakeWindowDuration: The duration in TUs the STA will remain awake
  1247. * after transmitting its beacon.
  1248. * @plink_timeout: If no tx activity is seen from a STA we've established
  1249. * peering with for longer than this time (in seconds), then remove it
  1250. * from the STA's list of peers. Default is 30 minutes.
  1251. */
  1252. struct mesh_config {
  1253. u16 dot11MeshRetryTimeout;
  1254. u16 dot11MeshConfirmTimeout;
  1255. u16 dot11MeshHoldingTimeout;
  1256. u16 dot11MeshMaxPeerLinks;
  1257. u8 dot11MeshMaxRetries;
  1258. u8 dot11MeshTTL;
  1259. u8 element_ttl;
  1260. bool auto_open_plinks;
  1261. u32 dot11MeshNbrOffsetMaxNeighbor;
  1262. u8 dot11MeshHWMPmaxPREQretries;
  1263. u32 path_refresh_time;
  1264. u16 min_discovery_timeout;
  1265. u32 dot11MeshHWMPactivePathTimeout;
  1266. u16 dot11MeshHWMPpreqMinInterval;
  1267. u16 dot11MeshHWMPperrMinInterval;
  1268. u16 dot11MeshHWMPnetDiameterTraversalTime;
  1269. u8 dot11MeshHWMPRootMode;
  1270. u16 dot11MeshHWMPRannInterval;
  1271. bool dot11MeshGateAnnouncementProtocol;
  1272. bool dot11MeshForwarding;
  1273. s32 rssi_threshold;
  1274. u16 ht_opmode;
  1275. u32 dot11MeshHWMPactivePathToRootTimeout;
  1276. u16 dot11MeshHWMProotInterval;
  1277. u16 dot11MeshHWMPconfirmationInterval;
  1278. enum nl80211_mesh_power_mode power_mode;
  1279. u16 dot11MeshAwakeWindowDuration;
  1280. u32 plink_timeout;
  1281. };
  1282. /**
  1283. * struct mesh_setup - 802.11s mesh setup configuration
  1284. * @chandef: defines the channel to use
  1285. * @mesh_id: the mesh ID
  1286. * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes
  1287. * @sync_method: which synchronization method to use
  1288. * @path_sel_proto: which path selection protocol to use
  1289. * @path_metric: which metric to use
  1290. * @auth_id: which authentication method this mesh is using
  1291. * @ie: vendor information elements (optional)
  1292. * @ie_len: length of vendor information elements
  1293. * @is_authenticated: this mesh requires authentication
  1294. * @is_secure: this mesh uses security
  1295. * @user_mpm: userspace handles all MPM functions
  1296. * @dtim_period: DTIM period to use
  1297. * @beacon_interval: beacon interval to use
  1298. * @mcast_rate: multicat rate for Mesh Node [6Mbps is the default for 802.11a]
  1299. * @basic_rates: basic rates to use when creating the mesh
  1300. * @beacon_rate: bitrate to be used for beacons
  1301. *
  1302. * These parameters are fixed when the mesh is created.
  1303. */
  1304. struct mesh_setup {
  1305. struct cfg80211_chan_def chandef;
  1306. const u8 *mesh_id;
  1307. u8 mesh_id_len;
  1308. u8 sync_method;
  1309. u8 path_sel_proto;
  1310. u8 path_metric;
  1311. u8 auth_id;
  1312. const u8 *ie;
  1313. u8 ie_len;
  1314. bool is_authenticated;
  1315. bool is_secure;
  1316. bool user_mpm;
  1317. u8 dtim_period;
  1318. u16 beacon_interval;
  1319. int mcast_rate[NUM_NL80211_BANDS];
  1320. u32 basic_rates;
  1321. struct cfg80211_bitrate_mask beacon_rate;
  1322. };
  1323. /**
  1324. * struct ocb_setup - 802.11p OCB mode setup configuration
  1325. * @chandef: defines the channel to use
  1326. *
  1327. * These parameters are fixed when connecting to the network
  1328. */
  1329. struct ocb_setup {
  1330. struct cfg80211_chan_def chandef;
  1331. };
  1332. /**
  1333. * struct ieee80211_txq_params - TX queue parameters
  1334. * @ac: AC identifier
  1335. * @txop: Maximum burst time in units of 32 usecs, 0 meaning disabled
  1336. * @cwmin: Minimum contention window [a value of the form 2^n-1 in the range
  1337. * 1..32767]
  1338. * @cwmax: Maximum contention window [a value of the form 2^n-1 in the range
  1339. * 1..32767]
  1340. * @aifs: Arbitration interframe space [0..255]
  1341. */
  1342. struct ieee80211_txq_params {
  1343. enum nl80211_ac ac;
  1344. u16 txop;
  1345. u16 cwmin;
  1346. u16 cwmax;
  1347. u8 aifs;
  1348. };
  1349. /**
  1350. * DOC: Scanning and BSS list handling
  1351. *
  1352. * The scanning process itself is fairly simple, but cfg80211 offers quite
  1353. * a bit of helper functionality. To start a scan, the scan operation will
  1354. * be invoked with a scan definition. This scan definition contains the
  1355. * channels to scan, and the SSIDs to send probe requests for (including the
  1356. * wildcard, if desired). A passive scan is indicated by having no SSIDs to
  1357. * probe. Additionally, a scan request may contain extra information elements
  1358. * that should be added to the probe request. The IEs are guaranteed to be
  1359. * well-formed, and will not exceed the maximum length the driver advertised
  1360. * in the wiphy structure.
  1361. *
  1362. * When scanning finds a BSS, cfg80211 needs to be notified of that, because
  1363. * it is responsible for maintaining the BSS list; the driver should not
  1364. * maintain a list itself. For this notification, various functions exist.
  1365. *
  1366. * Since drivers do not maintain a BSS list, there are also a number of
  1367. * functions to search for a BSS and obtain information about it from the
  1368. * BSS structure cfg80211 maintains. The BSS list is also made available
  1369. * to userspace.
  1370. */
  1371. /**
  1372. * struct cfg80211_ssid - SSID description
  1373. * @ssid: the SSID
  1374. * @ssid_len: length of the ssid
  1375. */
  1376. struct cfg80211_ssid {
  1377. u8 ssid[IEEE80211_MAX_SSID_LEN];
  1378. u8 ssid_len;
  1379. };
  1380. /**
  1381. * struct cfg80211_scan_info - information about completed scan
  1382. * @scan_start_tsf: scan start time in terms of the TSF of the BSS that the
  1383. * wireless device that requested the scan is connected to. If this
  1384. * information is not available, this field is left zero.
  1385. * @tsf_bssid: the BSSID according to which %scan_start_tsf is set.
  1386. * @aborted: set to true if the scan was aborted for any reason,
  1387. * userspace will be notified of that
  1388. */
  1389. struct cfg80211_scan_info {
  1390. u64 scan_start_tsf;
  1391. u8 tsf_bssid[ETH_ALEN] __aligned(2);
  1392. bool aborted;
  1393. };
  1394. /**
  1395. * struct cfg80211_scan_request - scan request description
  1396. *
  1397. * @ssids: SSIDs to scan for (active scan only)
  1398. * @n_ssids: number of SSIDs
  1399. * @channels: channels to scan on.
  1400. * @n_channels: total number of channels to scan
  1401. * @scan_width: channel width for scanning
  1402. * @ie: optional information element(s) to add into Probe Request or %NULL
  1403. * @ie_len: length of ie in octets
  1404. * @duration: how long to listen on each channel, in TUs. If
  1405. * %duration_mandatory is not set, this is the maximum dwell time and
  1406. * the actual dwell time may be shorter.
  1407. * @duration_mandatory: if set, the scan duration must be as specified by the
  1408. * %duration field.
  1409. * @flags: bit field of flags controlling operation
  1410. * @rates: bitmap of rates to advertise for each band
  1411. * @wiphy: the wiphy this was for
  1412. * @scan_start: time (in jiffies) when the scan started
  1413. * @wdev: the wireless device to scan for
  1414. * @info: (internal) information about completed scan
  1415. * @notified: (internal) scan request was notified as done or aborted
  1416. * @no_cck: used to send probe requests at non CCK rate in 2GHz band
  1417. * @mac_addr: MAC address used with randomisation
  1418. * @mac_addr_mask: MAC address mask used with randomisation, bits that
  1419. * are 0 in the mask should be randomised, bits that are 1 should
  1420. * be taken from the @mac_addr
  1421. * @bssid: BSSID to scan for (most commonly, the wildcard BSSID)
  1422. */
  1423. struct cfg80211_scan_request {
  1424. struct cfg80211_ssid *ssids;
  1425. int n_ssids;
  1426. u32 n_channels;
  1427. enum nl80211_bss_scan_width scan_width;
  1428. const u8 *ie;
  1429. size_t ie_len;
  1430. u16 duration;
  1431. bool duration_mandatory;
  1432. u32 flags;
  1433. u32 rates[NUM_NL80211_BANDS];
  1434. struct wireless_dev *wdev;
  1435. u8 mac_addr[ETH_ALEN] __aligned(2);
  1436. u8 mac_addr_mask[ETH_ALEN] __aligned(2);
  1437. u8 bssid[ETH_ALEN] __aligned(2);
  1438. /* internal */
  1439. struct wiphy *wiphy;
  1440. unsigned long scan_start;
  1441. struct cfg80211_scan_info info;
  1442. bool notified;
  1443. bool no_cck;
  1444. /* keep last */
  1445. struct ieee80211_channel *channels[0];
  1446. };
  1447. static inline void get_random_mask_addr(u8 *buf, const u8 *addr, const u8 *mask)
  1448. {
  1449. int i;
  1450. get_random_bytes(buf, ETH_ALEN);
  1451. for (i = 0; i < ETH_ALEN; i++) {
  1452. buf[i] &= ~mask[i];
  1453. buf[i] |= addr[i] & mask[i];
  1454. }
  1455. }
  1456. /**
  1457. * struct cfg80211_match_set - sets of attributes to match
  1458. *
  1459. * @ssid: SSID to be matched; may be zero-length for no match (RSSI only)
  1460. * @rssi_thold: don't report scan results below this threshold (in s32 dBm)
  1461. */
  1462. struct cfg80211_match_set {
  1463. struct cfg80211_ssid ssid;
  1464. s32 rssi_thold;
  1465. };
  1466. /**
  1467. * struct cfg80211_sched_scan_plan - scan plan for scheduled scan
  1468. *
  1469. * @interval: interval between scheduled scan iterations. In seconds.
  1470. * @iterations: number of scan iterations in this scan plan. Zero means
  1471. * infinite loop.
  1472. * The last scan plan will always have this parameter set to zero,
  1473. * all other scan plans will have a finite number of iterations.
  1474. */
  1475. struct cfg80211_sched_scan_plan {
  1476. u32 interval;
  1477. u32 iterations;
  1478. };
  1479. /**
  1480. * struct cfg80211_sched_scan_request - scheduled scan request description
  1481. *
  1482. * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans)
  1483. * @n_ssids: number of SSIDs
  1484. * @n_channels: total number of channels to scan
  1485. * @scan_width: channel width for scanning
  1486. * @ie: optional information element(s) to add into Probe Request or %NULL
  1487. * @ie_len: length of ie in octets
  1488. * @flags: bit field of flags controlling operation
  1489. * @match_sets: sets of parameters to be matched for a scan result
  1490. * entry to be considered valid and to be passed to the host
  1491. * (others are filtered out).
  1492. * If ommited, all results are passed.
  1493. * @n_match_sets: number of match sets
  1494. * @wiphy: the wiphy this was for
  1495. * @dev: the interface
  1496. * @scan_start: start time of the scheduled scan
  1497. * @channels: channels to scan
  1498. * @min_rssi_thold: for drivers only supporting a single threshold, this
  1499. * contains the minimum over all matchsets
  1500. * @mac_addr: MAC address used with randomisation
  1501. * @mac_addr_mask: MAC address mask used with randomisation, bits that
  1502. * are 0 in the mask should be randomised, bits that are 1 should
  1503. * be taken from the @mac_addr
  1504. * @scan_plans: scan plans to be executed in this scheduled scan. Lowest
  1505. * index must be executed first.
  1506. * @n_scan_plans: number of scan plans, at least 1.
  1507. * @rcu_head: RCU callback used to free the struct
  1508. * @owner_nlportid: netlink portid of owner (if this should is a request
  1509. * owned by a particular socket)
  1510. * @delay: delay in seconds to use before starting the first scan
  1511. * cycle. The driver may ignore this parameter and start
  1512. * immediately (or at any other time), if this feature is not
  1513. * supported.
  1514. */
  1515. struct cfg80211_sched_scan_request {
  1516. struct cfg80211_ssid *ssids;
  1517. int n_ssids;
  1518. u32 n_channels;
  1519. enum nl80211_bss_scan_width scan_width;
  1520. const u8 *ie;
  1521. size_t ie_len;
  1522. u32 flags;
  1523. struct cfg80211_match_set *match_sets;
  1524. int n_match_sets;
  1525. s32 min_rssi_thold;
  1526. u32 delay;
  1527. struct cfg80211_sched_scan_plan *scan_plans;
  1528. int n_scan_plans;
  1529. u8 mac_addr[ETH_ALEN] __aligned(2);
  1530. u8 mac_addr_mask[ETH_ALEN] __aligned(2);
  1531. /* internal */
  1532. struct wiphy *wiphy;
  1533. struct net_device *dev;
  1534. unsigned long scan_start;
  1535. struct rcu_head rcu_head;
  1536. u32 owner_nlportid;
  1537. /* keep last */
  1538. struct ieee80211_channel *channels[0];
  1539. };
  1540. /**
  1541. * enum cfg80211_signal_type - signal type
  1542. *
  1543. * @CFG80211_SIGNAL_TYPE_NONE: no signal strength information available
  1544. * @CFG80211_SIGNAL_TYPE_MBM: signal strength in mBm (100*dBm)
  1545. * @CFG80211_SIGNAL_TYPE_UNSPEC: signal strength, increasing from 0 through 100
  1546. */
  1547. enum cfg80211_signal_type {
  1548. CFG80211_SIGNAL_TYPE_NONE,
  1549. CFG80211_SIGNAL_TYPE_MBM,
  1550. CFG80211_SIGNAL_TYPE_UNSPEC,
  1551. };
  1552. /**
  1553. * struct cfg80211_inform_bss - BSS inform data
  1554. * @chan: channel the frame was received on
  1555. * @scan_width: scan width that was used
  1556. * @signal: signal strength value, according to the wiphy's
  1557. * signal type
  1558. * @boottime_ns: timestamp (CLOCK_BOOTTIME) when the information was
  1559. * received; should match the time when the frame was actually
  1560. * received by the device (not just by the host, in case it was
  1561. * buffered on the device) and be accurate to about 10ms.
  1562. * If the frame isn't buffered, just passing the return value of
  1563. * ktime_get_boot_ns() is likely appropriate.
  1564. * @parent_tsf: the time at the start of reception of the first octet of the
  1565. * timestamp field of the frame. The time is the TSF of the BSS specified
  1566. * by %parent_bssid.
  1567. * @parent_bssid: the BSS according to which %parent_tsf is set. This is set to
  1568. * the BSS that requested the scan in which the beacon/probe was received.
  1569. */
  1570. struct cfg80211_inform_bss {
  1571. struct ieee80211_channel *chan;
  1572. enum nl80211_bss_scan_width scan_width;
  1573. s32 signal;
  1574. u64 boottime_ns;
  1575. u64 parent_tsf;
  1576. u8 parent_bssid[ETH_ALEN] __aligned(2);
  1577. };
  1578. /**
  1579. * struct cfg80211_bss_ies - BSS entry IE data
  1580. * @tsf: TSF contained in the frame that carried these IEs
  1581. * @rcu_head: internal use, for freeing
  1582. * @len: length of the IEs
  1583. * @from_beacon: these IEs are known to come from a beacon
  1584. * @data: IE data
  1585. */
  1586. struct cfg80211_bss_ies {
  1587. u64 tsf;
  1588. struct rcu_head rcu_head;
  1589. int len;
  1590. bool from_beacon;
  1591. u8 data[];
  1592. };
  1593. /**
  1594. * struct cfg80211_bss - BSS description
  1595. *
  1596. * This structure describes a BSS (which may also be a mesh network)
  1597. * for use in scan results and similar.
  1598. *
  1599. * @channel: channel this BSS is on
  1600. * @scan_width: width of the control channel
  1601. * @bssid: BSSID of the BSS
  1602. * @beacon_interval: the beacon interval as from the frame
  1603. * @capability: the capability field in host byte order
  1604. * @ies: the information elements (Note that there is no guarantee that these
  1605. * are well-formed!); this is a pointer to either the beacon_ies or
  1606. * proberesp_ies depending on whether Probe Response frame has been
  1607. * received. It is always non-%NULL.
  1608. * @beacon_ies: the information elements from the last Beacon frame
  1609. * (implementation note: if @hidden_beacon_bss is set this struct doesn't
  1610. * own the beacon_ies, but they're just pointers to the ones from the
  1611. * @hidden_beacon_bss struct)
  1612. * @proberesp_ies: the information elements from the last Probe Response frame
  1613. * @hidden_beacon_bss: in case this BSS struct represents a probe response from
  1614. * a BSS that hides the SSID in its beacon, this points to the BSS struct
  1615. * that holds the beacon data. @beacon_ies is still valid, of course, and
  1616. * points to the same data as hidden_beacon_bss->beacon_ies in that case.
  1617. * @signal: signal strength value (type depends on the wiphy's signal_type)
  1618. * @priv: private area for driver use, has at least wiphy->bss_priv_size bytes
  1619. */
  1620. struct cfg80211_bss {
  1621. struct ieee80211_channel *channel;
  1622. enum nl80211_bss_scan_width scan_width;
  1623. const struct cfg80211_bss_ies __rcu *ies;
  1624. const struct cfg80211_bss_ies __rcu *beacon_ies;
  1625. const struct cfg80211_bss_ies __rcu *proberesp_ies;
  1626. struct cfg80211_bss *hidden_beacon_bss;
  1627. s32 signal;
  1628. u16 beacon_interval;
  1629. u16 capability;
  1630. u8 bssid[ETH_ALEN];
  1631. u8 priv[0] __aligned(sizeof(void *));
  1632. };
  1633. /**
  1634. * ieee80211_bss_get_ie - find IE with given ID
  1635. * @bss: the bss to search
  1636. * @ie: the IE ID
  1637. *
  1638. * Note that the return value is an RCU-protected pointer, so
  1639. * rcu_read_lock() must be held when calling this function.
  1640. * Return: %NULL if not found.
  1641. */
  1642. const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie);
  1643. /**
  1644. * struct cfg80211_auth_request - Authentication request data
  1645. *
  1646. * This structure provides information needed to complete IEEE 802.11
  1647. * authentication.
  1648. *
  1649. * @bss: The BSS to authenticate with, the callee must obtain a reference
  1650. * to it if it needs to keep it.
  1651. * @auth_type: Authentication type (algorithm)
  1652. * @ie: Extra IEs to add to Authentication frame or %NULL
  1653. * @ie_len: Length of ie buffer in octets
  1654. * @key_len: length of WEP key for shared key authentication
  1655. * @key_idx: index of WEP key for shared key authentication
  1656. * @key: WEP key for shared key authentication
  1657. * @sae_data: Non-IE data to use with SAE or %NULL. This starts with
  1658. * Authentication transaction sequence number field.
  1659. * @sae_data_len: Length of sae_data buffer in octets
  1660. */
  1661. struct cfg80211_auth_request {
  1662. struct cfg80211_bss *bss;
  1663. const u8 *ie;
  1664. size_t ie_len;
  1665. enum nl80211_auth_type auth_type;
  1666. const u8 *key;
  1667. u8 key_len, key_idx;
  1668. const u8 *sae_data;
  1669. size_t sae_data_len;
  1670. };
  1671. /**
  1672. * enum cfg80211_assoc_req_flags - Over-ride default behaviour in association.
  1673. *
  1674. * @ASSOC_REQ_DISABLE_HT: Disable HT (802.11n)
  1675. * @ASSOC_REQ_DISABLE_VHT: Disable VHT
  1676. * @ASSOC_REQ_USE_RRM: Declare RRM capability in this association
  1677. */
  1678. enum cfg80211_assoc_req_flags {
  1679. ASSOC_REQ_DISABLE_HT = BIT(0),
  1680. ASSOC_REQ_DISABLE_VHT = BIT(1),
  1681. ASSOC_REQ_USE_RRM = BIT(2),
  1682. };
  1683. /**
  1684. * struct cfg80211_assoc_request - (Re)Association request data
  1685. *
  1686. * This structure provides information needed to complete IEEE 802.11
  1687. * (re)association.
  1688. * @bss: The BSS to associate with. If the call is successful the driver is
  1689. * given a reference that it must give back to cfg80211_send_rx_assoc()
  1690. * or to cfg80211_assoc_timeout(). To ensure proper refcounting, new
  1691. * association requests while already associating must be rejected.
  1692. * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
  1693. * @ie_len: Length of ie buffer in octets
  1694. * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
  1695. * @crypto: crypto settings
  1696. * @prev_bssid: previous BSSID, if not %NULL use reassociate frame. This is used
  1697. * to indicate a request to reassociate within the ESS instead of a request
  1698. * do the initial association with the ESS. When included, this is set to
  1699. * the BSSID of the current association, i.e., to the value that is
  1700. * included in the Current AP address field of the Reassociation Request
  1701. * frame.
  1702. * @flags: See &enum cfg80211_assoc_req_flags
  1703. * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
  1704. * will be used in ht_capa. Un-supported values will be ignored.
  1705. * @ht_capa_mask: The bits of ht_capa which are to be used.
  1706. * @vht_capa: VHT capability override
  1707. * @vht_capa_mask: VHT capability mask indicating which fields to use
  1708. */
  1709. struct cfg80211_assoc_request {
  1710. struct cfg80211_bss *bss;
  1711. const u8 *ie, *prev_bssid;
  1712. size_t ie_len;
  1713. struct cfg80211_crypto_settings crypto;
  1714. bool use_mfp;
  1715. u32 flags;
  1716. struct ieee80211_ht_cap ht_capa;
  1717. struct ieee80211_ht_cap ht_capa_mask;
  1718. struct ieee80211_vht_cap vht_capa, vht_capa_mask;
  1719. };
  1720. /**
  1721. * struct cfg80211_deauth_request - Deauthentication request data
  1722. *
  1723. * This structure provides information needed to complete IEEE 802.11
  1724. * deauthentication.
  1725. *
  1726. * @bssid: the BSSID of the BSS to deauthenticate from
  1727. * @ie: Extra IEs to add to Deauthentication frame or %NULL
  1728. * @ie_len: Length of ie buffer in octets
  1729. * @reason_code: The reason code for the deauthentication
  1730. * @local_state_change: if set, change local state only and
  1731. * do not set a deauth frame
  1732. */
  1733. struct cfg80211_deauth_request {
  1734. const u8 *bssid;
  1735. const u8 *ie;
  1736. size_t ie_len;
  1737. u16 reason_code;
  1738. bool local_state_change;
  1739. };
  1740. /**
  1741. * struct cfg80211_disassoc_request - Disassociation request data
  1742. *
  1743. * This structure provides information needed to complete IEEE 802.11
  1744. * disassocation.
  1745. *
  1746. * @bss: the BSS to disassociate from
  1747. * @ie: Extra IEs to add to Disassociation frame or %NULL
  1748. * @ie_len: Length of ie buffer in octets
  1749. * @reason_code: The reason code for the disassociation
  1750. * @local_state_change: This is a request for a local state only, i.e., no
  1751. * Disassociation frame is to be transmitted.
  1752. */
  1753. struct cfg80211_disassoc_request {
  1754. struct cfg80211_bss *bss;
  1755. const u8 *ie;
  1756. size_t ie_len;
  1757. u16 reason_code;
  1758. bool local_state_change;
  1759. };
  1760. /**
  1761. * struct cfg80211_ibss_params - IBSS parameters
  1762. *
  1763. * This structure defines the IBSS parameters for the join_ibss()
  1764. * method.
  1765. *
  1766. * @ssid: The SSID, will always be non-null.
  1767. * @ssid_len: The length of the SSID, will always be non-zero.
  1768. * @bssid: Fixed BSSID requested, maybe be %NULL, if set do not
  1769. * search for IBSSs with a different BSSID.
  1770. * @chandef: defines the channel to use if no other IBSS to join can be found
  1771. * @channel_fixed: The channel should be fixed -- do not search for
  1772. * IBSSs to join on other channels.
  1773. * @ie: information element(s) to include in the beacon
  1774. * @ie_len: length of that
  1775. * @beacon_interval: beacon interval to use
  1776. * @privacy: this is a protected network, keys will be configured
  1777. * after joining
  1778. * @control_port: whether user space controls IEEE 802.1X port, i.e.,
  1779. * sets/clears %NL80211_STA_FLAG_AUTHORIZED. If true, the driver is
  1780. * required to assume that the port is unauthorized until authorized by
  1781. * user space. Otherwise, port is marked authorized by default.
  1782. * @userspace_handles_dfs: whether user space controls DFS operation, i.e.
  1783. * changes the channel when a radar is detected. This is required
  1784. * to operate on DFS channels.
  1785. * @basic_rates: bitmap of basic rates to use when creating the IBSS
  1786. * @mcast_rate: per-band multicast rate index + 1 (0: disabled)
  1787. * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
  1788. * will be used in ht_capa. Un-supported values will be ignored.
  1789. * @ht_capa_mask: The bits of ht_capa which are to be used.
  1790. */
  1791. struct cfg80211_ibss_params {
  1792. const u8 *ssid;
  1793. const u8 *bssid;
  1794. struct cfg80211_chan_def chandef;
  1795. const u8 *ie;
  1796. u8 ssid_len, ie_len;
  1797. u16 beacon_interval;
  1798. u32 basic_rates;
  1799. bool channel_fixed;
  1800. bool privacy;
  1801. bool control_port;
  1802. bool userspace_handles_dfs;
  1803. int mcast_rate[NUM_NL80211_BANDS];
  1804. struct ieee80211_ht_cap ht_capa;
  1805. struct ieee80211_ht_cap ht_capa_mask;
  1806. };
  1807. /**
  1808. * struct cfg80211_bss_select_adjust - BSS selection with RSSI adjustment.
  1809. *
  1810. * @band: band of BSS which should match for RSSI level adjustment.
  1811. * @delta: value of RSSI level adjustment.
  1812. */
  1813. struct cfg80211_bss_select_adjust {
  1814. enum nl80211_band band;
  1815. s8 delta;
  1816. };
  1817. /**
  1818. * struct cfg80211_bss_selection - connection parameters for BSS selection.
  1819. *
  1820. * @behaviour: requested BSS selection behaviour.
  1821. * @param: parameters for requestion behaviour.
  1822. * @band_pref: preferred band for %NL80211_BSS_SELECT_ATTR_BAND_PREF.
  1823. * @adjust: parameters for %NL80211_BSS_SELECT_ATTR_RSSI_ADJUST.
  1824. */
  1825. struct cfg80211_bss_selection {
  1826. enum nl80211_bss_select_attr behaviour;
  1827. union {
  1828. enum nl80211_band band_pref;
  1829. struct cfg80211_bss_select_adjust adjust;
  1830. } param;
  1831. };
  1832. /**
  1833. * struct cfg80211_connect_params - Connection parameters
  1834. *
  1835. * This structure provides information needed to complete IEEE 802.11
  1836. * authentication and association.
  1837. *
  1838. * @channel: The channel to use or %NULL if not specified (auto-select based
  1839. * on scan results)
  1840. * @channel_hint: The channel of the recommended BSS for initial connection or
  1841. * %NULL if not specified
  1842. * @bssid: The AP BSSID or %NULL if not specified (auto-select based on scan
  1843. * results)
  1844. * @bssid_hint: The recommended AP BSSID for initial connection to the BSS or
  1845. * %NULL if not specified. Unlike the @bssid parameter, the driver is
  1846. * allowed to ignore this @bssid_hint if it has knowledge of a better BSS
  1847. * to use.
  1848. * @ssid: SSID
  1849. * @ssid_len: Length of ssid in octets
  1850. * @auth_type: Authentication type (algorithm)
  1851. * @ie: IEs for association request
  1852. * @ie_len: Length of assoc_ie in octets
  1853. * @privacy: indicates whether privacy-enabled APs should be used
  1854. * @mfp: indicate whether management frame protection is used
  1855. * @crypto: crypto settings
  1856. * @key_len: length of WEP key for shared key authentication
  1857. * @key_idx: index of WEP key for shared key authentication
  1858. * @key: WEP key for shared key authentication
  1859. * @flags: See &enum cfg80211_assoc_req_flags
  1860. * @bg_scan_period: Background scan period in seconds
  1861. * or -1 to indicate that default value is to be used.
  1862. * @ht_capa: HT Capabilities over-rides. Values set in ht_capa_mask
  1863. * will be used in ht_capa. Un-supported values will be ignored.
  1864. * @ht_capa_mask: The bits of ht_capa which are to be used.
  1865. * @vht_capa: VHT Capability overrides
  1866. * @vht_capa_mask: The bits of vht_capa which are to be used.
  1867. * @pbss: if set, connect to a PCP instead of AP. Valid for DMG
  1868. * networks.
  1869. * @bss_select: criteria to be used for BSS selection.
  1870. * @prev_bssid: previous BSSID, if not %NULL use reassociate frame. This is used
  1871. * to indicate a request to reassociate within the ESS instead of a request
  1872. * do the initial association with the ESS. When included, this is set to
  1873. * the BSSID of the current association, i.e., to the value that is
  1874. * included in the Current AP address field of the Reassociation Request
  1875. * frame.
  1876. */
  1877. struct cfg80211_connect_params {
  1878. struct ieee80211_channel *channel;
  1879. struct ieee80211_channel *channel_hint;
  1880. const u8 *bssid;
  1881. const u8 *bssid_hint;
  1882. const u8 *ssid;
  1883. size_t ssid_len;
  1884. enum nl80211_auth_type auth_type;
  1885. const u8 *ie;
  1886. size_t ie_len;
  1887. bool privacy;
  1888. enum nl80211_mfp mfp;
  1889. struct cfg80211_crypto_settings crypto;
  1890. const u8 *key;
  1891. u8 key_len, key_idx;
  1892. u32 flags;
  1893. int bg_scan_period;
  1894. struct ieee80211_ht_cap ht_capa;
  1895. struct ieee80211_ht_cap ht_capa_mask;
  1896. struct ieee80211_vht_cap vht_capa;
  1897. struct ieee80211_vht_cap vht_capa_mask;
  1898. bool pbss;
  1899. struct cfg80211_bss_selection bss_select;
  1900. const u8 *prev_bssid;
  1901. };
  1902. /**
  1903. * enum wiphy_params_flags - set_wiphy_params bitfield values
  1904. * @WIPHY_PARAM_RETRY_SHORT: wiphy->retry_short has changed
  1905. * @WIPHY_PARAM_RETRY_LONG: wiphy->retry_long has changed
  1906. * @WIPHY_PARAM_FRAG_THRESHOLD: wiphy->frag_threshold has changed
  1907. * @WIPHY_PARAM_RTS_THRESHOLD: wiphy->rts_threshold has changed
  1908. * @WIPHY_PARAM_COVERAGE_CLASS: coverage class changed
  1909. * @WIPHY_PARAM_DYN_ACK: dynack has been enabled
  1910. */
  1911. enum wiphy_params_flags {
  1912. WIPHY_PARAM_RETRY_SHORT = 1 << 0,
  1913. WIPHY_PARAM_RETRY_LONG = 1 << 1,
  1914. WIPHY_PARAM_FRAG_THRESHOLD = 1 << 2,
  1915. WIPHY_PARAM_RTS_THRESHOLD = 1 << 3,
  1916. WIPHY_PARAM_COVERAGE_CLASS = 1 << 4,
  1917. WIPHY_PARAM_DYN_ACK = 1 << 5,
  1918. };
  1919. /**
  1920. * struct cfg80211_pmksa - PMK Security Association
  1921. *
  1922. * This structure is passed to the set/del_pmksa() method for PMKSA
  1923. * caching.
  1924. *
  1925. * @bssid: The AP's BSSID.
  1926. * @pmkid: The PMK material itself.
  1927. */
  1928. struct cfg80211_pmksa {
  1929. const u8 *bssid;
  1930. const u8 *pmkid;
  1931. };
  1932. /**
  1933. * struct cfg80211_pkt_pattern - packet pattern
  1934. * @mask: bitmask where to match pattern and where to ignore bytes,
  1935. * one bit per byte, in same format as nl80211
  1936. * @pattern: bytes to match where bitmask is 1
  1937. * @pattern_len: length of pattern (in bytes)
  1938. * @pkt_offset: packet offset (in bytes)
  1939. *
  1940. * Internal note: @mask and @pattern are allocated in one chunk of
  1941. * memory, free @mask only!
  1942. */
  1943. struct cfg80211_pkt_pattern {
  1944. const u8 *mask, *pattern;
  1945. int pattern_len;
  1946. int pkt_offset;
  1947. };
  1948. /**
  1949. * struct cfg80211_wowlan_tcp - TCP connection parameters
  1950. *
  1951. * @sock: (internal) socket for source port allocation
  1952. * @src: source IP address
  1953. * @dst: destination IP address
  1954. * @dst_mac: destination MAC address
  1955. * @src_port: source port
  1956. * @dst_port: destination port
  1957. * @payload_len: data payload length
  1958. * @payload: data payload buffer
  1959. * @payload_seq: payload sequence stamping configuration
  1960. * @data_interval: interval at which to send data packets
  1961. * @wake_len: wakeup payload match length
  1962. * @wake_data: wakeup payload match data
  1963. * @wake_mask: wakeup payload match mask
  1964. * @tokens_size: length of the tokens buffer
  1965. * @payload_tok: payload token usage configuration
  1966. */
  1967. struct cfg80211_wowlan_tcp {
  1968. struct socket *sock;
  1969. __be32 src, dst;
  1970. u16 src_port, dst_port;
  1971. u8 dst_mac[ETH_ALEN];
  1972. int payload_len;
  1973. const u8 *payload;
  1974. struct nl80211_wowlan_tcp_data_seq payload_seq;
  1975. u32 data_interval;
  1976. u32 wake_len;
  1977. const u8 *wake_data, *wake_mask;
  1978. u32 tokens_size;
  1979. /* must be last, variable member */
  1980. struct nl80211_wowlan_tcp_data_token payload_tok;
  1981. };
  1982. /**
  1983. * struct cfg80211_wowlan - Wake on Wireless-LAN support info
  1984. *
  1985. * This structure defines the enabled WoWLAN triggers for the device.
  1986. * @any: wake up on any activity -- special trigger if device continues
  1987. * operating as normal during suspend
  1988. * @disconnect: wake up if getting disconnected
  1989. * @magic_pkt: wake up on receiving magic packet
  1990. * @patterns: wake up on receiving packet matching a pattern
  1991. * @n_patterns: number of patterns
  1992. * @gtk_rekey_failure: wake up on GTK rekey failure
  1993. * @eap_identity_req: wake up on EAP identity request packet
  1994. * @four_way_handshake: wake up on 4-way handshake
  1995. * @rfkill_release: wake up when rfkill is released
  1996. * @tcp: TCP connection establishment/wakeup parameters, see nl80211.h.
  1997. * NULL if not configured.
  1998. * @nd_config: configuration for the scan to be used for net detect wake.
  1999. */
  2000. struct cfg80211_wowlan {
  2001. bool any, disconnect, magic_pkt, gtk_rekey_failure,
  2002. eap_identity_req, four_way_handshake,
  2003. rfkill_release;
  2004. struct cfg80211_pkt_pattern *patterns;
  2005. struct cfg80211_wowlan_tcp *tcp;
  2006. int n_patterns;
  2007. struct cfg80211_sched_scan_request *nd_config;
  2008. };
  2009. /**
  2010. * struct cfg80211_coalesce_rules - Coalesce rule parameters
  2011. *
  2012. * This structure defines coalesce rule for the device.
  2013. * @delay: maximum coalescing delay in msecs.
  2014. * @condition: condition for packet coalescence.
  2015. * see &enum nl80211_coalesce_condition.
  2016. * @patterns: array of packet patterns
  2017. * @n_patterns: number of patterns
  2018. */
  2019. struct cfg80211_coalesce_rules {
  2020. int delay;
  2021. enum nl80211_coalesce_condition condition;
  2022. struct cfg80211_pkt_pattern *patterns;
  2023. int n_patterns;
  2024. };
  2025. /**
  2026. * struct cfg80211_coalesce - Packet coalescing settings
  2027. *
  2028. * This structure defines coalescing settings.
  2029. * @rules: array of coalesce rules
  2030. * @n_rules: number of rules
  2031. */
  2032. struct cfg80211_coalesce {
  2033. struct cfg80211_coalesce_rules *rules;
  2034. int n_rules;
  2035. };
  2036. /**
  2037. * struct cfg80211_wowlan_nd_match - information about the match
  2038. *
  2039. * @ssid: SSID of the match that triggered the wake up
  2040. * @n_channels: Number of channels where the match occurred. This
  2041. * value may be zero if the driver can't report the channels.
  2042. * @channels: center frequencies of the channels where a match
  2043. * occurred (in MHz)
  2044. */
  2045. struct cfg80211_wowlan_nd_match {
  2046. struct cfg80211_ssid ssid;
  2047. int n_channels;
  2048. u32 channels[];
  2049. };
  2050. /**
  2051. * struct cfg80211_wowlan_nd_info - net detect wake up information
  2052. *
  2053. * @n_matches: Number of match information instances provided in
  2054. * @matches. This value may be zero if the driver can't provide
  2055. * match information.
  2056. * @matches: Array of pointers to matches containing information about
  2057. * the matches that triggered the wake up.
  2058. */
  2059. struct cfg80211_wowlan_nd_info {
  2060. int n_matches;
  2061. struct cfg80211_wowlan_nd_match *matches[];
  2062. };
  2063. /**
  2064. * struct cfg80211_wowlan_wakeup - wakeup report
  2065. * @disconnect: woke up by getting disconnected
  2066. * @magic_pkt: woke up by receiving magic packet
  2067. * @gtk_rekey_failure: woke up by GTK rekey failure
  2068. * @eap_identity_req: woke up by EAP identity request packet
  2069. * @four_way_handshake: woke up by 4-way handshake
  2070. * @rfkill_release: woke up by rfkill being released
  2071. * @pattern_idx: pattern that caused wakeup, -1 if not due to pattern
  2072. * @packet_present_len: copied wakeup packet data
  2073. * @packet_len: original wakeup packet length
  2074. * @packet: The packet causing the wakeup, if any.
  2075. * @packet_80211: For pattern match, magic packet and other data
  2076. * frame triggers an 802.3 frame should be reported, for
  2077. * disconnect due to deauth 802.11 frame. This indicates which
  2078. * it is.
  2079. * @tcp_match: TCP wakeup packet received
  2080. * @tcp_connlost: TCP connection lost or failed to establish
  2081. * @tcp_nomoretokens: TCP data ran out of tokens
  2082. * @net_detect: if not %NULL, woke up because of net detect
  2083. */
  2084. struct cfg80211_wowlan_wakeup {
  2085. bool disconnect, magic_pkt, gtk_rekey_failure,
  2086. eap_identity_req, four_way_handshake,
  2087. rfkill_release, packet_80211,
  2088. tcp_match, tcp_connlost, tcp_nomoretokens;
  2089. s32 pattern_idx;
  2090. u32 packet_present_len, packet_len;
  2091. const void *packet;
  2092. struct cfg80211_wowlan_nd_info *net_detect;
  2093. };
  2094. /**
  2095. * struct cfg80211_gtk_rekey_data - rekey data
  2096. * @kek: key encryption key (NL80211_KEK_LEN bytes)
  2097. * @kck: key confirmation key (NL80211_KCK_LEN bytes)
  2098. * @replay_ctr: replay counter (NL80211_REPLAY_CTR_LEN bytes)
  2099. */
  2100. struct cfg80211_gtk_rekey_data {
  2101. const u8 *kek, *kck, *replay_ctr;
  2102. };
  2103. /**
  2104. * struct cfg80211_update_ft_ies_params - FT IE Information
  2105. *
  2106. * This structure provides information needed to update the fast transition IE
  2107. *
  2108. * @md: The Mobility Domain ID, 2 Octet value
  2109. * @ie: Fast Transition IEs
  2110. * @ie_len: Length of ft_ie in octets
  2111. */
  2112. struct cfg80211_update_ft_ies_params {
  2113. u16 md;
  2114. const u8 *ie;
  2115. size_t ie_len;
  2116. };
  2117. /**
  2118. * struct cfg80211_mgmt_tx_params - mgmt tx parameters
  2119. *
  2120. * This structure provides information needed to transmit a mgmt frame
  2121. *
  2122. * @chan: channel to use
  2123. * @offchan: indicates wether off channel operation is required
  2124. * @wait: duration for ROC
  2125. * @buf: buffer to transmit
  2126. * @len: buffer length
  2127. * @no_cck: don't use cck rates for this frame
  2128. * @dont_wait_for_ack: tells the low level not to wait for an ack
  2129. * @n_csa_offsets: length of csa_offsets array
  2130. * @csa_offsets: array of all the csa offsets in the frame
  2131. */
  2132. struct cfg80211_mgmt_tx_params {
  2133. struct ieee80211_channel *chan;
  2134. bool offchan;
  2135. unsigned int wait;
  2136. const u8 *buf;
  2137. size_t len;
  2138. bool no_cck;
  2139. bool dont_wait_for_ack;
  2140. int n_csa_offsets;
  2141. const u16 *csa_offsets;
  2142. };
  2143. /**
  2144. * struct cfg80211_dscp_exception - DSCP exception
  2145. *
  2146. * @dscp: DSCP value that does not adhere to the user priority range definition
  2147. * @up: user priority value to which the corresponding DSCP value belongs
  2148. */
  2149. struct cfg80211_dscp_exception {
  2150. u8 dscp;
  2151. u8 up;
  2152. };
  2153. /**
  2154. * struct cfg80211_dscp_range - DSCP range definition for user priority
  2155. *
  2156. * @low: lowest DSCP value of this user priority range, inclusive
  2157. * @high: highest DSCP value of this user priority range, inclusive
  2158. */
  2159. struct cfg80211_dscp_range {
  2160. u8 low;
  2161. u8 high;
  2162. };
  2163. /* QoS Map Set element length defined in IEEE Std 802.11-2012, 8.4.2.97 */
  2164. #define IEEE80211_QOS_MAP_MAX_EX 21
  2165. #define IEEE80211_QOS_MAP_LEN_MIN 16
  2166. #define IEEE80211_QOS_MAP_LEN_MAX \
  2167. (IEEE80211_QOS_MAP_LEN_MIN + 2 * IEEE80211_QOS_MAP_MAX_EX)
  2168. /**
  2169. * struct cfg80211_qos_map - QoS Map Information
  2170. *
  2171. * This struct defines the Interworking QoS map setting for DSCP values
  2172. *
  2173. * @num_des: number of DSCP exceptions (0..21)
  2174. * @dscp_exception: optionally up to maximum of 21 DSCP exceptions from
  2175. * the user priority DSCP range definition
  2176. * @up: DSCP range definition for a particular user priority
  2177. */
  2178. struct cfg80211_qos_map {
  2179. u8 num_des;
  2180. struct cfg80211_dscp_exception dscp_exception[IEEE80211_QOS_MAP_MAX_EX];
  2181. struct cfg80211_dscp_range up[8];
  2182. };
  2183. /**
  2184. * struct cfg80211_nan_conf - NAN configuration
  2185. *
  2186. * This struct defines NAN configuration parameters
  2187. *
  2188. * @master_pref: master preference (1 - 255)
  2189. * @dual: dual band operation mode, see &enum nl80211_nan_dual_band_conf
  2190. */
  2191. struct cfg80211_nan_conf {
  2192. u8 master_pref;
  2193. u8 dual;
  2194. };
  2195. /**
  2196. * enum cfg80211_nan_conf_changes - indicates changed fields in NAN
  2197. * configuration
  2198. *
  2199. * @CFG80211_NAN_CONF_CHANGED_PREF: master preference
  2200. * @CFG80211_NAN_CONF_CHANGED_DUAL: dual band operation
  2201. */
  2202. enum cfg80211_nan_conf_changes {
  2203. CFG80211_NAN_CONF_CHANGED_PREF = BIT(0),
  2204. CFG80211_NAN_CONF_CHANGED_DUAL = BIT(1),
  2205. };
  2206. /**
  2207. * struct cfg80211_nan_func_filter - a NAN function Rx / Tx filter
  2208. *
  2209. * @filter: the content of the filter
  2210. * @len: the length of the filter
  2211. */
  2212. struct cfg80211_nan_func_filter {
  2213. const u8 *filter;
  2214. u8 len;
  2215. };
  2216. /**
  2217. * struct cfg80211_nan_func - a NAN function
  2218. *
  2219. * @type: &enum nl80211_nan_function_type
  2220. * @service_id: the service ID of the function
  2221. * @publish_type: &nl80211_nan_publish_type
  2222. * @close_range: if true, the range should be limited. Threshold is
  2223. * implementation specific.
  2224. * @publish_bcast: if true, the solicited publish should be broadcasted
  2225. * @subscribe_active: if true, the subscribe is active
  2226. * @followup_id: the instance ID for follow up
  2227. * @followup_reqid: the requestor instance ID for follow up
  2228. * @followup_dest: MAC address of the recipient of the follow up
  2229. * @ttl: time to live counter in DW.
  2230. * @serv_spec_info: Service Specific Info
  2231. * @serv_spec_info_len: Service Specific Info length
  2232. * @srf_include: if true, SRF is inclusive
  2233. * @srf_bf: Bloom Filter
  2234. * @srf_bf_len: Bloom Filter length
  2235. * @srf_bf_idx: Bloom Filter index
  2236. * @srf_macs: SRF MAC addresses
  2237. * @srf_num_macs: number of MAC addresses in SRF
  2238. * @rx_filters: rx filters that are matched with corresponding peer's tx_filter
  2239. * @tx_filters: filters that should be transmitted in the SDF.
  2240. * @num_rx_filters: length of &rx_filters.
  2241. * @num_tx_filters: length of &tx_filters.
  2242. * @instance_id: driver allocated id of the function.
  2243. * @cookie: unique NAN function identifier.
  2244. */
  2245. struct cfg80211_nan_func {
  2246. enum nl80211_nan_function_type type;
  2247. u8 service_id[NL80211_NAN_FUNC_SERVICE_ID_LEN];
  2248. u8 publish_type;
  2249. bool close_range;
  2250. bool publish_bcast;
  2251. bool subscribe_active;
  2252. u8 followup_id;
  2253. u8 followup_reqid;
  2254. struct mac_address followup_dest;
  2255. u32 ttl;
  2256. const u8 *serv_spec_info;
  2257. u8 serv_spec_info_len;
  2258. bool srf_include;
  2259. const u8 *srf_bf;
  2260. u8 srf_bf_len;
  2261. u8 srf_bf_idx;
  2262. struct mac_address *srf_macs;
  2263. int srf_num_macs;
  2264. struct cfg80211_nan_func_filter *rx_filters;
  2265. struct cfg80211_nan_func_filter *tx_filters;
  2266. u8 num_tx_filters;
  2267. u8 num_rx_filters;
  2268. u8 instance_id;
  2269. u64 cookie;
  2270. };
  2271. /**
  2272. * struct cfg80211_ops - backend description for wireless configuration
  2273. *
  2274. * This struct is registered by fullmac card drivers and/or wireless stacks
  2275. * in order to handle configuration requests on their interfaces.
  2276. *
  2277. * All callbacks except where otherwise noted should return 0
  2278. * on success or a negative error code.
  2279. *
  2280. * All operations are currently invoked under rtnl for consistency with the
  2281. * wireless extensions but this is subject to reevaluation as soon as this
  2282. * code is used more widely and we have a first user without wext.
  2283. *
  2284. * @suspend: wiphy device needs to be suspended. The variable @wow will
  2285. * be %NULL or contain the enabled Wake-on-Wireless triggers that are
  2286. * configured for the device.
  2287. * @resume: wiphy device needs to be resumed
  2288. * @set_wakeup: Called when WoWLAN is enabled/disabled, use this callback
  2289. * to call device_set_wakeup_enable() to enable/disable wakeup from
  2290. * the device.
  2291. *
  2292. * @add_virtual_intf: create a new virtual interface with the given name,
  2293. * must set the struct wireless_dev's iftype. Beware: You must create
  2294. * the new netdev in the wiphy's network namespace! Returns the struct
  2295. * wireless_dev, or an ERR_PTR. For P2P device wdevs, the driver must
  2296. * also set the address member in the wdev.
  2297. *
  2298. * @del_virtual_intf: remove the virtual interface
  2299. *
  2300. * @change_virtual_intf: change type/configuration of virtual interface,
  2301. * keep the struct wireless_dev's iftype updated.
  2302. *
  2303. * @add_key: add a key with the given parameters. @mac_addr will be %NULL
  2304. * when adding a group key.
  2305. *
  2306. * @get_key: get information about the key with the given parameters.
  2307. * @mac_addr will be %NULL when requesting information for a group
  2308. * key. All pointers given to the @callback function need not be valid
  2309. * after it returns. This function should return an error if it is
  2310. * not possible to retrieve the key, -ENOENT if it doesn't exist.
  2311. *
  2312. * @del_key: remove a key given the @mac_addr (%NULL for a group key)
  2313. * and @key_index, return -ENOENT if the key doesn't exist.
  2314. *
  2315. * @set_default_key: set the default key on an interface
  2316. *
  2317. * @set_default_mgmt_key: set the default management frame key on an interface
  2318. *
  2319. * @set_rekey_data: give the data necessary for GTK rekeying to the driver
  2320. *
  2321. * @start_ap: Start acting in AP mode defined by the parameters.
  2322. * @change_beacon: Change the beacon parameters for an access point mode
  2323. * interface. This should reject the call when AP mode wasn't started.
  2324. * @stop_ap: Stop being an AP, including stopping beaconing.
  2325. *
  2326. * @add_station: Add a new station.
  2327. * @del_station: Remove a station
  2328. * @change_station: Modify a given station. Note that flags changes are not much
  2329. * validated in cfg80211, in particular the auth/assoc/authorized flags
  2330. * might come to the driver in invalid combinations -- make sure to check
  2331. * them, also against the existing state! Drivers must call
  2332. * cfg80211_check_station_change() to validate the information.
  2333. * @get_station: get station information for the station identified by @mac
  2334. * @dump_station: dump station callback -- resume dump at index @idx
  2335. *
  2336. * @add_mpath: add a fixed mesh path
  2337. * @del_mpath: delete a given mesh path
  2338. * @change_mpath: change a given mesh path
  2339. * @get_mpath: get a mesh path for the given parameters
  2340. * @dump_mpath: dump mesh path callback -- resume dump at index @idx
  2341. * @get_mpp: get a mesh proxy path for the given parameters
  2342. * @dump_mpp: dump mesh proxy path callback -- resume dump at index @idx
  2343. * @join_mesh: join the mesh network with the specified parameters
  2344. * (invoked with the wireless_dev mutex held)
  2345. * @leave_mesh: leave the current mesh network
  2346. * (invoked with the wireless_dev mutex held)
  2347. *
  2348. * @get_mesh_config: Get the current mesh configuration
  2349. *
  2350. * @update_mesh_config: Update mesh parameters on a running mesh.
  2351. * The mask is a bitfield which tells us which parameters to
  2352. * set, and which to leave alone.
  2353. *
  2354. * @change_bss: Modify parameters for a given BSS.
  2355. *
  2356. * @set_txq_params: Set TX queue parameters
  2357. *
  2358. * @libertas_set_mesh_channel: Only for backward compatibility for libertas,
  2359. * as it doesn't implement join_mesh and needs to set the channel to
  2360. * join the mesh instead.
  2361. *
  2362. * @set_monitor_channel: Set the monitor mode channel for the device. If other
  2363. * interfaces are active this callback should reject the configuration.
  2364. * If no interfaces are active or the device is down, the channel should
  2365. * be stored for when a monitor interface becomes active.
  2366. *
  2367. * @scan: Request to do a scan. If returning zero, the scan request is given
  2368. * the driver, and will be valid until passed to cfg80211_scan_done().
  2369. * For scan results, call cfg80211_inform_bss(); you can call this outside
  2370. * the scan/scan_done bracket too.
  2371. * @abort_scan: Tell the driver to abort an ongoing scan. The driver shall
  2372. * indicate the status of the scan through cfg80211_scan_done().
  2373. *
  2374. * @auth: Request to authenticate with the specified peer
  2375. * (invoked with the wireless_dev mutex held)
  2376. * @assoc: Request to (re)associate with the specified peer
  2377. * (invoked with the wireless_dev mutex held)
  2378. * @deauth: Request to deauthenticate from the specified peer
  2379. * (invoked with the wireless_dev mutex held)
  2380. * @disassoc: Request to disassociate from the specified peer
  2381. * (invoked with the wireless_dev mutex held)
  2382. *
  2383. * @connect: Connect to the ESS with the specified parameters. When connected,
  2384. * call cfg80211_connect_result()/cfg80211_connect_bss() with status code
  2385. * %WLAN_STATUS_SUCCESS. If the connection fails for some reason, call
  2386. * cfg80211_connect_result()/cfg80211_connect_bss() with the status code
  2387. * from the AP or cfg80211_connect_timeout() if no frame with status code
  2388. * was received.
  2389. * The driver is allowed to roam to other BSSes within the ESS when the
  2390. * other BSS matches the connect parameters. When such roaming is initiated
  2391. * by the driver, the driver is expected to verify that the target matches
  2392. * the configured security parameters and to use Reassociation Request
  2393. * frame instead of Association Request frame.
  2394. * The connect function can also be used to request the driver to perform a
  2395. * specific roam when connected to an ESS. In that case, the prev_bssid
  2396. * parameter is set to the BSSID of the currently associated BSS as an
  2397. * indication of requesting reassociation.
  2398. * In both the driver-initiated and new connect() call initiated roaming
  2399. * cases, the result of roaming is indicated with a call to
  2400. * cfg80211_roamed() or cfg80211_roamed_bss().
  2401. * (invoked with the wireless_dev mutex held)
  2402. * @disconnect: Disconnect from the BSS/ESS. Once done, call
  2403. * cfg80211_disconnected().
  2404. * (invoked with the wireless_dev mutex held)
  2405. *
  2406. * @join_ibss: Join the specified IBSS (or create if necessary). Once done, call
  2407. * cfg80211_ibss_joined(), also call that function when changing BSSID due
  2408. * to a merge.
  2409. * (invoked with the wireless_dev mutex held)
  2410. * @leave_ibss: Leave the IBSS.
  2411. * (invoked with the wireless_dev mutex held)
  2412. *
  2413. * @set_mcast_rate: Set the specified multicast rate (only if vif is in ADHOC or
  2414. * MESH mode)
  2415. *
  2416. * @set_wiphy_params: Notify that wiphy parameters have changed;
  2417. * @changed bitfield (see &enum wiphy_params_flags) describes which values
  2418. * have changed. The actual parameter values are available in
  2419. * struct wiphy. If returning an error, no value should be changed.
  2420. *
  2421. * @set_tx_power: set the transmit power according to the parameters,
  2422. * the power passed is in mBm, to get dBm use MBM_TO_DBM(). The
  2423. * wdev may be %NULL if power was set for the wiphy, and will
  2424. * always be %NULL unless the driver supports per-vif TX power
  2425. * (as advertised by the nl80211 feature flag.)
  2426. * @get_tx_power: store the current TX power into the dbm variable;
  2427. * return 0 if successful
  2428. *
  2429. * @set_wds_peer: set the WDS peer for a WDS interface
  2430. *
  2431. * @rfkill_poll: polls the hw rfkill line, use cfg80211 reporting
  2432. * functions to adjust rfkill hw state
  2433. *
  2434. * @dump_survey: get site survey information.
  2435. *
  2436. * @remain_on_channel: Request the driver to remain awake on the specified
  2437. * channel for the specified duration to complete an off-channel
  2438. * operation (e.g., public action frame exchange). When the driver is
  2439. * ready on the requested channel, it must indicate this with an event
  2440. * notification by calling cfg80211_ready_on_channel().
  2441. * @cancel_remain_on_channel: Cancel an on-going remain-on-channel operation.
  2442. * This allows the operation to be terminated prior to timeout based on
  2443. * the duration value.
  2444. * @mgmt_tx: Transmit a management frame.
  2445. * @mgmt_tx_cancel_wait: Cancel the wait time from transmitting a management
  2446. * frame on another channel
  2447. *
  2448. * @testmode_cmd: run a test mode command; @wdev may be %NULL
  2449. * @testmode_dump: Implement a test mode dump. The cb->args[2] and up may be
  2450. * used by the function, but 0 and 1 must not be touched. Additionally,
  2451. * return error codes other than -ENOBUFS and -ENOENT will terminate the
  2452. * dump and return to userspace with an error, so be careful. If any data
  2453. * was passed in from userspace then the data/len arguments will be present
  2454. * and point to the data contained in %NL80211_ATTR_TESTDATA.
  2455. *
  2456. * @set_bitrate_mask: set the bitrate mask configuration
  2457. *
  2458. * @set_pmksa: Cache a PMKID for a BSSID. This is mostly useful for fullmac
  2459. * devices running firmwares capable of generating the (re) association
  2460. * RSN IE. It allows for faster roaming between WPA2 BSSIDs.
  2461. * @del_pmksa: Delete a cached PMKID.
  2462. * @flush_pmksa: Flush all cached PMKIDs.
  2463. * @set_power_mgmt: Configure WLAN power management. A timeout value of -1
  2464. * allows the driver to adjust the dynamic ps timeout value.
  2465. * @set_cqm_rssi_config: Configure connection quality monitor RSSI threshold.
  2466. * After configuration, the driver should (soon) send an event indicating
  2467. * the current level is above/below the configured threshold; this may
  2468. * need some care when the configuration is changed (without first being
  2469. * disabled.)
  2470. * @set_cqm_txe_config: Configure connection quality monitor TX error
  2471. * thresholds.
  2472. * @sched_scan_start: Tell the driver to start a scheduled scan.
  2473. * @sched_scan_stop: Tell the driver to stop an ongoing scheduled scan. This
  2474. * call must stop the scheduled scan and be ready for starting a new one
  2475. * before it returns, i.e. @sched_scan_start may be called immediately
  2476. * after that again and should not fail in that case. The driver should
  2477. * not call cfg80211_sched_scan_stopped() for a requested stop (when this
  2478. * method returns 0.)
  2479. *
  2480. * @mgmt_frame_register: Notify driver that a management frame type was
  2481. * registered. The callback is allowed to sleep.
  2482. *
  2483. * @set_antenna: Set antenna configuration (tx_ant, rx_ant) on the device.
  2484. * Parameters are bitmaps of allowed antennas to use for TX/RX. Drivers may
  2485. * reject TX/RX mask combinations they cannot support by returning -EINVAL
  2486. * (also see nl80211.h @NL80211_ATTR_WIPHY_ANTENNA_TX).
  2487. *
  2488. * @get_antenna: Get current antenna configuration from device (tx_ant, rx_ant).
  2489. *
  2490. * @tdls_mgmt: Transmit a TDLS management frame.
  2491. * @tdls_oper: Perform a high-level TDLS operation (e.g. TDLS link setup).
  2492. *
  2493. * @probe_client: probe an associated client, must return a cookie that it
  2494. * later passes to cfg80211_probe_status().
  2495. *
  2496. * @set_noack_map: Set the NoAck Map for the TIDs.
  2497. *
  2498. * @get_channel: Get the current operating channel for the virtual interface.
  2499. * For monitor interfaces, it should return %NULL unless there's a single
  2500. * current monitoring channel.
  2501. *
  2502. * @start_p2p_device: Start the given P2P device.
  2503. * @stop_p2p_device: Stop the given P2P device.
  2504. *
  2505. * @set_mac_acl: Sets MAC address control list in AP and P2P GO mode.
  2506. * Parameters include ACL policy, an array of MAC address of stations
  2507. * and the number of MAC addresses. If there is already a list in driver
  2508. * this new list replaces the existing one. Driver has to clear its ACL
  2509. * when number of MAC addresses entries is passed as 0. Drivers which
  2510. * advertise the support for MAC based ACL have to implement this callback.
  2511. *
  2512. * @start_radar_detection: Start radar detection in the driver.
  2513. *
  2514. * @update_ft_ies: Provide updated Fast BSS Transition information to the
  2515. * driver. If the SME is in the driver/firmware, this information can be
  2516. * used in building Authentication and Reassociation Request frames.
  2517. *
  2518. * @crit_proto_start: Indicates a critical protocol needs more link reliability
  2519. * for a given duration (milliseconds). The protocol is provided so the
  2520. * driver can take the most appropriate actions.
  2521. * @crit_proto_stop: Indicates critical protocol no longer needs increased link
  2522. * reliability. This operation can not fail.
  2523. * @set_coalesce: Set coalesce parameters.
  2524. *
  2525. * @channel_switch: initiate channel-switch procedure (with CSA). Driver is
  2526. * responsible for veryfing if the switch is possible. Since this is
  2527. * inherently tricky driver may decide to disconnect an interface later
  2528. * with cfg80211_stop_iface(). This doesn't mean driver can accept
  2529. * everything. It should do it's best to verify requests and reject them
  2530. * as soon as possible.
  2531. *
  2532. * @set_qos_map: Set QoS mapping information to the driver
  2533. *
  2534. * @set_ap_chanwidth: Set the AP (including P2P GO) mode channel width for the
  2535. * given interface This is used e.g. for dynamic HT 20/40 MHz channel width
  2536. * changes during the lifetime of the BSS.
  2537. *
  2538. * @add_tx_ts: validate (if admitted_time is 0) or add a TX TS to the device
  2539. * with the given parameters; action frame exchange has been handled by
  2540. * userspace so this just has to modify the TX path to take the TS into
  2541. * account.
  2542. * If the admitted time is 0 just validate the parameters to make sure
  2543. * the session can be created at all; it is valid to just always return
  2544. * success for that but that may result in inefficient behaviour (handshake
  2545. * with the peer followed by immediate teardown when the addition is later
  2546. * rejected)
  2547. * @del_tx_ts: remove an existing TX TS
  2548. *
  2549. * @join_ocb: join the OCB network with the specified parameters
  2550. * (invoked with the wireless_dev mutex held)
  2551. * @leave_ocb: leave the current OCB network
  2552. * (invoked with the wireless_dev mutex held)
  2553. *
  2554. * @tdls_channel_switch: Start channel-switching with a TDLS peer. The driver
  2555. * is responsible for continually initiating channel-switching operations
  2556. * and returning to the base channel for communication with the AP.
  2557. * @tdls_cancel_channel_switch: Stop channel-switching with a TDLS peer. Both
  2558. * peers must be on the base channel when the call completes.
  2559. * @start_nan: Start the NAN interface.
  2560. * @stop_nan: Stop the NAN interface.
  2561. * @add_nan_func: Add a NAN function. Returns negative value on failure.
  2562. * On success @nan_func ownership is transferred to the driver and
  2563. * it may access it outside of the scope of this function. The driver
  2564. * should free the @nan_func when no longer needed by calling
  2565. * cfg80211_free_nan_func().
  2566. * On success the driver should assign an instance_id in the
  2567. * provided @nan_func.
  2568. * @del_nan_func: Delete a NAN function.
  2569. * @nan_change_conf: changes NAN configuration. The changed parameters must
  2570. * be specified in @changes (using &enum cfg80211_nan_conf_changes);
  2571. * All other parameters must be ignored.
  2572. */
  2573. struct cfg80211_ops {
  2574. int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
  2575. int (*resume)(struct wiphy *wiphy);
  2576. void (*set_wakeup)(struct wiphy *wiphy, bool enabled);
  2577. struct wireless_dev * (*add_virtual_intf)(struct wiphy *wiphy,
  2578. const char *name,
  2579. unsigned char name_assign_type,
  2580. enum nl80211_iftype type,
  2581. u32 *flags,
  2582. struct vif_params *params);
  2583. int (*del_virtual_intf)(struct wiphy *wiphy,
  2584. struct wireless_dev *wdev);
  2585. int (*change_virtual_intf)(struct wiphy *wiphy,
  2586. struct net_device *dev,
  2587. enum nl80211_iftype type, u32 *flags,
  2588. struct vif_params *params);
  2589. int (*add_key)(struct wiphy *wiphy, struct net_device *netdev,
  2590. u8 key_index, bool pairwise, const u8 *mac_addr,
  2591. struct key_params *params);
  2592. int (*get_key)(struct wiphy *wiphy, struct net_device *netdev,
  2593. u8 key_index, bool pairwise, const u8 *mac_addr,
  2594. void *cookie,
  2595. void (*callback)(void *cookie, struct key_params*));
  2596. int (*del_key)(struct wiphy *wiphy, struct net_device *netdev,
  2597. u8 key_index, bool pairwise, const u8 *mac_addr);
  2598. int (*set_default_key)(struct wiphy *wiphy,
  2599. struct net_device *netdev,
  2600. u8 key_index, bool unicast, bool multicast);
  2601. int (*set_default_mgmt_key)(struct wiphy *wiphy,
  2602. struct net_device *netdev,
  2603. u8 key_index);
  2604. int (*start_ap)(struct wiphy *wiphy, struct net_device *dev,
  2605. struct cfg80211_ap_settings *settings);
  2606. int (*change_beacon)(struct wiphy *wiphy, struct net_device *dev,
  2607. struct cfg80211_beacon_data *info);
  2608. int (*stop_ap)(struct wiphy *wiphy, struct net_device *dev);
  2609. int (*add_station)(struct wiphy *wiphy, struct net_device *dev,
  2610. const u8 *mac,
  2611. struct station_parameters *params);
  2612. int (*del_station)(struct wiphy *wiphy, struct net_device *dev,
  2613. struct station_del_parameters *params);
  2614. int (*change_station)(struct wiphy *wiphy, struct net_device *dev,
  2615. const u8 *mac,
  2616. struct station_parameters *params);
  2617. int (*get_station)(struct wiphy *wiphy, struct net_device *dev,
  2618. const u8 *mac, struct station_info *sinfo);
  2619. int (*dump_station)(struct wiphy *wiphy, struct net_device *dev,
  2620. int idx, u8 *mac, struct station_info *sinfo);
  2621. int (*add_mpath)(struct wiphy *wiphy, struct net_device *dev,
  2622. const u8 *dst, const u8 *next_hop);
  2623. int (*del_mpath)(struct wiphy *wiphy, struct net_device *dev,
  2624. const u8 *dst);
  2625. int (*change_mpath)(struct wiphy *wiphy, struct net_device *dev,
  2626. const u8 *dst, const u8 *next_hop);
  2627. int (*get_mpath)(struct wiphy *wiphy, struct net_device *dev,
  2628. u8 *dst, u8 *next_hop, struct mpath_info *pinfo);
  2629. int (*dump_mpath)(struct wiphy *wiphy, struct net_device *dev,
  2630. int idx, u8 *dst, u8 *next_hop,
  2631. struct mpath_info *pinfo);
  2632. int (*get_mpp)(struct wiphy *wiphy, struct net_device *dev,
  2633. u8 *dst, u8 *mpp, struct mpath_info *pinfo);
  2634. int (*dump_mpp)(struct wiphy *wiphy, struct net_device *dev,
  2635. int idx, u8 *dst, u8 *mpp,
  2636. struct mpath_info *pinfo);
  2637. int (*get_mesh_config)(struct wiphy *wiphy,
  2638. struct net_device *dev,
  2639. struct mesh_config *conf);
  2640. int (*update_mesh_config)(struct wiphy *wiphy,
  2641. struct net_device *dev, u32 mask,
  2642. const struct mesh_config *nconf);
  2643. int (*join_mesh)(struct wiphy *wiphy, struct net_device *dev,
  2644. const struct mesh_config *conf,
  2645. const struct mesh_setup *setup);
  2646. int (*leave_mesh)(struct wiphy *wiphy, struct net_device *dev);
  2647. int (*join_ocb)(struct wiphy *wiphy, struct net_device *dev,
  2648. struct ocb_setup *setup);
  2649. int (*leave_ocb)(struct wiphy *wiphy, struct net_device *dev);
  2650. int (*change_bss)(struct wiphy *wiphy, struct net_device *dev,
  2651. struct bss_parameters *params);
  2652. int (*set_txq_params)(struct wiphy *wiphy, struct net_device *dev,
  2653. struct ieee80211_txq_params *params);
  2654. int (*libertas_set_mesh_channel)(struct wiphy *wiphy,
  2655. struct net_device *dev,
  2656. struct ieee80211_channel *chan);
  2657. int (*set_monitor_channel)(struct wiphy *wiphy,
  2658. struct cfg80211_chan_def *chandef);
  2659. int (*scan)(struct wiphy *wiphy,
  2660. struct cfg80211_scan_request *request);
  2661. void (*abort_scan)(struct wiphy *wiphy, struct wireless_dev *wdev);
  2662. int (*auth)(struct wiphy *wiphy, struct net_device *dev,
  2663. struct cfg80211_auth_request *req);
  2664. int (*assoc)(struct wiphy *wiphy, struct net_device *dev,
  2665. struct cfg80211_assoc_request *req);
  2666. int (*deauth)(struct wiphy *wiphy, struct net_device *dev,
  2667. struct cfg80211_deauth_request *req);
  2668. int (*disassoc)(struct wiphy *wiphy, struct net_device *dev,
  2669. struct cfg80211_disassoc_request *req);
  2670. int (*connect)(struct wiphy *wiphy, struct net_device *dev,
  2671. struct cfg80211_connect_params *sme);
  2672. int (*disconnect)(struct wiphy *wiphy, struct net_device *dev,
  2673. u16 reason_code);
  2674. int (*join_ibss)(struct wiphy *wiphy, struct net_device *dev,
  2675. struct cfg80211_ibss_params *params);
  2676. int (*leave_ibss)(struct wiphy *wiphy, struct net_device *dev);
  2677. int (*set_mcast_rate)(struct wiphy *wiphy, struct net_device *dev,
  2678. int rate[NUM_NL80211_BANDS]);
  2679. int (*set_wiphy_params)(struct wiphy *wiphy, u32 changed);
  2680. int (*set_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
  2681. enum nl80211_tx_power_setting type, int mbm);
  2682. int (*get_tx_power)(struct wiphy *wiphy, struct wireless_dev *wdev,
  2683. int *dbm);
  2684. int (*set_wds_peer)(struct wiphy *wiphy, struct net_device *dev,
  2685. const u8 *addr);
  2686. void (*rfkill_poll)(struct wiphy *wiphy);
  2687. #ifdef CONFIG_NL80211_TESTMODE
  2688. int (*testmode_cmd)(struct wiphy *wiphy, struct wireless_dev *wdev,
  2689. void *data, int len);
  2690. int (*testmode_dump)(struct wiphy *wiphy, struct sk_buff *skb,
  2691. struct netlink_callback *cb,
  2692. void *data, int len);
  2693. #endif
  2694. int (*set_bitrate_mask)(struct wiphy *wiphy,
  2695. struct net_device *dev,
  2696. const u8 *peer,
  2697. const struct cfg80211_bitrate_mask *mask);
  2698. int (*dump_survey)(struct wiphy *wiphy, struct net_device *netdev,
  2699. int idx, struct survey_info *info);
  2700. int (*set_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
  2701. struct cfg80211_pmksa *pmksa);
  2702. int (*del_pmksa)(struct wiphy *wiphy, struct net_device *netdev,
  2703. struct cfg80211_pmksa *pmksa);
  2704. int (*flush_pmksa)(struct wiphy *wiphy, struct net_device *netdev);
  2705. int (*remain_on_channel)(struct wiphy *wiphy,
  2706. struct wireless_dev *wdev,
  2707. struct ieee80211_channel *chan,
  2708. unsigned int duration,
  2709. u64 *cookie);
  2710. int (*cancel_remain_on_channel)(struct wiphy *wiphy,
  2711. struct wireless_dev *wdev,
  2712. u64 cookie);
  2713. int (*mgmt_tx)(struct wiphy *wiphy, struct wireless_dev *wdev,
  2714. struct cfg80211_mgmt_tx_params *params,
  2715. u64 *cookie);
  2716. int (*mgmt_tx_cancel_wait)(struct wiphy *wiphy,
  2717. struct wireless_dev *wdev,
  2718. u64 cookie);
  2719. int (*set_power_mgmt)(struct wiphy *wiphy, struct net_device *dev,
  2720. bool enabled, int timeout);
  2721. int (*set_cqm_rssi_config)(struct wiphy *wiphy,
  2722. struct net_device *dev,
  2723. s32 rssi_thold, u32 rssi_hyst);
  2724. int (*set_cqm_txe_config)(struct wiphy *wiphy,
  2725. struct net_device *dev,
  2726. u32 rate, u32 pkts, u32 intvl);
  2727. void (*mgmt_frame_register)(struct wiphy *wiphy,
  2728. struct wireless_dev *wdev,
  2729. u16 frame_type, bool reg);
  2730. int (*set_antenna)(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant);
  2731. int (*get_antenna)(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant);
  2732. int (*sched_scan_start)(struct wiphy *wiphy,
  2733. struct net_device *dev,
  2734. struct cfg80211_sched_scan_request *request);
  2735. int (*sched_scan_stop)(struct wiphy *wiphy, struct net_device *dev);
  2736. int (*set_rekey_data)(struct wiphy *wiphy, struct net_device *dev,
  2737. struct cfg80211_gtk_rekey_data *data);
  2738. int (*tdls_mgmt)(struct wiphy *wiphy, struct net_device *dev,
  2739. const u8 *peer, u8 action_code, u8 dialog_token,
  2740. u16 status_code, u32 peer_capability,
  2741. bool initiator, const u8 *buf, size_t len);
  2742. int (*tdls_oper)(struct wiphy *wiphy, struct net_device *dev,
  2743. const u8 *peer, enum nl80211_tdls_operation oper);
  2744. int (*probe_client)(struct wiphy *wiphy, struct net_device *dev,
  2745. const u8 *peer, u64 *cookie);
  2746. int (*set_noack_map)(struct wiphy *wiphy,
  2747. struct net_device *dev,
  2748. u16 noack_map);
  2749. int (*get_channel)(struct wiphy *wiphy,
  2750. struct wireless_dev *wdev,
  2751. struct cfg80211_chan_def *chandef);
  2752. int (*start_p2p_device)(struct wiphy *wiphy,
  2753. struct wireless_dev *wdev);
  2754. void (*stop_p2p_device)(struct wiphy *wiphy,
  2755. struct wireless_dev *wdev);
  2756. int (*set_mac_acl)(struct wiphy *wiphy, struct net_device *dev,
  2757. const struct cfg80211_acl_data *params);
  2758. int (*start_radar_detection)(struct wiphy *wiphy,
  2759. struct net_device *dev,
  2760. struct cfg80211_chan_def *chandef,
  2761. u32 cac_time_ms);
  2762. int (*update_ft_ies)(struct wiphy *wiphy, struct net_device *dev,
  2763. struct cfg80211_update_ft_ies_params *ftie);
  2764. int (*crit_proto_start)(struct wiphy *wiphy,
  2765. struct wireless_dev *wdev,
  2766. enum nl80211_crit_proto_id protocol,
  2767. u16 duration);
  2768. void (*crit_proto_stop)(struct wiphy *wiphy,
  2769. struct wireless_dev *wdev);
  2770. int (*set_coalesce)(struct wiphy *wiphy,
  2771. struct cfg80211_coalesce *coalesce);
  2772. int (*channel_switch)(struct wiphy *wiphy,
  2773. struct net_device *dev,
  2774. struct cfg80211_csa_settings *params);
  2775. int (*set_qos_map)(struct wiphy *wiphy,
  2776. struct net_device *dev,
  2777. struct cfg80211_qos_map *qos_map);
  2778. int (*set_ap_chanwidth)(struct wiphy *wiphy, struct net_device *dev,
  2779. struct cfg80211_chan_def *chandef);
  2780. int (*add_tx_ts)(struct wiphy *wiphy, struct net_device *dev,
  2781. u8 tsid, const u8 *peer, u8 user_prio,
  2782. u16 admitted_time);
  2783. int (*del_tx_ts)(struct wiphy *wiphy, struct net_device *dev,
  2784. u8 tsid, const u8 *peer);
  2785. int (*tdls_channel_switch)(struct wiphy *wiphy,
  2786. struct net_device *dev,
  2787. const u8 *addr, u8 oper_class,
  2788. struct cfg80211_chan_def *chandef);
  2789. void (*tdls_cancel_channel_switch)(struct wiphy *wiphy,
  2790. struct net_device *dev,
  2791. const u8 *addr);
  2792. int (*start_nan)(struct wiphy *wiphy, struct wireless_dev *wdev,
  2793. struct cfg80211_nan_conf *conf);
  2794. void (*stop_nan)(struct wiphy *wiphy, struct wireless_dev *wdev);
  2795. int (*add_nan_func)(struct wiphy *wiphy, struct wireless_dev *wdev,
  2796. struct cfg80211_nan_func *nan_func);
  2797. void (*del_nan_func)(struct wiphy *wiphy, struct wireless_dev *wdev,
  2798. u64 cookie);
  2799. int (*nan_change_conf)(struct wiphy *wiphy,
  2800. struct wireless_dev *wdev,
  2801. struct cfg80211_nan_conf *conf,
  2802. u32 changes);
  2803. };
  2804. /*
  2805. * wireless hardware and networking interfaces structures
  2806. * and registration/helper functions
  2807. */
  2808. /**
  2809. * enum wiphy_flags - wiphy capability flags
  2810. *
  2811. * @WIPHY_FLAG_NETNS_OK: if not set, do not allow changing the netns of this
  2812. * wiphy at all
  2813. * @WIPHY_FLAG_PS_ON_BY_DEFAULT: if set to true, powersave will be enabled
  2814. * by default -- this flag will be set depending on the kernel's default
  2815. * on wiphy_new(), but can be changed by the driver if it has a good
  2816. * reason to override the default
  2817. * @WIPHY_FLAG_4ADDR_AP: supports 4addr mode even on AP (with a single station
  2818. * on a VLAN interface)
  2819. * @WIPHY_FLAG_4ADDR_STATION: supports 4addr mode even as a station
  2820. * @WIPHY_FLAG_CONTROL_PORT_PROTOCOL: This device supports setting the
  2821. * control port protocol ethertype. The device also honours the
  2822. * control_port_no_encrypt flag.
  2823. * @WIPHY_FLAG_IBSS_RSN: The device supports IBSS RSN.
  2824. * @WIPHY_FLAG_MESH_AUTH: The device supports mesh authentication by routing
  2825. * auth frames to userspace. See @NL80211_MESH_SETUP_USERSPACE_AUTH.
  2826. * @WIPHY_FLAG_SUPPORTS_SCHED_SCAN: The device supports scheduled scans.
  2827. * @WIPHY_FLAG_SUPPORTS_FW_ROAM: The device supports roaming feature in the
  2828. * firmware.
  2829. * @WIPHY_FLAG_AP_UAPSD: The device supports uapsd on AP.
  2830. * @WIPHY_FLAG_SUPPORTS_TDLS: The device supports TDLS (802.11z) operation.
  2831. * @WIPHY_FLAG_TDLS_EXTERNAL_SETUP: The device does not handle TDLS (802.11z)
  2832. * link setup/discovery operations internally. Setup, discovery and
  2833. * teardown packets should be sent through the @NL80211_CMD_TDLS_MGMT
  2834. * command. When this flag is not set, @NL80211_CMD_TDLS_OPER should be
  2835. * used for asking the driver/firmware to perform a TDLS operation.
  2836. * @WIPHY_FLAG_HAVE_AP_SME: device integrates AP SME
  2837. * @WIPHY_FLAG_REPORTS_OBSS: the device will report beacons from other BSSes
  2838. * when there are virtual interfaces in AP mode by calling
  2839. * cfg80211_report_obss_beacon().
  2840. * @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD: When operating as an AP, the device
  2841. * responds to probe-requests in hardware.
  2842. * @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
  2843. * @WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL: Device supports remain-on-channel call.
  2844. * @WIPHY_FLAG_SUPPORTS_5_10_MHZ: Device supports 5 MHz and 10 MHz channels.
  2845. * @WIPHY_FLAG_HAS_CHANNEL_SWITCH: Device supports channel switch in
  2846. * beaconing mode (AP, IBSS, Mesh, ...).
  2847. * @WIPHY_FLAG_HAS_STATIC_WEP: The device supports static WEP key installation
  2848. * before connection.
  2849. */
  2850. enum wiphy_flags {
  2851. /* use hole at 0 */
  2852. /* use hole at 1 */
  2853. /* use hole at 2 */
  2854. WIPHY_FLAG_NETNS_OK = BIT(3),
  2855. WIPHY_FLAG_PS_ON_BY_DEFAULT = BIT(4),
  2856. WIPHY_FLAG_4ADDR_AP = BIT(5),
  2857. WIPHY_FLAG_4ADDR_STATION = BIT(6),
  2858. WIPHY_FLAG_CONTROL_PORT_PROTOCOL = BIT(7),
  2859. WIPHY_FLAG_IBSS_RSN = BIT(8),
  2860. WIPHY_FLAG_MESH_AUTH = BIT(10),
  2861. WIPHY_FLAG_SUPPORTS_SCHED_SCAN = BIT(11),
  2862. /* use hole at 12 */
  2863. WIPHY_FLAG_SUPPORTS_FW_ROAM = BIT(13),
  2864. WIPHY_FLAG_AP_UAPSD = BIT(14),
  2865. WIPHY_FLAG_SUPPORTS_TDLS = BIT(15),
  2866. WIPHY_FLAG_TDLS_EXTERNAL_SETUP = BIT(16),
  2867. WIPHY_FLAG_HAVE_AP_SME = BIT(17),
  2868. WIPHY_FLAG_REPORTS_OBSS = BIT(18),
  2869. WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD = BIT(19),
  2870. WIPHY_FLAG_OFFCHAN_TX = BIT(20),
  2871. WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = BIT(21),
  2872. WIPHY_FLAG_SUPPORTS_5_10_MHZ = BIT(22),
  2873. WIPHY_FLAG_HAS_CHANNEL_SWITCH = BIT(23),
  2874. WIPHY_FLAG_HAS_STATIC_WEP = BIT(24),
  2875. };
  2876. /**
  2877. * struct ieee80211_iface_limit - limit on certain interface types
  2878. * @max: maximum number of interfaces of these types
  2879. * @types: interface types (bits)
  2880. */
  2881. struct ieee80211_iface_limit {
  2882. u16 max;
  2883. u16 types;
  2884. };
  2885. /**
  2886. * struct ieee80211_iface_combination - possible interface combination
  2887. * @limits: limits for the given interface types
  2888. * @n_limits: number of limitations
  2889. * @num_different_channels: can use up to this many different channels
  2890. * @max_interfaces: maximum number of interfaces in total allowed in this
  2891. * group
  2892. * @beacon_int_infra_match: In this combination, the beacon intervals
  2893. * between infrastructure and AP types must match. This is required
  2894. * only in special cases.
  2895. * @radar_detect_widths: bitmap of channel widths supported for radar detection
  2896. * @radar_detect_regions: bitmap of regions supported for radar detection
  2897. *
  2898. * With this structure the driver can describe which interface
  2899. * combinations it supports concurrently.
  2900. *
  2901. * Examples:
  2902. *
  2903. * 1. Allow #STA <= 1, #AP <= 1, matching BI, channels = 1, 2 total:
  2904. *
  2905. * .. code-block:: c
  2906. *
  2907. * struct ieee80211_iface_limit limits1[] = {
  2908. * { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
  2909. * { .max = 1, .types = BIT(NL80211_IFTYPE_AP}, },
  2910. * };
  2911. * struct ieee80211_iface_combination combination1 = {
  2912. * .limits = limits1,
  2913. * .n_limits = ARRAY_SIZE(limits1),
  2914. * .max_interfaces = 2,
  2915. * .beacon_int_infra_match = true,
  2916. * };
  2917. *
  2918. *
  2919. * 2. Allow #{AP, P2P-GO} <= 8, channels = 1, 8 total:
  2920. *
  2921. * .. code-block:: c
  2922. *
  2923. * struct ieee80211_iface_limit limits2[] = {
  2924. * { .max = 8, .types = BIT(NL80211_IFTYPE_AP) |
  2925. * BIT(NL80211_IFTYPE_P2P_GO), },
  2926. * };
  2927. * struct ieee80211_iface_combination combination2 = {
  2928. * .limits = limits2,
  2929. * .n_limits = ARRAY_SIZE(limits2),
  2930. * .max_interfaces = 8,
  2931. * .num_different_channels = 1,
  2932. * };
  2933. *
  2934. *
  2935. * 3. Allow #STA <= 1, #{P2P-client,P2P-GO} <= 3 on two channels, 4 total.
  2936. *
  2937. * This allows for an infrastructure connection and three P2P connections.
  2938. *
  2939. * .. code-block:: c
  2940. *
  2941. * struct ieee80211_iface_limit limits3[] = {
  2942. * { .max = 1, .types = BIT(NL80211_IFTYPE_STATION), },
  2943. * { .max = 3, .types = BIT(NL80211_IFTYPE_P2P_GO) |
  2944. * BIT(NL80211_IFTYPE_P2P_CLIENT), },
  2945. * };
  2946. * struct ieee80211_iface_combination combination3 = {
  2947. * .limits = limits3,
  2948. * .n_limits = ARRAY_SIZE(limits3),
  2949. * .max_interfaces = 4,
  2950. * .num_different_channels = 2,
  2951. * };
  2952. *
  2953. */
  2954. struct ieee80211_iface_combination {
  2955. const struct ieee80211_iface_limit *limits;
  2956. u32 num_different_channels;
  2957. u16 max_interfaces;
  2958. u8 n_limits;
  2959. bool beacon_int_infra_match;
  2960. u8 radar_detect_widths;
  2961. u8 radar_detect_regions;
  2962. };
  2963. struct ieee80211_txrx_stypes {
  2964. u16 tx, rx;
  2965. };
  2966. /**
  2967. * enum wiphy_wowlan_support_flags - WoWLAN support flags
  2968. * @WIPHY_WOWLAN_ANY: supports wakeup for the special "any"
  2969. * trigger that keeps the device operating as-is and
  2970. * wakes up the host on any activity, for example a
  2971. * received packet that passed filtering; note that the
  2972. * packet should be preserved in that case
  2973. * @WIPHY_WOWLAN_MAGIC_PKT: supports wakeup on magic packet
  2974. * (see nl80211.h)
  2975. * @WIPHY_WOWLAN_DISCONNECT: supports wakeup on disconnect
  2976. * @WIPHY_WOWLAN_SUPPORTS_GTK_REKEY: supports GTK rekeying while asleep
  2977. * @WIPHY_WOWLAN_GTK_REKEY_FAILURE: supports wakeup on GTK rekey failure
  2978. * @WIPHY_WOWLAN_EAP_IDENTITY_REQ: supports wakeup on EAP identity request
  2979. * @WIPHY_WOWLAN_4WAY_HANDSHAKE: supports wakeup on 4-way handshake failure
  2980. * @WIPHY_WOWLAN_RFKILL_RELEASE: supports wakeup on RF-kill release
  2981. * @WIPHY_WOWLAN_NET_DETECT: supports wakeup on network detection
  2982. */
  2983. enum wiphy_wowlan_support_flags {
  2984. WIPHY_WOWLAN_ANY = BIT(0),
  2985. WIPHY_WOWLAN_MAGIC_PKT = BIT(1),
  2986. WIPHY_WOWLAN_DISCONNECT = BIT(2),
  2987. WIPHY_WOWLAN_SUPPORTS_GTK_REKEY = BIT(3),
  2988. WIPHY_WOWLAN_GTK_REKEY_FAILURE = BIT(4),
  2989. WIPHY_WOWLAN_EAP_IDENTITY_REQ = BIT(5),
  2990. WIPHY_WOWLAN_4WAY_HANDSHAKE = BIT(6),
  2991. WIPHY_WOWLAN_RFKILL_RELEASE = BIT(7),
  2992. WIPHY_WOWLAN_NET_DETECT = BIT(8),
  2993. };
  2994. struct wiphy_wowlan_tcp_support {
  2995. const struct nl80211_wowlan_tcp_data_token_feature *tok;
  2996. u32 data_payload_max;
  2997. u32 data_interval_max;
  2998. u32 wake_payload_max;
  2999. bool seq;
  3000. };
  3001. /**
  3002. * struct wiphy_wowlan_support - WoWLAN support data
  3003. * @flags: see &enum wiphy_wowlan_support_flags
  3004. * @n_patterns: number of supported wakeup patterns
  3005. * (see nl80211.h for the pattern definition)
  3006. * @pattern_max_len: maximum length of each pattern
  3007. * @pattern_min_len: minimum length of each pattern
  3008. * @max_pkt_offset: maximum Rx packet offset
  3009. * @max_nd_match_sets: maximum number of matchsets for net-detect,
  3010. * similar, but not necessarily identical, to max_match_sets for
  3011. * scheduled scans.
  3012. * See &struct cfg80211_sched_scan_request.@match_sets for more
  3013. * details.
  3014. * @tcp: TCP wakeup support information
  3015. */
  3016. struct wiphy_wowlan_support {
  3017. u32 flags;
  3018. int n_patterns;
  3019. int pattern_max_len;
  3020. int pattern_min_len;
  3021. int max_pkt_offset;
  3022. int max_nd_match_sets;
  3023. const struct wiphy_wowlan_tcp_support *tcp;
  3024. };
  3025. /**
  3026. * struct wiphy_coalesce_support - coalesce support data
  3027. * @n_rules: maximum number of coalesce rules
  3028. * @max_delay: maximum supported coalescing delay in msecs
  3029. * @n_patterns: number of supported patterns in a rule
  3030. * (see nl80211.h for the pattern definition)
  3031. * @pattern_max_len: maximum length of each pattern
  3032. * @pattern_min_len: minimum length of each pattern
  3033. * @max_pkt_offset: maximum Rx packet offset
  3034. */
  3035. struct wiphy_coalesce_support {
  3036. int n_rules;
  3037. int max_delay;
  3038. int n_patterns;
  3039. int pattern_max_len;
  3040. int pattern_min_len;
  3041. int max_pkt_offset;
  3042. };
  3043. /**
  3044. * enum wiphy_vendor_command_flags - validation flags for vendor commands
  3045. * @WIPHY_VENDOR_CMD_NEED_WDEV: vendor command requires wdev
  3046. * @WIPHY_VENDOR_CMD_NEED_NETDEV: vendor command requires netdev
  3047. * @WIPHY_VENDOR_CMD_NEED_RUNNING: interface/wdev must be up & running
  3048. * (must be combined with %_WDEV or %_NETDEV)
  3049. */
  3050. enum wiphy_vendor_command_flags {
  3051. WIPHY_VENDOR_CMD_NEED_WDEV = BIT(0),
  3052. WIPHY_VENDOR_CMD_NEED_NETDEV = BIT(1),
  3053. WIPHY_VENDOR_CMD_NEED_RUNNING = BIT(2),
  3054. };
  3055. /**
  3056. * struct wiphy_vendor_command - vendor command definition
  3057. * @info: vendor command identifying information, as used in nl80211
  3058. * @flags: flags, see &enum wiphy_vendor_command_flags
  3059. * @doit: callback for the operation, note that wdev is %NULL if the
  3060. * flags didn't ask for a wdev and non-%NULL otherwise; the data
  3061. * pointer may be %NULL if userspace provided no data at all
  3062. * @dumpit: dump callback, for transferring bigger/multiple items. The
  3063. * @storage points to cb->args[5], ie. is preserved over the multiple
  3064. * dumpit calls.
  3065. * It's recommended to not have the same sub command with both @doit and
  3066. * @dumpit, so that userspace can assume certain ones are get and others
  3067. * are used with dump requests.
  3068. */
  3069. struct wiphy_vendor_command {
  3070. struct nl80211_vendor_cmd_info info;
  3071. u32 flags;
  3072. int (*doit)(struct wiphy *wiphy, struct wireless_dev *wdev,
  3073. const void *data, int data_len);
  3074. int (*dumpit)(struct wiphy *wiphy, struct wireless_dev *wdev,
  3075. struct sk_buff *skb, const void *data, int data_len,
  3076. unsigned long *storage);
  3077. };
  3078. /**
  3079. * struct wiphy_iftype_ext_capab - extended capabilities per interface type
  3080. * @iftype: interface type
  3081. * @extended_capabilities: extended capabilities supported by the driver,
  3082. * additional capabilities might be supported by userspace; these are the
  3083. * 802.11 extended capabilities ("Extended Capabilities element") and are
  3084. * in the same format as in the information element. See IEEE Std
  3085. * 802.11-2012 8.4.2.29 for the defined fields.
  3086. * @extended_capabilities_mask: mask of the valid values
  3087. * @extended_capabilities_len: length of the extended capabilities
  3088. */
  3089. struct wiphy_iftype_ext_capab {
  3090. enum nl80211_iftype iftype;
  3091. const u8 *extended_capabilities;
  3092. const u8 *extended_capabilities_mask;
  3093. u8 extended_capabilities_len;
  3094. };
  3095. /**
  3096. * struct wiphy - wireless hardware description
  3097. * @reg_notifier: the driver's regulatory notification callback,
  3098. * note that if your driver uses wiphy_apply_custom_regulatory()
  3099. * the reg_notifier's request can be passed as NULL
  3100. * @regd: the driver's regulatory domain, if one was requested via
  3101. * the regulatory_hint() API. This can be used by the driver
  3102. * on the reg_notifier() if it chooses to ignore future
  3103. * regulatory domain changes caused by other drivers.
  3104. * @signal_type: signal type reported in &struct cfg80211_bss.
  3105. * @cipher_suites: supported cipher suites
  3106. * @n_cipher_suites: number of supported cipher suites
  3107. * @retry_short: Retry limit for short frames (dot11ShortRetryLimit)
  3108. * @retry_long: Retry limit for long frames (dot11LongRetryLimit)
  3109. * @frag_threshold: Fragmentation threshold (dot11FragmentationThreshold);
  3110. * -1 = fragmentation disabled, only odd values >= 256 used
  3111. * @rts_threshold: RTS threshold (dot11RTSThreshold); -1 = RTS/CTS disabled
  3112. * @_net: the network namespace this wiphy currently lives in
  3113. * @perm_addr: permanent MAC address of this device
  3114. * @addr_mask: If the device supports multiple MAC addresses by masking,
  3115. * set this to a mask with variable bits set to 1, e.g. if the last
  3116. * four bits are variable then set it to 00-00-00-00-00-0f. The actual
  3117. * variable bits shall be determined by the interfaces added, with
  3118. * interfaces not matching the mask being rejected to be brought up.
  3119. * @n_addresses: number of addresses in @addresses.
  3120. * @addresses: If the device has more than one address, set this pointer
  3121. * to a list of addresses (6 bytes each). The first one will be used
  3122. * by default for perm_addr. In this case, the mask should be set to
  3123. * all-zeroes. In this case it is assumed that the device can handle
  3124. * the same number of arbitrary MAC addresses.
  3125. * @registered: protects ->resume and ->suspend sysfs callbacks against
  3126. * unregister hardware
  3127. * @debugfsdir: debugfs directory used for this wiphy, will be renamed
  3128. * automatically on wiphy renames
  3129. * @dev: (virtual) struct device for this wiphy
  3130. * @registered: helps synchronize suspend/resume with wiphy unregister
  3131. * @wext: wireless extension handlers
  3132. * @priv: driver private data (sized according to wiphy_new() parameter)
  3133. * @interface_modes: bitmask of interfaces types valid for this wiphy,
  3134. * must be set by driver
  3135. * @iface_combinations: Valid interface combinations array, should not
  3136. * list single interface types.
  3137. * @n_iface_combinations: number of entries in @iface_combinations array.
  3138. * @software_iftypes: bitmask of software interface types, these are not
  3139. * subject to any restrictions since they are purely managed in SW.
  3140. * @flags: wiphy flags, see &enum wiphy_flags
  3141. * @regulatory_flags: wiphy regulatory flags, see
  3142. * &enum ieee80211_regulatory_flags
  3143. * @features: features advertised to nl80211, see &enum nl80211_feature_flags.
  3144. * @ext_features: extended features advertised to nl80211, see
  3145. * &enum nl80211_ext_feature_index.
  3146. * @bss_priv_size: each BSS struct has private data allocated with it,
  3147. * this variable determines its size
  3148. * @max_scan_ssids: maximum number of SSIDs the device can scan for in
  3149. * any given scan
  3150. * @max_sched_scan_ssids: maximum number of SSIDs the device can scan
  3151. * for in any given scheduled scan
  3152. * @max_match_sets: maximum number of match sets the device can handle
  3153. * when performing a scheduled scan, 0 if filtering is not
  3154. * supported.
  3155. * @max_scan_ie_len: maximum length of user-controlled IEs device can
  3156. * add to probe request frames transmitted during a scan, must not
  3157. * include fixed IEs like supported rates
  3158. * @max_sched_scan_ie_len: same as max_scan_ie_len, but for scheduled
  3159. * scans
  3160. * @max_sched_scan_plans: maximum number of scan plans (scan interval and number
  3161. * of iterations) for scheduled scan supported by the device.
  3162. * @max_sched_scan_plan_interval: maximum interval (in seconds) for a
  3163. * single scan plan supported by the device.
  3164. * @max_sched_scan_plan_iterations: maximum number of iterations for a single
  3165. * scan plan supported by the device.
  3166. * @coverage_class: current coverage class
  3167. * @fw_version: firmware version for ethtool reporting
  3168. * @hw_version: hardware version for ethtool reporting
  3169. * @max_num_pmkids: maximum number of PMKIDs supported by device
  3170. * @privid: a pointer that drivers can use to identify if an arbitrary
  3171. * wiphy is theirs, e.g. in global notifiers
  3172. * @bands: information about bands/channels supported by this device
  3173. *
  3174. * @mgmt_stypes: bitmasks of frame subtypes that can be subscribed to or
  3175. * transmitted through nl80211, points to an array indexed by interface
  3176. * type
  3177. *
  3178. * @available_antennas_tx: bitmap of antennas which are available to be
  3179. * configured as TX antennas. Antenna configuration commands will be
  3180. * rejected unless this or @available_antennas_rx is set.
  3181. *
  3182. * @available_antennas_rx: bitmap of antennas which are available to be
  3183. * configured as RX antennas. Antenna configuration commands will be
  3184. * rejected unless this or @available_antennas_tx is set.
  3185. *
  3186. * @probe_resp_offload:
  3187. * Bitmap of supported protocols for probe response offloading.
  3188. * See &enum nl80211_probe_resp_offload_support_attr. Only valid
  3189. * when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
  3190. *
  3191. * @max_remain_on_channel_duration: Maximum time a remain-on-channel operation
  3192. * may request, if implemented.
  3193. *
  3194. * @wowlan: WoWLAN support information
  3195. * @wowlan_config: current WoWLAN configuration; this should usually not be
  3196. * used since access to it is necessarily racy, use the parameter passed
  3197. * to the suspend() operation instead.
  3198. *
  3199. * @ap_sme_capa: AP SME capabilities, flags from &enum nl80211_ap_sme_features.
  3200. * @ht_capa_mod_mask: Specify what ht_cap values can be over-ridden.
  3201. * If null, then none can be over-ridden.
  3202. * @vht_capa_mod_mask: Specify what VHT capabilities can be over-ridden.
  3203. * If null, then none can be over-ridden.
  3204. *
  3205. * @wdev_list: the list of associated (virtual) interfaces; this list must
  3206. * not be modified by the driver, but can be read with RTNL/RCU protection.
  3207. *
  3208. * @max_acl_mac_addrs: Maximum number of MAC addresses that the device
  3209. * supports for ACL.
  3210. *
  3211. * @extended_capabilities: extended capabilities supported by the driver,
  3212. * additional capabilities might be supported by userspace; these are
  3213. * the 802.11 extended capabilities ("Extended Capabilities element")
  3214. * and are in the same format as in the information element. See
  3215. * 802.11-2012 8.4.2.29 for the defined fields. These are the default
  3216. * extended capabilities to be used if the capabilities are not specified
  3217. * for a specific interface type in iftype_ext_capab.
  3218. * @extended_capabilities_mask: mask of the valid values
  3219. * @extended_capabilities_len: length of the extended capabilities
  3220. * @iftype_ext_capab: array of extended capabilities per interface type
  3221. * @num_iftype_ext_capab: number of interface types for which extended
  3222. * capabilities are specified separately.
  3223. * @coalesce: packet coalescing support information
  3224. *
  3225. * @vendor_commands: array of vendor commands supported by the hardware
  3226. * @n_vendor_commands: number of vendor commands
  3227. * @vendor_events: array of vendor events supported by the hardware
  3228. * @n_vendor_events: number of vendor events
  3229. *
  3230. * @max_ap_assoc_sta: maximum number of associated stations supported in AP mode
  3231. * (including P2P GO) or 0 to indicate no such limit is advertised. The
  3232. * driver is allowed to advertise a theoretical limit that it can reach in
  3233. * some cases, but may not always reach.
  3234. *
  3235. * @max_num_csa_counters: Number of supported csa_counters in beacons
  3236. * and probe responses. This value should be set if the driver
  3237. * wishes to limit the number of csa counters. Default (0) means
  3238. * infinite.
  3239. * @max_adj_channel_rssi_comp: max offset of between the channel on which the
  3240. * frame was sent and the channel on which the frame was heard for which
  3241. * the reported rssi is still valid. If a driver is able to compensate the
  3242. * low rssi when a frame is heard on different channel, then it should set
  3243. * this variable to the maximal offset for which it can compensate.
  3244. * This value should be set in MHz.
  3245. * @bss_select_support: bitmask indicating the BSS selection criteria supported
  3246. * by the driver in the .connect() callback. The bit position maps to the
  3247. * attribute indices defined in &enum nl80211_bss_select_attr.
  3248. *
  3249. * @cookie_counter: unique generic cookie counter, used to identify objects.
  3250. */
  3251. struct wiphy {
  3252. /* assign these fields before you register the wiphy */
  3253. /* permanent MAC address(es) */
  3254. u8 perm_addr[ETH_ALEN];
  3255. u8 addr_mask[ETH_ALEN];
  3256. struct mac_address *addresses;
  3257. const struct ieee80211_txrx_stypes *mgmt_stypes;
  3258. const struct ieee80211_iface_combination *iface_combinations;
  3259. int n_iface_combinations;
  3260. u16 software_iftypes;
  3261. u16 n_addresses;
  3262. /* Supported interface modes, OR together BIT(NL80211_IFTYPE_...) */
  3263. u16 interface_modes;
  3264. u16 max_acl_mac_addrs;
  3265. u32 flags, regulatory_flags, features;
  3266. u8 ext_features[DIV_ROUND_UP(NUM_NL80211_EXT_FEATURES, 8)];
  3267. u32 ap_sme_capa;
  3268. enum cfg80211_signal_type signal_type;
  3269. int bss_priv_size;
  3270. u8 max_scan_ssids;
  3271. u8 max_sched_scan_ssids;
  3272. u8 max_match_sets;
  3273. u16 max_scan_ie_len;
  3274. u16 max_sched_scan_ie_len;
  3275. u32 max_sched_scan_plans;
  3276. u32 max_sched_scan_plan_interval;
  3277. u32 max_sched_scan_plan_iterations;
  3278. int n_cipher_suites;
  3279. const u32 *cipher_suites;
  3280. u8 retry_short;
  3281. u8 retry_long;
  3282. u32 frag_threshold;
  3283. u32 rts_threshold;
  3284. u8 coverage_class;
  3285. char fw_version[ETHTOOL_FWVERS_LEN];
  3286. u32 hw_version;
  3287. #ifdef CONFIG_PM
  3288. const struct wiphy_wowlan_support *wowlan;
  3289. struct cfg80211_wowlan *wowlan_config;
  3290. #endif
  3291. u16 max_remain_on_channel_duration;
  3292. u8 max_num_pmkids;
  3293. u32 available_antennas_tx;
  3294. u32 available_antennas_rx;
  3295. /*
  3296. * Bitmap of supported protocols for probe response offloading
  3297. * see &enum nl80211_probe_resp_offload_support_attr. Only valid
  3298. * when the wiphy flag @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD is set.
  3299. */
  3300. u32 probe_resp_offload;
  3301. const u8 *extended_capabilities, *extended_capabilities_mask;
  3302. u8 extended_capabilities_len;
  3303. const struct wiphy_iftype_ext_capab *iftype_ext_capab;
  3304. unsigned int num_iftype_ext_capab;
  3305. /* If multiple wiphys are registered and you're handed e.g.
  3306. * a regular netdev with assigned ieee80211_ptr, you won't
  3307. * know whether it points to a wiphy your driver has registered
  3308. * or not. Assign this to something global to your driver to
  3309. * help determine whether you own this wiphy or not. */
  3310. const void *privid;
  3311. struct ieee80211_supported_band *bands[NUM_NL80211_BANDS];
  3312. /* Lets us get back the wiphy on the callback */
  3313. void (*reg_notifier)(struct wiphy *wiphy,
  3314. struct regulatory_request *request);
  3315. /* fields below are read-only, assigned by cfg80211 */
  3316. const struct ieee80211_regdomain __rcu *regd;
  3317. /* the item in /sys/class/ieee80211/ points to this,
  3318. * you need use set_wiphy_dev() (see below) */
  3319. struct device dev;
  3320. /* protects ->resume, ->suspend sysfs callbacks against unregister hw */
  3321. bool registered;
  3322. /* dir in debugfs: ieee80211/<wiphyname> */
  3323. struct dentry *debugfsdir;
  3324. const struct ieee80211_ht_cap *ht_capa_mod_mask;
  3325. const struct ieee80211_vht_cap *vht_capa_mod_mask;
  3326. struct list_head wdev_list;
  3327. /* the network namespace this phy lives in currently */
  3328. possible_net_t _net;
  3329. #ifdef CONFIG_CFG80211_WEXT
  3330. const struct iw_handler_def *wext;
  3331. #endif
  3332. const struct wiphy_coalesce_support *coalesce;
  3333. const struct wiphy_vendor_command *vendor_commands;
  3334. const struct nl80211_vendor_cmd_info *vendor_events;
  3335. int n_vendor_commands, n_vendor_events;
  3336. u16 max_ap_assoc_sta;
  3337. u8 max_num_csa_counters;
  3338. u8 max_adj_channel_rssi_comp;
  3339. u32 bss_select_support;
  3340. u64 cookie_counter;
  3341. char priv[0] __aligned(NETDEV_ALIGN);
  3342. };
  3343. static inline struct net *wiphy_net(struct wiphy *wiphy)
  3344. {
  3345. return read_pnet(&wiphy->_net);
  3346. }
  3347. static inline void wiphy_net_set(struct wiphy *wiphy, struct net *net)
  3348. {
  3349. write_pnet(&wiphy->_net, net);
  3350. }
  3351. /**
  3352. * wiphy_priv - return priv from wiphy
  3353. *
  3354. * @wiphy: the wiphy whose priv pointer to return
  3355. * Return: The priv of @wiphy.
  3356. */
  3357. static inline void *wiphy_priv(struct wiphy *wiphy)
  3358. {
  3359. BUG_ON(!wiphy);
  3360. return &wiphy->priv;
  3361. }
  3362. /**
  3363. * priv_to_wiphy - return the wiphy containing the priv
  3364. *
  3365. * @priv: a pointer previously returned by wiphy_priv
  3366. * Return: The wiphy of @priv.
  3367. */
  3368. static inline struct wiphy *priv_to_wiphy(void *priv)
  3369. {
  3370. BUG_ON(!priv);
  3371. return container_of(priv, struct wiphy, priv);
  3372. }
  3373. /**
  3374. * set_wiphy_dev - set device pointer for wiphy
  3375. *
  3376. * @wiphy: The wiphy whose device to bind
  3377. * @dev: The device to parent it to
  3378. */
  3379. static inline void set_wiphy_dev(struct wiphy *wiphy, struct device *dev)
  3380. {
  3381. wiphy->dev.parent = dev;
  3382. }
  3383. /**
  3384. * wiphy_dev - get wiphy dev pointer
  3385. *
  3386. * @wiphy: The wiphy whose device struct to look up
  3387. * Return: The dev of @wiphy.
  3388. */
  3389. static inline struct device *wiphy_dev(struct wiphy *wiphy)
  3390. {
  3391. return wiphy->dev.parent;
  3392. }
  3393. /**
  3394. * wiphy_name - get wiphy name
  3395. *
  3396. * @wiphy: The wiphy whose name to return
  3397. * Return: The name of @wiphy.
  3398. */
  3399. static inline const char *wiphy_name(const struct wiphy *wiphy)
  3400. {
  3401. return dev_name(&wiphy->dev);
  3402. }
  3403. /**
  3404. * wiphy_new_nm - create a new wiphy for use with cfg80211
  3405. *
  3406. * @ops: The configuration operations for this device
  3407. * @sizeof_priv: The size of the private area to allocate
  3408. * @requested_name: Request a particular name.
  3409. * NULL is valid value, and means use the default phy%d naming.
  3410. *
  3411. * Create a new wiphy and associate the given operations with it.
  3412. * @sizeof_priv bytes are allocated for private use.
  3413. *
  3414. * Return: A pointer to the new wiphy. This pointer must be
  3415. * assigned to each netdev's ieee80211_ptr for proper operation.
  3416. */
  3417. struct wiphy *wiphy_new_nm(const struct cfg80211_ops *ops, int sizeof_priv,
  3418. const char *requested_name);
  3419. /**
  3420. * wiphy_new - create a new wiphy for use with cfg80211
  3421. *
  3422. * @ops: The configuration operations for this device
  3423. * @sizeof_priv: The size of the private area to allocate
  3424. *
  3425. * Create a new wiphy and associate the given operations with it.
  3426. * @sizeof_priv bytes are allocated for private use.
  3427. *
  3428. * Return: A pointer to the new wiphy. This pointer must be
  3429. * assigned to each netdev's ieee80211_ptr for proper operation.
  3430. */
  3431. static inline struct wiphy *wiphy_new(const struct cfg80211_ops *ops,
  3432. int sizeof_priv)
  3433. {
  3434. return wiphy_new_nm(ops, sizeof_priv, NULL);
  3435. }
  3436. /**
  3437. * wiphy_register - register a wiphy with cfg80211
  3438. *
  3439. * @wiphy: The wiphy to register.
  3440. *
  3441. * Return: A non-negative wiphy index or a negative error code.
  3442. */
  3443. int wiphy_register(struct wiphy *wiphy);
  3444. /**
  3445. * wiphy_unregister - deregister a wiphy from cfg80211
  3446. *
  3447. * @wiphy: The wiphy to unregister.
  3448. *
  3449. * After this call, no more requests can be made with this priv
  3450. * pointer, but the call may sleep to wait for an outstanding
  3451. * request that is being handled.
  3452. */
  3453. void wiphy_unregister(struct wiphy *wiphy);
  3454. /**
  3455. * wiphy_free - free wiphy
  3456. *
  3457. * @wiphy: The wiphy to free
  3458. */
  3459. void wiphy_free(struct wiphy *wiphy);
  3460. /* internal structs */
  3461. struct cfg80211_conn;
  3462. struct cfg80211_internal_bss;
  3463. struct cfg80211_cached_keys;
  3464. /**
  3465. * struct wireless_dev - wireless device state
  3466. *
  3467. * For netdevs, this structure must be allocated by the driver
  3468. * that uses the ieee80211_ptr field in struct net_device (this
  3469. * is intentional so it can be allocated along with the netdev.)
  3470. * It need not be registered then as netdev registration will
  3471. * be intercepted by cfg80211 to see the new wireless device.
  3472. *
  3473. * For non-netdev uses, it must also be allocated by the driver
  3474. * in response to the cfg80211 callbacks that require it, as
  3475. * there's no netdev registration in that case it may not be
  3476. * allocated outside of callback operations that return it.
  3477. *
  3478. * @wiphy: pointer to hardware description
  3479. * @iftype: interface type
  3480. * @list: (private) Used to collect the interfaces
  3481. * @netdev: (private) Used to reference back to the netdev, may be %NULL
  3482. * @identifier: (private) Identifier used in nl80211 to identify this
  3483. * wireless device if it has no netdev
  3484. * @current_bss: (private) Used by the internal configuration code
  3485. * @chandef: (private) Used by the internal configuration code to track
  3486. * the user-set channel definition.
  3487. * @preset_chandef: (private) Used by the internal configuration code to
  3488. * track the channel to be used for AP later
  3489. * @bssid: (private) Used by the internal configuration code
  3490. * @ssid: (private) Used by the internal configuration code
  3491. * @ssid_len: (private) Used by the internal configuration code
  3492. * @mesh_id_len: (private) Used by the internal configuration code
  3493. * @mesh_id_up_len: (private) Used by the internal configuration code
  3494. * @wext: (private) Used by the internal wireless extensions compat code
  3495. * @use_4addr: indicates 4addr mode is used on this interface, must be
  3496. * set by driver (if supported) on add_interface BEFORE registering the
  3497. * netdev and may otherwise be used by driver read-only, will be update
  3498. * by cfg80211 on change_interface
  3499. * @mgmt_registrations: list of registrations for management frames
  3500. * @mgmt_registrations_lock: lock for the list
  3501. * @mtx: mutex used to lock data in this struct, may be used by drivers
  3502. * and some API functions require it held
  3503. * @beacon_interval: beacon interval used on this device for transmitting
  3504. * beacons, 0 when not valid
  3505. * @address: The address for this device, valid only if @netdev is %NULL
  3506. * @p2p_started: true if this is a P2P Device that has been started
  3507. * @nan_started: true if this is a NAN interface that has been started
  3508. * @cac_started: true if DFS channel availability check has been started
  3509. * @cac_start_time: timestamp (jiffies) when the dfs state was entered.
  3510. * @cac_time_ms: CAC time in ms
  3511. * @ps: powersave mode is enabled
  3512. * @ps_timeout: dynamic powersave timeout
  3513. * @ap_unexpected_nlportid: (private) netlink port ID of application
  3514. * registered for unexpected class 3 frames (AP mode)
  3515. * @conn: (private) cfg80211 software SME connection state machine data
  3516. * @connect_keys: (private) keys to set after connection is established
  3517. * @conn_bss_type: connecting/connected BSS type
  3518. * @ibss_fixed: (private) IBSS is using fixed BSSID
  3519. * @ibss_dfs_possible: (private) IBSS may change to a DFS channel
  3520. * @event_list: (private) list for internal event processing
  3521. * @event_lock: (private) lock for event list
  3522. * @owner_nlportid: (private) owner socket port ID
  3523. */
  3524. struct wireless_dev {
  3525. struct wiphy *wiphy;
  3526. enum nl80211_iftype iftype;
  3527. /* the remainder of this struct should be private to cfg80211 */
  3528. struct list_head list;
  3529. struct net_device *netdev;
  3530. u32 identifier;
  3531. struct list_head mgmt_registrations;
  3532. spinlock_t mgmt_registrations_lock;
  3533. struct mutex mtx;
  3534. bool use_4addr, p2p_started, nan_started;
  3535. u8 address[ETH_ALEN] __aligned(sizeof(u16));
  3536. /* currently used for IBSS and SME - might be rearranged later */
  3537. u8 ssid[IEEE80211_MAX_SSID_LEN];
  3538. u8 ssid_len, mesh_id_len, mesh_id_up_len;
  3539. struct cfg80211_conn *conn;
  3540. struct cfg80211_cached_keys *connect_keys;
  3541. enum ieee80211_bss_type conn_bss_type;
  3542. struct list_head event_list;
  3543. spinlock_t event_lock;
  3544. struct cfg80211_internal_bss *current_bss; /* associated / joined */
  3545. struct cfg80211_chan_def preset_chandef;
  3546. struct cfg80211_chan_def chandef;
  3547. bool ibss_fixed;
  3548. bool ibss_dfs_possible;
  3549. bool ps;
  3550. int ps_timeout;
  3551. int beacon_interval;
  3552. u32 ap_unexpected_nlportid;
  3553. bool cac_started;
  3554. unsigned long cac_start_time;
  3555. unsigned int cac_time_ms;
  3556. u32 owner_nlportid;
  3557. #ifdef CONFIG_CFG80211_WEXT
  3558. /* wext data */
  3559. struct {
  3560. struct cfg80211_ibss_params ibss;
  3561. struct cfg80211_connect_params connect;
  3562. struct cfg80211_cached_keys *keys;
  3563. const u8 *ie;
  3564. size_t ie_len;
  3565. u8 bssid[ETH_ALEN], prev_bssid[ETH_ALEN];
  3566. u8 ssid[IEEE80211_MAX_SSID_LEN];
  3567. s8 default_key, default_mgmt_key;
  3568. bool prev_bssid_valid;
  3569. } wext;
  3570. #endif
  3571. };
  3572. static inline u8 *wdev_address(struct wireless_dev *wdev)
  3573. {
  3574. if (wdev->netdev)
  3575. return wdev->netdev->dev_addr;
  3576. return wdev->address;
  3577. }
  3578. /**
  3579. * wdev_priv - return wiphy priv from wireless_dev
  3580. *
  3581. * @wdev: The wireless device whose wiphy's priv pointer to return
  3582. * Return: The wiphy priv of @wdev.
  3583. */
  3584. static inline void *wdev_priv(struct wireless_dev *wdev)
  3585. {
  3586. BUG_ON(!wdev);
  3587. return wiphy_priv(wdev->wiphy);
  3588. }
  3589. /**
  3590. * DOC: Utility functions
  3591. *
  3592. * cfg80211 offers a number of utility functions that can be useful.
  3593. */
  3594. /**
  3595. * ieee80211_channel_to_frequency - convert channel number to frequency
  3596. * @chan: channel number
  3597. * @band: band, necessary due to channel number overlap
  3598. * Return: The corresponding frequency (in MHz), or 0 if the conversion failed.
  3599. */
  3600. int ieee80211_channel_to_frequency(int chan, enum nl80211_band band);
  3601. /**
  3602. * ieee80211_frequency_to_channel - convert frequency to channel number
  3603. * @freq: center frequency
  3604. * Return: The corresponding channel, or 0 if the conversion failed.
  3605. */
  3606. int ieee80211_frequency_to_channel(int freq);
  3607. /*
  3608. * Name indirection necessary because the ieee80211 code also has
  3609. * a function named "ieee80211_get_channel", so if you include
  3610. * cfg80211's header file you get cfg80211's version, if you try
  3611. * to include both header files you'll (rightfully!) get a symbol
  3612. * clash.
  3613. */
  3614. struct ieee80211_channel *__ieee80211_get_channel(struct wiphy *wiphy,
  3615. int freq);
  3616. /**
  3617. * ieee80211_get_channel - get channel struct from wiphy for specified frequency
  3618. * @wiphy: the struct wiphy to get the channel for
  3619. * @freq: the center frequency of the channel
  3620. * Return: The channel struct from @wiphy at @freq.
  3621. */
  3622. static inline struct ieee80211_channel *
  3623. ieee80211_get_channel(struct wiphy *wiphy, int freq)
  3624. {
  3625. return __ieee80211_get_channel(wiphy, freq);
  3626. }
  3627. /**
  3628. * ieee80211_get_response_rate - get basic rate for a given rate
  3629. *
  3630. * @sband: the band to look for rates in
  3631. * @basic_rates: bitmap of basic rates
  3632. * @bitrate: the bitrate for which to find the basic rate
  3633. *
  3634. * Return: The basic rate corresponding to a given bitrate, that
  3635. * is the next lower bitrate contained in the basic rate map,
  3636. * which is, for this function, given as a bitmap of indices of
  3637. * rates in the band's bitrate table.
  3638. */
  3639. struct ieee80211_rate *
  3640. ieee80211_get_response_rate(struct ieee80211_supported_band *sband,
  3641. u32 basic_rates, int bitrate);
  3642. /**
  3643. * ieee80211_mandatory_rates - get mandatory rates for a given band
  3644. * @sband: the band to look for rates in
  3645. * @scan_width: width of the control channel
  3646. *
  3647. * This function returns a bitmap of the mandatory rates for the given
  3648. * band, bits are set according to the rate position in the bitrates array.
  3649. */
  3650. u32 ieee80211_mandatory_rates(struct ieee80211_supported_band *sband,
  3651. enum nl80211_bss_scan_width scan_width);
  3652. /*
  3653. * Radiotap parsing functions -- for controlled injection support
  3654. *
  3655. * Implemented in net/wireless/radiotap.c
  3656. * Documentation in Documentation/networking/radiotap-headers.txt
  3657. */
  3658. struct radiotap_align_size {
  3659. uint8_t align:4, size:4;
  3660. };
  3661. struct ieee80211_radiotap_namespace {
  3662. const struct radiotap_align_size *align_size;
  3663. int n_bits;
  3664. uint32_t oui;
  3665. uint8_t subns;
  3666. };
  3667. struct ieee80211_radiotap_vendor_namespaces {
  3668. const struct ieee80211_radiotap_namespace *ns;
  3669. int n_ns;
  3670. };
  3671. /**
  3672. * struct ieee80211_radiotap_iterator - tracks walk thru present radiotap args
  3673. * @this_arg_index: index of current arg, valid after each successful call
  3674. * to ieee80211_radiotap_iterator_next()
  3675. * @this_arg: pointer to current radiotap arg; it is valid after each
  3676. * call to ieee80211_radiotap_iterator_next() but also after
  3677. * ieee80211_radiotap_iterator_init() where it will point to
  3678. * the beginning of the actual data portion
  3679. * @this_arg_size: length of the current arg, for convenience
  3680. * @current_namespace: pointer to the current namespace definition
  3681. * (or internally %NULL if the current namespace is unknown)
  3682. * @is_radiotap_ns: indicates whether the current namespace is the default
  3683. * radiotap namespace or not
  3684. *
  3685. * @_rtheader: pointer to the radiotap header we are walking through
  3686. * @_max_length: length of radiotap header in cpu byte ordering
  3687. * @_arg_index: next argument index
  3688. * @_arg: next argument pointer
  3689. * @_next_bitmap: internal pointer to next present u32
  3690. * @_bitmap_shifter: internal shifter for curr u32 bitmap, b0 set == arg present
  3691. * @_vns: vendor namespace definitions
  3692. * @_next_ns_data: beginning of the next namespace's data
  3693. * @_reset_on_ext: internal; reset the arg index to 0 when going to the
  3694. * next bitmap word
  3695. *
  3696. * Describes the radiotap parser state. Fields prefixed with an underscore
  3697. * must not be used by users of the parser, only by the parser internally.
  3698. */
  3699. struct ieee80211_radiotap_iterator {
  3700. struct ieee80211_radiotap_header *_rtheader;
  3701. const struct ieee80211_radiotap_vendor_namespaces *_vns;
  3702. const struct ieee80211_radiotap_namespace *current_namespace;
  3703. unsigned char *_arg, *_next_ns_data;
  3704. __le32 *_next_bitmap;
  3705. unsigned char *this_arg;
  3706. int this_arg_index;
  3707. int this_arg_size;
  3708. int is_radiotap_ns;
  3709. int _max_length;
  3710. int _arg_index;
  3711. uint32_t _bitmap_shifter;
  3712. int _reset_on_ext;
  3713. };
  3714. int
  3715. ieee80211_radiotap_iterator_init(struct ieee80211_radiotap_iterator *iterator,
  3716. struct ieee80211_radiotap_header *radiotap_header,
  3717. int max_length,
  3718. const struct ieee80211_radiotap_vendor_namespaces *vns);
  3719. int
  3720. ieee80211_radiotap_iterator_next(struct ieee80211_radiotap_iterator *iterator);
  3721. extern const unsigned char rfc1042_header[6];
  3722. extern const unsigned char bridge_tunnel_header[6];
  3723. /**
  3724. * ieee80211_get_hdrlen_from_skb - get header length from data
  3725. *
  3726. * @skb: the frame
  3727. *
  3728. * Given an skb with a raw 802.11 header at the data pointer this function
  3729. * returns the 802.11 header length.
  3730. *
  3731. * Return: The 802.11 header length in bytes (not including encryption
  3732. * headers). Or 0 if the data in the sk_buff is too short to contain a valid
  3733. * 802.11 header.
  3734. */
  3735. unsigned int ieee80211_get_hdrlen_from_skb(const struct sk_buff *skb);
  3736. /**
  3737. * ieee80211_hdrlen - get header length in bytes from frame control
  3738. * @fc: frame control field in little-endian format
  3739. * Return: The header length in bytes.
  3740. */
  3741. unsigned int __attribute_const__ ieee80211_hdrlen(__le16 fc);
  3742. /**
  3743. * ieee80211_get_mesh_hdrlen - get mesh extension header length
  3744. * @meshhdr: the mesh extension header, only the flags field
  3745. * (first byte) will be accessed
  3746. * Return: The length of the extension header, which is always at
  3747. * least 6 bytes and at most 18 if address 5 and 6 are present.
  3748. */
  3749. unsigned int ieee80211_get_mesh_hdrlen(struct ieee80211s_hdr *meshhdr);
  3750. /**
  3751. * DOC: Data path helpers
  3752. *
  3753. * In addition to generic utilities, cfg80211 also offers
  3754. * functions that help implement the data path for devices
  3755. * that do not do the 802.11/802.3 conversion on the device.
  3756. */
  3757. /**
  3758. * ieee80211_data_to_8023_exthdr - convert an 802.11 data frame to 802.3
  3759. * @skb: the 802.11 data frame
  3760. * @ehdr: pointer to a &struct ethhdr that will get the header, instead
  3761. * of it being pushed into the SKB
  3762. * @addr: the device MAC address
  3763. * @iftype: the virtual interface type
  3764. * Return: 0 on success. Non-zero on error.
  3765. */
  3766. int ieee80211_data_to_8023_exthdr(struct sk_buff *skb, struct ethhdr *ehdr,
  3767. const u8 *addr, enum nl80211_iftype iftype);
  3768. /**
  3769. * ieee80211_data_to_8023 - convert an 802.11 data frame to 802.3
  3770. * @skb: the 802.11 data frame
  3771. * @addr: the device MAC address
  3772. * @iftype: the virtual interface type
  3773. * Return: 0 on success. Non-zero on error.
  3774. */
  3775. static inline int ieee80211_data_to_8023(struct sk_buff *skb, const u8 *addr,
  3776. enum nl80211_iftype iftype)
  3777. {
  3778. return ieee80211_data_to_8023_exthdr(skb, NULL, addr, iftype);
  3779. }
  3780. /**
  3781. * ieee80211_data_from_8023 - convert an 802.3 frame to 802.11
  3782. * @skb: the 802.3 frame
  3783. * @addr: the device MAC address
  3784. * @iftype: the virtual interface type
  3785. * @bssid: the network bssid (used only for iftype STATION and ADHOC)
  3786. * @qos: build 802.11 QoS data frame
  3787. * Return: 0 on success, or a negative error code.
  3788. */
  3789. int ieee80211_data_from_8023(struct sk_buff *skb, const u8 *addr,
  3790. enum nl80211_iftype iftype, const u8 *bssid,
  3791. bool qos);
  3792. /**
  3793. * ieee80211_amsdu_to_8023s - decode an IEEE 802.11n A-MSDU frame
  3794. *
  3795. * Decode an IEEE 802.11 A-MSDU and convert it to a list of 802.3 frames.
  3796. * The @list will be empty if the decode fails. The @skb must be fully
  3797. * header-less before being passed in here; it is freed in this function.
  3798. *
  3799. * @skb: The input A-MSDU frame without any headers.
  3800. * @list: The output list of 802.3 frames. It must be allocated and
  3801. * initialized by by the caller.
  3802. * @addr: The device MAC address.
  3803. * @iftype: The device interface type.
  3804. * @extra_headroom: The hardware extra headroom for SKBs in the @list.
  3805. * @check_da: DA to check in the inner ethernet header, or NULL
  3806. * @check_sa: SA to check in the inner ethernet header, or NULL
  3807. */
  3808. void ieee80211_amsdu_to_8023s(struct sk_buff *skb, struct sk_buff_head *list,
  3809. const u8 *addr, enum nl80211_iftype iftype,
  3810. const unsigned int extra_headroom,
  3811. const u8 *check_da, const u8 *check_sa);
  3812. /**
  3813. * cfg80211_classify8021d - determine the 802.1p/1d tag for a data frame
  3814. * @skb: the data frame
  3815. * @qos_map: Interworking QoS mapping or %NULL if not in use
  3816. * Return: The 802.1p/1d tag.
  3817. */
  3818. unsigned int cfg80211_classify8021d(struct sk_buff *skb,
  3819. struct cfg80211_qos_map *qos_map);
  3820. /**
  3821. * cfg80211_find_ie_match - match information element and byte array in data
  3822. *
  3823. * @eid: element ID
  3824. * @ies: data consisting of IEs
  3825. * @len: length of data
  3826. * @match: byte array to match
  3827. * @match_len: number of bytes in the match array
  3828. * @match_offset: offset in the IE where the byte array should match.
  3829. * If match_len is zero, this must also be set to zero.
  3830. * Otherwise this must be set to 2 or more, because the first
  3831. * byte is the element id, which is already compared to eid, and
  3832. * the second byte is the IE length.
  3833. *
  3834. * Return: %NULL if the element ID could not be found or if
  3835. * the element is invalid (claims to be longer than the given
  3836. * data) or if the byte array doesn't match, or a pointer to the first
  3837. * byte of the requested element, that is the byte containing the
  3838. * element ID.
  3839. *
  3840. * Note: There are no checks on the element length other than
  3841. * having to fit into the given data and being large enough for the
  3842. * byte array to match.
  3843. */
  3844. const u8 *cfg80211_find_ie_match(u8 eid, const u8 *ies, int len,
  3845. const u8 *match, int match_len,
  3846. int match_offset);
  3847. /**
  3848. * cfg80211_find_ie - find information element in data
  3849. *
  3850. * @eid: element ID
  3851. * @ies: data consisting of IEs
  3852. * @len: length of data
  3853. *
  3854. * Return: %NULL if the element ID could not be found or if
  3855. * the element is invalid (claims to be longer than the given
  3856. * data), or a pointer to the first byte of the requested
  3857. * element, that is the byte containing the element ID.
  3858. *
  3859. * Note: There are no checks on the element length other than
  3860. * having to fit into the given data.
  3861. */
  3862. static inline const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len)
  3863. {
  3864. return cfg80211_find_ie_match(eid, ies, len, NULL, 0, 0);
  3865. }
  3866. /**
  3867. * cfg80211_find_vendor_ie - find vendor specific information element in data
  3868. *
  3869. * @oui: vendor OUI
  3870. * @oui_type: vendor-specific OUI type (must be < 0xff), negative means any
  3871. * @ies: data consisting of IEs
  3872. * @len: length of data
  3873. *
  3874. * Return: %NULL if the vendor specific element ID could not be found or if the
  3875. * element is invalid (claims to be longer than the given data), or a pointer to
  3876. * the first byte of the requested element, that is the byte containing the
  3877. * element ID.
  3878. *
  3879. * Note: There are no checks on the element length other than having to fit into
  3880. * the given data.
  3881. */
  3882. const u8 *cfg80211_find_vendor_ie(unsigned int oui, int oui_type,
  3883. const u8 *ies, int len);
  3884. /**
  3885. * DOC: Regulatory enforcement infrastructure
  3886. *
  3887. * TODO
  3888. */
  3889. /**
  3890. * regulatory_hint - driver hint to the wireless core a regulatory domain
  3891. * @wiphy: the wireless device giving the hint (used only for reporting
  3892. * conflicts)
  3893. * @alpha2: the ISO/IEC 3166 alpha2 the driver claims its regulatory domain
  3894. * should be in. If @rd is set this should be NULL. Note that if you
  3895. * set this to NULL you should still set rd->alpha2 to some accepted
  3896. * alpha2.
  3897. *
  3898. * Wireless drivers can use this function to hint to the wireless core
  3899. * what it believes should be the current regulatory domain by
  3900. * giving it an ISO/IEC 3166 alpha2 country code it knows its regulatory
  3901. * domain should be in or by providing a completely build regulatory domain.
  3902. * If the driver provides an ISO/IEC 3166 alpha2 userspace will be queried
  3903. * for a regulatory domain structure for the respective country.
  3904. *
  3905. * The wiphy must have been registered to cfg80211 prior to this call.
  3906. * For cfg80211 drivers this means you must first use wiphy_register(),
  3907. * for mac80211 drivers you must first use ieee80211_register_hw().
  3908. *
  3909. * Drivers should check the return value, its possible you can get
  3910. * an -ENOMEM.
  3911. *
  3912. * Return: 0 on success. -ENOMEM.
  3913. */
  3914. int regulatory_hint(struct wiphy *wiphy, const char *alpha2);
  3915. /**
  3916. * regulatory_set_wiphy_regd - set regdom info for self managed drivers
  3917. * @wiphy: the wireless device we want to process the regulatory domain on
  3918. * @rd: the regulatory domain informatoin to use for this wiphy
  3919. *
  3920. * Set the regulatory domain information for self-managed wiphys, only they
  3921. * may use this function. See %REGULATORY_WIPHY_SELF_MANAGED for more
  3922. * information.
  3923. *
  3924. * Return: 0 on success. -EINVAL, -EPERM
  3925. */
  3926. int regulatory_set_wiphy_regd(struct wiphy *wiphy,
  3927. struct ieee80211_regdomain *rd);
  3928. /**
  3929. * regulatory_set_wiphy_regd_sync_rtnl - set regdom for self-managed drivers
  3930. * @wiphy: the wireless device we want to process the regulatory domain on
  3931. * @rd: the regulatory domain information to use for this wiphy
  3932. *
  3933. * This functions requires the RTNL to be held and applies the new regdomain
  3934. * synchronously to this wiphy. For more details see
  3935. * regulatory_set_wiphy_regd().
  3936. *
  3937. * Return: 0 on success. -EINVAL, -EPERM
  3938. */
  3939. int regulatory_set_wiphy_regd_sync_rtnl(struct wiphy *wiphy,
  3940. struct ieee80211_regdomain *rd);
  3941. /**
  3942. * wiphy_apply_custom_regulatory - apply a custom driver regulatory domain
  3943. * @wiphy: the wireless device we want to process the regulatory domain on
  3944. * @regd: the custom regulatory domain to use for this wiphy
  3945. *
  3946. * Drivers can sometimes have custom regulatory domains which do not apply
  3947. * to a specific country. Drivers can use this to apply such custom regulatory
  3948. * domains. This routine must be called prior to wiphy registration. The
  3949. * custom regulatory domain will be trusted completely and as such previous
  3950. * default channel settings will be disregarded. If no rule is found for a
  3951. * channel on the regulatory domain the channel will be disabled.
  3952. * Drivers using this for a wiphy should also set the wiphy flag
  3953. * REGULATORY_CUSTOM_REG or cfg80211 will set it for the wiphy
  3954. * that called this helper.
  3955. */
  3956. void wiphy_apply_custom_regulatory(struct wiphy *wiphy,
  3957. const struct ieee80211_regdomain *regd);
  3958. /**
  3959. * freq_reg_info - get regulatory information for the given frequency
  3960. * @wiphy: the wiphy for which we want to process this rule for
  3961. * @center_freq: Frequency in KHz for which we want regulatory information for
  3962. *
  3963. * Use this function to get the regulatory rule for a specific frequency on
  3964. * a given wireless device. If the device has a specific regulatory domain
  3965. * it wants to follow we respect that unless a country IE has been received
  3966. * and processed already.
  3967. *
  3968. * Return: A valid pointer, or, when an error occurs, for example if no rule
  3969. * can be found, the return value is encoded using ERR_PTR(). Use IS_ERR() to
  3970. * check and PTR_ERR() to obtain the numeric return value. The numeric return
  3971. * value will be -ERANGE if we determine the given center_freq does not even
  3972. * have a regulatory rule for a frequency range in the center_freq's band.
  3973. * See freq_in_rule_band() for our current definition of a band -- this is
  3974. * purely subjective and right now it's 802.11 specific.
  3975. */
  3976. const struct ieee80211_reg_rule *freq_reg_info(struct wiphy *wiphy,
  3977. u32 center_freq);
  3978. /**
  3979. * reg_initiator_name - map regulatory request initiator enum to name
  3980. * @initiator: the regulatory request initiator
  3981. *
  3982. * You can use this to map the regulatory request initiator enum to a
  3983. * proper string representation.
  3984. */
  3985. const char *reg_initiator_name(enum nl80211_reg_initiator initiator);
  3986. /*
  3987. * callbacks for asynchronous cfg80211 methods, notification
  3988. * functions and BSS handling helpers
  3989. */
  3990. /**
  3991. * cfg80211_scan_done - notify that scan finished
  3992. *
  3993. * @request: the corresponding scan request
  3994. * @info: information about the completed scan
  3995. */
  3996. void cfg80211_scan_done(struct cfg80211_scan_request *request,
  3997. struct cfg80211_scan_info *info);
  3998. /**
  3999. * cfg80211_sched_scan_results - notify that new scan results are available
  4000. *
  4001. * @wiphy: the wiphy which got scheduled scan results
  4002. */
  4003. void cfg80211_sched_scan_results(struct wiphy *wiphy);
  4004. /**
  4005. * cfg80211_sched_scan_stopped - notify that the scheduled scan has stopped
  4006. *
  4007. * @wiphy: the wiphy on which the scheduled scan stopped
  4008. *
  4009. * The driver can call this function to inform cfg80211 that the
  4010. * scheduled scan had to be stopped, for whatever reason. The driver
  4011. * is then called back via the sched_scan_stop operation when done.
  4012. */
  4013. void cfg80211_sched_scan_stopped(struct wiphy *wiphy);
  4014. /**
  4015. * cfg80211_sched_scan_stopped_rtnl - notify that the scheduled scan has stopped
  4016. *
  4017. * @wiphy: the wiphy on which the scheduled scan stopped
  4018. *
  4019. * The driver can call this function to inform cfg80211 that the
  4020. * scheduled scan had to be stopped, for whatever reason. The driver
  4021. * is then called back via the sched_scan_stop operation when done.
  4022. * This function should be called with rtnl locked.
  4023. */
  4024. void cfg80211_sched_scan_stopped_rtnl(struct wiphy *wiphy);
  4025. /**
  4026. * cfg80211_inform_bss_frame_data - inform cfg80211 of a received BSS frame
  4027. * @wiphy: the wiphy reporting the BSS
  4028. * @data: the BSS metadata
  4029. * @mgmt: the management frame (probe response or beacon)
  4030. * @len: length of the management frame
  4031. * @gfp: context flags
  4032. *
  4033. * This informs cfg80211 that BSS information was found and
  4034. * the BSS should be updated/added.
  4035. *
  4036. * Return: A referenced struct, must be released with cfg80211_put_bss()!
  4037. * Or %NULL on error.
  4038. */
  4039. struct cfg80211_bss * __must_check
  4040. cfg80211_inform_bss_frame_data(struct wiphy *wiphy,
  4041. struct cfg80211_inform_bss *data,
  4042. struct ieee80211_mgmt *mgmt, size_t len,
  4043. gfp_t gfp);
  4044. static inline struct cfg80211_bss * __must_check
  4045. cfg80211_inform_bss_width_frame(struct wiphy *wiphy,
  4046. struct ieee80211_channel *rx_channel,
  4047. enum nl80211_bss_scan_width scan_width,
  4048. struct ieee80211_mgmt *mgmt, size_t len,
  4049. s32 signal, gfp_t gfp)
  4050. {
  4051. struct cfg80211_inform_bss data = {
  4052. .chan = rx_channel,
  4053. .scan_width = scan_width,
  4054. .signal = signal,
  4055. };
  4056. return cfg80211_inform_bss_frame_data(wiphy, &data, mgmt, len, gfp);
  4057. }
  4058. static inline struct cfg80211_bss * __must_check
  4059. cfg80211_inform_bss_frame(struct wiphy *wiphy,
  4060. struct ieee80211_channel *rx_channel,
  4061. struct ieee80211_mgmt *mgmt, size_t len,
  4062. s32 signal, gfp_t gfp)
  4063. {
  4064. struct cfg80211_inform_bss data = {
  4065. .chan = rx_channel,
  4066. .scan_width = NL80211_BSS_CHAN_WIDTH_20,
  4067. .signal = signal,
  4068. };
  4069. return cfg80211_inform_bss_frame_data(wiphy, &data, mgmt, len, gfp);
  4070. }
  4071. /**
  4072. * enum cfg80211_bss_frame_type - frame type that the BSS data came from
  4073. * @CFG80211_BSS_FTYPE_UNKNOWN: driver doesn't know whether the data is
  4074. * from a beacon or probe response
  4075. * @CFG80211_BSS_FTYPE_BEACON: data comes from a beacon
  4076. * @CFG80211_BSS_FTYPE_PRESP: data comes from a probe response
  4077. */
  4078. enum cfg80211_bss_frame_type {
  4079. CFG80211_BSS_FTYPE_UNKNOWN,
  4080. CFG80211_BSS_FTYPE_BEACON,
  4081. CFG80211_BSS_FTYPE_PRESP,
  4082. };
  4083. /**
  4084. * cfg80211_inform_bss_data - inform cfg80211 of a new BSS
  4085. *
  4086. * @wiphy: the wiphy reporting the BSS
  4087. * @data: the BSS metadata
  4088. * @ftype: frame type (if known)
  4089. * @bssid: the BSSID of the BSS
  4090. * @tsf: the TSF sent by the peer in the beacon/probe response (or 0)
  4091. * @capability: the capability field sent by the peer
  4092. * @beacon_interval: the beacon interval announced by the peer
  4093. * @ie: additional IEs sent by the peer
  4094. * @ielen: length of the additional IEs
  4095. * @gfp: context flags
  4096. *
  4097. * This informs cfg80211 that BSS information was found and
  4098. * the BSS should be updated/added.
  4099. *
  4100. * Return: A referenced struct, must be released with cfg80211_put_bss()!
  4101. * Or %NULL on error.
  4102. */
  4103. struct cfg80211_bss * __must_check
  4104. cfg80211_inform_bss_data(struct wiphy *wiphy,
  4105. struct cfg80211_inform_bss *data,
  4106. enum cfg80211_bss_frame_type ftype,
  4107. const u8 *bssid, u64 tsf, u16 capability,
  4108. u16 beacon_interval, const u8 *ie, size_t ielen,
  4109. gfp_t gfp);
  4110. static inline struct cfg80211_bss * __must_check
  4111. cfg80211_inform_bss_width(struct wiphy *wiphy,
  4112. struct ieee80211_channel *rx_channel,
  4113. enum nl80211_bss_scan_width scan_width,
  4114. enum cfg80211_bss_frame_type ftype,
  4115. const u8 *bssid, u64 tsf, u16 capability,
  4116. u16 beacon_interval, const u8 *ie, size_t ielen,
  4117. s32 signal, gfp_t gfp)
  4118. {
  4119. struct cfg80211_inform_bss data = {
  4120. .chan = rx_channel,
  4121. .scan_width = scan_width,
  4122. .signal = signal,
  4123. };
  4124. return cfg80211_inform_bss_data(wiphy, &data, ftype, bssid, tsf,
  4125. capability, beacon_interval, ie, ielen,
  4126. gfp);
  4127. }
  4128. static inline struct cfg80211_bss * __must_check
  4129. cfg80211_inform_bss(struct wiphy *wiphy,
  4130. struct ieee80211_channel *rx_channel,
  4131. enum cfg80211_bss_frame_type ftype,
  4132. const u8 *bssid, u64 tsf, u16 capability,
  4133. u16 beacon_interval, const u8 *ie, size_t ielen,
  4134. s32 signal, gfp_t gfp)
  4135. {
  4136. struct cfg80211_inform_bss data = {
  4137. .chan = rx_channel,
  4138. .scan_width = NL80211_BSS_CHAN_WIDTH_20,
  4139. .signal = signal,
  4140. };
  4141. return cfg80211_inform_bss_data(wiphy, &data, ftype, bssid, tsf,
  4142. capability, beacon_interval, ie, ielen,
  4143. gfp);
  4144. }
  4145. struct cfg80211_bss *cfg80211_get_bss(struct wiphy *wiphy,
  4146. struct ieee80211_channel *channel,
  4147. const u8 *bssid,
  4148. const u8 *ssid, size_t ssid_len,
  4149. enum ieee80211_bss_type bss_type,
  4150. enum ieee80211_privacy);
  4151. static inline struct cfg80211_bss *
  4152. cfg80211_get_ibss(struct wiphy *wiphy,
  4153. struct ieee80211_channel *channel,
  4154. const u8 *ssid, size_t ssid_len)
  4155. {
  4156. return cfg80211_get_bss(wiphy, channel, NULL, ssid, ssid_len,
  4157. IEEE80211_BSS_TYPE_IBSS,
  4158. IEEE80211_PRIVACY_ANY);
  4159. }
  4160. /**
  4161. * cfg80211_ref_bss - reference BSS struct
  4162. * @wiphy: the wiphy this BSS struct belongs to
  4163. * @bss: the BSS struct to reference
  4164. *
  4165. * Increments the refcount of the given BSS struct.
  4166. */
  4167. void cfg80211_ref_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
  4168. /**
  4169. * cfg80211_put_bss - unref BSS struct
  4170. * @wiphy: the wiphy this BSS struct belongs to
  4171. * @bss: the BSS struct
  4172. *
  4173. * Decrements the refcount of the given BSS struct.
  4174. */
  4175. void cfg80211_put_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
  4176. /**
  4177. * cfg80211_unlink_bss - unlink BSS from internal data structures
  4178. * @wiphy: the wiphy
  4179. * @bss: the bss to remove
  4180. *
  4181. * This function removes the given BSS from the internal data structures
  4182. * thereby making it no longer show up in scan results etc. Use this
  4183. * function when you detect a BSS is gone. Normally BSSes will also time
  4184. * out, so it is not necessary to use this function at all.
  4185. */
  4186. void cfg80211_unlink_bss(struct wiphy *wiphy, struct cfg80211_bss *bss);
  4187. static inline enum nl80211_bss_scan_width
  4188. cfg80211_chandef_to_scan_width(const struct cfg80211_chan_def *chandef)
  4189. {
  4190. switch (chandef->width) {
  4191. case NL80211_CHAN_WIDTH_5:
  4192. return NL80211_BSS_CHAN_WIDTH_5;
  4193. case NL80211_CHAN_WIDTH_10:
  4194. return NL80211_BSS_CHAN_WIDTH_10;
  4195. default:
  4196. return NL80211_BSS_CHAN_WIDTH_20;
  4197. }
  4198. }
  4199. /**
  4200. * cfg80211_rx_mlme_mgmt - notification of processed MLME management frame
  4201. * @dev: network device
  4202. * @buf: authentication frame (header + body)
  4203. * @len: length of the frame data
  4204. *
  4205. * This function is called whenever an authentication, disassociation or
  4206. * deauthentication frame has been received and processed in station mode.
  4207. * After being asked to authenticate via cfg80211_ops::auth() the driver must
  4208. * call either this function or cfg80211_auth_timeout().
  4209. * After being asked to associate via cfg80211_ops::assoc() the driver must
  4210. * call either this function or cfg80211_auth_timeout().
  4211. * While connected, the driver must calls this for received and processed
  4212. * disassociation and deauthentication frames. If the frame couldn't be used
  4213. * because it was unprotected, the driver must call the function
  4214. * cfg80211_rx_unprot_mlme_mgmt() instead.
  4215. *
  4216. * This function may sleep. The caller must hold the corresponding wdev's mutex.
  4217. */
  4218. void cfg80211_rx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len);
  4219. /**
  4220. * cfg80211_auth_timeout - notification of timed out authentication
  4221. * @dev: network device
  4222. * @addr: The MAC address of the device with which the authentication timed out
  4223. *
  4224. * This function may sleep. The caller must hold the corresponding wdev's
  4225. * mutex.
  4226. */
  4227. void cfg80211_auth_timeout(struct net_device *dev, const u8 *addr);
  4228. /**
  4229. * cfg80211_rx_assoc_resp - notification of processed association response
  4230. * @dev: network device
  4231. * @bss: the BSS that association was requested with, ownership of the pointer
  4232. * moves to cfg80211 in this call
  4233. * @buf: authentication frame (header + body)
  4234. * @len: length of the frame data
  4235. * @uapsd_queues: bitmap of ACs configured to uapsd. -1 if n/a.
  4236. *
  4237. * After being asked to associate via cfg80211_ops::assoc() the driver must
  4238. * call either this function or cfg80211_auth_timeout().
  4239. *
  4240. * This function may sleep. The caller must hold the corresponding wdev's mutex.
  4241. */
  4242. void cfg80211_rx_assoc_resp(struct net_device *dev,
  4243. struct cfg80211_bss *bss,
  4244. const u8 *buf, size_t len,
  4245. int uapsd_queues);
  4246. /**
  4247. * cfg80211_assoc_timeout - notification of timed out association
  4248. * @dev: network device
  4249. * @bss: The BSS entry with which association timed out.
  4250. *
  4251. * This function may sleep. The caller must hold the corresponding wdev's mutex.
  4252. */
  4253. void cfg80211_assoc_timeout(struct net_device *dev, struct cfg80211_bss *bss);
  4254. /**
  4255. * cfg80211_abandon_assoc - notify cfg80211 of abandoned association attempt
  4256. * @dev: network device
  4257. * @bss: The BSS entry with which association was abandoned.
  4258. *
  4259. * Call this whenever - for reasons reported through other API, like deauth RX,
  4260. * an association attempt was abandoned.
  4261. * This function may sleep. The caller must hold the corresponding wdev's mutex.
  4262. */
  4263. void cfg80211_abandon_assoc(struct net_device *dev, struct cfg80211_bss *bss);
  4264. /**
  4265. * cfg80211_tx_mlme_mgmt - notification of transmitted deauth/disassoc frame
  4266. * @dev: network device
  4267. * @buf: 802.11 frame (header + body)
  4268. * @len: length of the frame data
  4269. *
  4270. * This function is called whenever deauthentication has been processed in
  4271. * station mode. This includes both received deauthentication frames and
  4272. * locally generated ones. This function may sleep. The caller must hold the
  4273. * corresponding wdev's mutex.
  4274. */
  4275. void cfg80211_tx_mlme_mgmt(struct net_device *dev, const u8 *buf, size_t len);
  4276. /**
  4277. * cfg80211_rx_unprot_mlme_mgmt - notification of unprotected mlme mgmt frame
  4278. * @dev: network device
  4279. * @buf: deauthentication frame (header + body)
  4280. * @len: length of the frame data
  4281. *
  4282. * This function is called whenever a received deauthentication or dissassoc
  4283. * frame has been dropped in station mode because of MFP being used but the
  4284. * frame was not protected. This function may sleep.
  4285. */
  4286. void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev,
  4287. const u8 *buf, size_t len);
  4288. /**
  4289. * cfg80211_michael_mic_failure - notification of Michael MIC failure (TKIP)
  4290. * @dev: network device
  4291. * @addr: The source MAC address of the frame
  4292. * @key_type: The key type that the received frame used
  4293. * @key_id: Key identifier (0..3). Can be -1 if missing.
  4294. * @tsc: The TSC value of the frame that generated the MIC failure (6 octets)
  4295. * @gfp: allocation flags
  4296. *
  4297. * This function is called whenever the local MAC detects a MIC failure in a
  4298. * received frame. This matches with MLME-MICHAELMICFAILURE.indication()
  4299. * primitive.
  4300. */
  4301. void cfg80211_michael_mic_failure(struct net_device *dev, const u8 *addr,
  4302. enum nl80211_key_type key_type, int key_id,
  4303. const u8 *tsc, gfp_t gfp);
  4304. /**
  4305. * cfg80211_ibss_joined - notify cfg80211 that device joined an IBSS
  4306. *
  4307. * @dev: network device
  4308. * @bssid: the BSSID of the IBSS joined
  4309. * @channel: the channel of the IBSS joined
  4310. * @gfp: allocation flags
  4311. *
  4312. * This function notifies cfg80211 that the device joined an IBSS or
  4313. * switched to a different BSSID. Before this function can be called,
  4314. * either a beacon has to have been received from the IBSS, or one of
  4315. * the cfg80211_inform_bss{,_frame} functions must have been called
  4316. * with the locally generated beacon -- this guarantees that there is
  4317. * always a scan result for this IBSS. cfg80211 will handle the rest.
  4318. */
  4319. void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid,
  4320. struct ieee80211_channel *channel, gfp_t gfp);
  4321. /**
  4322. * cfg80211_notify_new_candidate - notify cfg80211 of a new mesh peer candidate
  4323. *
  4324. * @dev: network device
  4325. * @macaddr: the MAC address of the new candidate
  4326. * @ie: information elements advertised by the peer candidate
  4327. * @ie_len: lenght of the information elements buffer
  4328. * @gfp: allocation flags
  4329. *
  4330. * This function notifies cfg80211 that the mesh peer candidate has been
  4331. * detected, most likely via a beacon or, less likely, via a probe response.
  4332. * cfg80211 then sends a notification to userspace.
  4333. */
  4334. void cfg80211_notify_new_peer_candidate(struct net_device *dev,
  4335. const u8 *macaddr, const u8 *ie, u8 ie_len, gfp_t gfp);
  4336. /**
  4337. * DOC: RFkill integration
  4338. *
  4339. * RFkill integration in cfg80211 is almost invisible to drivers,
  4340. * as cfg80211 automatically registers an rfkill instance for each
  4341. * wireless device it knows about. Soft kill is also translated
  4342. * into disconnecting and turning all interfaces off, drivers are
  4343. * expected to turn off the device when all interfaces are down.
  4344. *
  4345. * However, devices may have a hard RFkill line, in which case they
  4346. * also need to interact with the rfkill subsystem, via cfg80211.
  4347. * They can do this with a few helper functions documented here.
  4348. */
  4349. /**
  4350. * wiphy_rfkill_set_hw_state - notify cfg80211 about hw block state
  4351. * @wiphy: the wiphy
  4352. * @blocked: block status
  4353. */
  4354. void wiphy_rfkill_set_hw_state(struct wiphy *wiphy, bool blocked);
  4355. /**
  4356. * wiphy_rfkill_start_polling - start polling rfkill
  4357. * @wiphy: the wiphy
  4358. */
  4359. void wiphy_rfkill_start_polling(struct wiphy *wiphy);
  4360. /**
  4361. * wiphy_rfkill_stop_polling - stop polling rfkill
  4362. * @wiphy: the wiphy
  4363. */
  4364. void wiphy_rfkill_stop_polling(struct wiphy *wiphy);
  4365. /**
  4366. * DOC: Vendor commands
  4367. *
  4368. * Occasionally, there are special protocol or firmware features that
  4369. * can't be implemented very openly. For this and similar cases, the
  4370. * vendor command functionality allows implementing the features with
  4371. * (typically closed-source) userspace and firmware, using nl80211 as
  4372. * the configuration mechanism.
  4373. *
  4374. * A driver supporting vendor commands must register them as an array
  4375. * in struct wiphy, with handlers for each one, each command has an
  4376. * OUI and sub command ID to identify it.
  4377. *
  4378. * Note that this feature should not be (ab)used to implement protocol
  4379. * features that could openly be shared across drivers. In particular,
  4380. * it must never be required to use vendor commands to implement any
  4381. * "normal" functionality that higher-level userspace like connection
  4382. * managers etc. need.
  4383. */
  4384. struct sk_buff *__cfg80211_alloc_reply_skb(struct wiphy *wiphy,
  4385. enum nl80211_commands cmd,
  4386. enum nl80211_attrs attr,
  4387. int approxlen);
  4388. struct sk_buff *__cfg80211_alloc_event_skb(struct wiphy *wiphy,
  4389. struct wireless_dev *wdev,
  4390. enum nl80211_commands cmd,
  4391. enum nl80211_attrs attr,
  4392. int vendor_event_idx,
  4393. int approxlen, gfp_t gfp);
  4394. void __cfg80211_send_event_skb(struct sk_buff *skb, gfp_t gfp);
  4395. /**
  4396. * cfg80211_vendor_cmd_alloc_reply_skb - allocate vendor command reply
  4397. * @wiphy: the wiphy
  4398. * @approxlen: an upper bound of the length of the data that will
  4399. * be put into the skb
  4400. *
  4401. * This function allocates and pre-fills an skb for a reply to
  4402. * a vendor command. Since it is intended for a reply, calling
  4403. * it outside of a vendor command's doit() operation is invalid.
  4404. *
  4405. * The returned skb is pre-filled with some identifying data in
  4406. * a way that any data that is put into the skb (with skb_put(),
  4407. * nla_put() or similar) will end up being within the
  4408. * %NL80211_ATTR_VENDOR_DATA attribute, so all that needs to be done
  4409. * with the skb is adding data for the corresponding userspace tool
  4410. * which can then read that data out of the vendor data attribute.
  4411. * You must not modify the skb in any other way.
  4412. *
  4413. * When done, call cfg80211_vendor_cmd_reply() with the skb and return
  4414. * its error code as the result of the doit() operation.
  4415. *
  4416. * Return: An allocated and pre-filled skb. %NULL if any errors happen.
  4417. */
  4418. static inline struct sk_buff *
  4419. cfg80211_vendor_cmd_alloc_reply_skb(struct wiphy *wiphy, int approxlen)
  4420. {
  4421. return __cfg80211_alloc_reply_skb(wiphy, NL80211_CMD_VENDOR,
  4422. NL80211_ATTR_VENDOR_DATA, approxlen);
  4423. }
  4424. /**
  4425. * cfg80211_vendor_cmd_reply - send the reply skb
  4426. * @skb: The skb, must have been allocated with
  4427. * cfg80211_vendor_cmd_alloc_reply_skb()
  4428. *
  4429. * Since calling this function will usually be the last thing
  4430. * before returning from the vendor command doit() you should
  4431. * return the error code. Note that this function consumes the
  4432. * skb regardless of the return value.
  4433. *
  4434. * Return: An error code or 0 on success.
  4435. */
  4436. int cfg80211_vendor_cmd_reply(struct sk_buff *skb);
  4437. /**
  4438. * cfg80211_vendor_event_alloc - allocate vendor-specific event skb
  4439. * @wiphy: the wiphy
  4440. * @wdev: the wireless device
  4441. * @event_idx: index of the vendor event in the wiphy's vendor_events
  4442. * @approxlen: an upper bound of the length of the data that will
  4443. * be put into the skb
  4444. * @gfp: allocation flags
  4445. *
  4446. * This function allocates and pre-fills an skb for an event on the
  4447. * vendor-specific multicast group.
  4448. *
  4449. * If wdev != NULL, both the ifindex and identifier of the specified
  4450. * wireless device are added to the event message before the vendor data
  4451. * attribute.
  4452. *
  4453. * When done filling the skb, call cfg80211_vendor_event() with the
  4454. * skb to send the event.
  4455. *
  4456. * Return: An allocated and pre-filled skb. %NULL if any errors happen.
  4457. */
  4458. static inline struct sk_buff *
  4459. cfg80211_vendor_event_alloc(struct wiphy *wiphy, struct wireless_dev *wdev,
  4460. int approxlen, int event_idx, gfp_t gfp)
  4461. {
  4462. return __cfg80211_alloc_event_skb(wiphy, wdev, NL80211_CMD_VENDOR,
  4463. NL80211_ATTR_VENDOR_DATA,
  4464. event_idx, approxlen, gfp);
  4465. }
  4466. /**
  4467. * cfg80211_vendor_event - send the event
  4468. * @skb: The skb, must have been allocated with cfg80211_vendor_event_alloc()
  4469. * @gfp: allocation flags
  4470. *
  4471. * This function sends the given @skb, which must have been allocated
  4472. * by cfg80211_vendor_event_alloc(), as an event. It always consumes it.
  4473. */
  4474. static inline void cfg80211_vendor_event(struct sk_buff *skb, gfp_t gfp)
  4475. {
  4476. __cfg80211_send_event_skb(skb, gfp);
  4477. }
  4478. #ifdef CONFIG_NL80211_TESTMODE
  4479. /**
  4480. * DOC: Test mode
  4481. *
  4482. * Test mode is a set of utility functions to allow drivers to
  4483. * interact with driver-specific tools to aid, for instance,
  4484. * factory programming.
  4485. *
  4486. * This chapter describes how drivers interact with it, for more
  4487. * information see the nl80211 book's chapter on it.
  4488. */
  4489. /**
  4490. * cfg80211_testmode_alloc_reply_skb - allocate testmode reply
  4491. * @wiphy: the wiphy
  4492. * @approxlen: an upper bound of the length of the data that will
  4493. * be put into the skb
  4494. *
  4495. * This function allocates and pre-fills an skb for a reply to
  4496. * the testmode command. Since it is intended for a reply, calling
  4497. * it outside of the @testmode_cmd operation is invalid.
  4498. *
  4499. * The returned skb is pre-filled with the wiphy index and set up in
  4500. * a way that any data that is put into the skb (with skb_put(),
  4501. * nla_put() or similar) will end up being within the
  4502. * %NL80211_ATTR_TESTDATA attribute, so all that needs to be done
  4503. * with the skb is adding data for the corresponding userspace tool
  4504. * which can then read that data out of the testdata attribute. You
  4505. * must not modify the skb in any other way.
  4506. *
  4507. * When done, call cfg80211_testmode_reply() with the skb and return
  4508. * its error code as the result of the @testmode_cmd operation.
  4509. *
  4510. * Return: An allocated and pre-filled skb. %NULL if any errors happen.
  4511. */
  4512. static inline struct sk_buff *
  4513. cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy, int approxlen)
  4514. {
  4515. return __cfg80211_alloc_reply_skb(wiphy, NL80211_CMD_TESTMODE,
  4516. NL80211_ATTR_TESTDATA, approxlen);
  4517. }
  4518. /**
  4519. * cfg80211_testmode_reply - send the reply skb
  4520. * @skb: The skb, must have been allocated with
  4521. * cfg80211_testmode_alloc_reply_skb()
  4522. *
  4523. * Since calling this function will usually be the last thing
  4524. * before returning from the @testmode_cmd you should return
  4525. * the error code. Note that this function consumes the skb
  4526. * regardless of the return value.
  4527. *
  4528. * Return: An error code or 0 on success.
  4529. */
  4530. static inline int cfg80211_testmode_reply(struct sk_buff *skb)
  4531. {
  4532. return cfg80211_vendor_cmd_reply(skb);
  4533. }
  4534. /**
  4535. * cfg80211_testmode_alloc_event_skb - allocate testmode event
  4536. * @wiphy: the wiphy
  4537. * @approxlen: an upper bound of the length of the data that will
  4538. * be put into the skb
  4539. * @gfp: allocation flags
  4540. *
  4541. * This function allocates and pre-fills an skb for an event on the
  4542. * testmode multicast group.
  4543. *
  4544. * The returned skb is set up in the same way as with
  4545. * cfg80211_testmode_alloc_reply_skb() but prepared for an event. As
  4546. * there, you should simply add data to it that will then end up in the
  4547. * %NL80211_ATTR_TESTDATA attribute. Again, you must not modify the skb
  4548. * in any other way.
  4549. *
  4550. * When done filling the skb, call cfg80211_testmode_event() with the
  4551. * skb to send the event.
  4552. *
  4553. * Return: An allocated and pre-filled skb. %NULL if any errors happen.
  4554. */
  4555. static inline struct sk_buff *
  4556. cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy, int approxlen, gfp_t gfp)
  4557. {
  4558. return __cfg80211_alloc_event_skb(wiphy, NULL, NL80211_CMD_TESTMODE,
  4559. NL80211_ATTR_TESTDATA, -1,
  4560. approxlen, gfp);
  4561. }
  4562. /**
  4563. * cfg80211_testmode_event - send the event
  4564. * @skb: The skb, must have been allocated with
  4565. * cfg80211_testmode_alloc_event_skb()
  4566. * @gfp: allocation flags
  4567. *
  4568. * This function sends the given @skb, which must have been allocated
  4569. * by cfg80211_testmode_alloc_event_skb(), as an event. It always
  4570. * consumes it.
  4571. */
  4572. static inline void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
  4573. {
  4574. __cfg80211_send_event_skb(skb, gfp);
  4575. }
  4576. #define CFG80211_TESTMODE_CMD(cmd) .testmode_cmd = (cmd),
  4577. #define CFG80211_TESTMODE_DUMP(cmd) .testmode_dump = (cmd),
  4578. #else
  4579. #define CFG80211_TESTMODE_CMD(cmd)
  4580. #define CFG80211_TESTMODE_DUMP(cmd)
  4581. #endif
  4582. /**
  4583. * cfg80211_connect_bss - notify cfg80211 of connection result
  4584. *
  4585. * @dev: network device
  4586. * @bssid: the BSSID of the AP
  4587. * @bss: entry of bss to which STA got connected to, can be obtained
  4588. * through cfg80211_get_bss (may be %NULL)
  4589. * @req_ie: association request IEs (maybe be %NULL)
  4590. * @req_ie_len: association request IEs length
  4591. * @resp_ie: association response IEs (may be %NULL)
  4592. * @resp_ie_len: assoc response IEs length
  4593. * @status: status code, 0 for successful connection, use
  4594. * %WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
  4595. * the real status code for failures.
  4596. * @gfp: allocation flags
  4597. *
  4598. * It should be called by the underlying driver whenever connect() has
  4599. * succeeded. This is similar to cfg80211_connect_result(), but with the
  4600. * option of identifying the exact bss entry for the connection. Only one of
  4601. * these functions should be called.
  4602. */
  4603. void cfg80211_connect_bss(struct net_device *dev, const u8 *bssid,
  4604. struct cfg80211_bss *bss, const u8 *req_ie,
  4605. size_t req_ie_len, const u8 *resp_ie,
  4606. size_t resp_ie_len, int status, gfp_t gfp);
  4607. /**
  4608. * cfg80211_connect_result - notify cfg80211 of connection result
  4609. *
  4610. * @dev: network device
  4611. * @bssid: the BSSID of the AP
  4612. * @req_ie: association request IEs (maybe be %NULL)
  4613. * @req_ie_len: association request IEs length
  4614. * @resp_ie: association response IEs (may be %NULL)
  4615. * @resp_ie_len: assoc response IEs length
  4616. * @status: status code, 0 for successful connection, use
  4617. * %WLAN_STATUS_UNSPECIFIED_FAILURE if your device cannot give you
  4618. * the real status code for failures.
  4619. * @gfp: allocation flags
  4620. *
  4621. * It should be called by the underlying driver whenever connect() has
  4622. * succeeded.
  4623. */
  4624. static inline void
  4625. cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
  4626. const u8 *req_ie, size_t req_ie_len,
  4627. const u8 *resp_ie, size_t resp_ie_len,
  4628. u16 status, gfp_t gfp)
  4629. {
  4630. cfg80211_connect_bss(dev, bssid, NULL, req_ie, req_ie_len, resp_ie,
  4631. resp_ie_len, status, gfp);
  4632. }
  4633. /**
  4634. * cfg80211_connect_timeout - notify cfg80211 of connection timeout
  4635. *
  4636. * @dev: network device
  4637. * @bssid: the BSSID of the AP
  4638. * @req_ie: association request IEs (maybe be %NULL)
  4639. * @req_ie_len: association request IEs length
  4640. * @gfp: allocation flags
  4641. *
  4642. * It should be called by the underlying driver whenever connect() has failed
  4643. * in a sequence where no explicit authentication/association rejection was
  4644. * received from the AP. This could happen, e.g., due to not being able to send
  4645. * out the Authentication or Association Request frame or timing out while
  4646. * waiting for the response.
  4647. */
  4648. static inline void
  4649. cfg80211_connect_timeout(struct net_device *dev, const u8 *bssid,
  4650. const u8 *req_ie, size_t req_ie_len, gfp_t gfp)
  4651. {
  4652. cfg80211_connect_bss(dev, bssid, NULL, req_ie, req_ie_len, NULL, 0, -1,
  4653. gfp);
  4654. }
  4655. /**
  4656. * cfg80211_roamed - notify cfg80211 of roaming
  4657. *
  4658. * @dev: network device
  4659. * @channel: the channel of the new AP
  4660. * @bssid: the BSSID of the new AP
  4661. * @req_ie: association request IEs (maybe be %NULL)
  4662. * @req_ie_len: association request IEs length
  4663. * @resp_ie: association response IEs (may be %NULL)
  4664. * @resp_ie_len: assoc response IEs length
  4665. * @gfp: allocation flags
  4666. *
  4667. * It should be called by the underlying driver whenever it roamed
  4668. * from one AP to another while connected.
  4669. */
  4670. void cfg80211_roamed(struct net_device *dev,
  4671. struct ieee80211_channel *channel,
  4672. const u8 *bssid,
  4673. const u8 *req_ie, size_t req_ie_len,
  4674. const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
  4675. /**
  4676. * cfg80211_roamed_bss - notify cfg80211 of roaming
  4677. *
  4678. * @dev: network device
  4679. * @bss: entry of bss to which STA got roamed
  4680. * @req_ie: association request IEs (maybe be %NULL)
  4681. * @req_ie_len: association request IEs length
  4682. * @resp_ie: association response IEs (may be %NULL)
  4683. * @resp_ie_len: assoc response IEs length
  4684. * @gfp: allocation flags
  4685. *
  4686. * This is just a wrapper to notify cfg80211 of roaming event with driver
  4687. * passing bss to avoid a race in timeout of the bss entry. It should be
  4688. * called by the underlying driver whenever it roamed from one AP to another
  4689. * while connected. Drivers which have roaming implemented in firmware
  4690. * may use this function to avoid a race in bss entry timeout where the bss
  4691. * entry of the new AP is seen in the driver, but gets timed out by the time
  4692. * it is accessed in __cfg80211_roamed() due to delay in scheduling
  4693. * rdev->event_work. In case of any failures, the reference is released
  4694. * either in cfg80211_roamed_bss() or in __cfg80211_romed(), Otherwise,
  4695. * it will be released while diconneting from the current bss.
  4696. */
  4697. void cfg80211_roamed_bss(struct net_device *dev, struct cfg80211_bss *bss,
  4698. const u8 *req_ie, size_t req_ie_len,
  4699. const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp);
  4700. /**
  4701. * cfg80211_disconnected - notify cfg80211 that connection was dropped
  4702. *
  4703. * @dev: network device
  4704. * @ie: information elements of the deauth/disassoc frame (may be %NULL)
  4705. * @ie_len: length of IEs
  4706. * @reason: reason code for the disconnection, set it to 0 if unknown
  4707. * @locally_generated: disconnection was requested locally
  4708. * @gfp: allocation flags
  4709. *
  4710. * After it calls this function, the driver should enter an idle state
  4711. * and not try to connect to any AP any more.
  4712. */
  4713. void cfg80211_disconnected(struct net_device *dev, u16 reason,
  4714. const u8 *ie, size_t ie_len,
  4715. bool locally_generated, gfp_t gfp);
  4716. /**
  4717. * cfg80211_ready_on_channel - notification of remain_on_channel start
  4718. * @wdev: wireless device
  4719. * @cookie: the request cookie
  4720. * @chan: The current channel (from remain_on_channel request)
  4721. * @duration: Duration in milliseconds that the driver intents to remain on the
  4722. * channel
  4723. * @gfp: allocation flags
  4724. */
  4725. void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
  4726. struct ieee80211_channel *chan,
  4727. unsigned int duration, gfp_t gfp);
  4728. /**
  4729. * cfg80211_remain_on_channel_expired - remain_on_channel duration expired
  4730. * @wdev: wireless device
  4731. * @cookie: the request cookie
  4732. * @chan: The current channel (from remain_on_channel request)
  4733. * @gfp: allocation flags
  4734. */
  4735. void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
  4736. struct ieee80211_channel *chan,
  4737. gfp_t gfp);
  4738. /**
  4739. * cfg80211_new_sta - notify userspace about station
  4740. *
  4741. * @dev: the netdev
  4742. * @mac_addr: the station's address
  4743. * @sinfo: the station information
  4744. * @gfp: allocation flags
  4745. */
  4746. void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
  4747. struct station_info *sinfo, gfp_t gfp);
  4748. /**
  4749. * cfg80211_del_sta_sinfo - notify userspace about deletion of a station
  4750. * @dev: the netdev
  4751. * @mac_addr: the station's address
  4752. * @sinfo: the station information/statistics
  4753. * @gfp: allocation flags
  4754. */
  4755. void cfg80211_del_sta_sinfo(struct net_device *dev, const u8 *mac_addr,
  4756. struct station_info *sinfo, gfp_t gfp);
  4757. /**
  4758. * cfg80211_del_sta - notify userspace about deletion of a station
  4759. *
  4760. * @dev: the netdev
  4761. * @mac_addr: the station's address
  4762. * @gfp: allocation flags
  4763. */
  4764. static inline void cfg80211_del_sta(struct net_device *dev,
  4765. const u8 *mac_addr, gfp_t gfp)
  4766. {
  4767. cfg80211_del_sta_sinfo(dev, mac_addr, NULL, gfp);
  4768. }
  4769. /**
  4770. * cfg80211_conn_failed - connection request failed notification
  4771. *
  4772. * @dev: the netdev
  4773. * @mac_addr: the station's address
  4774. * @reason: the reason for connection failure
  4775. * @gfp: allocation flags
  4776. *
  4777. * Whenever a station tries to connect to an AP and if the station
  4778. * could not connect to the AP as the AP has rejected the connection
  4779. * for some reasons, this function is called.
  4780. *
  4781. * The reason for connection failure can be any of the value from
  4782. * nl80211_connect_failed_reason enum
  4783. */
  4784. void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
  4785. enum nl80211_connect_failed_reason reason,
  4786. gfp_t gfp);
  4787. /**
  4788. * cfg80211_rx_mgmt - notification of received, unprocessed management frame
  4789. * @wdev: wireless device receiving the frame
  4790. * @freq: Frequency on which the frame was received in MHz
  4791. * @sig_dbm: signal strength in mBm, or 0 if unknown
  4792. * @buf: Management frame (header + body)
  4793. * @len: length of the frame data
  4794. * @flags: flags, as defined in enum nl80211_rxmgmt_flags
  4795. *
  4796. * This function is called whenever an Action frame is received for a station
  4797. * mode interface, but is not processed in kernel.
  4798. *
  4799. * Return: %true if a user space application has registered for this frame.
  4800. * For action frames, that makes it responsible for rejecting unrecognized
  4801. * action frames; %false otherwise, in which case for action frames the
  4802. * driver is responsible for rejecting the frame.
  4803. */
  4804. bool cfg80211_rx_mgmt(struct wireless_dev *wdev, int freq, int sig_dbm,
  4805. const u8 *buf, size_t len, u32 flags);
  4806. /**
  4807. * cfg80211_mgmt_tx_status - notification of TX status for management frame
  4808. * @wdev: wireless device receiving the frame
  4809. * @cookie: Cookie returned by cfg80211_ops::mgmt_tx()
  4810. * @buf: Management frame (header + body)
  4811. * @len: length of the frame data
  4812. * @ack: Whether frame was acknowledged
  4813. * @gfp: context flags
  4814. *
  4815. * This function is called whenever a management frame was requested to be
  4816. * transmitted with cfg80211_ops::mgmt_tx() to report the TX status of the
  4817. * transmission attempt.
  4818. */
  4819. void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
  4820. const u8 *buf, size_t len, bool ack, gfp_t gfp);
  4821. /**
  4822. * cfg80211_cqm_rssi_notify - connection quality monitoring rssi event
  4823. * @dev: network device
  4824. * @rssi_event: the triggered RSSI event
  4825. * @gfp: context flags
  4826. *
  4827. * This function is called when a configured connection quality monitoring
  4828. * rssi threshold reached event occurs.
  4829. */
  4830. void cfg80211_cqm_rssi_notify(struct net_device *dev,
  4831. enum nl80211_cqm_rssi_threshold_event rssi_event,
  4832. gfp_t gfp);
  4833. /**
  4834. * cfg80211_cqm_pktloss_notify - notify userspace about packetloss to peer
  4835. * @dev: network device
  4836. * @peer: peer's MAC address
  4837. * @num_packets: how many packets were lost -- should be a fixed threshold
  4838. * but probably no less than maybe 50, or maybe a throughput dependent
  4839. * threshold (to account for temporary interference)
  4840. * @gfp: context flags
  4841. */
  4842. void cfg80211_cqm_pktloss_notify(struct net_device *dev,
  4843. const u8 *peer, u32 num_packets, gfp_t gfp);
  4844. /**
  4845. * cfg80211_cqm_txe_notify - TX error rate event
  4846. * @dev: network device
  4847. * @peer: peer's MAC address
  4848. * @num_packets: how many packets were lost
  4849. * @rate: % of packets which failed transmission
  4850. * @intvl: interval (in s) over which the TX failure threshold was breached.
  4851. * @gfp: context flags
  4852. *
  4853. * Notify userspace when configured % TX failures over number of packets in a
  4854. * given interval is exceeded.
  4855. */
  4856. void cfg80211_cqm_txe_notify(struct net_device *dev, const u8 *peer,
  4857. u32 num_packets, u32 rate, u32 intvl, gfp_t gfp);
  4858. /**
  4859. * cfg80211_cqm_beacon_loss_notify - beacon loss event
  4860. * @dev: network device
  4861. * @gfp: context flags
  4862. *
  4863. * Notify userspace about beacon loss from the connected AP.
  4864. */
  4865. void cfg80211_cqm_beacon_loss_notify(struct net_device *dev, gfp_t gfp);
  4866. /**
  4867. * cfg80211_radar_event - radar detection event
  4868. * @wiphy: the wiphy
  4869. * @chandef: chandef for the current channel
  4870. * @gfp: context flags
  4871. *
  4872. * This function is called when a radar is detected on the current chanenl.
  4873. */
  4874. void cfg80211_radar_event(struct wiphy *wiphy,
  4875. struct cfg80211_chan_def *chandef, gfp_t gfp);
  4876. /**
  4877. * cfg80211_cac_event - Channel availability check (CAC) event
  4878. * @netdev: network device
  4879. * @chandef: chandef for the current channel
  4880. * @event: type of event
  4881. * @gfp: context flags
  4882. *
  4883. * This function is called when a Channel availability check (CAC) is finished
  4884. * or aborted. This must be called to notify the completion of a CAC process,
  4885. * also by full-MAC drivers.
  4886. */
  4887. void cfg80211_cac_event(struct net_device *netdev,
  4888. const struct cfg80211_chan_def *chandef,
  4889. enum nl80211_radar_event event, gfp_t gfp);
  4890. /**
  4891. * cfg80211_gtk_rekey_notify - notify userspace about driver rekeying
  4892. * @dev: network device
  4893. * @bssid: BSSID of AP (to avoid races)
  4894. * @replay_ctr: new replay counter
  4895. * @gfp: allocation flags
  4896. */
  4897. void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
  4898. const u8 *replay_ctr, gfp_t gfp);
  4899. /**
  4900. * cfg80211_pmksa_candidate_notify - notify about PMKSA caching candidate
  4901. * @dev: network device
  4902. * @index: candidate index (the smaller the index, the higher the priority)
  4903. * @bssid: BSSID of AP
  4904. * @preauth: Whether AP advertises support for RSN pre-authentication
  4905. * @gfp: allocation flags
  4906. */
  4907. void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
  4908. const u8 *bssid, bool preauth, gfp_t gfp);
  4909. /**
  4910. * cfg80211_rx_spurious_frame - inform userspace about a spurious frame
  4911. * @dev: The device the frame matched to
  4912. * @addr: the transmitter address
  4913. * @gfp: context flags
  4914. *
  4915. * This function is used in AP mode (only!) to inform userspace that
  4916. * a spurious class 3 frame was received, to be able to deauth the
  4917. * sender.
  4918. * Return: %true if the frame was passed to userspace (or this failed
  4919. * for a reason other than not having a subscription.)
  4920. */
  4921. bool cfg80211_rx_spurious_frame(struct net_device *dev,
  4922. const u8 *addr, gfp_t gfp);
  4923. /**
  4924. * cfg80211_rx_unexpected_4addr_frame - inform about unexpected WDS frame
  4925. * @dev: The device the frame matched to
  4926. * @addr: the transmitter address
  4927. * @gfp: context flags
  4928. *
  4929. * This function is used in AP mode (only!) to inform userspace that
  4930. * an associated station sent a 4addr frame but that wasn't expected.
  4931. * It is allowed and desirable to send this event only once for each
  4932. * station to avoid event flooding.
  4933. * Return: %true if the frame was passed to userspace (or this failed
  4934. * for a reason other than not having a subscription.)
  4935. */
  4936. bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
  4937. const u8 *addr, gfp_t gfp);
  4938. /**
  4939. * cfg80211_probe_status - notify userspace about probe status
  4940. * @dev: the device the probe was sent on
  4941. * @addr: the address of the peer
  4942. * @cookie: the cookie filled in @probe_client previously
  4943. * @acked: indicates whether probe was acked or not
  4944. * @gfp: allocation flags
  4945. */
  4946. void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
  4947. u64 cookie, bool acked, gfp_t gfp);
  4948. /**
  4949. * cfg80211_report_obss_beacon - report beacon from other APs
  4950. * @wiphy: The wiphy that received the beacon
  4951. * @frame: the frame
  4952. * @len: length of the frame
  4953. * @freq: frequency the frame was received on
  4954. * @sig_dbm: signal strength in mBm, or 0 if unknown
  4955. *
  4956. * Use this function to report to userspace when a beacon was
  4957. * received. It is not useful to call this when there is no
  4958. * netdev that is in AP/GO mode.
  4959. */
  4960. void cfg80211_report_obss_beacon(struct wiphy *wiphy,
  4961. const u8 *frame, size_t len,
  4962. int freq, int sig_dbm);
  4963. /**
  4964. * cfg80211_reg_can_beacon - check if beaconing is allowed
  4965. * @wiphy: the wiphy
  4966. * @chandef: the channel definition
  4967. * @iftype: interface type
  4968. *
  4969. * Return: %true if there is no secondary channel or the secondary channel(s)
  4970. * can be used for beaconing (i.e. is not a radar channel etc.)
  4971. */
  4972. bool cfg80211_reg_can_beacon(struct wiphy *wiphy,
  4973. struct cfg80211_chan_def *chandef,
  4974. enum nl80211_iftype iftype);
  4975. /**
  4976. * cfg80211_reg_can_beacon_relax - check if beaconing is allowed with relaxation
  4977. * @wiphy: the wiphy
  4978. * @chandef: the channel definition
  4979. * @iftype: interface type
  4980. *
  4981. * Return: %true if there is no secondary channel or the secondary channel(s)
  4982. * can be used for beaconing (i.e. is not a radar channel etc.). This version
  4983. * also checks if IR-relaxation conditions apply, to allow beaconing under
  4984. * more permissive conditions.
  4985. *
  4986. * Requires the RTNL to be held.
  4987. */
  4988. bool cfg80211_reg_can_beacon_relax(struct wiphy *wiphy,
  4989. struct cfg80211_chan_def *chandef,
  4990. enum nl80211_iftype iftype);
  4991. /*
  4992. * cfg80211_ch_switch_notify - update wdev channel and notify userspace
  4993. * @dev: the device which switched channels
  4994. * @chandef: the new channel definition
  4995. *
  4996. * Caller must acquire wdev_lock, therefore must only be called from sleepable
  4997. * driver context!
  4998. */
  4999. void cfg80211_ch_switch_notify(struct net_device *dev,
  5000. struct cfg80211_chan_def *chandef);
  5001. /*
  5002. * cfg80211_ch_switch_started_notify - notify channel switch start
  5003. * @dev: the device on which the channel switch started
  5004. * @chandef: the future channel definition
  5005. * @count: the number of TBTTs until the channel switch happens
  5006. *
  5007. * Inform the userspace about the channel switch that has just
  5008. * started, so that it can take appropriate actions (eg. starting
  5009. * channel switch on other vifs), if necessary.
  5010. */
  5011. void cfg80211_ch_switch_started_notify(struct net_device *dev,
  5012. struct cfg80211_chan_def *chandef,
  5013. u8 count);
  5014. /**
  5015. * ieee80211_operating_class_to_band - convert operating class to band
  5016. *
  5017. * @operating_class: the operating class to convert
  5018. * @band: band pointer to fill
  5019. *
  5020. * Returns %true if the conversion was successful, %false otherwise.
  5021. */
  5022. bool ieee80211_operating_class_to_band(u8 operating_class,
  5023. enum nl80211_band *band);
  5024. /**
  5025. * ieee80211_chandef_to_operating_class - convert chandef to operation class
  5026. *
  5027. * @chandef: the chandef to convert
  5028. * @op_class: a pointer to the resulting operating class
  5029. *
  5030. * Returns %true if the conversion was successful, %false otherwise.
  5031. */
  5032. bool ieee80211_chandef_to_operating_class(struct cfg80211_chan_def *chandef,
  5033. u8 *op_class);
  5034. /*
  5035. * cfg80211_tdls_oper_request - request userspace to perform TDLS operation
  5036. * @dev: the device on which the operation is requested
  5037. * @peer: the MAC address of the peer device
  5038. * @oper: the requested TDLS operation (NL80211_TDLS_SETUP or
  5039. * NL80211_TDLS_TEARDOWN)
  5040. * @reason_code: the reason code for teardown request
  5041. * @gfp: allocation flags
  5042. *
  5043. * This function is used to request userspace to perform TDLS operation that
  5044. * requires knowledge of keys, i.e., link setup or teardown when the AP
  5045. * connection uses encryption. This is optional mechanism for the driver to use
  5046. * if it can automatically determine when a TDLS link could be useful (e.g.,
  5047. * based on traffic and signal strength for a peer).
  5048. */
  5049. void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
  5050. enum nl80211_tdls_operation oper,
  5051. u16 reason_code, gfp_t gfp);
  5052. /*
  5053. * cfg80211_calculate_bitrate - calculate actual bitrate (in 100Kbps units)
  5054. * @rate: given rate_info to calculate bitrate from
  5055. *
  5056. * return 0 if MCS index >= 32
  5057. */
  5058. u32 cfg80211_calculate_bitrate(struct rate_info *rate);
  5059. /**
  5060. * cfg80211_unregister_wdev - remove the given wdev
  5061. * @wdev: struct wireless_dev to remove
  5062. *
  5063. * Call this function only for wdevs that have no netdev assigned,
  5064. * e.g. P2P Devices. It removes the device from the list so that
  5065. * it can no longer be used. It is necessary to call this function
  5066. * even when cfg80211 requests the removal of the interface by
  5067. * calling the del_virtual_intf() callback. The function must also
  5068. * be called when the driver wishes to unregister the wdev, e.g.
  5069. * when the device is unbound from the driver.
  5070. *
  5071. * Requires the RTNL to be held.
  5072. */
  5073. void cfg80211_unregister_wdev(struct wireless_dev *wdev);
  5074. /**
  5075. * struct cfg80211_ft_event - FT Information Elements
  5076. * @ies: FT IEs
  5077. * @ies_len: length of the FT IE in bytes
  5078. * @target_ap: target AP's MAC address
  5079. * @ric_ies: RIC IE
  5080. * @ric_ies_len: length of the RIC IE in bytes
  5081. */
  5082. struct cfg80211_ft_event_params {
  5083. const u8 *ies;
  5084. size_t ies_len;
  5085. const u8 *target_ap;
  5086. const u8 *ric_ies;
  5087. size_t ric_ies_len;
  5088. };
  5089. /**
  5090. * cfg80211_ft_event - notify userspace about FT IE and RIC IE
  5091. * @netdev: network device
  5092. * @ft_event: IE information
  5093. */
  5094. void cfg80211_ft_event(struct net_device *netdev,
  5095. struct cfg80211_ft_event_params *ft_event);
  5096. /**
  5097. * cfg80211_get_p2p_attr - find and copy a P2P attribute from IE buffer
  5098. * @ies: the input IE buffer
  5099. * @len: the input length
  5100. * @attr: the attribute ID to find
  5101. * @buf: output buffer, can be %NULL if the data isn't needed, e.g.
  5102. * if the function is only called to get the needed buffer size
  5103. * @bufsize: size of the output buffer
  5104. *
  5105. * The function finds a given P2P attribute in the (vendor) IEs and
  5106. * copies its contents to the given buffer.
  5107. *
  5108. * Return: A negative error code (-%EILSEQ or -%ENOENT) if the data is
  5109. * malformed or the attribute can't be found (respectively), or the
  5110. * length of the found attribute (which can be zero).
  5111. */
  5112. int cfg80211_get_p2p_attr(const u8 *ies, unsigned int len,
  5113. enum ieee80211_p2p_attr_id attr,
  5114. u8 *buf, unsigned int bufsize);
  5115. /**
  5116. * ieee80211_ie_split_ric - split an IE buffer according to ordering (with RIC)
  5117. * @ies: the IE buffer
  5118. * @ielen: the length of the IE buffer
  5119. * @ids: an array with element IDs that are allowed before
  5120. * the split
  5121. * @n_ids: the size of the element ID array
  5122. * @after_ric: array IE types that come after the RIC element
  5123. * @n_after_ric: size of the @after_ric array
  5124. * @offset: offset where to start splitting in the buffer
  5125. *
  5126. * This function splits an IE buffer by updating the @offset
  5127. * variable to point to the location where the buffer should be
  5128. * split.
  5129. *
  5130. * It assumes that the given IE buffer is well-formed, this
  5131. * has to be guaranteed by the caller!
  5132. *
  5133. * It also assumes that the IEs in the buffer are ordered
  5134. * correctly, if not the result of using this function will not
  5135. * be ordered correctly either, i.e. it does no reordering.
  5136. *
  5137. * The function returns the offset where the next part of the
  5138. * buffer starts, which may be @ielen if the entire (remainder)
  5139. * of the buffer should be used.
  5140. */
  5141. size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen,
  5142. const u8 *ids, int n_ids,
  5143. const u8 *after_ric, int n_after_ric,
  5144. size_t offset);
  5145. /**
  5146. * ieee80211_ie_split - split an IE buffer according to ordering
  5147. * @ies: the IE buffer
  5148. * @ielen: the length of the IE buffer
  5149. * @ids: an array with element IDs that are allowed before
  5150. * the split
  5151. * @n_ids: the size of the element ID array
  5152. * @offset: offset where to start splitting in the buffer
  5153. *
  5154. * This function splits an IE buffer by updating the @offset
  5155. * variable to point to the location where the buffer should be
  5156. * split.
  5157. *
  5158. * It assumes that the given IE buffer is well-formed, this
  5159. * has to be guaranteed by the caller!
  5160. *
  5161. * It also assumes that the IEs in the buffer are ordered
  5162. * correctly, if not the result of using this function will not
  5163. * be ordered correctly either, i.e. it does no reordering.
  5164. *
  5165. * The function returns the offset where the next part of the
  5166. * buffer starts, which may be @ielen if the entire (remainder)
  5167. * of the buffer should be used.
  5168. */
  5169. static inline size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
  5170. const u8 *ids, int n_ids, size_t offset)
  5171. {
  5172. return ieee80211_ie_split_ric(ies, ielen, ids, n_ids, NULL, 0, offset);
  5173. }
  5174. /**
  5175. * cfg80211_report_wowlan_wakeup - report wakeup from WoWLAN
  5176. * @wdev: the wireless device reporting the wakeup
  5177. * @wakeup: the wakeup report
  5178. * @gfp: allocation flags
  5179. *
  5180. * This function reports that the given device woke up. If it
  5181. * caused the wakeup, report the reason(s), otherwise you may
  5182. * pass %NULL as the @wakeup parameter to advertise that something
  5183. * else caused the wakeup.
  5184. */
  5185. void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
  5186. struct cfg80211_wowlan_wakeup *wakeup,
  5187. gfp_t gfp);
  5188. /**
  5189. * cfg80211_crit_proto_stopped() - indicate critical protocol stopped by driver.
  5190. *
  5191. * @wdev: the wireless device for which critical protocol is stopped.
  5192. * @gfp: allocation flags
  5193. *
  5194. * This function can be called by the driver to indicate it has reverted
  5195. * operation back to normal. One reason could be that the duration given
  5196. * by .crit_proto_start() has expired.
  5197. */
  5198. void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp);
  5199. /**
  5200. * ieee80211_get_num_supported_channels - get number of channels device has
  5201. * @wiphy: the wiphy
  5202. *
  5203. * Return: the number of channels supported by the device.
  5204. */
  5205. unsigned int ieee80211_get_num_supported_channels(struct wiphy *wiphy);
  5206. /**
  5207. * cfg80211_check_combinations - check interface combinations
  5208. *
  5209. * @wiphy: the wiphy
  5210. * @num_different_channels: the number of different channels we want
  5211. * to use for verification
  5212. * @radar_detect: a bitmap where each bit corresponds to a channel
  5213. * width where radar detection is needed, as in the definition of
  5214. * &struct ieee80211_iface_combination.@radar_detect_widths
  5215. * @iftype_num: array with the numbers of interfaces of each interface
  5216. * type. The index is the interface type as specified in &enum
  5217. * nl80211_iftype.
  5218. *
  5219. * This function can be called by the driver to check whether a
  5220. * combination of interfaces and their types are allowed according to
  5221. * the interface combinations.
  5222. */
  5223. int cfg80211_check_combinations(struct wiphy *wiphy,
  5224. const int num_different_channels,
  5225. const u8 radar_detect,
  5226. const int iftype_num[NUM_NL80211_IFTYPES]);
  5227. /**
  5228. * cfg80211_iter_combinations - iterate over matching combinations
  5229. *
  5230. * @wiphy: the wiphy
  5231. * @num_different_channels: the number of different channels we want
  5232. * to use for verification
  5233. * @radar_detect: a bitmap where each bit corresponds to a channel
  5234. * width where radar detection is needed, as in the definition of
  5235. * &struct ieee80211_iface_combination.@radar_detect_widths
  5236. * @iftype_num: array with the numbers of interfaces of each interface
  5237. * type. The index is the interface type as specified in &enum
  5238. * nl80211_iftype.
  5239. * @iter: function to call for each matching combination
  5240. * @data: pointer to pass to iter function
  5241. *
  5242. * This function can be called by the driver to check what possible
  5243. * combinations it fits in at a given moment, e.g. for channel switching
  5244. * purposes.
  5245. */
  5246. int cfg80211_iter_combinations(struct wiphy *wiphy,
  5247. const int num_different_channels,
  5248. const u8 radar_detect,
  5249. const int iftype_num[NUM_NL80211_IFTYPES],
  5250. void (*iter)(const struct ieee80211_iface_combination *c,
  5251. void *data),
  5252. void *data);
  5253. /*
  5254. * cfg80211_stop_iface - trigger interface disconnection
  5255. *
  5256. * @wiphy: the wiphy
  5257. * @wdev: wireless device
  5258. * @gfp: context flags
  5259. *
  5260. * Trigger interface to be stopped as if AP was stopped, IBSS/mesh left, STA
  5261. * disconnected.
  5262. *
  5263. * Note: This doesn't need any locks and is asynchronous.
  5264. */
  5265. void cfg80211_stop_iface(struct wiphy *wiphy, struct wireless_dev *wdev,
  5266. gfp_t gfp);
  5267. /**
  5268. * cfg80211_shutdown_all_interfaces - shut down all interfaces for a wiphy
  5269. * @wiphy: the wiphy to shut down
  5270. *
  5271. * This function shuts down all interfaces belonging to this wiphy by
  5272. * calling dev_close() (and treating non-netdev interfaces as needed).
  5273. * It shouldn't really be used unless there are some fatal device errors
  5274. * that really can't be recovered in any other way.
  5275. *
  5276. * Callers must hold the RTNL and be able to deal with callbacks into
  5277. * the driver while the function is running.
  5278. */
  5279. void cfg80211_shutdown_all_interfaces(struct wiphy *wiphy);
  5280. /**
  5281. * wiphy_ext_feature_set - set the extended feature flag
  5282. *
  5283. * @wiphy: the wiphy to modify.
  5284. * @ftidx: extended feature bit index.
  5285. *
  5286. * The extended features are flagged in multiple bytes (see
  5287. * &struct wiphy.@ext_features)
  5288. */
  5289. static inline void wiphy_ext_feature_set(struct wiphy *wiphy,
  5290. enum nl80211_ext_feature_index ftidx)
  5291. {
  5292. u8 *ft_byte;
  5293. ft_byte = &wiphy->ext_features[ftidx / 8];
  5294. *ft_byte |= BIT(ftidx % 8);
  5295. }
  5296. /**
  5297. * wiphy_ext_feature_isset - check the extended feature flag
  5298. *
  5299. * @wiphy: the wiphy to modify.
  5300. * @ftidx: extended feature bit index.
  5301. *
  5302. * The extended features are flagged in multiple bytes (see
  5303. * &struct wiphy.@ext_features)
  5304. */
  5305. static inline bool
  5306. wiphy_ext_feature_isset(struct wiphy *wiphy,
  5307. enum nl80211_ext_feature_index ftidx)
  5308. {
  5309. u8 ft_byte;
  5310. ft_byte = wiphy->ext_features[ftidx / 8];
  5311. return (ft_byte & BIT(ftidx % 8)) != 0;
  5312. }
  5313. /**
  5314. * cfg80211_free_nan_func - free NAN function
  5315. * @f: NAN function that should be freed
  5316. *
  5317. * Frees all the NAN function and all it's allocated members.
  5318. */
  5319. void cfg80211_free_nan_func(struct cfg80211_nan_func *f);
  5320. /**
  5321. * struct cfg80211_nan_match_params - NAN match parameters
  5322. * @type: the type of the function that triggered a match. If it is
  5323. * %NL80211_NAN_FUNC_SUBSCRIBE it means that we replied to a subscriber.
  5324. * If it is %NL80211_NAN_FUNC_PUBLISH, it means that we got a discovery
  5325. * result.
  5326. * If it is %NL80211_NAN_FUNC_FOLLOW_UP, we received a follow up.
  5327. * @inst_id: the local instance id
  5328. * @peer_inst_id: the instance id of the peer's function
  5329. * @addr: the MAC address of the peer
  5330. * @info_len: the length of the &info
  5331. * @info: the Service Specific Info from the peer (if any)
  5332. * @cookie: unique identifier of the corresponding function
  5333. */
  5334. struct cfg80211_nan_match_params {
  5335. enum nl80211_nan_function_type type;
  5336. u8 inst_id;
  5337. u8 peer_inst_id;
  5338. const u8 *addr;
  5339. u8 info_len;
  5340. const u8 *info;
  5341. u64 cookie;
  5342. };
  5343. /**
  5344. * cfg80211_nan_match - report a match for a NAN function.
  5345. * @wdev: the wireless device reporting the match
  5346. * @match: match notification parameters
  5347. * @gfp: allocation flags
  5348. *
  5349. * This function reports that the a NAN function had a match. This
  5350. * can be a subscribe that had a match or a solicited publish that
  5351. * was sent. It can also be a follow up that was received.
  5352. */
  5353. void cfg80211_nan_match(struct wireless_dev *wdev,
  5354. struct cfg80211_nan_match_params *match, gfp_t gfp);
  5355. /**
  5356. * cfg80211_nan_func_terminated - notify about NAN function termination.
  5357. *
  5358. * @wdev: the wireless device reporting the match
  5359. * @inst_id: the local instance id
  5360. * @reason: termination reason (one of the NL80211_NAN_FUNC_TERM_REASON_*)
  5361. * @cookie: unique NAN function identifier
  5362. * @gfp: allocation flags
  5363. *
  5364. * This function reports that the a NAN function is terminated.
  5365. */
  5366. void cfg80211_nan_func_terminated(struct wireless_dev *wdev,
  5367. u8 inst_id,
  5368. enum nl80211_nan_func_term_reason reason,
  5369. u64 cookie, gfp_t gfp);
  5370. /* ethtool helper */
  5371. void cfg80211_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info);
  5372. /* Logging, debugging and troubleshooting/diagnostic helpers. */
  5373. /* wiphy_printk helpers, similar to dev_printk */
  5374. #define wiphy_printk(level, wiphy, format, args...) \
  5375. dev_printk(level, &(wiphy)->dev, format, ##args)
  5376. #define wiphy_emerg(wiphy, format, args...) \
  5377. dev_emerg(&(wiphy)->dev, format, ##args)
  5378. #define wiphy_alert(wiphy, format, args...) \
  5379. dev_alert(&(wiphy)->dev, format, ##args)
  5380. #define wiphy_crit(wiphy, format, args...) \
  5381. dev_crit(&(wiphy)->dev, format, ##args)
  5382. #define wiphy_err(wiphy, format, args...) \
  5383. dev_err(&(wiphy)->dev, format, ##args)
  5384. #define wiphy_warn(wiphy, format, args...) \
  5385. dev_warn(&(wiphy)->dev, format, ##args)
  5386. #define wiphy_notice(wiphy, format, args...) \
  5387. dev_notice(&(wiphy)->dev, format, ##args)
  5388. #define wiphy_info(wiphy, format, args...) \
  5389. dev_info(&(wiphy)->dev, format, ##args)
  5390. #define wiphy_debug(wiphy, format, args...) \
  5391. wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
  5392. #define wiphy_dbg(wiphy, format, args...) \
  5393. dev_dbg(&(wiphy)->dev, format, ##args)
  5394. #if defined(VERBOSE_DEBUG)
  5395. #define wiphy_vdbg wiphy_dbg
  5396. #else
  5397. #define wiphy_vdbg(wiphy, format, args...) \
  5398. ({ \
  5399. if (0) \
  5400. wiphy_printk(KERN_DEBUG, wiphy, format, ##args); \
  5401. 0; \
  5402. })
  5403. #endif
  5404. /*
  5405. * wiphy_WARN() acts like wiphy_printk(), but with the key difference
  5406. * of using a WARN/WARN_ON to get the message out, including the
  5407. * file/line information and a backtrace.
  5408. */
  5409. #define wiphy_WARN(wiphy, format, args...) \
  5410. WARN(1, "wiphy: %s\n" format, wiphy_name(wiphy), ##args);
  5411. #endif /* __NET_CFG80211_H */