cfg80211.h 188 KB

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