p2p_supplicant.c 159 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765
  1. /*
  2. * wpa_supplicant - P2P
  3. * Copyright (c) 2009-2010, Atheros Communications
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "eloop.h"
  11. #include "common/ieee802_11_common.h"
  12. #include "common/ieee802_11_defs.h"
  13. #include "common/wpa_ctrl.h"
  14. #include "wps/wps_i.h"
  15. #include "p2p/p2p.h"
  16. #include "ap/hostapd.h"
  17. #include "ap/ap_config.h"
  18. #include "ap/p2p_hostapd.h"
  19. #include "eapol_supp/eapol_supp_sm.h"
  20. #include "rsn_supp/wpa.h"
  21. #include "wpa_supplicant_i.h"
  22. #include "driver_i.h"
  23. #include "ap.h"
  24. #include "config_ssid.h"
  25. #include "config.h"
  26. #include "notify.h"
  27. #include "scan.h"
  28. #include "bss.h"
  29. #include "offchannel.h"
  30. #include "wps_supplicant.h"
  31. #include "p2p_supplicant.h"
  32. /*
  33. * How many times to try to scan to find the GO before giving up on join
  34. * request.
  35. */
  36. #define P2P_MAX_JOIN_SCAN_ATTEMPTS 10
  37. #define P2P_AUTO_PD_SCAN_ATTEMPTS 5
  38. #ifndef P2P_MAX_CLIENT_IDLE
  39. /*
  40. * How many seconds to try to reconnect to the GO when connection in P2P client
  41. * role has been lost.
  42. */
  43. #define P2P_MAX_CLIENT_IDLE 10
  44. #endif /* P2P_MAX_CLIENT_IDLE */
  45. #ifndef P2P_MAX_INITIAL_CONN_WAIT
  46. /*
  47. * How many seconds to wait for initial 4-way handshake to get completed after
  48. * WPS provisioning step.
  49. */
  50. #define P2P_MAX_INITIAL_CONN_WAIT 10
  51. #endif /* P2P_MAX_INITIAL_CONN_WAIT */
  52. #ifndef P2P_CONCURRENT_SEARCH_DELAY
  53. #define P2P_CONCURRENT_SEARCH_DELAY 500
  54. #endif /* P2P_CONCURRENT_SEARCH_DELAY */
  55. enum p2p_group_removal_reason {
  56. P2P_GROUP_REMOVAL_UNKNOWN,
  57. P2P_GROUP_REMOVAL_SILENT,
  58. P2P_GROUP_REMOVAL_FORMATION_FAILED,
  59. P2P_GROUP_REMOVAL_REQUESTED,
  60. P2P_GROUP_REMOVAL_IDLE_TIMEOUT,
  61. P2P_GROUP_REMOVAL_UNAVAILABLE,
  62. P2P_GROUP_REMOVAL_GO_ENDING_SESSION
  63. };
  64. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
  65. static struct wpa_supplicant *
  66. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  67. int go);
  68. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s);
  69. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq);
  70. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
  71. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  72. const u8 *dev_addr, enum p2p_wps_method wps_method,
  73. int auto_join);
  74. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
  75. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s);
  76. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx);
  77. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s);
  78. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  79. void *timeout_ctx);
  80. static void wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  81. int group_added);
  82. static int wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s);
  83. static void wpas_p2p_set_own_freq_preference(struct wpa_supplicant *wpa_s,
  84. int freq)
  85. {
  86. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  87. return;
  88. if (freq > 0 &&
  89. (wpa_s->drv_flags & WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT) &&
  90. wpa_s->parent->conf->p2p_ignore_shared_freq)
  91. freq = 0;
  92. p2p_set_own_freq_preference(wpa_s->global->p2p, freq);
  93. }
  94. static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
  95. struct wpa_scan_results *scan_res)
  96. {
  97. size_t i;
  98. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  99. return;
  100. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
  101. (int) scan_res->num);
  102. for (i = 0; i < scan_res->num; i++) {
  103. struct wpa_scan_res *bss = scan_res->res[i];
  104. struct os_time time_tmp_age, entry_ts;
  105. time_tmp_age.sec = bss->age / 1000;
  106. time_tmp_age.usec = (bss->age % 1000) * 1000;
  107. os_time_sub(&scan_res->fetch_time, &time_tmp_age, &entry_ts);
  108. if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
  109. bss->freq, &entry_ts, bss->level,
  110. (const u8 *) (bss + 1),
  111. bss->ie_len) > 0)
  112. break;
  113. }
  114. p2p_scan_res_handled(wpa_s->global->p2p);
  115. }
  116. static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq,
  117. unsigned int num_req_dev_types,
  118. const u8 *req_dev_types, const u8 *dev_id, u16 pw_id)
  119. {
  120. struct wpa_supplicant *wpa_s = ctx;
  121. struct wpa_supplicant *ifs;
  122. struct wpa_driver_scan_params params;
  123. int ret;
  124. struct wpabuf *wps_ie, *ies;
  125. int social_channels[] = { 2412, 2437, 2462, 0, 0 };
  126. size_t ielen;
  127. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  128. return -1;
  129. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  130. if (ifs->sta_scan_pending &&
  131. (wpas_scan_scheduled(ifs) || ifs->scanning) &&
  132. wpas_p2p_in_progress(wpa_s) == 2) {
  133. wpa_printf(MSG_DEBUG, "Delaying P2P scan to allow "
  134. "pending station mode scan to be "
  135. "completed on interface %s", ifs->ifname);
  136. wpa_s->global->p2p_cb_on_scan_complete = 1;
  137. wpa_supplicant_req_scan(ifs, 0, 0);
  138. return 1;
  139. }
  140. }
  141. os_memset(&params, 0, sizeof(params));
  142. /* P2P Wildcard SSID */
  143. params.num_ssids = 1;
  144. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  145. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  146. wpa_s->wps->dev.p2p = 1;
  147. wps_ie = wps_build_probe_req_ie(pw_id, &wpa_s->wps->dev,
  148. wpa_s->wps->uuid, WPS_REQ_ENROLLEE,
  149. num_req_dev_types, req_dev_types);
  150. if (wps_ie == NULL)
  151. return -1;
  152. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  153. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  154. if (ies == NULL) {
  155. wpabuf_free(wps_ie);
  156. return -1;
  157. }
  158. wpabuf_put_buf(ies, wps_ie);
  159. wpabuf_free(wps_ie);
  160. p2p_scan_ie(wpa_s->global->p2p, ies, dev_id);
  161. params.p2p_probe = 1;
  162. params.extra_ies = wpabuf_head(ies);
  163. params.extra_ies_len = wpabuf_len(ies);
  164. switch (type) {
  165. case P2P_SCAN_SOCIAL:
  166. params.freqs = social_channels;
  167. break;
  168. case P2P_SCAN_FULL:
  169. break;
  170. case P2P_SCAN_SOCIAL_PLUS_ONE:
  171. social_channels[3] = freq;
  172. params.freqs = social_channels;
  173. break;
  174. }
  175. ret = wpa_drv_scan(wpa_s, &params);
  176. wpabuf_free(ies);
  177. if (ret) {
  178. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  179. if (ifs->scanning ||
  180. ifs->scan_res_handler == wpas_p2p_scan_res_handler) {
  181. wpa_s->global->p2p_cb_on_scan_complete = 1;
  182. ret = 1;
  183. break;
  184. }
  185. }
  186. } else
  187. wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
  188. return ret;
  189. }
  190. static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
  191. {
  192. switch (p2p_group_interface) {
  193. case P2P_GROUP_INTERFACE_PENDING:
  194. return WPA_IF_P2P_GROUP;
  195. case P2P_GROUP_INTERFACE_GO:
  196. return WPA_IF_P2P_GO;
  197. case P2P_GROUP_INTERFACE_CLIENT:
  198. return WPA_IF_P2P_CLIENT;
  199. }
  200. return WPA_IF_P2P_GROUP;
  201. }
  202. static struct wpa_supplicant * wpas_get_p2p_group(struct wpa_supplicant *wpa_s,
  203. const u8 *ssid,
  204. size_t ssid_len, int *go)
  205. {
  206. struct wpa_ssid *s;
  207. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  208. for (s = wpa_s->conf->ssid; s; s = s->next) {
  209. if (s->disabled != 0 || !s->p2p_group ||
  210. s->ssid_len != ssid_len ||
  211. os_memcmp(ssid, s->ssid, ssid_len) != 0)
  212. continue;
  213. if (s->mode == WPAS_MODE_P2P_GO &&
  214. s != wpa_s->current_ssid)
  215. continue;
  216. if (go)
  217. *go = s->mode == WPAS_MODE_P2P_GO;
  218. return wpa_s;
  219. }
  220. }
  221. return NULL;
  222. }
  223. static int wpas_p2p_group_delete(struct wpa_supplicant *wpa_s,
  224. enum p2p_group_removal_reason removal_reason)
  225. {
  226. struct wpa_ssid *ssid;
  227. char *gtype;
  228. const char *reason;
  229. ssid = wpa_s->current_ssid;
  230. if (ssid == NULL) {
  231. /*
  232. * The current SSID was not known, but there may still be a
  233. * pending P2P group interface waiting for provisioning or a
  234. * P2P group that is trying to reconnect.
  235. */
  236. ssid = wpa_s->conf->ssid;
  237. while (ssid) {
  238. if (ssid->p2p_group && ssid->disabled != 2)
  239. break;
  240. ssid = ssid->next;
  241. }
  242. if (ssid == NULL &&
  243. wpa_s->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)
  244. {
  245. wpa_printf(MSG_ERROR, "P2P: P2P group interface "
  246. "not found");
  247. return -1;
  248. }
  249. }
  250. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
  251. gtype = "GO";
  252. else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
  253. (ssid && ssid->mode == WPAS_MODE_INFRA)) {
  254. wpa_s->reassociate = 0;
  255. wpa_s->disconnected = 1;
  256. wpa_supplicant_deauthenticate(wpa_s,
  257. WLAN_REASON_DEAUTH_LEAVING);
  258. gtype = "client";
  259. } else
  260. gtype = "GO";
  261. if (wpa_s->cross_connect_in_use) {
  262. wpa_s->cross_connect_in_use = 0;
  263. wpa_msg(wpa_s->parent, MSG_INFO,
  264. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  265. wpa_s->ifname, wpa_s->cross_connect_uplink);
  266. }
  267. switch (removal_reason) {
  268. case P2P_GROUP_REMOVAL_REQUESTED:
  269. reason = " reason=REQUESTED";
  270. break;
  271. case P2P_GROUP_REMOVAL_FORMATION_FAILED:
  272. reason = " reason=FORMATION_FAILED";
  273. break;
  274. case P2P_GROUP_REMOVAL_IDLE_TIMEOUT:
  275. reason = " reason=IDLE";
  276. break;
  277. case P2P_GROUP_REMOVAL_UNAVAILABLE:
  278. reason = " reason=UNAVAILABLE";
  279. break;
  280. case P2P_GROUP_REMOVAL_GO_ENDING_SESSION:
  281. reason = " reason=GO_ENDING_SESSION";
  282. break;
  283. default:
  284. reason = "";
  285. break;
  286. }
  287. if (removal_reason != P2P_GROUP_REMOVAL_SILENT) {
  288. wpa_msg(wpa_s->parent, MSG_INFO,
  289. P2P_EVENT_GROUP_REMOVED "%s %s%s",
  290. wpa_s->ifname, gtype, reason);
  291. }
  292. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  293. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  294. if (eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  295. wpa_s->parent, NULL) > 0) {
  296. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group formation "
  297. "timeout");
  298. wpa_s->p2p_in_provisioning = 0;
  299. }
  300. if (removal_reason != P2P_GROUP_REMOVAL_SILENT && ssid)
  301. wpas_notify_p2p_group_removed(wpa_s, ssid, gtype);
  302. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  303. struct wpa_global *global;
  304. char *ifname;
  305. enum wpa_driver_if_type type;
  306. wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
  307. wpa_s->ifname);
  308. global = wpa_s->global;
  309. ifname = os_strdup(wpa_s->ifname);
  310. type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
  311. wpa_supplicant_remove_iface(wpa_s->global, wpa_s, 0);
  312. wpa_s = global->ifaces;
  313. if (wpa_s && ifname)
  314. wpa_drv_if_remove(wpa_s, type, ifname);
  315. os_free(ifname);
  316. return 1;
  317. }
  318. wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
  319. if (ssid && (ssid->p2p_group ||
  320. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
  321. (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
  322. int id = ssid->id;
  323. if (ssid == wpa_s->current_ssid) {
  324. wpa_sm_set_config(wpa_s->wpa, NULL);
  325. eapol_sm_notify_config(wpa_s->eapol, NULL, NULL);
  326. wpa_s->current_ssid = NULL;
  327. }
  328. /*
  329. * Networks objects created during any P2P activities are not
  330. * exposed out as they might/will confuse certain non-P2P aware
  331. * applications since these network objects won't behave like
  332. * regular ones.
  333. *
  334. * Likewise, we don't send out network removed signals for such
  335. * network objects.
  336. */
  337. wpa_config_remove_network(wpa_s->conf, id);
  338. wpa_supplicant_clear_status(wpa_s);
  339. wpa_supplicant_cancel_sched_scan(wpa_s);
  340. wpa_s->sta_scan_pending = 0;
  341. } else {
  342. wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
  343. "found");
  344. }
  345. if (wpa_s->ap_iface)
  346. wpa_supplicant_ap_deinit(wpa_s);
  347. else
  348. wpa_drv_deinit_p2p_cli(wpa_s);
  349. return 0;
  350. }
  351. static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
  352. u8 *go_dev_addr,
  353. const u8 *ssid, size_t ssid_len)
  354. {
  355. struct wpa_bss *bss;
  356. const u8 *bssid;
  357. struct wpabuf *p2p;
  358. u8 group_capab;
  359. const u8 *addr;
  360. if (wpa_s->go_params)
  361. bssid = wpa_s->go_params->peer_interface_addr;
  362. else
  363. bssid = wpa_s->bssid;
  364. bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
  365. if (bss == NULL) {
  366. u8 iface_addr[ETH_ALEN];
  367. if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
  368. iface_addr) == 0)
  369. bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
  370. }
  371. if (bss == NULL) {
  372. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  373. "group is persistent - BSS " MACSTR " not found",
  374. MAC2STR(bssid));
  375. return 0;
  376. }
  377. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  378. if (p2p == NULL) {
  379. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  380. "group is persistent - BSS " MACSTR
  381. " did not include P2P IE", MAC2STR(bssid));
  382. wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
  383. (u8 *) (bss + 1), bss->ie_len);
  384. wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
  385. ((u8 *) bss + 1) + bss->ie_len,
  386. bss->beacon_ie_len);
  387. return 0;
  388. }
  389. group_capab = p2p_get_group_capab(p2p);
  390. addr = p2p_get_go_dev_addr(p2p);
  391. wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
  392. "group_capab=0x%x", group_capab);
  393. if (addr) {
  394. os_memcpy(go_dev_addr, addr, ETH_ALEN);
  395. wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
  396. MAC2STR(addr));
  397. } else
  398. os_memset(go_dev_addr, 0, ETH_ALEN);
  399. wpabuf_free(p2p);
  400. wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
  401. "go_dev_addr=" MACSTR,
  402. MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
  403. return group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP;
  404. }
  405. static int wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
  406. struct wpa_ssid *ssid,
  407. const u8 *go_dev_addr)
  408. {
  409. struct wpa_ssid *s;
  410. int changed = 0;
  411. wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
  412. "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
  413. for (s = wpa_s->conf->ssid; s; s = s->next) {
  414. if (s->disabled == 2 &&
  415. os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
  416. s->ssid_len == ssid->ssid_len &&
  417. os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
  418. break;
  419. }
  420. if (s) {
  421. wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
  422. "entry");
  423. if (ssid->passphrase && !s->passphrase)
  424. changed = 1;
  425. else if (ssid->passphrase && s->passphrase &&
  426. os_strcmp(ssid->passphrase, s->passphrase) != 0)
  427. changed = 1;
  428. } else {
  429. wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
  430. "entry");
  431. changed = 1;
  432. s = wpa_config_add_network(wpa_s->conf);
  433. if (s == NULL)
  434. return -1;
  435. /*
  436. * Instead of network_added we emit persistent_group_added
  437. * notification. Also to keep the defense checks in
  438. * persistent_group obj registration method, we set the
  439. * relevant flags in s to designate it as a persistent group.
  440. */
  441. s->p2p_group = 1;
  442. s->p2p_persistent_group = 1;
  443. wpas_notify_persistent_group_added(wpa_s, s);
  444. wpa_config_set_network_defaults(s);
  445. }
  446. s->p2p_group = 1;
  447. s->p2p_persistent_group = 1;
  448. s->disabled = 2;
  449. s->bssid_set = 1;
  450. os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
  451. s->mode = ssid->mode;
  452. s->auth_alg = WPA_AUTH_ALG_OPEN;
  453. s->key_mgmt = WPA_KEY_MGMT_PSK;
  454. s->proto = WPA_PROTO_RSN;
  455. s->pairwise_cipher = WPA_CIPHER_CCMP;
  456. s->export_keys = 1;
  457. if (ssid->passphrase) {
  458. os_free(s->passphrase);
  459. s->passphrase = os_strdup(ssid->passphrase);
  460. }
  461. if (ssid->psk_set) {
  462. s->psk_set = 1;
  463. os_memcpy(s->psk, ssid->psk, 32);
  464. }
  465. if (s->passphrase && !s->psk_set)
  466. wpa_config_update_psk(s);
  467. if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
  468. os_free(s->ssid);
  469. s->ssid = os_malloc(ssid->ssid_len);
  470. }
  471. if (s->ssid) {
  472. s->ssid_len = ssid->ssid_len;
  473. os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
  474. }
  475. #ifndef CONFIG_NO_CONFIG_WRITE
  476. if (changed && wpa_s->conf->update_config &&
  477. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  478. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  479. }
  480. #endif /* CONFIG_NO_CONFIG_WRITE */
  481. return s->id;
  482. }
  483. static void wpas_p2p_add_persistent_group_client(struct wpa_supplicant *wpa_s,
  484. const u8 *addr)
  485. {
  486. struct wpa_ssid *ssid, *s;
  487. u8 *n;
  488. size_t i;
  489. int found = 0;
  490. ssid = wpa_s->current_ssid;
  491. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  492. !ssid->p2p_persistent_group)
  493. return;
  494. for (s = wpa_s->parent->conf->ssid; s; s = s->next) {
  495. if (s->disabled != 2 || s->mode != WPAS_MODE_P2P_GO)
  496. continue;
  497. if (s->ssid_len == ssid->ssid_len &&
  498. os_memcmp(s->ssid, ssid->ssid, s->ssid_len) == 0)
  499. break;
  500. }
  501. if (s == NULL)
  502. return;
  503. for (i = 0; s->p2p_client_list && i < s->num_p2p_clients; i++) {
  504. if (os_memcmp(s->p2p_client_list + i * ETH_ALEN, addr,
  505. ETH_ALEN) != 0)
  506. continue;
  507. if (i == s->num_p2p_clients - 1)
  508. return; /* already the most recent entry */
  509. /* move the entry to mark it most recent */
  510. os_memmove(s->p2p_client_list + i * ETH_ALEN,
  511. s->p2p_client_list + (i + 1) * ETH_ALEN,
  512. (s->num_p2p_clients - i - 1) * ETH_ALEN);
  513. os_memcpy(s->p2p_client_list +
  514. (s->num_p2p_clients - 1) * ETH_ALEN, addr, ETH_ALEN);
  515. found = 1;
  516. break;
  517. }
  518. if (!found && s->num_p2p_clients < P2P_MAX_STORED_CLIENTS) {
  519. n = os_realloc_array(s->p2p_client_list,
  520. s->num_p2p_clients + 1, ETH_ALEN);
  521. if (n == NULL)
  522. return;
  523. os_memcpy(n + s->num_p2p_clients * ETH_ALEN, addr, ETH_ALEN);
  524. s->p2p_client_list = n;
  525. s->num_p2p_clients++;
  526. } else if (!found) {
  527. /* Not enough room for an additional entry - drop the oldest
  528. * entry */
  529. os_memmove(s->p2p_client_list,
  530. s->p2p_client_list + ETH_ALEN,
  531. (s->num_p2p_clients - 1) * ETH_ALEN);
  532. os_memcpy(s->p2p_client_list +
  533. (s->num_p2p_clients - 1) * ETH_ALEN,
  534. addr, ETH_ALEN);
  535. }
  536. #ifndef CONFIG_NO_CONFIG_WRITE
  537. if (wpa_s->parent->conf->update_config &&
  538. wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
  539. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  540. #endif /* CONFIG_NO_CONFIG_WRITE */
  541. }
  542. static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
  543. int success)
  544. {
  545. struct wpa_ssid *ssid;
  546. const char *ssid_txt;
  547. int client;
  548. int persistent;
  549. u8 go_dev_addr[ETH_ALEN];
  550. int network_id = -1;
  551. /*
  552. * This callback is likely called for the main interface. Update wpa_s
  553. * to use the group interface if a new interface was created for the
  554. * group.
  555. */
  556. if (wpa_s->global->p2p_group_formation)
  557. wpa_s = wpa_s->global->p2p_group_formation;
  558. wpa_s->global->p2p_group_formation = NULL;
  559. wpa_s->p2p_in_provisioning = 0;
  560. if (!success) {
  561. wpa_msg(wpa_s->parent, MSG_INFO,
  562. P2P_EVENT_GROUP_FORMATION_FAILURE);
  563. wpas_p2p_group_delete(wpa_s,
  564. P2P_GROUP_REMOVAL_FORMATION_FAILED);
  565. return;
  566. }
  567. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_FORMATION_SUCCESS);
  568. ssid = wpa_s->current_ssid;
  569. if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  570. ssid->mode = WPAS_MODE_P2P_GO;
  571. p2p_group_notif_formation_done(wpa_s->p2p_group);
  572. wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
  573. }
  574. persistent = 0;
  575. if (ssid) {
  576. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  577. client = ssid->mode == WPAS_MODE_INFRA;
  578. if (ssid->mode == WPAS_MODE_P2P_GO) {
  579. persistent = ssid->p2p_persistent_group;
  580. os_memcpy(go_dev_addr, wpa_s->global->p2p_dev_addr,
  581. ETH_ALEN);
  582. } else
  583. persistent = wpas_p2p_persistent_group(wpa_s,
  584. go_dev_addr,
  585. ssid->ssid,
  586. ssid->ssid_len);
  587. } else {
  588. ssid_txt = "";
  589. client = wpa_s->p2p_group_interface ==
  590. P2P_GROUP_INTERFACE_CLIENT;
  591. os_memset(go_dev_addr, 0, ETH_ALEN);
  592. }
  593. wpa_s->show_group_started = 0;
  594. if (client) {
  595. /*
  596. * Indicate event only after successfully completed 4-way
  597. * handshake, i.e., when the interface is ready for data
  598. * packets.
  599. */
  600. wpa_s->show_group_started = 1;
  601. } else if (ssid && ssid->passphrase == NULL && ssid->psk_set) {
  602. char psk[65];
  603. wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
  604. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  605. "%s GO ssid=\"%s\" freq=%d psk=%s go_dev_addr=" MACSTR
  606. "%s",
  607. wpa_s->ifname, ssid_txt, ssid->frequency, psk,
  608. MAC2STR(go_dev_addr),
  609. persistent ? " [PERSISTENT]" : "");
  610. wpas_p2p_cross_connect_setup(wpa_s);
  611. wpas_p2p_set_group_idle_timeout(wpa_s);
  612. } else {
  613. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  614. "%s GO ssid=\"%s\" freq=%d passphrase=\"%s\" "
  615. "go_dev_addr=" MACSTR "%s",
  616. wpa_s->ifname, ssid_txt, ssid ? ssid->frequency : 0,
  617. ssid && ssid->passphrase ? ssid->passphrase : "",
  618. MAC2STR(go_dev_addr),
  619. persistent ? " [PERSISTENT]" : "");
  620. wpas_p2p_cross_connect_setup(wpa_s);
  621. wpas_p2p_set_group_idle_timeout(wpa_s);
  622. }
  623. if (persistent)
  624. network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
  625. ssid, go_dev_addr);
  626. if (network_id < 0 && ssid)
  627. network_id = ssid->id;
  628. if (!client)
  629. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
  630. }
  631. static void wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s,
  632. unsigned int freq,
  633. const u8 *dst, const u8 *src,
  634. const u8 *bssid,
  635. const u8 *data, size_t data_len,
  636. enum offchannel_send_action_result
  637. result)
  638. {
  639. enum p2p_send_action_result res = P2P_SEND_ACTION_SUCCESS;
  640. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
  641. return;
  642. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  643. return;
  644. switch (result) {
  645. case OFFCHANNEL_SEND_ACTION_SUCCESS:
  646. res = P2P_SEND_ACTION_SUCCESS;
  647. break;
  648. case OFFCHANNEL_SEND_ACTION_NO_ACK:
  649. res = P2P_SEND_ACTION_NO_ACK;
  650. break;
  651. case OFFCHANNEL_SEND_ACTION_FAILED:
  652. res = P2P_SEND_ACTION_FAILED;
  653. break;
  654. }
  655. p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res);
  656. if (result != OFFCHANNEL_SEND_ACTION_SUCCESS &&
  657. wpa_s->pending_pd_before_join &&
  658. (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  659. os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) &&
  660. wpa_s->p2p_fallback_to_go_neg) {
  661. wpa_s->pending_pd_before_join = 0;
  662. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: No ACK for PD Req "
  663. "during p2p_connect-auto");
  664. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  665. return;
  666. }
  667. }
  668. static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
  669. const u8 *src, const u8 *bssid, const u8 *buf,
  670. size_t len, unsigned int wait_time)
  671. {
  672. struct wpa_supplicant *wpa_s = ctx;
  673. return offchannel_send_action(wpa_s, freq, dst, src, bssid, buf, len,
  674. wait_time,
  675. wpas_p2p_send_action_tx_status, 1);
  676. }
  677. static void wpas_send_action_done(void *ctx)
  678. {
  679. struct wpa_supplicant *wpa_s = ctx;
  680. offchannel_send_action_done(wpa_s);
  681. }
  682. static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
  683. struct p2p_go_neg_results *params)
  684. {
  685. if (wpa_s->go_params == NULL) {
  686. wpa_s->go_params = os_malloc(sizeof(*params));
  687. if (wpa_s->go_params == NULL)
  688. return -1;
  689. }
  690. os_memcpy(wpa_s->go_params, params, sizeof(*params));
  691. return 0;
  692. }
  693. static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
  694. struct p2p_go_neg_results *res)
  695. {
  696. wpa_printf(MSG_DEBUG, "P2P: Start WPS Enrollee for peer " MACSTR,
  697. MAC2STR(res->peer_interface_addr));
  698. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Start WPS Enrollee for SSID",
  699. res->ssid, res->ssid_len);
  700. wpa_supplicant_ap_deinit(wpa_s);
  701. wpas_copy_go_neg_results(wpa_s, res);
  702. if (res->wps_method == WPS_PBC)
  703. wpas_wps_start_pbc(wpa_s, res->peer_interface_addr, 1);
  704. else {
  705. u16 dev_pw_id = DEV_PW_DEFAULT;
  706. if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
  707. dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
  708. wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
  709. wpa_s->p2p_pin, 1, dev_pw_id);
  710. }
  711. }
  712. static void p2p_go_configured(void *ctx, void *data)
  713. {
  714. struct wpa_supplicant *wpa_s = ctx;
  715. struct p2p_go_neg_results *params = data;
  716. struct wpa_ssid *ssid;
  717. int network_id = -1;
  718. ssid = wpa_s->current_ssid;
  719. if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
  720. wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
  721. if (wpa_s->global->p2p_group_formation == wpa_s)
  722. wpa_s->global->p2p_group_formation = NULL;
  723. if (os_strlen(params->passphrase) > 0) {
  724. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  725. "%s GO ssid=\"%s\" freq=%d passphrase=\"%s\" "
  726. "go_dev_addr=" MACSTR "%s", wpa_s->ifname,
  727. wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  728. ssid->frequency, params->passphrase,
  729. MAC2STR(wpa_s->global->p2p_dev_addr),
  730. params->persistent_group ? " [PERSISTENT]" :
  731. "");
  732. } else {
  733. char psk[65];
  734. wpa_snprintf_hex(psk, sizeof(psk), params->psk,
  735. sizeof(params->psk));
  736. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  737. "%s GO ssid=\"%s\" freq=%d psk=%s "
  738. "go_dev_addr=" MACSTR "%s", wpa_s->ifname,
  739. wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  740. ssid->frequency, psk,
  741. MAC2STR(wpa_s->global->p2p_dev_addr),
  742. params->persistent_group ? " [PERSISTENT]" :
  743. "");
  744. }
  745. if (params->persistent_group)
  746. network_id = wpas_p2p_store_persistent_group(
  747. wpa_s->parent, ssid,
  748. wpa_s->global->p2p_dev_addr);
  749. if (network_id < 0)
  750. network_id = ssid->id;
  751. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 0);
  752. wpas_p2p_cross_connect_setup(wpa_s);
  753. wpas_p2p_set_group_idle_timeout(wpa_s);
  754. return;
  755. }
  756. wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
  757. if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
  758. params->peer_interface_addr)) {
  759. wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
  760. "filtering");
  761. return;
  762. }
  763. if (params->wps_method == WPS_PBC)
  764. wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr,
  765. params->peer_device_addr);
  766. else if (wpa_s->p2p_pin[0])
  767. wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
  768. wpa_s->p2p_pin, NULL, 0, 0);
  769. os_free(wpa_s->go_params);
  770. wpa_s->go_params = NULL;
  771. }
  772. static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
  773. struct p2p_go_neg_results *params,
  774. int group_formation)
  775. {
  776. struct wpa_ssid *ssid;
  777. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Starting GO");
  778. if (wpas_copy_go_neg_results(wpa_s, params) < 0) {
  779. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not copy GO Negotiation "
  780. "results");
  781. return;
  782. }
  783. ssid = wpa_config_add_network(wpa_s->conf);
  784. if (ssid == NULL) {
  785. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Could not add network for GO");
  786. return;
  787. }
  788. wpa_s->show_group_started = 0;
  789. wpa_config_set_network_defaults(ssid);
  790. ssid->temporary = 1;
  791. ssid->p2p_group = 1;
  792. ssid->p2p_persistent_group = params->persistent_group;
  793. ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
  794. WPAS_MODE_P2P_GO;
  795. ssid->frequency = params->freq;
  796. ssid->ht40 = params->ht40;
  797. ssid->ssid = os_zalloc(params->ssid_len + 1);
  798. if (ssid->ssid) {
  799. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  800. ssid->ssid_len = params->ssid_len;
  801. }
  802. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  803. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  804. ssid->proto = WPA_PROTO_RSN;
  805. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  806. if (os_strlen(params->passphrase) > 0) {
  807. ssid->passphrase = os_strdup(params->passphrase);
  808. if (ssid->passphrase == NULL) {
  809. wpa_msg(wpa_s, MSG_ERROR, "P2P: Failed to copy "
  810. "passphrase for GO");
  811. wpa_config_remove_network(wpa_s->conf, ssid->id);
  812. return;
  813. }
  814. } else
  815. ssid->passphrase = NULL;
  816. ssid->psk_set = params->psk_set;
  817. if (ssid->psk_set)
  818. os_memcpy(ssid->psk, params->psk, sizeof(ssid->psk));
  819. else if (ssid->passphrase)
  820. wpa_config_update_psk(ssid);
  821. ssid->ap_max_inactivity = wpa_s->parent->conf->p2p_go_max_inactivity;
  822. wpa_s->ap_configured_cb = p2p_go_configured;
  823. wpa_s->ap_configured_cb_ctx = wpa_s;
  824. wpa_s->ap_configured_cb_data = wpa_s->go_params;
  825. wpa_s->connect_without_scan = ssid;
  826. wpa_s->reassociate = 1;
  827. wpa_s->disconnected = 0;
  828. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Request scan (that will be skipped) to "
  829. "start GO)");
  830. wpa_supplicant_req_scan(wpa_s, 0, 0);
  831. }
  832. static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
  833. const struct wpa_supplicant *src)
  834. {
  835. struct wpa_config *d;
  836. const struct wpa_config *s;
  837. d = dst->conf;
  838. s = src->conf;
  839. #define C(n) if (s->n) d->n = os_strdup(s->n)
  840. C(device_name);
  841. C(manufacturer);
  842. C(model_name);
  843. C(model_number);
  844. C(serial_number);
  845. C(config_methods);
  846. #undef C
  847. os_memcpy(d->device_type, s->device_type, WPS_DEV_TYPE_LEN);
  848. os_memcpy(d->sec_device_type, s->sec_device_type,
  849. sizeof(d->sec_device_type));
  850. d->num_sec_device_types = s->num_sec_device_types;
  851. d->p2p_group_idle = s->p2p_group_idle;
  852. d->p2p_intra_bss = s->p2p_intra_bss;
  853. d->persistent_reconnect = s->persistent_reconnect;
  854. d->max_num_sta = s->max_num_sta;
  855. d->pbc_in_m1 = s->pbc_in_m1;
  856. }
  857. static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
  858. enum wpa_driver_if_type type)
  859. {
  860. char ifname[120], force_ifname[120];
  861. if (wpa_s->pending_interface_name[0]) {
  862. wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
  863. "- skip creation of a new one");
  864. if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
  865. wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
  866. "unknown?! ifname='%s'",
  867. wpa_s->pending_interface_name);
  868. return -1;
  869. }
  870. return 0;
  871. }
  872. os_snprintf(ifname, sizeof(ifname), "p2p-%s-%d", wpa_s->ifname,
  873. wpa_s->p2p_group_idx);
  874. if (os_strlen(ifname) >= IFNAMSIZ &&
  875. os_strlen(wpa_s->ifname) < IFNAMSIZ) {
  876. /* Try to avoid going over the IFNAMSIZ length limit */
  877. os_snprintf(ifname, sizeof(ifname), "p2p-%d",
  878. wpa_s->p2p_group_idx);
  879. }
  880. force_ifname[0] = '\0';
  881. wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
  882. ifname);
  883. wpa_s->p2p_group_idx++;
  884. wpa_s->pending_interface_type = type;
  885. if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
  886. wpa_s->pending_interface_addr, NULL) < 0) {
  887. wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
  888. "interface");
  889. return -1;
  890. }
  891. if (force_ifname[0]) {
  892. wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
  893. force_ifname);
  894. os_strlcpy(wpa_s->pending_interface_name, force_ifname,
  895. sizeof(wpa_s->pending_interface_name));
  896. } else
  897. os_strlcpy(wpa_s->pending_interface_name, ifname,
  898. sizeof(wpa_s->pending_interface_name));
  899. wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
  900. MACSTR, wpa_s->pending_interface_name,
  901. MAC2STR(wpa_s->pending_interface_addr));
  902. return 0;
  903. }
  904. static void wpas_p2p_remove_pending_group_interface(
  905. struct wpa_supplicant *wpa_s)
  906. {
  907. if (!wpa_s->pending_interface_name[0] ||
  908. is_zero_ether_addr(wpa_s->pending_interface_addr))
  909. return; /* No pending virtual interface */
  910. wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
  911. wpa_s->pending_interface_name);
  912. wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
  913. wpa_s->pending_interface_name);
  914. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  915. wpa_s->pending_interface_name[0] = '\0';
  916. }
  917. static struct wpa_supplicant *
  918. wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
  919. {
  920. struct wpa_interface iface;
  921. struct wpa_supplicant *group_wpa_s;
  922. if (!wpa_s->pending_interface_name[0]) {
  923. wpa_printf(MSG_ERROR, "P2P: No pending group interface");
  924. if (!wpas_p2p_create_iface(wpa_s))
  925. return NULL;
  926. /*
  927. * Something has forced us to remove the pending interface; try
  928. * to create a new one and hope for the best that we will get
  929. * the same local address.
  930. */
  931. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  932. WPA_IF_P2P_CLIENT) < 0)
  933. return NULL;
  934. }
  935. os_memset(&iface, 0, sizeof(iface));
  936. iface.ifname = wpa_s->pending_interface_name;
  937. iface.driver = wpa_s->driver->name;
  938. iface.ctrl_interface = wpa_s->conf->ctrl_interface;
  939. iface.driver_param = wpa_s->conf->driver_param;
  940. group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
  941. if (group_wpa_s == NULL) {
  942. wpa_printf(MSG_ERROR, "P2P: Failed to create new "
  943. "wpa_supplicant interface");
  944. return NULL;
  945. }
  946. wpa_s->pending_interface_name[0] = '\0';
  947. group_wpa_s->parent = wpa_s;
  948. group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
  949. P2P_GROUP_INTERFACE_CLIENT;
  950. wpa_s->global->p2p_group_formation = group_wpa_s;
  951. wpas_p2p_clone_config(group_wpa_s, wpa_s);
  952. return group_wpa_s;
  953. }
  954. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  955. void *timeout_ctx)
  956. {
  957. struct wpa_supplicant *wpa_s = eloop_ctx;
  958. wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
  959. if (wpa_s->global->p2p)
  960. p2p_group_formation_failed(wpa_s->global->p2p);
  961. else if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  962. wpa_drv_p2p_group_formation_failed(wpa_s);
  963. wpas_group_formation_completed(wpa_s, 0);
  964. }
  965. void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
  966. {
  967. struct wpa_supplicant *wpa_s = ctx;
  968. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  969. wpa_drv_cancel_remain_on_channel(wpa_s);
  970. wpa_s->off_channel_freq = 0;
  971. wpa_s->roc_waiting_drv_freq = 0;
  972. }
  973. if (res->status) {
  974. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_FAILURE "status=%d",
  975. res->status);
  976. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  977. wpas_p2p_remove_pending_group_interface(wpa_s);
  978. return;
  979. }
  980. if (wpa_s->p2p_go_ht40)
  981. res->ht40 = 1;
  982. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS);
  983. wpas_notify_p2p_go_neg_completed(wpa_s, res);
  984. if (res->role_go && wpa_s->p2p_persistent_id >= 0) {
  985. struct wpa_ssid *ssid;
  986. ssid = wpa_config_get_network(wpa_s->conf,
  987. wpa_s->p2p_persistent_id);
  988. if (ssid && ssid->disabled == 2 &&
  989. ssid->mode == WPAS_MODE_P2P_GO && ssid->passphrase) {
  990. size_t len = os_strlen(ssid->passphrase);
  991. wpa_printf(MSG_DEBUG, "P2P: Override passphrase based "
  992. "on requested persistent group");
  993. os_memcpy(res->passphrase, ssid->passphrase, len);
  994. res->passphrase[len] = '\0';
  995. }
  996. }
  997. if (wpa_s->create_p2p_iface) {
  998. struct wpa_supplicant *group_wpa_s =
  999. wpas_p2p_init_group_interface(wpa_s, res->role_go);
  1000. if (group_wpa_s == NULL) {
  1001. wpas_p2p_remove_pending_group_interface(wpa_s);
  1002. return;
  1003. }
  1004. if (group_wpa_s != wpa_s) {
  1005. os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
  1006. sizeof(group_wpa_s->p2p_pin));
  1007. group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
  1008. }
  1009. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  1010. wpa_s->pending_interface_name[0] = '\0';
  1011. group_wpa_s->p2p_in_provisioning = 1;
  1012. if (res->role_go)
  1013. wpas_start_wps_go(group_wpa_s, res, 1);
  1014. else
  1015. wpas_start_wps_enrollee(group_wpa_s, res);
  1016. } else {
  1017. wpa_s->p2p_in_provisioning = 1;
  1018. wpa_s->global->p2p_group_formation = wpa_s;
  1019. if (res->role_go)
  1020. wpas_start_wps_go(wpa_s, res, 1);
  1021. else
  1022. wpas_start_wps_enrollee(ctx, res);
  1023. }
  1024. wpa_s->p2p_long_listen = 0;
  1025. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  1026. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1027. eloop_register_timeout(15 + res->peer_config_timeout / 100,
  1028. (res->peer_config_timeout % 100) * 10000,
  1029. wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1030. }
  1031. void wpas_go_neg_req_rx(void *ctx, const u8 *src, u16 dev_passwd_id)
  1032. {
  1033. struct wpa_supplicant *wpa_s = ctx;
  1034. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR
  1035. " dev_passwd_id=%u", MAC2STR(src), dev_passwd_id);
  1036. wpas_notify_p2p_go_neg_req(wpa_s, src, dev_passwd_id);
  1037. }
  1038. void wpas_dev_found(void *ctx, const u8 *addr,
  1039. const struct p2p_peer_info *info,
  1040. int new_device)
  1041. {
  1042. #ifndef CONFIG_NO_STDOUT_DEBUG
  1043. struct wpa_supplicant *wpa_s = ctx;
  1044. char devtype[WPS_DEV_TYPE_BUFSIZE];
  1045. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
  1046. " p2p_dev_addr=" MACSTR
  1047. " pri_dev_type=%s name='%s' config_methods=0x%x "
  1048. "dev_capab=0x%x group_capab=0x%x",
  1049. MAC2STR(addr), MAC2STR(info->p2p_device_addr),
  1050. wps_dev_type_bin2str(info->pri_dev_type, devtype,
  1051. sizeof(devtype)),
  1052. info->device_name, info->config_methods,
  1053. info->dev_capab, info->group_capab);
  1054. #endif /* CONFIG_NO_STDOUT_DEBUG */
  1055. wpas_notify_p2p_device_found(ctx, info->p2p_device_addr, new_device);
  1056. }
  1057. static void wpas_dev_lost(void *ctx, const u8 *dev_addr)
  1058. {
  1059. struct wpa_supplicant *wpa_s = ctx;
  1060. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_LOST
  1061. "p2p_dev_addr=" MACSTR, MAC2STR(dev_addr));
  1062. wpas_notify_p2p_device_lost(wpa_s, dev_addr);
  1063. }
  1064. static int wpas_start_listen(void *ctx, unsigned int freq,
  1065. unsigned int duration,
  1066. const struct wpabuf *probe_resp_ie)
  1067. {
  1068. struct wpa_supplicant *wpa_s = ctx;
  1069. wpa_drv_set_ap_wps_ie(wpa_s, NULL, probe_resp_ie, NULL);
  1070. if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
  1071. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
  1072. "report received Probe Request frames");
  1073. return -1;
  1074. }
  1075. wpa_s->pending_listen_freq = freq;
  1076. wpa_s->pending_listen_duration = duration;
  1077. if (wpa_drv_remain_on_channel(wpa_s, freq, duration) < 0) {
  1078. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
  1079. "to remain on channel (%u MHz) for Listen "
  1080. "state", freq);
  1081. wpa_s->pending_listen_freq = 0;
  1082. return -1;
  1083. }
  1084. wpa_s->off_channel_freq = 0;
  1085. wpa_s->roc_waiting_drv_freq = freq;
  1086. return 0;
  1087. }
  1088. static void wpas_stop_listen(void *ctx)
  1089. {
  1090. struct wpa_supplicant *wpa_s = ctx;
  1091. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  1092. wpa_drv_cancel_remain_on_channel(wpa_s);
  1093. wpa_s->off_channel_freq = 0;
  1094. wpa_s->roc_waiting_drv_freq = 0;
  1095. }
  1096. wpa_drv_set_ap_wps_ie(wpa_s, NULL, NULL, NULL);
  1097. wpa_drv_probe_req_report(wpa_s, 0);
  1098. }
  1099. static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf)
  1100. {
  1101. struct wpa_supplicant *wpa_s = ctx;
  1102. return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf), 1);
  1103. }
  1104. /*
  1105. * DNS Header section is used only to calculate compression pointers, so the
  1106. * contents of this data does not matter, but the length needs to be reserved
  1107. * in the virtual packet.
  1108. */
  1109. #define DNS_HEADER_LEN 12
  1110. /*
  1111. * 27-octet in-memory packet from P2P specification containing two implied
  1112. * queries for _tcp.lcoal. PTR IN and _udp.local. PTR IN
  1113. */
  1114. #define P2P_SD_IN_MEMORY_LEN 27
  1115. static int p2p_sd_dns_uncompress_label(char **upos, char *uend, u8 *start,
  1116. u8 **spos, const u8 *end)
  1117. {
  1118. while (*spos < end) {
  1119. u8 val = ((*spos)[0] & 0xc0) >> 6;
  1120. int len;
  1121. if (val == 1 || val == 2) {
  1122. /* These are reserved values in RFC 1035 */
  1123. wpa_printf(MSG_DEBUG, "P2P: Invalid domain name "
  1124. "sequence starting with 0x%x", val);
  1125. return -1;
  1126. }
  1127. if (val == 3) {
  1128. u16 offset;
  1129. u8 *spos_tmp;
  1130. /* Offset */
  1131. if (*spos + 2 > end) {
  1132. wpa_printf(MSG_DEBUG, "P2P: No room for full "
  1133. "DNS offset field");
  1134. return -1;
  1135. }
  1136. offset = (((*spos)[0] & 0x3f) << 8) | (*spos)[1];
  1137. if (offset >= *spos - start) {
  1138. wpa_printf(MSG_DEBUG, "P2P: Invalid DNS "
  1139. "pointer offset %u", offset);
  1140. return -1;
  1141. }
  1142. (*spos) += 2;
  1143. spos_tmp = start + offset;
  1144. return p2p_sd_dns_uncompress_label(upos, uend, start,
  1145. &spos_tmp,
  1146. *spos - 2);
  1147. }
  1148. /* Label */
  1149. len = (*spos)[0] & 0x3f;
  1150. if (len == 0)
  1151. return 0;
  1152. (*spos)++;
  1153. if (*spos + len > end) {
  1154. wpa_printf(MSG_DEBUG, "P2P: Invalid domain name "
  1155. "sequence - no room for label with length "
  1156. "%u", len);
  1157. return -1;
  1158. }
  1159. if (*upos + len + 2 > uend)
  1160. return -2;
  1161. os_memcpy(*upos, *spos, len);
  1162. *spos += len;
  1163. *upos += len;
  1164. (*upos)[0] = '.';
  1165. (*upos)++;
  1166. (*upos)[0] = '\0';
  1167. }
  1168. return 0;
  1169. }
  1170. /* Uncompress domain names per RFC 1035 using the P2P SD in-memory packet.
  1171. * Returns -1 on parsing error (invalid input sequence), -2 if output buffer is
  1172. * not large enough */
  1173. static int p2p_sd_dns_uncompress(char *buf, size_t buf_len, const u8 *msg,
  1174. size_t msg_len, size_t offset)
  1175. {
  1176. /* 27-octet in-memory packet from P2P specification */
  1177. const char *prefix = "\x04_tcp\x05local\x00\x00\x0C\x00\x01"
  1178. "\x04_udp\xC0\x11\x00\x0C\x00\x01";
  1179. u8 *tmp, *end, *spos;
  1180. char *upos, *uend;
  1181. int ret = 0;
  1182. if (buf_len < 2)
  1183. return -1;
  1184. if (offset > msg_len)
  1185. return -1;
  1186. tmp = os_malloc(DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN + msg_len);
  1187. if (tmp == NULL)
  1188. return -1;
  1189. spos = tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN;
  1190. end = spos + msg_len;
  1191. spos += offset;
  1192. os_memset(tmp, 0, DNS_HEADER_LEN);
  1193. os_memcpy(tmp + DNS_HEADER_LEN, prefix, P2P_SD_IN_MEMORY_LEN);
  1194. os_memcpy(tmp + DNS_HEADER_LEN + P2P_SD_IN_MEMORY_LEN, msg, msg_len);
  1195. upos = buf;
  1196. uend = buf + buf_len;
  1197. ret = p2p_sd_dns_uncompress_label(&upos, uend, tmp, &spos, end);
  1198. if (ret) {
  1199. os_free(tmp);
  1200. return ret;
  1201. }
  1202. if (upos == buf) {
  1203. upos[0] = '.';
  1204. upos[1] = '\0';
  1205. } else if (upos[-1] == '.')
  1206. upos[-1] = '\0';
  1207. os_free(tmp);
  1208. return 0;
  1209. }
  1210. static struct p2p_srv_bonjour *
  1211. wpas_p2p_service_get_bonjour(struct wpa_supplicant *wpa_s,
  1212. const struct wpabuf *query)
  1213. {
  1214. struct p2p_srv_bonjour *bsrv;
  1215. size_t len;
  1216. len = wpabuf_len(query);
  1217. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1218. struct p2p_srv_bonjour, list) {
  1219. if (len == wpabuf_len(bsrv->query) &&
  1220. os_memcmp(wpabuf_head(query), wpabuf_head(bsrv->query),
  1221. len) == 0)
  1222. return bsrv;
  1223. }
  1224. return NULL;
  1225. }
  1226. static struct p2p_srv_upnp *
  1227. wpas_p2p_service_get_upnp(struct wpa_supplicant *wpa_s, u8 version,
  1228. const char *service)
  1229. {
  1230. struct p2p_srv_upnp *usrv;
  1231. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1232. struct p2p_srv_upnp, list) {
  1233. if (version == usrv->version &&
  1234. os_strcmp(service, usrv->service) == 0)
  1235. return usrv;
  1236. }
  1237. return NULL;
  1238. }
  1239. static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto,
  1240. u8 srv_trans_id)
  1241. {
  1242. u8 *len_pos;
  1243. if (wpabuf_tailroom(resp) < 5)
  1244. return;
  1245. /* Length (to be filled) */
  1246. len_pos = wpabuf_put(resp, 2);
  1247. wpabuf_put_u8(resp, srv_proto);
  1248. wpabuf_put_u8(resp, srv_trans_id);
  1249. /* Status Code */
  1250. wpabuf_put_u8(resp, P2P_SD_PROTO_NOT_AVAILABLE);
  1251. /* Response Data: empty */
  1252. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1253. }
  1254. static void wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s,
  1255. struct wpabuf *resp, u8 srv_trans_id)
  1256. {
  1257. struct p2p_srv_bonjour *bsrv;
  1258. u8 *len_pos;
  1259. wpa_printf(MSG_DEBUG, "P2P: SD Request for all Bonjour services");
  1260. if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1261. wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
  1262. return;
  1263. }
  1264. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1265. struct p2p_srv_bonjour, list) {
  1266. if (wpabuf_tailroom(resp) <
  1267. 5 + wpabuf_len(bsrv->query) + wpabuf_len(bsrv->resp))
  1268. return;
  1269. /* Length (to be filled) */
  1270. len_pos = wpabuf_put(resp, 2);
  1271. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1272. wpabuf_put_u8(resp, srv_trans_id);
  1273. /* Status Code */
  1274. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1275. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
  1276. wpabuf_head(bsrv->resp),
  1277. wpabuf_len(bsrv->resp));
  1278. /* Response Data */
  1279. wpabuf_put_buf(resp, bsrv->query); /* Key */
  1280. wpabuf_put_buf(resp, bsrv->resp); /* Value */
  1281. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1282. 2);
  1283. }
  1284. }
  1285. static int match_bonjour_query(struct p2p_srv_bonjour *bsrv, const u8 *query,
  1286. size_t query_len)
  1287. {
  1288. char str_rx[256], str_srv[256];
  1289. if (query_len < 3 || wpabuf_len(bsrv->query) < 3)
  1290. return 0; /* Too short to include DNS Type and Version */
  1291. if (os_memcmp(query + query_len - 3,
  1292. wpabuf_head_u8(bsrv->query) + wpabuf_len(bsrv->query) - 3,
  1293. 3) != 0)
  1294. return 0; /* Mismatch in DNS Type or Version */
  1295. if (query_len == wpabuf_len(bsrv->query) &&
  1296. os_memcmp(query, wpabuf_head(bsrv->query), query_len - 3) == 0)
  1297. return 1; /* Binary match */
  1298. if (p2p_sd_dns_uncompress(str_rx, sizeof(str_rx), query, query_len - 3,
  1299. 0))
  1300. return 0; /* Failed to uncompress query */
  1301. if (p2p_sd_dns_uncompress(str_srv, sizeof(str_srv),
  1302. wpabuf_head(bsrv->query),
  1303. wpabuf_len(bsrv->query) - 3, 0))
  1304. return 0; /* Failed to uncompress service */
  1305. return os_strcmp(str_rx, str_srv) == 0;
  1306. }
  1307. static void wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s,
  1308. struct wpabuf *resp, u8 srv_trans_id,
  1309. const u8 *query, size_t query_len)
  1310. {
  1311. struct p2p_srv_bonjour *bsrv;
  1312. u8 *len_pos;
  1313. int matches = 0;
  1314. wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for Bonjour",
  1315. query, query_len);
  1316. if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1317. wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
  1318. wpas_sd_add_proto_not_avail(resp, P2P_SERV_BONJOUR,
  1319. srv_trans_id);
  1320. return;
  1321. }
  1322. if (query_len == 0) {
  1323. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1324. return;
  1325. }
  1326. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  1327. struct p2p_srv_bonjour, list) {
  1328. if (!match_bonjour_query(bsrv, query, query_len))
  1329. continue;
  1330. if (wpabuf_tailroom(resp) <
  1331. 5 + query_len + wpabuf_len(bsrv->resp))
  1332. return;
  1333. matches++;
  1334. /* Length (to be filled) */
  1335. len_pos = wpabuf_put(resp, 2);
  1336. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1337. wpabuf_put_u8(resp, srv_trans_id);
  1338. /* Status Code */
  1339. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1340. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
  1341. wpabuf_head(bsrv->resp),
  1342. wpabuf_len(bsrv->resp));
  1343. /* Response Data */
  1344. wpabuf_put_data(resp, query, query_len); /* Key */
  1345. wpabuf_put_buf(resp, bsrv->resp); /* Value */
  1346. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1347. }
  1348. if (matches == 0) {
  1349. wpa_printf(MSG_DEBUG, "P2P: Requested Bonjour service not "
  1350. "available");
  1351. if (wpabuf_tailroom(resp) < 5)
  1352. return;
  1353. /* Length (to be filled) */
  1354. len_pos = wpabuf_put(resp, 2);
  1355. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  1356. wpabuf_put_u8(resp, srv_trans_id);
  1357. /* Status Code */
  1358. wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
  1359. /* Response Data: empty */
  1360. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1361. 2);
  1362. }
  1363. }
  1364. static void wpas_sd_all_upnp(struct wpa_supplicant *wpa_s,
  1365. struct wpabuf *resp, u8 srv_trans_id)
  1366. {
  1367. struct p2p_srv_upnp *usrv;
  1368. u8 *len_pos;
  1369. wpa_printf(MSG_DEBUG, "P2P: SD Request for all UPnP services");
  1370. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
  1371. wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
  1372. return;
  1373. }
  1374. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1375. struct p2p_srv_upnp, list) {
  1376. if (wpabuf_tailroom(resp) < 5 + 1 + os_strlen(usrv->service))
  1377. return;
  1378. /* Length (to be filled) */
  1379. len_pos = wpabuf_put(resp, 2);
  1380. wpabuf_put_u8(resp, P2P_SERV_UPNP);
  1381. wpabuf_put_u8(resp, srv_trans_id);
  1382. /* Status Code */
  1383. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1384. /* Response Data */
  1385. wpabuf_put_u8(resp, usrv->version);
  1386. wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
  1387. usrv->service);
  1388. wpabuf_put_str(resp, usrv->service);
  1389. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1390. 2);
  1391. }
  1392. }
  1393. static void wpas_sd_req_upnp(struct wpa_supplicant *wpa_s,
  1394. struct wpabuf *resp, u8 srv_trans_id,
  1395. const u8 *query, size_t query_len)
  1396. {
  1397. struct p2p_srv_upnp *usrv;
  1398. u8 *len_pos;
  1399. u8 version;
  1400. char *str;
  1401. int count = 0;
  1402. wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for UPnP",
  1403. query, query_len);
  1404. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
  1405. wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
  1406. wpas_sd_add_proto_not_avail(resp, P2P_SERV_UPNP,
  1407. srv_trans_id);
  1408. return;
  1409. }
  1410. if (query_len == 0) {
  1411. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1412. return;
  1413. }
  1414. if (wpabuf_tailroom(resp) < 5)
  1415. return;
  1416. /* Length (to be filled) */
  1417. len_pos = wpabuf_put(resp, 2);
  1418. wpabuf_put_u8(resp, P2P_SERV_UPNP);
  1419. wpabuf_put_u8(resp, srv_trans_id);
  1420. version = query[0];
  1421. str = os_malloc(query_len);
  1422. if (str == NULL)
  1423. return;
  1424. os_memcpy(str, query + 1, query_len - 1);
  1425. str[query_len - 1] = '\0';
  1426. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1427. struct p2p_srv_upnp, list) {
  1428. if (version != usrv->version)
  1429. continue;
  1430. if (os_strcmp(str, "ssdp:all") != 0 &&
  1431. os_strstr(usrv->service, str) == NULL)
  1432. continue;
  1433. if (wpabuf_tailroom(resp) < 2)
  1434. break;
  1435. if (count == 0) {
  1436. /* Status Code */
  1437. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1438. /* Response Data */
  1439. wpabuf_put_u8(resp, version);
  1440. } else
  1441. wpabuf_put_u8(resp, ',');
  1442. count++;
  1443. wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
  1444. usrv->service);
  1445. if (wpabuf_tailroom(resp) < os_strlen(usrv->service))
  1446. break;
  1447. wpabuf_put_str(resp, usrv->service);
  1448. }
  1449. os_free(str);
  1450. if (count == 0) {
  1451. wpa_printf(MSG_DEBUG, "P2P: Requested UPnP service not "
  1452. "available");
  1453. /* Status Code */
  1454. wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
  1455. /* Response Data: empty */
  1456. }
  1457. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1458. }
  1459. #ifdef CONFIG_WIFI_DISPLAY
  1460. static void wpas_sd_req_wfd(struct wpa_supplicant *wpa_s,
  1461. struct wpabuf *resp, u8 srv_trans_id,
  1462. const u8 *query, size_t query_len)
  1463. {
  1464. const u8 *pos;
  1465. u8 role;
  1466. u8 *len_pos;
  1467. wpa_hexdump(MSG_DEBUG, "P2P: SD Request for WFD", query, query_len);
  1468. if (!wpa_s->global->wifi_display) {
  1469. wpa_printf(MSG_DEBUG, "P2P: WFD protocol not available");
  1470. wpas_sd_add_proto_not_avail(resp, P2P_SERV_WIFI_DISPLAY,
  1471. srv_trans_id);
  1472. return;
  1473. }
  1474. if (query_len < 1) {
  1475. wpa_printf(MSG_DEBUG, "P2P: Missing WFD Requested Device "
  1476. "Role");
  1477. return;
  1478. }
  1479. if (wpabuf_tailroom(resp) < 5)
  1480. return;
  1481. pos = query;
  1482. role = *pos++;
  1483. wpa_printf(MSG_DEBUG, "P2P: WSD for device role 0x%x", role);
  1484. /* TODO: role specific handling */
  1485. /* Length (to be filled) */
  1486. len_pos = wpabuf_put(resp, 2);
  1487. wpabuf_put_u8(resp, P2P_SERV_WIFI_DISPLAY);
  1488. wpabuf_put_u8(resp, srv_trans_id);
  1489. wpabuf_put_u8(resp, P2P_SD_SUCCESS); /* Status Code */
  1490. while (pos < query + query_len) {
  1491. if (*pos < MAX_WFD_SUBELEMS &&
  1492. wpa_s->global->wfd_subelem[*pos] &&
  1493. wpabuf_tailroom(resp) >=
  1494. wpabuf_len(wpa_s->global->wfd_subelem[*pos])) {
  1495. wpa_printf(MSG_DEBUG, "P2P: Add WSD response "
  1496. "subelement %u", *pos);
  1497. wpabuf_put_buf(resp, wpa_s->global->wfd_subelem[*pos]);
  1498. }
  1499. pos++;
  1500. }
  1501. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1502. }
  1503. #endif /* CONFIG_WIFI_DISPLAY */
  1504. void wpas_sd_request(void *ctx, int freq, const u8 *sa, u8 dialog_token,
  1505. u16 update_indic, const u8 *tlvs, size_t tlvs_len)
  1506. {
  1507. struct wpa_supplicant *wpa_s = ctx;
  1508. const u8 *pos = tlvs;
  1509. const u8 *end = tlvs + tlvs_len;
  1510. const u8 *tlv_end;
  1511. u16 slen;
  1512. struct wpabuf *resp;
  1513. u8 srv_proto, srv_trans_id;
  1514. size_t buf_len;
  1515. char *buf;
  1516. wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Request TLVs",
  1517. tlvs, tlvs_len);
  1518. buf_len = 2 * tlvs_len + 1;
  1519. buf = os_malloc(buf_len);
  1520. if (buf) {
  1521. wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
  1522. wpa_msg_ctrl(wpa_s, MSG_INFO, P2P_EVENT_SERV_DISC_REQ "%d "
  1523. MACSTR " %u %u %s",
  1524. freq, MAC2STR(sa), dialog_token, update_indic,
  1525. buf);
  1526. os_free(buf);
  1527. }
  1528. if (wpa_s->p2p_sd_over_ctrl_iface) {
  1529. wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
  1530. update_indic, tlvs, tlvs_len);
  1531. return; /* to be processed by an external program */
  1532. }
  1533. resp = wpabuf_alloc(10000);
  1534. if (resp == NULL)
  1535. return;
  1536. while (pos + 1 < end) {
  1537. wpa_printf(MSG_DEBUG, "P2P: Service Request TLV");
  1538. slen = WPA_GET_LE16(pos);
  1539. pos += 2;
  1540. if (pos + slen > end || slen < 2) {
  1541. wpa_printf(MSG_DEBUG, "P2P: Unexpected Query Data "
  1542. "length");
  1543. wpabuf_free(resp);
  1544. return;
  1545. }
  1546. tlv_end = pos + slen;
  1547. srv_proto = *pos++;
  1548. wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
  1549. srv_proto);
  1550. srv_trans_id = *pos++;
  1551. wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
  1552. srv_trans_id);
  1553. wpa_hexdump(MSG_MSGDUMP, "P2P: Query Data",
  1554. pos, tlv_end - pos);
  1555. if (wpa_s->force_long_sd) {
  1556. wpa_printf(MSG_DEBUG, "P2P: SD test - force long "
  1557. "response");
  1558. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1559. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1560. goto done;
  1561. }
  1562. switch (srv_proto) {
  1563. case P2P_SERV_ALL_SERVICES:
  1564. wpa_printf(MSG_DEBUG, "P2P: Service Discovery Request "
  1565. "for all services");
  1566. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp) &&
  1567. dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1568. wpa_printf(MSG_DEBUG, "P2P: No service "
  1569. "discovery protocols available");
  1570. wpas_sd_add_proto_not_avail(
  1571. resp, P2P_SERV_ALL_SERVICES,
  1572. srv_trans_id);
  1573. break;
  1574. }
  1575. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1576. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1577. break;
  1578. case P2P_SERV_BONJOUR:
  1579. wpas_sd_req_bonjour(wpa_s, resp, srv_trans_id,
  1580. pos, tlv_end - pos);
  1581. break;
  1582. case P2P_SERV_UPNP:
  1583. wpas_sd_req_upnp(wpa_s, resp, srv_trans_id,
  1584. pos, tlv_end - pos);
  1585. break;
  1586. #ifdef CONFIG_WIFI_DISPLAY
  1587. case P2P_SERV_WIFI_DISPLAY:
  1588. wpas_sd_req_wfd(wpa_s, resp, srv_trans_id,
  1589. pos, tlv_end - pos);
  1590. break;
  1591. #endif /* CONFIG_WIFI_DISPLAY */
  1592. default:
  1593. wpa_printf(MSG_DEBUG, "P2P: Unavailable service "
  1594. "protocol %u", srv_proto);
  1595. wpas_sd_add_proto_not_avail(resp, srv_proto,
  1596. srv_trans_id);
  1597. break;
  1598. }
  1599. pos = tlv_end;
  1600. }
  1601. done:
  1602. wpas_notify_p2p_sd_request(wpa_s, freq, sa, dialog_token,
  1603. update_indic, tlvs, tlvs_len);
  1604. wpas_p2p_sd_response(wpa_s, freq, sa, dialog_token, resp);
  1605. wpabuf_free(resp);
  1606. }
  1607. void wpas_sd_response(void *ctx, const u8 *sa, u16 update_indic,
  1608. const u8 *tlvs, size_t tlvs_len)
  1609. {
  1610. struct wpa_supplicant *wpa_s = ctx;
  1611. const u8 *pos = tlvs;
  1612. const u8 *end = tlvs + tlvs_len;
  1613. const u8 *tlv_end;
  1614. u16 slen;
  1615. size_t buf_len;
  1616. char *buf;
  1617. wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Response TLVs",
  1618. tlvs, tlvs_len);
  1619. if (tlvs_len > 1500) {
  1620. /* TODO: better way for handling this */
  1621. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1622. P2P_EVENT_SERV_DISC_RESP MACSTR
  1623. " %u <long response: %u bytes>",
  1624. MAC2STR(sa), update_indic,
  1625. (unsigned int) tlvs_len);
  1626. } else {
  1627. buf_len = 2 * tlvs_len + 1;
  1628. buf = os_malloc(buf_len);
  1629. if (buf) {
  1630. wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
  1631. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1632. P2P_EVENT_SERV_DISC_RESP MACSTR " %u %s",
  1633. MAC2STR(sa), update_indic, buf);
  1634. os_free(buf);
  1635. }
  1636. }
  1637. while (pos < end) {
  1638. u8 srv_proto, srv_trans_id, status;
  1639. wpa_printf(MSG_DEBUG, "P2P: Service Response TLV");
  1640. slen = WPA_GET_LE16(pos);
  1641. pos += 2;
  1642. if (pos + slen > end || slen < 3) {
  1643. wpa_printf(MSG_DEBUG, "P2P: Unexpected Response Data "
  1644. "length");
  1645. return;
  1646. }
  1647. tlv_end = pos + slen;
  1648. srv_proto = *pos++;
  1649. wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
  1650. srv_proto);
  1651. srv_trans_id = *pos++;
  1652. wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
  1653. srv_trans_id);
  1654. status = *pos++;
  1655. wpa_printf(MSG_DEBUG, "P2P: Status Code ID %u",
  1656. status);
  1657. wpa_hexdump(MSG_MSGDUMP, "P2P: Response Data",
  1658. pos, tlv_end - pos);
  1659. pos = tlv_end;
  1660. }
  1661. wpas_notify_p2p_sd_response(wpa_s, sa, update_indic, tlvs, tlvs_len);
  1662. }
  1663. u64 wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
  1664. const struct wpabuf *tlvs)
  1665. {
  1666. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1667. return wpa_drv_p2p_sd_request(wpa_s, dst, tlvs);
  1668. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1669. return 0;
  1670. return (uintptr_t) p2p_sd_request(wpa_s->global->p2p, dst, tlvs);
  1671. }
  1672. u64 wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
  1673. u8 version, const char *query)
  1674. {
  1675. struct wpabuf *tlvs;
  1676. u64 ret;
  1677. tlvs = wpabuf_alloc(2 + 1 + 1 + 1 + os_strlen(query));
  1678. if (tlvs == NULL)
  1679. return 0;
  1680. wpabuf_put_le16(tlvs, 1 + 1 + 1 + os_strlen(query));
  1681. wpabuf_put_u8(tlvs, P2P_SERV_UPNP); /* Service Protocol Type */
  1682. wpabuf_put_u8(tlvs, 1); /* Service Transaction ID */
  1683. wpabuf_put_u8(tlvs, version);
  1684. wpabuf_put_str(tlvs, query);
  1685. ret = wpas_p2p_sd_request(wpa_s, dst, tlvs);
  1686. wpabuf_free(tlvs);
  1687. return ret;
  1688. }
  1689. #ifdef CONFIG_WIFI_DISPLAY
  1690. static u64 wpas_p2p_sd_request_wfd(struct wpa_supplicant *wpa_s, const u8 *dst,
  1691. const struct wpabuf *tlvs)
  1692. {
  1693. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1694. return 0;
  1695. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1696. return 0;
  1697. return (uintptr_t) p2p_sd_request_wfd(wpa_s->global->p2p, dst, tlvs);
  1698. }
  1699. #define MAX_WFD_SD_SUBELEMS 20
  1700. static void wfd_add_sd_req_role(struct wpabuf *tlvs, u8 id, u8 role,
  1701. const char *subelems)
  1702. {
  1703. u8 *len;
  1704. const char *pos;
  1705. int val;
  1706. int count = 0;
  1707. len = wpabuf_put(tlvs, 2);
  1708. wpabuf_put_u8(tlvs, P2P_SERV_WIFI_DISPLAY); /* Service Protocol Type */
  1709. wpabuf_put_u8(tlvs, id); /* Service Transaction ID */
  1710. wpabuf_put_u8(tlvs, role);
  1711. pos = subelems;
  1712. while (*pos) {
  1713. val = atoi(pos);
  1714. if (val >= 0 && val < 256) {
  1715. wpabuf_put_u8(tlvs, val);
  1716. count++;
  1717. if (count == MAX_WFD_SD_SUBELEMS)
  1718. break;
  1719. }
  1720. pos = os_strchr(pos + 1, ',');
  1721. if (pos == NULL)
  1722. break;
  1723. pos++;
  1724. }
  1725. WPA_PUT_LE16(len, (u8 *) wpabuf_put(tlvs, 0) - len - 2);
  1726. }
  1727. u64 wpas_p2p_sd_request_wifi_display(struct wpa_supplicant *wpa_s,
  1728. const u8 *dst, const char *role)
  1729. {
  1730. struct wpabuf *tlvs;
  1731. u64 ret;
  1732. const char *subelems;
  1733. u8 id = 1;
  1734. subelems = os_strchr(role, ' ');
  1735. if (subelems == NULL)
  1736. return 0;
  1737. subelems++;
  1738. tlvs = wpabuf_alloc(4 * (2 + 1 + 1 + 1 + MAX_WFD_SD_SUBELEMS));
  1739. if (tlvs == NULL)
  1740. return 0;
  1741. if (os_strstr(role, "[source]"))
  1742. wfd_add_sd_req_role(tlvs, id++, 0x00, subelems);
  1743. if (os_strstr(role, "[pri-sink]"))
  1744. wfd_add_sd_req_role(tlvs, id++, 0x01, subelems);
  1745. if (os_strstr(role, "[sec-sink]"))
  1746. wfd_add_sd_req_role(tlvs, id++, 0x02, subelems);
  1747. if (os_strstr(role, "[source+sink]"))
  1748. wfd_add_sd_req_role(tlvs, id++, 0x03, subelems);
  1749. ret = wpas_p2p_sd_request_wfd(wpa_s, dst, tlvs);
  1750. wpabuf_free(tlvs);
  1751. return ret;
  1752. }
  1753. #endif /* CONFIG_WIFI_DISPLAY */
  1754. int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, u64 req)
  1755. {
  1756. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  1757. return wpa_drv_p2p_sd_cancel_request(wpa_s, req);
  1758. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1759. return -1;
  1760. return p2p_sd_cancel_request(wpa_s->global->p2p,
  1761. (void *) (uintptr_t) req);
  1762. }
  1763. void wpas_p2p_sd_response(struct wpa_supplicant *wpa_s, int freq,
  1764. const u8 *dst, u8 dialog_token,
  1765. const struct wpabuf *resp_tlvs)
  1766. {
  1767. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  1768. wpa_drv_p2p_sd_response(wpa_s, freq, dst, dialog_token,
  1769. resp_tlvs);
  1770. return;
  1771. }
  1772. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  1773. return;
  1774. p2p_sd_response(wpa_s->global->p2p, freq, dst, dialog_token,
  1775. resp_tlvs);
  1776. }
  1777. void wpas_p2p_sd_service_update(struct wpa_supplicant *wpa_s)
  1778. {
  1779. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  1780. wpa_drv_p2p_service_update(wpa_s);
  1781. return;
  1782. }
  1783. if (wpa_s->global->p2p)
  1784. p2p_sd_service_update(wpa_s->global->p2p);
  1785. }
  1786. static void wpas_p2p_srv_bonjour_free(struct p2p_srv_bonjour *bsrv)
  1787. {
  1788. dl_list_del(&bsrv->list);
  1789. wpabuf_free(bsrv->query);
  1790. wpabuf_free(bsrv->resp);
  1791. os_free(bsrv);
  1792. }
  1793. static void wpas_p2p_srv_upnp_free(struct p2p_srv_upnp *usrv)
  1794. {
  1795. dl_list_del(&usrv->list);
  1796. os_free(usrv->service);
  1797. os_free(usrv);
  1798. }
  1799. void wpas_p2p_service_flush(struct wpa_supplicant *wpa_s)
  1800. {
  1801. struct p2p_srv_bonjour *bsrv, *bn;
  1802. struct p2p_srv_upnp *usrv, *un;
  1803. dl_list_for_each_safe(bsrv, bn, &wpa_s->global->p2p_srv_bonjour,
  1804. struct p2p_srv_bonjour, list)
  1805. wpas_p2p_srv_bonjour_free(bsrv);
  1806. dl_list_for_each_safe(usrv, un, &wpa_s->global->p2p_srv_upnp,
  1807. struct p2p_srv_upnp, list)
  1808. wpas_p2p_srv_upnp_free(usrv);
  1809. wpas_p2p_sd_service_update(wpa_s);
  1810. }
  1811. int wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s,
  1812. struct wpabuf *query, struct wpabuf *resp)
  1813. {
  1814. struct p2p_srv_bonjour *bsrv;
  1815. bsrv = os_zalloc(sizeof(*bsrv));
  1816. if (bsrv == NULL)
  1817. return -1;
  1818. bsrv->query = query;
  1819. bsrv->resp = resp;
  1820. dl_list_add(&wpa_s->global->p2p_srv_bonjour, &bsrv->list);
  1821. wpas_p2p_sd_service_update(wpa_s);
  1822. return 0;
  1823. }
  1824. int wpas_p2p_service_del_bonjour(struct wpa_supplicant *wpa_s,
  1825. const struct wpabuf *query)
  1826. {
  1827. struct p2p_srv_bonjour *bsrv;
  1828. bsrv = wpas_p2p_service_get_bonjour(wpa_s, query);
  1829. if (bsrv == NULL)
  1830. return -1;
  1831. wpas_p2p_srv_bonjour_free(bsrv);
  1832. wpas_p2p_sd_service_update(wpa_s);
  1833. return 0;
  1834. }
  1835. int wpas_p2p_service_add_upnp(struct wpa_supplicant *wpa_s, u8 version,
  1836. const char *service)
  1837. {
  1838. struct p2p_srv_upnp *usrv;
  1839. if (wpas_p2p_service_get_upnp(wpa_s, version, service))
  1840. return 0; /* Already listed */
  1841. usrv = os_zalloc(sizeof(*usrv));
  1842. if (usrv == NULL)
  1843. return -1;
  1844. usrv->version = version;
  1845. usrv->service = os_strdup(service);
  1846. if (usrv->service == NULL) {
  1847. os_free(usrv);
  1848. return -1;
  1849. }
  1850. dl_list_add(&wpa_s->global->p2p_srv_upnp, &usrv->list);
  1851. wpas_p2p_sd_service_update(wpa_s);
  1852. return 0;
  1853. }
  1854. int wpas_p2p_service_del_upnp(struct wpa_supplicant *wpa_s, u8 version,
  1855. const char *service)
  1856. {
  1857. struct p2p_srv_upnp *usrv;
  1858. usrv = wpas_p2p_service_get_upnp(wpa_s, version, service);
  1859. if (usrv == NULL)
  1860. return -1;
  1861. wpas_p2p_srv_upnp_free(usrv);
  1862. wpas_p2p_sd_service_update(wpa_s);
  1863. return 0;
  1864. }
  1865. static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
  1866. const u8 *peer, const char *params,
  1867. unsigned int generated_pin)
  1868. {
  1869. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR " %08d%s",
  1870. MAC2STR(peer), generated_pin, params);
  1871. }
  1872. static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
  1873. const u8 *peer, const char *params)
  1874. {
  1875. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR "%s",
  1876. MAC2STR(peer), params);
  1877. }
  1878. void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
  1879. const u8 *dev_addr, const u8 *pri_dev_type,
  1880. const char *dev_name, u16 supp_config_methods,
  1881. u8 dev_capab, u8 group_capab, const u8 *group_id,
  1882. size_t group_id_len)
  1883. {
  1884. struct wpa_supplicant *wpa_s = ctx;
  1885. char devtype[WPS_DEV_TYPE_BUFSIZE];
  1886. char params[300];
  1887. u8 empty_dev_type[8];
  1888. unsigned int generated_pin = 0;
  1889. struct wpa_supplicant *group = NULL;
  1890. if (group_id) {
  1891. for (group = wpa_s->global->ifaces; group; group = group->next)
  1892. {
  1893. struct wpa_ssid *s = group->current_ssid;
  1894. if (s != NULL &&
  1895. s->mode == WPAS_MODE_P2P_GO &&
  1896. group_id_len - ETH_ALEN == s->ssid_len &&
  1897. os_memcmp(group_id + ETH_ALEN, s->ssid,
  1898. s->ssid_len) == 0)
  1899. break;
  1900. }
  1901. }
  1902. if (pri_dev_type == NULL) {
  1903. os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
  1904. pri_dev_type = empty_dev_type;
  1905. }
  1906. os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
  1907. " pri_dev_type=%s name='%s' config_methods=0x%x "
  1908. "dev_capab=0x%x group_capab=0x%x%s%s",
  1909. MAC2STR(dev_addr),
  1910. wps_dev_type_bin2str(pri_dev_type, devtype,
  1911. sizeof(devtype)),
  1912. dev_name, supp_config_methods, dev_capab, group_capab,
  1913. group ? " group=" : "",
  1914. group ? group->ifname : "");
  1915. params[sizeof(params) - 1] = '\0';
  1916. if (config_methods & WPS_CONFIG_DISPLAY) {
  1917. generated_pin = wps_generate_pin();
  1918. wpas_prov_disc_local_display(wpa_s, peer, params,
  1919. generated_pin);
  1920. } else if (config_methods & WPS_CONFIG_KEYPAD)
  1921. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  1922. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  1923. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ MACSTR
  1924. "%s", MAC2STR(peer), params);
  1925. wpas_notify_p2p_provision_discovery(wpa_s, peer, 1 /* request */,
  1926. P2P_PROV_DISC_SUCCESS,
  1927. config_methods, generated_pin);
  1928. }
  1929. void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
  1930. {
  1931. struct wpa_supplicant *wpa_s = ctx;
  1932. unsigned int generated_pin = 0;
  1933. char params[20];
  1934. if (wpa_s->pending_pd_before_join &&
  1935. (os_memcmp(peer, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 ||
  1936. os_memcmp(peer, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
  1937. wpa_s->pending_pd_before_join = 0;
  1938. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  1939. "join-existing-group operation");
  1940. wpas_p2p_join_start(wpa_s);
  1941. return;
  1942. }
  1943. if (wpa_s->pending_pd_use == AUTO_PD_JOIN ||
  1944. wpa_s->pending_pd_use == AUTO_PD_GO_NEG)
  1945. os_snprintf(params, sizeof(params), " peer_go=%d",
  1946. wpa_s->pending_pd_use == AUTO_PD_JOIN);
  1947. else
  1948. params[0] = '\0';
  1949. if (config_methods & WPS_CONFIG_DISPLAY)
  1950. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  1951. else if (config_methods & WPS_CONFIG_KEYPAD) {
  1952. generated_pin = wps_generate_pin();
  1953. wpas_prov_disc_local_display(wpa_s, peer, params,
  1954. generated_pin);
  1955. } else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  1956. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP MACSTR
  1957. "%s", MAC2STR(peer), params);
  1958. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  1959. P2P_PROV_DISC_SUCCESS,
  1960. config_methods, generated_pin);
  1961. }
  1962. static void wpas_prov_disc_fail(void *ctx, const u8 *peer,
  1963. enum p2p_prov_disc_status status)
  1964. {
  1965. struct wpa_supplicant *wpa_s = ctx;
  1966. if (wpa_s->p2p_fallback_to_go_neg) {
  1967. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: PD for p2p_connect-auto "
  1968. "failed - fall back to GO Negotiation");
  1969. wpas_p2p_fallback_to_go_neg(wpa_s, 0);
  1970. return;
  1971. }
  1972. if (status == P2P_PROV_DISC_TIMEOUT_JOIN) {
  1973. wpa_s->pending_pd_before_join = 0;
  1974. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  1975. "join-existing-group operation (no ACK for PD "
  1976. "Req attempts)");
  1977. wpas_p2p_join_start(wpa_s);
  1978. return;
  1979. }
  1980. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  1981. " p2p_dev_addr=" MACSTR " status=%d",
  1982. MAC2STR(peer), status);
  1983. wpas_notify_p2p_provision_discovery(wpa_s, peer, 0 /* response */,
  1984. status, 0, 0);
  1985. }
  1986. static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
  1987. const u8 *go_dev_addr, const u8 *ssid,
  1988. size_t ssid_len, int *go, u8 *group_bssid,
  1989. int *force_freq, int persistent_group)
  1990. {
  1991. struct wpa_supplicant *wpa_s = ctx;
  1992. struct wpa_ssid *s;
  1993. u8 cur_bssid[ETH_ALEN];
  1994. int res;
  1995. struct wpa_supplicant *grp;
  1996. if (!persistent_group) {
  1997. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  1998. " to join an active group", MAC2STR(sa));
  1999. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2000. (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
  2001. == 0 ||
  2002. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
  2003. wpa_printf(MSG_DEBUG, "P2P: Accept previously "
  2004. "authorized invitation");
  2005. goto accept_inv;
  2006. }
  2007. /*
  2008. * Do not accept the invitation automatically; notify user and
  2009. * request approval.
  2010. */
  2011. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2012. }
  2013. grp = wpas_get_p2p_group(wpa_s, ssid, ssid_len, go);
  2014. if (grp) {
  2015. wpa_printf(MSG_DEBUG, "P2P: Accept invitation to already "
  2016. "running persistent group");
  2017. if (*go)
  2018. os_memcpy(group_bssid, grp->own_addr, ETH_ALEN);
  2019. goto accept_inv;
  2020. }
  2021. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  2022. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0) {
  2023. wpa_printf(MSG_DEBUG, "P2P: Accept previously initiated "
  2024. "invitation to re-invoke a persistent group");
  2025. } else if (!wpa_s->conf->persistent_reconnect)
  2026. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  2027. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2028. if (s->disabled == 2 &&
  2029. os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
  2030. s->ssid_len == ssid_len &&
  2031. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2032. break;
  2033. }
  2034. if (!s) {
  2035. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  2036. " requested reinvocation of an unknown group",
  2037. MAC2STR(sa));
  2038. return P2P_SC_FAIL_UNKNOWN_GROUP;
  2039. }
  2040. if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
  2041. *go = 1;
  2042. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  2043. wpa_printf(MSG_DEBUG, "P2P: The only available "
  2044. "interface is already in use - reject "
  2045. "invitation");
  2046. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2047. }
  2048. os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
  2049. } else if (s->mode == WPAS_MODE_P2P_GO) {
  2050. *go = 1;
  2051. if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
  2052. {
  2053. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  2054. "interface address for the group");
  2055. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  2056. }
  2057. os_memcpy(group_bssid, wpa_s->pending_interface_addr,
  2058. ETH_ALEN);
  2059. }
  2060. accept_inv:
  2061. wpas_p2p_set_own_freq_preference(wpa_s, 0);
  2062. if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, cur_bssid) == 0 &&
  2063. wpa_s->assoc_freq) {
  2064. wpa_printf(MSG_DEBUG, "P2P: Trying to force channel to match "
  2065. "the channel we are already using");
  2066. *force_freq = wpa_s->assoc_freq;
  2067. wpas_p2p_set_own_freq_preference(wpa_s, wpa_s->assoc_freq);
  2068. }
  2069. res = wpa_drv_shared_freq(wpa_s);
  2070. if (res > 0) {
  2071. wpa_printf(MSG_DEBUG, "P2P: Trying to force channel to match "
  2072. "with the channel we are already using on a "
  2073. "shared interface");
  2074. *force_freq = res;
  2075. wpas_p2p_set_own_freq_preference(wpa_s, res);
  2076. }
  2077. return P2P_SC_SUCCESS;
  2078. }
  2079. static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
  2080. const u8 *ssid, size_t ssid_len,
  2081. const u8 *go_dev_addr, u8 status,
  2082. int op_freq)
  2083. {
  2084. struct wpa_supplicant *wpa_s = ctx;
  2085. struct wpa_ssid *s;
  2086. for (s = wpa_s->conf->ssid; s; s = s->next) {
  2087. if (s->disabled == 2 &&
  2088. s->ssid_len == ssid_len &&
  2089. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  2090. break;
  2091. }
  2092. if (status == P2P_SC_SUCCESS) {
  2093. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2094. " was accepted; op_freq=%d MHz",
  2095. MAC2STR(sa), op_freq);
  2096. if (s) {
  2097. int go = s->mode == WPAS_MODE_P2P_GO;
  2098. wpas_p2p_group_add_persistent(
  2099. wpa_s, s, go, go ? op_freq : 0, 0, NULL);
  2100. } else if (bssid) {
  2101. wpa_s->user_initiated_pd = 0;
  2102. wpas_p2p_join(wpa_s, bssid, go_dev_addr,
  2103. wpa_s->p2p_wps_method, 0);
  2104. }
  2105. return;
  2106. }
  2107. if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2108. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  2109. " was rejected (status %u)", MAC2STR(sa), status);
  2110. return;
  2111. }
  2112. if (!s) {
  2113. if (bssid) {
  2114. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2115. "sa=" MACSTR " go_dev_addr=" MACSTR
  2116. " bssid=" MACSTR " unknown-network",
  2117. MAC2STR(sa), MAC2STR(go_dev_addr),
  2118. MAC2STR(bssid));
  2119. } else {
  2120. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  2121. "sa=" MACSTR " go_dev_addr=" MACSTR
  2122. " unknown-network",
  2123. MAC2STR(sa), MAC2STR(go_dev_addr));
  2124. }
  2125. return;
  2126. }
  2127. if (s->mode == WPAS_MODE_P2P_GO && op_freq) {
  2128. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED "sa="
  2129. MACSTR " persistent=%d freq=%d",
  2130. MAC2STR(sa), s->id, op_freq);
  2131. } else {
  2132. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED "sa="
  2133. MACSTR " persistent=%d", MAC2STR(sa), s->id);
  2134. }
  2135. }
  2136. static void wpas_remove_persistent_peer(struct wpa_supplicant *wpa_s,
  2137. struct wpa_ssid *ssid,
  2138. const u8 *peer)
  2139. {
  2140. size_t i;
  2141. if (ssid == NULL)
  2142. return;
  2143. for (i = 0; ssid->p2p_client_list && i < ssid->num_p2p_clients; i++) {
  2144. if (os_memcmp(ssid->p2p_client_list + i * ETH_ALEN, peer,
  2145. ETH_ALEN) == 0)
  2146. break;
  2147. }
  2148. if (i >= ssid->num_p2p_clients) {
  2149. if (ssid->mode != WPAS_MODE_P2P_GO &&
  2150. os_memcmp(ssid->bssid, peer, ETH_ALEN) == 0) {
  2151. wpa_printf(MSG_DEBUG, "P2P: Remove persistent group %d "
  2152. "due to invitation result", ssid->id);
  2153. wpas_notify_network_removed(wpa_s, ssid);
  2154. wpa_config_remove_network(wpa_s->conf, ssid->id);
  2155. return;
  2156. }
  2157. return; /* Peer not found in client list */
  2158. }
  2159. wpa_printf(MSG_DEBUG, "P2P: Remove peer " MACSTR " from persistent "
  2160. "group %d client list due to invitation result",
  2161. MAC2STR(peer), ssid->id);
  2162. os_memmove(ssid->p2p_client_list + i * ETH_ALEN,
  2163. ssid->p2p_client_list + (i + 1) * ETH_ALEN,
  2164. (ssid->num_p2p_clients - i - 1) * ETH_ALEN);
  2165. ssid->num_p2p_clients--;
  2166. #ifndef CONFIG_NO_CONFIG_WRITE
  2167. if (wpa_s->parent->conf->update_config &&
  2168. wpa_config_write(wpa_s->parent->confname, wpa_s->parent->conf))
  2169. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  2170. #endif /* CONFIG_NO_CONFIG_WRITE */
  2171. }
  2172. static void wpas_remove_persistent_client(struct wpa_supplicant *wpa_s,
  2173. const u8 *peer)
  2174. {
  2175. struct wpa_ssid *ssid;
  2176. wpa_s = wpa_s->global->p2p_invite_group;
  2177. if (wpa_s == NULL)
  2178. return; /* No known invitation group */
  2179. ssid = wpa_s->current_ssid;
  2180. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GO ||
  2181. !ssid->p2p_persistent_group)
  2182. return; /* Not operating as a GO in persistent group */
  2183. ssid = wpas_p2p_get_persistent(wpa_s->parent, peer,
  2184. ssid->ssid, ssid->ssid_len);
  2185. wpas_remove_persistent_peer(wpa_s, ssid, peer);
  2186. }
  2187. static void wpas_invitation_result(void *ctx, int status, const u8 *bssid,
  2188. const struct p2p_channels *channels,
  2189. const u8 *peer)
  2190. {
  2191. struct wpa_supplicant *wpa_s = ctx;
  2192. struct wpa_ssid *ssid;
  2193. if (bssid) {
  2194. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2195. "status=%d " MACSTR,
  2196. status, MAC2STR(bssid));
  2197. } else {
  2198. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  2199. "status=%d ", status);
  2200. }
  2201. wpas_notify_p2p_invitation_result(wpa_s, status, bssid);
  2202. wpa_printf(MSG_DEBUG, "P2P: Invitation result - status=%d peer=" MACSTR,
  2203. status, MAC2STR(peer));
  2204. if (wpa_s->pending_invite_ssid_id == -1) {
  2205. if (status == P2P_SC_FAIL_UNKNOWN_GROUP)
  2206. wpas_remove_persistent_client(wpa_s, peer);
  2207. return; /* Invitation to active group */
  2208. }
  2209. if (status == P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  2210. wpa_printf(MSG_DEBUG, "P2P: Waiting for peer to start another "
  2211. "invitation exchange to indicate readiness for "
  2212. "re-invocation");
  2213. }
  2214. if (status != P2P_SC_SUCCESS) {
  2215. if (status == P2P_SC_FAIL_UNKNOWN_GROUP) {
  2216. ssid = wpa_config_get_network(
  2217. wpa_s->conf, wpa_s->pending_invite_ssid_id);
  2218. wpas_remove_persistent_peer(wpa_s, ssid, peer);
  2219. }
  2220. wpas_p2p_remove_pending_group_interface(wpa_s);
  2221. return;
  2222. }
  2223. ssid = wpa_config_get_network(wpa_s->conf,
  2224. wpa_s->pending_invite_ssid_id);
  2225. if (ssid == NULL) {
  2226. wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
  2227. "data matching with invitation");
  2228. return;
  2229. }
  2230. /*
  2231. * The peer could have missed our ctrl::ack frame for Invitation
  2232. * Response and continue retransmitting the frame. To reduce the
  2233. * likelihood of the peer not getting successful TX status for the
  2234. * Invitation Response frame, wait a short time here before starting
  2235. * the persistent group so that we will remain on the current channel to
  2236. * acknowledge any possible retransmission from the peer.
  2237. */
  2238. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: 50 ms wait on current channel before "
  2239. "starting persistent group");
  2240. os_sleep(0, 50000);
  2241. wpas_p2p_group_add_persistent(wpa_s, ssid,
  2242. ssid->mode == WPAS_MODE_P2P_GO,
  2243. wpa_s->p2p_persistent_go_freq,
  2244. wpa_s->p2p_go_ht40, channels);
  2245. }
  2246. static int wpas_p2p_disallowed_freq(struct wpa_global *global,
  2247. unsigned int freq)
  2248. {
  2249. unsigned int i;
  2250. if (global->p2p_disallow_freq == NULL)
  2251. return 0;
  2252. for (i = 0; i < global->num_p2p_disallow_freq; i++) {
  2253. if (freq >= global->p2p_disallow_freq[i].min &&
  2254. freq <= global->p2p_disallow_freq[i].max)
  2255. return 1;
  2256. }
  2257. return 0;
  2258. }
  2259. static void wpas_p2p_add_chan(struct p2p_reg_class *reg, u8 chan)
  2260. {
  2261. reg->channel[reg->channels] = chan;
  2262. reg->channels++;
  2263. }
  2264. static int wpas_p2p_default_channels(struct wpa_supplicant *wpa_s,
  2265. struct p2p_channels *chan)
  2266. {
  2267. int i, cla = 0;
  2268. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for 2.4 GHz "
  2269. "band");
  2270. /* Operating class 81 - 2.4 GHz band channels 1..13 */
  2271. chan->reg_class[cla].reg_class = 81;
  2272. chan->reg_class[cla].channels = 0;
  2273. for (i = 0; i < 11; i++) {
  2274. if (!wpas_p2p_disallowed_freq(wpa_s->global, 2412 + i * 5))
  2275. wpas_p2p_add_chan(&chan->reg_class[cla], i + 1);
  2276. }
  2277. if (chan->reg_class[cla].channels)
  2278. cla++;
  2279. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for lower 5 GHz "
  2280. "band");
  2281. /* Operating class 115 - 5 GHz, channels 36-48 */
  2282. chan->reg_class[cla].reg_class = 115;
  2283. chan->reg_class[cla].channels = 0;
  2284. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 36 * 5))
  2285. wpas_p2p_add_chan(&chan->reg_class[cla], 36);
  2286. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 40 * 5))
  2287. wpas_p2p_add_chan(&chan->reg_class[cla], 40);
  2288. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 44 * 5))
  2289. wpas_p2p_add_chan(&chan->reg_class[cla], 44);
  2290. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 48 * 5))
  2291. wpas_p2p_add_chan(&chan->reg_class[cla], 48);
  2292. if (chan->reg_class[cla].channels)
  2293. cla++;
  2294. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for higher 5 GHz "
  2295. "band");
  2296. /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
  2297. chan->reg_class[cla].reg_class = 124;
  2298. chan->reg_class[cla].channels = 0;
  2299. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 149 * 5))
  2300. wpas_p2p_add_chan(&chan->reg_class[cla], 149);
  2301. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 153 * 5))
  2302. wpas_p2p_add_chan(&chan->reg_class[cla], 153);
  2303. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 156 * 5))
  2304. wpas_p2p_add_chan(&chan->reg_class[cla], 157);
  2305. if (!wpas_p2p_disallowed_freq(wpa_s->global, 5000 + 161 * 5))
  2306. wpas_p2p_add_chan(&chan->reg_class[cla], 161);
  2307. if (chan->reg_class[cla].channels)
  2308. cla++;
  2309. chan->reg_classes = cla;
  2310. return 0;
  2311. }
  2312. static struct hostapd_hw_modes * get_mode(struct hostapd_hw_modes *modes,
  2313. u16 num_modes,
  2314. enum hostapd_hw_mode mode)
  2315. {
  2316. u16 i;
  2317. for (i = 0; i < num_modes; i++) {
  2318. if (modes[i].mode == mode)
  2319. return &modes[i];
  2320. }
  2321. return NULL;
  2322. }
  2323. static int has_channel(struct wpa_global *global,
  2324. struct hostapd_hw_modes *mode, u8 chan, int *flags)
  2325. {
  2326. int i;
  2327. unsigned int freq;
  2328. freq = (mode->mode == HOSTAPD_MODE_IEEE80211A ? 5000 : 2407) +
  2329. chan * 5;
  2330. if (wpas_p2p_disallowed_freq(global, freq))
  2331. return 0;
  2332. for (i = 0; i < mode->num_channels; i++) {
  2333. if (mode->channels[i].chan == chan) {
  2334. if (flags)
  2335. *flags = mode->channels[i].flag;
  2336. return !(mode->channels[i].flag &
  2337. (HOSTAPD_CHAN_DISABLED |
  2338. HOSTAPD_CHAN_PASSIVE_SCAN |
  2339. HOSTAPD_CHAN_NO_IBSS |
  2340. HOSTAPD_CHAN_RADAR));
  2341. }
  2342. }
  2343. return 0;
  2344. }
  2345. struct p2p_oper_class_map {
  2346. enum hostapd_hw_mode mode;
  2347. u8 op_class;
  2348. u8 min_chan;
  2349. u8 max_chan;
  2350. u8 inc;
  2351. enum { BW20, BW40PLUS, BW40MINUS } bw;
  2352. };
  2353. static struct p2p_oper_class_map op_class[] = {
  2354. { HOSTAPD_MODE_IEEE80211G, 81, 1, 13, 1, BW20 },
  2355. #if 0 /* Do not enable HT40 on 2 GHz for now */
  2356. { HOSTAPD_MODE_IEEE80211G, 83, 1, 9, 1, BW40PLUS },
  2357. { HOSTAPD_MODE_IEEE80211G, 84, 5, 13, 1, BW40MINUS },
  2358. #endif
  2359. { HOSTAPD_MODE_IEEE80211A, 115, 36, 48, 4, BW20 },
  2360. { HOSTAPD_MODE_IEEE80211A, 124, 149, 161, 4, BW20 },
  2361. { HOSTAPD_MODE_IEEE80211A, 116, 36, 44, 8, BW40PLUS },
  2362. { HOSTAPD_MODE_IEEE80211A, 117, 40, 48, 8, BW40MINUS },
  2363. { HOSTAPD_MODE_IEEE80211A, 126, 149, 157, 8, BW40PLUS },
  2364. { HOSTAPD_MODE_IEEE80211A, 127, 153, 161, 8, BW40MINUS },
  2365. { -1, 0, 0, 0, 0, BW20 }
  2366. };
  2367. static int wpas_p2p_verify_channel(struct wpa_supplicant *wpa_s,
  2368. struct hostapd_hw_modes *mode,
  2369. u8 channel, u8 bw)
  2370. {
  2371. int flag;
  2372. if (!has_channel(wpa_s->global, mode, channel, &flag))
  2373. return -1;
  2374. if (bw == BW40MINUS &&
  2375. (!(flag & HOSTAPD_CHAN_HT40MINUS) ||
  2376. !has_channel(wpa_s->global, mode, channel - 4, NULL)))
  2377. return 0;
  2378. if (bw == BW40PLUS &&
  2379. (!(flag & HOSTAPD_CHAN_HT40PLUS) ||
  2380. !has_channel(wpa_s->global, mode, channel + 4, NULL)))
  2381. return 0;
  2382. return 1;
  2383. }
  2384. static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
  2385. struct p2p_channels *chan)
  2386. {
  2387. struct hostapd_hw_modes *mode;
  2388. int cla, op;
  2389. if (wpa_s->hw.modes == NULL) {
  2390. wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
  2391. "of all supported channels; assume dualband "
  2392. "support");
  2393. return wpas_p2p_default_channels(wpa_s, chan);
  2394. }
  2395. cla = 0;
  2396. for (op = 0; op_class[op].op_class; op++) {
  2397. struct p2p_oper_class_map *o = &op_class[op];
  2398. u8 ch;
  2399. struct p2p_reg_class *reg = NULL;
  2400. mode = get_mode(wpa_s->hw.modes, wpa_s->hw.num_modes, o->mode);
  2401. if (mode == NULL)
  2402. continue;
  2403. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  2404. if (wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw) < 1)
  2405. continue;
  2406. if (reg == NULL) {
  2407. wpa_printf(MSG_DEBUG, "P2P: Add operating "
  2408. "class %u", o->op_class);
  2409. reg = &chan->reg_class[cla];
  2410. cla++;
  2411. reg->reg_class = o->op_class;
  2412. }
  2413. reg->channel[reg->channels] = ch;
  2414. reg->channels++;
  2415. }
  2416. if (reg) {
  2417. wpa_hexdump(MSG_DEBUG, "P2P: Channels",
  2418. reg->channel, reg->channels);
  2419. }
  2420. }
  2421. chan->reg_classes = cla;
  2422. return 0;
  2423. }
  2424. int wpas_p2p_get_ht40_mode(struct wpa_supplicant *wpa_s,
  2425. struct hostapd_hw_modes *mode, u8 channel)
  2426. {
  2427. int op, ret;
  2428. for (op = 0; op_class[op].op_class; op++) {
  2429. struct p2p_oper_class_map *o = &op_class[op];
  2430. u8 ch;
  2431. for (ch = o->min_chan; ch <= o->max_chan; ch += o->inc) {
  2432. if (o->mode != HOSTAPD_MODE_IEEE80211A ||
  2433. o->bw == BW20 || ch != channel)
  2434. continue;
  2435. ret = wpas_p2p_verify_channel(wpa_s, mode, ch, o->bw);
  2436. if (ret < 0)
  2437. continue;
  2438. else if (ret > 0)
  2439. return (o->bw == BW40MINUS) ? -1 : 1;
  2440. else
  2441. return 0;
  2442. }
  2443. }
  2444. return 0;
  2445. }
  2446. static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
  2447. size_t buf_len)
  2448. {
  2449. struct wpa_supplicant *wpa_s = ctx;
  2450. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2451. if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
  2452. break;
  2453. }
  2454. if (wpa_s == NULL)
  2455. return -1;
  2456. return wpa_drv_get_noa(wpa_s, buf, buf_len);
  2457. }
  2458. static int wpas_go_connected(void *ctx, const u8 *dev_addr)
  2459. {
  2460. struct wpa_supplicant *wpa_s = ctx;
  2461. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2462. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2463. if (ssid == NULL)
  2464. continue;
  2465. if (ssid->mode != WPAS_MODE_INFRA)
  2466. continue;
  2467. if (wpa_s->wpa_state != WPA_COMPLETED &&
  2468. wpa_s->wpa_state != WPA_GROUP_HANDSHAKE)
  2469. continue;
  2470. if (os_memcmp(wpa_s->go_dev_addr, dev_addr, ETH_ALEN) == 0)
  2471. return 1;
  2472. }
  2473. return 0;
  2474. }
  2475. /**
  2476. * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
  2477. * @global: Pointer to global data from wpa_supplicant_init()
  2478. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2479. * Returns: 0 on success, -1 on failure
  2480. */
  2481. int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
  2482. {
  2483. struct p2p_config p2p;
  2484. unsigned int r;
  2485. int i;
  2486. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  2487. return 0;
  2488. if (global->p2p)
  2489. return 0;
  2490. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  2491. struct p2p_params params;
  2492. wpa_printf(MSG_DEBUG, "P2P: Use driver-based P2P management");
  2493. os_memset(&params, 0, sizeof(params));
  2494. params.dev_name = wpa_s->conf->device_name;
  2495. os_memcpy(params.pri_dev_type, wpa_s->conf->device_type,
  2496. WPS_DEV_TYPE_LEN);
  2497. params.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  2498. os_memcpy(params.sec_dev_type,
  2499. wpa_s->conf->sec_device_type,
  2500. params.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  2501. if (wpa_drv_p2p_set_params(wpa_s, &params) < 0)
  2502. return -1;
  2503. return 0;
  2504. }
  2505. os_memset(&p2p, 0, sizeof(p2p));
  2506. p2p.msg_ctx = wpa_s;
  2507. p2p.cb_ctx = wpa_s;
  2508. p2p.p2p_scan = wpas_p2p_scan;
  2509. p2p.send_action = wpas_send_action;
  2510. p2p.send_action_done = wpas_send_action_done;
  2511. p2p.go_neg_completed = wpas_go_neg_completed;
  2512. p2p.go_neg_req_rx = wpas_go_neg_req_rx;
  2513. p2p.dev_found = wpas_dev_found;
  2514. p2p.dev_lost = wpas_dev_lost;
  2515. p2p.start_listen = wpas_start_listen;
  2516. p2p.stop_listen = wpas_stop_listen;
  2517. p2p.send_probe_resp = wpas_send_probe_resp;
  2518. p2p.sd_request = wpas_sd_request;
  2519. p2p.sd_response = wpas_sd_response;
  2520. p2p.prov_disc_req = wpas_prov_disc_req;
  2521. p2p.prov_disc_resp = wpas_prov_disc_resp;
  2522. p2p.prov_disc_fail = wpas_prov_disc_fail;
  2523. p2p.invitation_process = wpas_invitation_process;
  2524. p2p.invitation_received = wpas_invitation_received;
  2525. p2p.invitation_result = wpas_invitation_result;
  2526. p2p.get_noa = wpas_get_noa;
  2527. p2p.go_connected = wpas_go_connected;
  2528. os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
  2529. os_memcpy(p2p.dev_addr, wpa_s->global->p2p_dev_addr, ETH_ALEN);
  2530. p2p.dev_name = wpa_s->conf->device_name;
  2531. p2p.manufacturer = wpa_s->conf->manufacturer;
  2532. p2p.model_name = wpa_s->conf->model_name;
  2533. p2p.model_number = wpa_s->conf->model_number;
  2534. p2p.serial_number = wpa_s->conf->serial_number;
  2535. if (wpa_s->wps) {
  2536. os_memcpy(p2p.uuid, wpa_s->wps->uuid, 16);
  2537. p2p.config_methods = wpa_s->wps->config_methods;
  2538. }
  2539. if (wpa_s->conf->p2p_listen_reg_class &&
  2540. wpa_s->conf->p2p_listen_channel) {
  2541. p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
  2542. p2p.channel = wpa_s->conf->p2p_listen_channel;
  2543. } else {
  2544. p2p.reg_class = 81;
  2545. /*
  2546. * Pick one of the social channels randomly as the listen
  2547. * channel.
  2548. */
  2549. os_get_random((u8 *) &r, sizeof(r));
  2550. p2p.channel = 1 + (r % 3) * 5;
  2551. }
  2552. wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d", p2p.channel);
  2553. if (wpa_s->conf->p2p_oper_reg_class &&
  2554. wpa_s->conf->p2p_oper_channel) {
  2555. p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  2556. p2p.op_channel = wpa_s->conf->p2p_oper_channel;
  2557. p2p.cfg_op_channel = 1;
  2558. wpa_printf(MSG_DEBUG, "P2P: Configured operating channel: "
  2559. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  2560. } else {
  2561. p2p.op_reg_class = 81;
  2562. /*
  2563. * Use random operation channel from (1, 6, 11) if no other
  2564. * preference is indicated.
  2565. */
  2566. os_get_random((u8 *) &r, sizeof(r));
  2567. p2p.op_channel = 1 + (r % 3) * 5;
  2568. p2p.cfg_op_channel = 0;
  2569. wpa_printf(MSG_DEBUG, "P2P: Random operating channel: "
  2570. "%d:%d", p2p.op_reg_class, p2p.op_channel);
  2571. }
  2572. if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  2573. os_memcpy(p2p.country, wpa_s->conf->country, 2);
  2574. p2p.country[2] = 0x04;
  2575. } else
  2576. os_memcpy(p2p.country, "XX\x04", 3);
  2577. if (wpas_p2p_setup_channels(wpa_s, &p2p.channels)) {
  2578. wpa_printf(MSG_ERROR, "P2P: Failed to configure supported "
  2579. "channel list");
  2580. return -1;
  2581. }
  2582. os_memcpy(p2p.pri_dev_type, wpa_s->conf->device_type,
  2583. WPS_DEV_TYPE_LEN);
  2584. p2p.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  2585. os_memcpy(p2p.sec_dev_type, wpa_s->conf->sec_device_type,
  2586. p2p.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  2587. p2p.concurrent_operations = !!(wpa_s->drv_flags &
  2588. WPA_DRIVER_FLAGS_P2P_CONCURRENT);
  2589. p2p.max_peers = 100;
  2590. if (wpa_s->conf->p2p_ssid_postfix) {
  2591. p2p.ssid_postfix_len =
  2592. os_strlen(wpa_s->conf->p2p_ssid_postfix);
  2593. if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
  2594. p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
  2595. os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
  2596. p2p.ssid_postfix_len);
  2597. }
  2598. p2p.p2p_intra_bss = wpa_s->conf->p2p_intra_bss;
  2599. p2p.max_listen = wpa_s->max_remain_on_chan;
  2600. global->p2p = p2p_init(&p2p);
  2601. if (global->p2p == NULL)
  2602. return -1;
  2603. global->p2p_init_wpa_s = wpa_s;
  2604. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  2605. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  2606. continue;
  2607. p2p_add_wps_vendor_extension(
  2608. global->p2p, wpa_s->conf->wps_vendor_ext[i]);
  2609. }
  2610. return 0;
  2611. }
  2612. /**
  2613. * wpas_p2p_deinit - Deinitialize per-interface P2P data
  2614. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2615. *
  2616. * This function deinitialize per-interface P2P data.
  2617. */
  2618. void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
  2619. {
  2620. if (wpa_s->driver && wpa_s->drv_priv)
  2621. wpa_drv_probe_req_report(wpa_s, 0);
  2622. if (wpa_s->go_params) {
  2623. /* Clear any stored provisioning info */
  2624. p2p_clear_provisioning_info(
  2625. wpa_s->global->p2p,
  2626. wpa_s->go_params->peer_device_addr);
  2627. }
  2628. os_free(wpa_s->go_params);
  2629. wpa_s->go_params = NULL;
  2630. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  2631. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  2632. wpa_s->p2p_long_listen = 0;
  2633. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  2634. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  2635. wpas_p2p_remove_pending_group_interface(wpa_s);
  2636. /* TODO: remove group interface from the driver if this wpa_s instance
  2637. * is on top of a P2P group interface */
  2638. }
  2639. /**
  2640. * wpas_p2p_deinit_global - Deinitialize global P2P module
  2641. * @global: Pointer to global data from wpa_supplicant_init()
  2642. *
  2643. * This function deinitializes the global (per device) P2P module.
  2644. */
  2645. void wpas_p2p_deinit_global(struct wpa_global *global)
  2646. {
  2647. struct wpa_supplicant *wpa_s, *tmp;
  2648. wpa_s = global->ifaces;
  2649. if (wpa_s)
  2650. wpas_p2p_service_flush(wpa_s);
  2651. if (global->p2p == NULL)
  2652. return;
  2653. /* Remove remaining P2P group interfaces */
  2654. while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
  2655. wpa_s = wpa_s->next;
  2656. while (wpa_s) {
  2657. tmp = global->ifaces;
  2658. while (tmp &&
  2659. (tmp == wpa_s ||
  2660. tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
  2661. tmp = tmp->next;
  2662. }
  2663. if (tmp == NULL)
  2664. break;
  2665. /* Disconnect from the P2P group and deinit the interface */
  2666. wpas_p2p_disconnect(tmp);
  2667. }
  2668. /*
  2669. * Deinit GO data on any possibly remaining interface (if main
  2670. * interface is used as GO).
  2671. */
  2672. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2673. if (wpa_s->ap_iface)
  2674. wpas_p2p_group_deinit(wpa_s);
  2675. }
  2676. p2p_deinit(global->p2p);
  2677. global->p2p = NULL;
  2678. global->p2p_init_wpa_s = NULL;
  2679. }
  2680. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
  2681. {
  2682. if (wpa_s->conf->p2p_no_group_iface)
  2683. return 0; /* separate interface disabled per configuration */
  2684. if (wpa_s->drv_flags &
  2685. (WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE |
  2686. WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P))
  2687. return 1; /* P2P group requires a new interface in every case
  2688. */
  2689. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
  2690. return 0; /* driver does not support concurrent operations */
  2691. if (wpa_s->global->ifaces->next)
  2692. return 1; /* more that one interface already in use */
  2693. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  2694. return 1; /* this interface is already in use */
  2695. return 0;
  2696. }
  2697. static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
  2698. const u8 *peer_addr,
  2699. enum p2p_wps_method wps_method,
  2700. int go_intent, const u8 *own_interface_addr,
  2701. unsigned int force_freq, int persistent_group,
  2702. struct wpa_ssid *ssid, unsigned int pref_freq)
  2703. {
  2704. if (persistent_group && wpa_s->conf->persistent_reconnect)
  2705. persistent_group = 2;
  2706. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  2707. return wpa_drv_p2p_connect(wpa_s, peer_addr, wps_method,
  2708. go_intent, own_interface_addr,
  2709. force_freq, persistent_group);
  2710. }
  2711. /*
  2712. * Increase GO config timeout if HT40 is used since it takes some time
  2713. * to scan channels for coex purposes before the BSS can be started.
  2714. */
  2715. p2p_set_config_timeout(wpa_s->global->p2p,
  2716. wpa_s->p2p_go_ht40 ? 255 : 100, 20);
  2717. return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
  2718. go_intent, own_interface_addr, force_freq,
  2719. persistent_group, ssid ? ssid->ssid : NULL,
  2720. ssid ? ssid->ssid_len : 0,
  2721. wpa_s->p2p_pd_before_go_neg, pref_freq);
  2722. }
  2723. static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
  2724. const u8 *peer_addr,
  2725. enum p2p_wps_method wps_method,
  2726. int go_intent, const u8 *own_interface_addr,
  2727. unsigned int force_freq, int persistent_group,
  2728. struct wpa_ssid *ssid, unsigned int pref_freq)
  2729. {
  2730. if (persistent_group && wpa_s->conf->persistent_reconnect)
  2731. persistent_group = 2;
  2732. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  2733. return -1;
  2734. return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
  2735. go_intent, own_interface_addr, force_freq,
  2736. persistent_group, ssid ? ssid->ssid : NULL,
  2737. ssid ? ssid->ssid_len : 0, pref_freq);
  2738. }
  2739. static void wpas_p2p_check_join_scan_limit(struct wpa_supplicant *wpa_s)
  2740. {
  2741. wpa_s->p2p_join_scan_count++;
  2742. wpa_printf(MSG_DEBUG, "P2P: Join scan attempt %d",
  2743. wpa_s->p2p_join_scan_count);
  2744. if (wpa_s->p2p_join_scan_count > P2P_MAX_JOIN_SCAN_ATTEMPTS) {
  2745. wpa_printf(MSG_DEBUG, "P2P: Failed to find GO " MACSTR
  2746. " for join operationg - stop join attempt",
  2747. MAC2STR(wpa_s->pending_join_iface_addr));
  2748. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  2749. if (wpa_s->p2p_auto_pd) {
  2750. wpa_s->p2p_auto_pd = 0;
  2751. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2752. " p2p_dev_addr=" MACSTR " status=N/A",
  2753. MAC2STR(wpa_s->pending_join_dev_addr));
  2754. return;
  2755. }
  2756. wpa_msg(wpa_s->parent, MSG_INFO,
  2757. P2P_EVENT_GROUP_FORMATION_FAILURE);
  2758. }
  2759. }
  2760. static int wpas_check_freq_conflict(struct wpa_supplicant *wpa_s, int freq)
  2761. {
  2762. struct wpa_supplicant *iface;
  2763. int shared_freq;
  2764. u8 bssid[ETH_ALEN];
  2765. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)
  2766. return 0;
  2767. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  2768. if (!wpas_p2p_create_iface(wpa_s) && iface == wpa_s)
  2769. continue;
  2770. if (iface->current_ssid == NULL || iface->assoc_freq == 0)
  2771. continue;
  2772. if (iface->current_ssid->mode == WPAS_MODE_AP ||
  2773. iface->current_ssid->mode == WPAS_MODE_P2P_GO)
  2774. shared_freq = iface->current_ssid->frequency;
  2775. else if (wpa_drv_get_bssid(iface, bssid) == 0)
  2776. shared_freq = iface->assoc_freq;
  2777. else
  2778. shared_freq = 0;
  2779. if (shared_freq && freq != shared_freq) {
  2780. wpa_printf(MSG_DEBUG, "P2P: Frequency conflict - %s "
  2781. "connected on %d MHz - new connection on "
  2782. "%d MHz", iface->ifname, shared_freq, freq);
  2783. return 1;
  2784. }
  2785. }
  2786. shared_freq = wpa_drv_shared_freq(wpa_s);
  2787. if (shared_freq > 0 && shared_freq != freq) {
  2788. wpa_printf(MSG_DEBUG, "P2P: Frequency conflict - shared "
  2789. "virtual interface connected on %d MHz - new "
  2790. "connection on %d MHz", shared_freq, freq);
  2791. return 1;
  2792. }
  2793. return 0;
  2794. }
  2795. static int wpas_p2p_peer_go(struct wpa_supplicant *wpa_s,
  2796. const u8 *peer_dev_addr)
  2797. {
  2798. struct wpa_bss *bss;
  2799. int updated;
  2800. bss = wpa_bss_get_p2p_dev_addr(wpa_s, peer_dev_addr);
  2801. if (bss == NULL)
  2802. return -1;
  2803. if (bss->last_update_idx < wpa_s->bss_update_idx) {
  2804. wpa_printf(MSG_DEBUG, "P2P: Peer BSS entry not updated in the "
  2805. "last scan");
  2806. return 0;
  2807. }
  2808. updated = os_time_before(&wpa_s->p2p_auto_started, &bss->last_update);
  2809. wpa_printf(MSG_DEBUG, "P2P: Current BSS entry for peer updated at "
  2810. "%ld.%06ld (%supdated in last scan)",
  2811. bss->last_update.sec, bss->last_update.usec,
  2812. updated ? "": "not ");
  2813. return updated;
  2814. }
  2815. static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
  2816. struct wpa_scan_results *scan_res)
  2817. {
  2818. struct wpa_bss *bss;
  2819. int freq;
  2820. u8 iface_addr[ETH_ALEN];
  2821. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  2822. if (wpa_s->global->p2p_disabled)
  2823. return;
  2824. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for %sjoin",
  2825. scan_res ? (int) scan_res->num : -1,
  2826. wpa_s->p2p_auto_join ? "auto_" : "");
  2827. if (scan_res)
  2828. wpas_p2p_scan_res_handler(wpa_s, scan_res);
  2829. if (wpa_s->p2p_auto_pd) {
  2830. int join = wpas_p2p_peer_go(wpa_s,
  2831. wpa_s->pending_join_dev_addr);
  2832. if (join == 0 &&
  2833. wpa_s->auto_pd_scan_retry < P2P_AUTO_PD_SCAN_ATTEMPTS) {
  2834. wpa_s->auto_pd_scan_retry++;
  2835. bss = wpa_bss_get_bssid(wpa_s,
  2836. wpa_s->pending_join_dev_addr);
  2837. if (bss) {
  2838. freq = bss->freq;
  2839. wpa_printf(MSG_DEBUG, "P2P: Scan retry %d for "
  2840. "the peer " MACSTR " at %d MHz",
  2841. wpa_s->auto_pd_scan_retry,
  2842. MAC2STR(wpa_s->
  2843. pending_join_dev_addr),
  2844. freq);
  2845. wpas_p2p_join_scan_req(wpa_s, freq);
  2846. return;
  2847. }
  2848. }
  2849. if (join < 0)
  2850. join = 0;
  2851. wpa_s->p2p_auto_pd = 0;
  2852. wpa_s->pending_pd_use = join ? AUTO_PD_JOIN : AUTO_PD_GO_NEG;
  2853. wpa_printf(MSG_DEBUG, "P2P: Auto PD with " MACSTR " join=%d",
  2854. MAC2STR(wpa_s->pending_join_dev_addr), join);
  2855. if (p2p_prov_disc_req(wpa_s->global->p2p,
  2856. wpa_s->pending_join_dev_addr,
  2857. wpa_s->pending_pd_config_methods, join,
  2858. 0, wpa_s->user_initiated_pd) < 0) {
  2859. wpa_s->p2p_auto_pd = 0;
  2860. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_FAILURE
  2861. " p2p_dev_addr=" MACSTR " status=N/A",
  2862. MAC2STR(wpa_s->pending_join_dev_addr));
  2863. }
  2864. return;
  2865. }
  2866. if (wpa_s->p2p_auto_join) {
  2867. int join = wpas_p2p_peer_go(wpa_s,
  2868. wpa_s->pending_join_dev_addr);
  2869. if (join < 0) {
  2870. wpa_printf(MSG_DEBUG, "P2P: Peer was not found to be "
  2871. "running a GO -> use GO Negotiation");
  2872. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr,
  2873. wpa_s->p2p_pin, wpa_s->p2p_wps_method,
  2874. wpa_s->p2p_persistent_group, 0, 0, 0,
  2875. wpa_s->p2p_go_intent,
  2876. wpa_s->p2p_connect_freq,
  2877. wpa_s->p2p_persistent_id,
  2878. wpa_s->p2p_pd_before_go_neg,
  2879. wpa_s->p2p_go_ht40);
  2880. return;
  2881. }
  2882. wpa_printf(MSG_DEBUG, "P2P: Peer was found running GO%s -> "
  2883. "try to join the group", join ? "" :
  2884. " in older scan");
  2885. if (!join)
  2886. wpa_s->p2p_fallback_to_go_neg = 1;
  2887. }
  2888. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  2889. wpa_s->pending_join_iface_addr);
  2890. if (freq < 0 &&
  2891. p2p_get_interface_addr(wpa_s->global->p2p,
  2892. wpa_s->pending_join_dev_addr,
  2893. iface_addr) == 0 &&
  2894. os_memcmp(iface_addr, wpa_s->pending_join_dev_addr, ETH_ALEN) != 0)
  2895. {
  2896. wpa_printf(MSG_DEBUG, "P2P: Overwrite pending interface "
  2897. "address for join from " MACSTR " to " MACSTR
  2898. " based on newly discovered P2P peer entry",
  2899. MAC2STR(wpa_s->pending_join_iface_addr),
  2900. MAC2STR(iface_addr));
  2901. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr,
  2902. ETH_ALEN);
  2903. freq = p2p_get_oper_freq(wpa_s->global->p2p,
  2904. wpa_s->pending_join_iface_addr);
  2905. }
  2906. if (freq >= 0) {
  2907. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  2908. "from P2P peer table: %d MHz", freq);
  2909. }
  2910. bss = wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr);
  2911. if (bss) {
  2912. freq = bss->freq;
  2913. wpa_printf(MSG_DEBUG, "P2P: Target GO operating frequency "
  2914. "from BSS table: %d MHz", freq);
  2915. }
  2916. if (freq > 0) {
  2917. u16 method;
  2918. if (wpas_check_freq_conflict(wpa_s, freq) > 0) {
  2919. wpa_msg(wpa_s->parent, MSG_INFO,
  2920. P2P_EVENT_GROUP_FORMATION_FAILURE
  2921. "reason=FREQ_CONFLICT");
  2922. return;
  2923. }
  2924. wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
  2925. "prior to joining an existing group (GO " MACSTR
  2926. " freq=%u MHz)",
  2927. MAC2STR(wpa_s->pending_join_dev_addr), freq);
  2928. wpa_s->pending_pd_before_join = 1;
  2929. switch (wpa_s->pending_join_wps_method) {
  2930. case WPS_PIN_DISPLAY:
  2931. method = WPS_CONFIG_KEYPAD;
  2932. break;
  2933. case WPS_PIN_KEYPAD:
  2934. method = WPS_CONFIG_DISPLAY;
  2935. break;
  2936. case WPS_PBC:
  2937. method = WPS_CONFIG_PUSHBUTTON;
  2938. break;
  2939. default:
  2940. method = 0;
  2941. break;
  2942. }
  2943. if ((p2p_get_provisioning_info(wpa_s->global->p2p,
  2944. wpa_s->pending_join_dev_addr) ==
  2945. method)) {
  2946. /*
  2947. * We have already performed provision discovery for
  2948. * joining the group. Proceed directly to join
  2949. * operation without duplicated provision discovery. */
  2950. wpa_printf(MSG_DEBUG, "P2P: Provision discovery "
  2951. "with " MACSTR " already done - proceed to "
  2952. "join",
  2953. MAC2STR(wpa_s->pending_join_dev_addr));
  2954. wpa_s->pending_pd_before_join = 0;
  2955. goto start;
  2956. }
  2957. if (p2p_prov_disc_req(wpa_s->global->p2p,
  2958. wpa_s->pending_join_dev_addr, method, 1,
  2959. freq, wpa_s->user_initiated_pd) < 0) {
  2960. wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
  2961. "Discovery Request before joining an "
  2962. "existing group");
  2963. wpa_s->pending_pd_before_join = 0;
  2964. goto start;
  2965. }
  2966. return;
  2967. }
  2968. wpa_printf(MSG_DEBUG, "P2P: Failed to find BSS/GO - try again later");
  2969. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  2970. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  2971. wpas_p2p_check_join_scan_limit(wpa_s);
  2972. return;
  2973. start:
  2974. /* Start join operation immediately */
  2975. wpas_p2p_join_start(wpa_s);
  2976. }
  2977. static void wpas_p2p_join_scan_req(struct wpa_supplicant *wpa_s, int freq)
  2978. {
  2979. int ret;
  2980. struct wpa_driver_scan_params params;
  2981. struct wpabuf *wps_ie, *ies;
  2982. size_t ielen;
  2983. int freqs[2] = { 0, 0 };
  2984. os_memset(&params, 0, sizeof(params));
  2985. /* P2P Wildcard SSID */
  2986. params.num_ssids = 1;
  2987. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  2988. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  2989. wpa_s->wps->dev.p2p = 1;
  2990. wps_ie = wps_build_probe_req_ie(DEV_PW_DEFAULT, &wpa_s->wps->dev,
  2991. wpa_s->wps->uuid, WPS_REQ_ENROLLEE, 0,
  2992. NULL);
  2993. if (wps_ie == NULL) {
  2994. wpas_p2p_scan_res_join(wpa_s, NULL);
  2995. return;
  2996. }
  2997. ielen = p2p_scan_ie_buf_len(wpa_s->global->p2p);
  2998. ies = wpabuf_alloc(wpabuf_len(wps_ie) + ielen);
  2999. if (ies == NULL) {
  3000. wpabuf_free(wps_ie);
  3001. wpas_p2p_scan_res_join(wpa_s, NULL);
  3002. return;
  3003. }
  3004. wpabuf_put_buf(ies, wps_ie);
  3005. wpabuf_free(wps_ie);
  3006. p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
  3007. params.p2p_probe = 1;
  3008. params.extra_ies = wpabuf_head(ies);
  3009. params.extra_ies_len = wpabuf_len(ies);
  3010. if (freq > 0) {
  3011. freqs[0] = freq;
  3012. params.freqs = freqs;
  3013. }
  3014. /*
  3015. * Run a scan to update BSS table and start Provision Discovery once
  3016. * the new scan results become available.
  3017. */
  3018. ret = wpa_drv_scan(wpa_s, &params);
  3019. if (!ret)
  3020. wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
  3021. wpabuf_free(ies);
  3022. if (ret) {
  3023. wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
  3024. "try again later");
  3025. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3026. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  3027. wpas_p2p_check_join_scan_limit(wpa_s);
  3028. }
  3029. }
  3030. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
  3031. {
  3032. struct wpa_supplicant *wpa_s = eloop_ctx;
  3033. wpas_p2p_join_scan_req(wpa_s, 0);
  3034. }
  3035. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  3036. const u8 *dev_addr, enum p2p_wps_method wps_method,
  3037. int auto_join)
  3038. {
  3039. wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
  3040. MACSTR " dev " MACSTR ")%s",
  3041. MAC2STR(iface_addr), MAC2STR(dev_addr),
  3042. auto_join ? " (auto_join)" : "");
  3043. wpa_s->p2p_auto_pd = 0;
  3044. wpa_s->p2p_auto_join = !!auto_join;
  3045. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
  3046. os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
  3047. wpa_s->pending_join_wps_method = wps_method;
  3048. /* Make sure we are not running find during connection establishment */
  3049. wpas_p2p_stop_find(wpa_s);
  3050. wpa_s->p2p_join_scan_count = 0;
  3051. wpas_p2p_join_scan(wpa_s, NULL);
  3052. return 0;
  3053. }
  3054. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s)
  3055. {
  3056. struct wpa_supplicant *group;
  3057. struct p2p_go_neg_results res;
  3058. struct wpa_bss *bss;
  3059. group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
  3060. if (group == NULL)
  3061. return -1;
  3062. if (group != wpa_s) {
  3063. os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
  3064. sizeof(group->p2p_pin));
  3065. group->p2p_wps_method = wpa_s->p2p_wps_method;
  3066. } else {
  3067. /*
  3068. * Need to mark the current interface for p2p_group_formation
  3069. * when a separate group interface is not used. This is needed
  3070. * to allow p2p_cancel stop a pending p2p_connect-join.
  3071. * wpas_p2p_init_group_interface() addresses this for the case
  3072. * where a separate group interface is used.
  3073. */
  3074. wpa_s->global->p2p_group_formation = wpa_s;
  3075. }
  3076. group->p2p_in_provisioning = 1;
  3077. group->p2p_fallback_to_go_neg = wpa_s->p2p_fallback_to_go_neg;
  3078. os_memset(&res, 0, sizeof(res));
  3079. os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
  3080. ETH_ALEN);
  3081. res.wps_method = wpa_s->pending_join_wps_method;
  3082. bss = wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr);
  3083. if (bss) {
  3084. res.freq = bss->freq;
  3085. res.ssid_len = bss->ssid_len;
  3086. os_memcpy(res.ssid, bss->ssid, bss->ssid_len);
  3087. }
  3088. if (wpa_s->off_channel_freq || wpa_s->roc_waiting_drv_freq) {
  3089. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel prior to "
  3090. "starting client");
  3091. wpa_drv_cancel_remain_on_channel(wpa_s);
  3092. wpa_s->off_channel_freq = 0;
  3093. wpa_s->roc_waiting_drv_freq = 0;
  3094. }
  3095. wpas_start_wps_enrollee(group, &res);
  3096. /*
  3097. * Allow a longer timeout for join-a-running-group than normal 15
  3098. * second group formation timeout since the GO may not have authorized
  3099. * our connection yet.
  3100. */
  3101. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  3102. eloop_register_timeout(60, 0, wpas_p2p_group_formation_timeout,
  3103. wpa_s, NULL);
  3104. return 0;
  3105. }
  3106. static int wpas_p2p_setup_freqs(struct wpa_supplicant *wpa_s, int freq,
  3107. int *force_freq, int *pref_freq,
  3108. int *oper_freq)
  3109. {
  3110. if (freq > 0) {
  3111. if (!p2p_supported_freq(wpa_s->global->p2p, freq)) {
  3112. wpa_printf(MSG_DEBUG, "P2P: The forced channel "
  3113. "(%u MHz) is not supported for P2P uses",
  3114. freq);
  3115. return -3;
  3116. }
  3117. if (*oper_freq > 0 && freq != *oper_freq &&
  3118. !(wpa_s->drv_flags &
  3119. WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)) {
  3120. wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group "
  3121. "on %u MHz while connected on another "
  3122. "channel (%u MHz)", freq, *oper_freq);
  3123. return -2;
  3124. }
  3125. wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
  3126. "requested channel (%u MHz)", freq);
  3127. *force_freq = freq;
  3128. } else if (*oper_freq > 0 &&
  3129. !p2p_supported_freq(wpa_s->global->p2p, *oper_freq)) {
  3130. if (!(wpa_s->drv_flags &
  3131. WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)) {
  3132. wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group "
  3133. "while connected on non-P2P supported "
  3134. "channel (%u MHz)", *oper_freq);
  3135. return -2;
  3136. }
  3137. wpa_printf(MSG_DEBUG, "P2P: Current operating channel "
  3138. "(%u MHz) not available for P2P - try to use "
  3139. "another channel", *oper_freq);
  3140. *force_freq = 0;
  3141. } else if (*oper_freq > 0 && *pref_freq == 0 &&
  3142. (wpa_s->drv_flags &
  3143. WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)) {
  3144. wpa_printf(MSG_DEBUG, "P2P: Trying to prefer the channel we "
  3145. "are already using (%u MHz) on another interface",
  3146. *oper_freq);
  3147. *pref_freq = *oper_freq;
  3148. } else if (*oper_freq > 0) {
  3149. wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
  3150. "channel we are already using (%u MHz) on another "
  3151. "interface", *oper_freq);
  3152. *force_freq = *oper_freq;
  3153. }
  3154. return 0;
  3155. }
  3156. /**
  3157. * wpas_p2p_connect - Request P2P Group Formation to be started
  3158. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3159. * @peer_addr: Address of the peer P2P Device
  3160. * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
  3161. * @persistent_group: Whether to create a persistent group
  3162. * @auto_join: Whether to select join vs. GO Negotiation automatically
  3163. * @join: Whether to join an existing group (as a client) instead of starting
  3164. * Group Owner negotiation; @peer_addr is BSSID in that case
  3165. * @auth: Whether to only authorize the connection instead of doing that and
  3166. * initiating Group Owner negotiation
  3167. * @go_intent: GO Intent or -1 to use default
  3168. * @freq: Frequency for the group or 0 for auto-selection
  3169. * @persistent_id: Persistent group credentials to use for forcing GO
  3170. * parameters or -1 to generate new values (SSID/passphrase)
  3171. * @pd: Whether to send Provision Discovery prior to GO Negotiation as an
  3172. * interoperability workaround when initiating group formation
  3173. * @ht40: Start GO with 40 MHz channel width
  3174. * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on unspecified
  3175. * failure, -2 on failure due to channel not currently available,
  3176. * -3 if forced channel is not supported
  3177. */
  3178. int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  3179. const char *pin, enum p2p_wps_method wps_method,
  3180. int persistent_group, int auto_join, int join, int auth,
  3181. int go_intent, int freq, int persistent_id, int pd,
  3182. int ht40)
  3183. {
  3184. int force_freq = 0, pref_freq = 0, oper_freq = 0;
  3185. u8 bssid[ETH_ALEN];
  3186. int ret = 0, res;
  3187. enum wpa_driver_if_type iftype;
  3188. const u8 *if_addr;
  3189. struct wpa_ssid *ssid = NULL;
  3190. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3191. return -1;
  3192. if (persistent_id >= 0) {
  3193. ssid = wpa_config_get_network(wpa_s->conf, persistent_id);
  3194. if (ssid == NULL || ssid->disabled != 2 ||
  3195. ssid->mode != WPAS_MODE_P2P_GO)
  3196. return -1;
  3197. }
  3198. if (go_intent < 0)
  3199. go_intent = wpa_s->conf->p2p_go_intent;
  3200. if (!auth)
  3201. wpa_s->p2p_long_listen = 0;
  3202. wpa_s->p2p_wps_method = wps_method;
  3203. wpa_s->p2p_persistent_group = !!persistent_group;
  3204. wpa_s->p2p_persistent_id = persistent_id;
  3205. wpa_s->p2p_go_intent = go_intent;
  3206. wpa_s->p2p_connect_freq = freq;
  3207. wpa_s->p2p_fallback_to_go_neg = 0;
  3208. wpa_s->p2p_pd_before_go_neg = !!pd;
  3209. wpa_s->p2p_go_ht40 = !!ht40;
  3210. if (pin)
  3211. os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
  3212. else if (wps_method == WPS_PIN_DISPLAY) {
  3213. ret = wps_generate_pin();
  3214. os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin), "%08d",
  3215. ret);
  3216. wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
  3217. wpa_s->p2p_pin);
  3218. } else
  3219. wpa_s->p2p_pin[0] = '\0';
  3220. if (join || auto_join) {
  3221. u8 iface_addr[ETH_ALEN], dev_addr[ETH_ALEN];
  3222. if (auth) {
  3223. wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
  3224. "connect a running group from " MACSTR,
  3225. MAC2STR(peer_addr));
  3226. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  3227. return ret;
  3228. }
  3229. os_memcpy(dev_addr, peer_addr, ETH_ALEN);
  3230. if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
  3231. iface_addr) < 0) {
  3232. os_memcpy(iface_addr, peer_addr, ETH_ALEN);
  3233. p2p_get_dev_addr(wpa_s->global->p2p, peer_addr,
  3234. dev_addr);
  3235. }
  3236. if (auto_join) {
  3237. os_get_time(&wpa_s->p2p_auto_started);
  3238. wpa_printf(MSG_DEBUG, "P2P: Auto join started at "
  3239. "%ld.%06ld",
  3240. wpa_s->p2p_auto_started.sec,
  3241. wpa_s->p2p_auto_started.usec);
  3242. }
  3243. wpa_s->user_initiated_pd = 1;
  3244. if (wpas_p2p_join(wpa_s, iface_addr, dev_addr, wps_method,
  3245. auto_join) < 0)
  3246. return -1;
  3247. return ret;
  3248. }
  3249. if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, bssid) == 0 &&
  3250. wpa_s->assoc_freq) {
  3251. oper_freq = wpa_s->assoc_freq;
  3252. } else {
  3253. oper_freq = wpa_drv_shared_freq(wpa_s);
  3254. if (oper_freq < 0)
  3255. oper_freq = 0;
  3256. }
  3257. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  3258. &oper_freq);
  3259. if (res)
  3260. return res;
  3261. wpas_p2p_set_own_freq_preference(wpa_s, oper_freq);
  3262. wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
  3263. if (wpa_s->create_p2p_iface) {
  3264. /* Prepare to add a new interface for the group */
  3265. iftype = WPA_IF_P2P_GROUP;
  3266. if (go_intent == 15)
  3267. iftype = WPA_IF_P2P_GO;
  3268. if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
  3269. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  3270. "interface for the group");
  3271. return -1;
  3272. }
  3273. if_addr = wpa_s->pending_interface_addr;
  3274. } else
  3275. if_addr = wpa_s->own_addr;
  3276. if (auth) {
  3277. if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
  3278. go_intent, if_addr,
  3279. force_freq, persistent_group, ssid,
  3280. pref_freq) < 0)
  3281. return -1;
  3282. return ret;
  3283. }
  3284. if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
  3285. go_intent, if_addr, force_freq,
  3286. persistent_group, ssid, pref_freq) < 0) {
  3287. if (wpa_s->create_p2p_iface)
  3288. wpas_p2p_remove_pending_group_interface(wpa_s);
  3289. return -1;
  3290. }
  3291. return ret;
  3292. }
  3293. /**
  3294. * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
  3295. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3296. * @freq: Frequency of the channel in MHz
  3297. * @duration: Duration of the stay on the channel in milliseconds
  3298. *
  3299. * This callback is called when the driver indicates that it has started the
  3300. * requested remain-on-channel duration.
  3301. */
  3302. void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  3303. unsigned int freq, unsigned int duration)
  3304. {
  3305. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3306. return;
  3307. if (wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
  3308. p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
  3309. wpa_s->pending_listen_duration);
  3310. wpa_s->pending_listen_freq = 0;
  3311. }
  3312. }
  3313. static int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s,
  3314. unsigned int timeout)
  3315. {
  3316. /* Limit maximum Listen state time based on driver limitation. */
  3317. if (timeout > wpa_s->max_remain_on_chan)
  3318. timeout = wpa_s->max_remain_on_chan;
  3319. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  3320. return wpa_drv_p2p_listen(wpa_s, timeout);
  3321. return p2p_listen(wpa_s->global->p2p, timeout);
  3322. }
  3323. /**
  3324. * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
  3325. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3326. * @freq: Frequency of the channel in MHz
  3327. *
  3328. * This callback is called when the driver indicates that a remain-on-channel
  3329. * operation has been completed, i.e., the duration on the requested channel
  3330. * has timed out.
  3331. */
  3332. void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  3333. unsigned int freq)
  3334. {
  3335. wpa_printf(MSG_DEBUG, "P2P: Cancel remain-on-channel callback "
  3336. "(p2p_long_listen=%d ms pending_action_tx=%p)",
  3337. wpa_s->p2p_long_listen, offchannel_pending_action_tx(wpa_s));
  3338. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3339. return;
  3340. if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
  3341. return; /* P2P module started a new operation */
  3342. if (offchannel_pending_action_tx(wpa_s))
  3343. return;
  3344. if (wpa_s->p2p_long_listen > 0)
  3345. wpa_s->p2p_long_listen -= wpa_s->max_remain_on_chan;
  3346. if (wpa_s->p2p_long_listen > 0) {
  3347. wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
  3348. wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen);
  3349. }
  3350. }
  3351. /**
  3352. * wpas_p2p_group_remove - Remove a P2P group
  3353. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3354. * @ifname: Network interface name of the group interface or "*" to remove all
  3355. * groups
  3356. * Returns: 0 on success, -1 on failure
  3357. *
  3358. * This function is used to remove a P2P group. This can be used to disconnect
  3359. * from a group in which the local end is a P2P Client or to end a P2P Group in
  3360. * case the local end is the Group Owner. If a virtual network interface was
  3361. * created for this group, that interface will be removed. Otherwise, only the
  3362. * configured P2P group network will be removed from the interface.
  3363. */
  3364. int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
  3365. {
  3366. struct wpa_global *global = wpa_s->global;
  3367. if (os_strcmp(ifname, "*") == 0) {
  3368. struct wpa_supplicant *prev;
  3369. wpa_s = global->ifaces;
  3370. while (wpa_s) {
  3371. prev = wpa_s;
  3372. wpa_s = wpa_s->next;
  3373. wpas_p2p_disconnect(prev);
  3374. }
  3375. return 0;
  3376. }
  3377. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  3378. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  3379. break;
  3380. }
  3381. return wpas_p2p_disconnect(wpa_s);
  3382. }
  3383. static int freq_included(const struct p2p_channels *channels, unsigned int freq)
  3384. {
  3385. if (channels == NULL)
  3386. return 1; /* Assume no restrictions */
  3387. return p2p_channels_includes_freq(channels, freq);
  3388. }
  3389. static int wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
  3390. struct p2p_go_neg_results *params,
  3391. int freq, int ht40,
  3392. const struct p2p_channels *channels)
  3393. {
  3394. u8 bssid[ETH_ALEN];
  3395. int res;
  3396. os_memset(params, 0, sizeof(*params));
  3397. params->role_go = 1;
  3398. params->ht40 = ht40;
  3399. if (freq) {
  3400. if (!freq_included(channels, freq)) {
  3401. wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
  3402. "accepted", freq);
  3403. return -1;
  3404. }
  3405. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on forced "
  3406. "frequency %d MHz", freq);
  3407. params->freq = freq;
  3408. } else if (wpa_s->conf->p2p_oper_reg_class == 81 &&
  3409. wpa_s->conf->p2p_oper_channel >= 1 &&
  3410. wpa_s->conf->p2p_oper_channel <= 11 &&
  3411. freq_included(channels,
  3412. 2407 + 5 * wpa_s->conf->p2p_oper_channel)) {
  3413. params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
  3414. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  3415. "frequency %d MHz", params->freq);
  3416. } else if ((wpa_s->conf->p2p_oper_reg_class == 115 ||
  3417. wpa_s->conf->p2p_oper_reg_class == 116 ||
  3418. wpa_s->conf->p2p_oper_reg_class == 117 ||
  3419. wpa_s->conf->p2p_oper_reg_class == 124 ||
  3420. wpa_s->conf->p2p_oper_reg_class == 126 ||
  3421. wpa_s->conf->p2p_oper_reg_class == 127) &&
  3422. freq_included(channels,
  3423. 5000 + 5 * wpa_s->conf->p2p_oper_channel)) {
  3424. params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
  3425. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on configured "
  3426. "frequency %d MHz", params->freq);
  3427. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3428. wpa_s->best_overall_freq > 0 &&
  3429. p2p_supported_freq(wpa_s->global->p2p,
  3430. wpa_s->best_overall_freq) &&
  3431. freq_included(channels, wpa_s->best_overall_freq)) {
  3432. params->freq = wpa_s->best_overall_freq;
  3433. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best overall "
  3434. "channel %d MHz", params->freq);
  3435. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3436. wpa_s->best_24_freq > 0 &&
  3437. p2p_supported_freq(wpa_s->global->p2p,
  3438. wpa_s->best_24_freq) &&
  3439. freq_included(channels, wpa_s->best_24_freq)) {
  3440. params->freq = wpa_s->best_24_freq;
  3441. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 2.4 GHz "
  3442. "channel %d MHz", params->freq);
  3443. } else if (wpa_s->conf->p2p_oper_channel == 0 &&
  3444. wpa_s->best_5_freq > 0 &&
  3445. p2p_supported_freq(wpa_s->global->p2p,
  3446. wpa_s->best_5_freq) &&
  3447. freq_included(channels, wpa_s->best_5_freq)) {
  3448. params->freq = wpa_s->best_5_freq;
  3449. wpa_printf(MSG_DEBUG, "P2P: Set GO freq based on best 5 GHz "
  3450. "channel %d MHz", params->freq);
  3451. } else {
  3452. int chan;
  3453. for (chan = 0; chan < 11; chan++) {
  3454. params->freq = 2412 + chan * 5;
  3455. if (!wpas_p2p_disallowed_freq(wpa_s->global,
  3456. params->freq) &&
  3457. freq_included(channels, params->freq))
  3458. break;
  3459. }
  3460. if (chan == 11) {
  3461. wpa_printf(MSG_DEBUG, "P2P: No 2.4 GHz channel "
  3462. "allowed");
  3463. return -1;
  3464. }
  3465. wpa_printf(MSG_DEBUG, "P2P: Set GO freq %d MHz (no preference "
  3466. "known)", params->freq);
  3467. }
  3468. if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, bssid) == 0 &&
  3469. wpa_s->assoc_freq && !freq) {
  3470. if (!p2p_supported_freq(wpa_s->global->p2p, wpa_s->assoc_freq)
  3471. || !freq_included(channels, wpa_s->assoc_freq)) {
  3472. if (wpa_s->drv_flags &
  3473. WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT) {
  3474. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on "
  3475. "the channel we are already using "
  3476. "(%u MHz) - allow multi-channel "
  3477. "concurrency", wpa_s->assoc_freq);
  3478. } else {
  3479. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on "
  3480. "the channel we are already using "
  3481. "(%u MHz)", wpa_s->assoc_freq);
  3482. return -1;
  3483. }
  3484. } else {
  3485. wpa_printf(MSG_DEBUG, "P2P: Force GO on the channel we "
  3486. "are already using (%u MHz)",
  3487. wpa_s->assoc_freq);
  3488. params->freq = wpa_s->assoc_freq;
  3489. }
  3490. }
  3491. res = wpa_drv_shared_freq(wpa_s);
  3492. if (res > 0 && !freq &&
  3493. (!p2p_supported_freq(wpa_s->global->p2p, res) ||
  3494. !freq_included(channels, res))) {
  3495. if (wpa_s->drv_flags &
  3496. WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT) {
  3497. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on the "
  3498. "channel we are already using on a shared "
  3499. "interface (%u MHz) - allow multi-channel "
  3500. "concurrency", res);
  3501. } else {
  3502. wpa_printf(MSG_DEBUG, "P2P: Cannot force GO on the "
  3503. "channel we are already using on a shared "
  3504. "interface (%u MHz)", res);
  3505. return -1;
  3506. }
  3507. } else if (res > 0 && !freq) {
  3508. wpa_printf(MSG_DEBUG, "P2P: Force GO on the channel we are "
  3509. "already using on a shared interface");
  3510. params->freq = res;
  3511. if (!freq_included(channels, params->freq)) {
  3512. wpa_printf(MSG_DEBUG, "P2P: Forced GO freq %d MHz not "
  3513. "accepted", params->freq);
  3514. return -1;
  3515. }
  3516. } else if (res > 0 && freq != res &&
  3517. !(wpa_s->drv_flags &
  3518. WPA_DRIVER_FLAGS_MULTI_CHANNEL_CONCURRENT)) {
  3519. wpa_printf(MSG_DEBUG, "P2P: Cannot start P2P group on %u MHz "
  3520. "while connected on another channel (%u MHz)",
  3521. freq, res);
  3522. return -1;
  3523. }
  3524. return 0;
  3525. }
  3526. static struct wpa_supplicant *
  3527. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  3528. int go)
  3529. {
  3530. struct wpa_supplicant *group_wpa_s;
  3531. if (!wpas_p2p_create_iface(wpa_s)) {
  3532. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use same interface for group "
  3533. "operations");
  3534. return wpa_s;
  3535. }
  3536. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  3537. WPA_IF_P2P_CLIENT) < 0) {
  3538. wpa_msg(wpa_s, MSG_ERROR, "P2P: Failed to add group interface");
  3539. return NULL;
  3540. }
  3541. group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
  3542. if (group_wpa_s == NULL) {
  3543. wpa_msg(wpa_s, MSG_ERROR, "P2P: Failed to initialize group "
  3544. "interface");
  3545. wpas_p2p_remove_pending_group_interface(wpa_s);
  3546. return NULL;
  3547. }
  3548. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use separate group interface %s",
  3549. group_wpa_s->ifname);
  3550. return group_wpa_s;
  3551. }
  3552. /**
  3553. * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
  3554. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  3555. * @persistent_group: Whether to create a persistent group
  3556. * @freq: Frequency for the group or 0 to indicate no hardcoding
  3557. * Returns: 0 on success, -1 on failure
  3558. *
  3559. * This function creates a new P2P group with the local end as the Group Owner,
  3560. * i.e., without using Group Owner Negotiation.
  3561. */
  3562. int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
  3563. int freq, int ht40)
  3564. {
  3565. struct p2p_go_neg_results params;
  3566. unsigned int r;
  3567. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3568. return -1;
  3569. /* Make sure we are not running find during connection establishment */
  3570. wpa_printf(MSG_DEBUG, "P2P: Stop any on-going P2P FIND");
  3571. wpas_p2p_stop_find_oper(wpa_s);
  3572. if (freq == 2) {
  3573. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 2.4 GHz "
  3574. "band");
  3575. if (wpa_s->best_24_freq > 0 &&
  3576. p2p_supported_freq(wpa_s->global->p2p,
  3577. wpa_s->best_24_freq)) {
  3578. freq = wpa_s->best_24_freq;
  3579. wpa_printf(MSG_DEBUG, "P2P: Use best 2.4 GHz band "
  3580. "channel: %d MHz", freq);
  3581. } else {
  3582. os_get_random((u8 *) &r, sizeof(r));
  3583. freq = 2412 + (r % 3) * 25;
  3584. wpa_printf(MSG_DEBUG, "P2P: Use random 2.4 GHz band "
  3585. "channel: %d MHz", freq);
  3586. }
  3587. }
  3588. if (freq == 5) {
  3589. wpa_printf(MSG_DEBUG, "P2P: Request to start GO on 5 GHz "
  3590. "band");
  3591. if (wpa_s->best_5_freq > 0 &&
  3592. p2p_supported_freq(wpa_s->global->p2p,
  3593. wpa_s->best_5_freq)) {
  3594. freq = wpa_s->best_5_freq;
  3595. wpa_printf(MSG_DEBUG, "P2P: Use best 5 GHz band "
  3596. "channel: %d MHz", freq);
  3597. } else {
  3598. os_get_random((u8 *) &r, sizeof(r));
  3599. freq = 5180 + (r % 4) * 20;
  3600. if (!p2p_supported_freq(wpa_s->global->p2p, freq)) {
  3601. wpa_printf(MSG_DEBUG, "P2P: Could not select "
  3602. "5 GHz channel for P2P group");
  3603. return -1;
  3604. }
  3605. wpa_printf(MSG_DEBUG, "P2P: Use random 5 GHz band "
  3606. "channel: %d MHz", freq);
  3607. }
  3608. }
  3609. if (freq > 0 && !p2p_supported_freq(wpa_s->global->p2p, freq)) {
  3610. wpa_printf(MSG_DEBUG, "P2P: The forced channel for GO "
  3611. "(%u MHz) is not supported for P2P uses",
  3612. freq);
  3613. return -1;
  3614. }
  3615. if (wpas_p2p_init_go_params(wpa_s, &params, freq, ht40, NULL))
  3616. return -1;
  3617. if (params.freq &&
  3618. !p2p_supported_freq(wpa_s->global->p2p, params.freq)) {
  3619. wpa_printf(MSG_DEBUG, "P2P: The selected channel for GO "
  3620. "(%u MHz) is not supported for P2P uses",
  3621. params.freq);
  3622. return -1;
  3623. }
  3624. p2p_go_params(wpa_s->global->p2p, &params);
  3625. params.persistent_group = persistent_group;
  3626. wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
  3627. if (wpa_s == NULL)
  3628. return -1;
  3629. wpas_start_wps_go(wpa_s, &params, 0);
  3630. return 0;
  3631. }
  3632. static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
  3633. struct wpa_ssid *params, int addr_allocated)
  3634. {
  3635. struct wpa_ssid *ssid;
  3636. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
  3637. if (wpa_s == NULL)
  3638. return -1;
  3639. wpa_supplicant_ap_deinit(wpa_s);
  3640. ssid = wpa_config_add_network(wpa_s->conf);
  3641. if (ssid == NULL)
  3642. return -1;
  3643. wpa_config_set_network_defaults(ssid);
  3644. ssid->temporary = 1;
  3645. ssid->proto = WPA_PROTO_RSN;
  3646. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  3647. ssid->group_cipher = WPA_CIPHER_CCMP;
  3648. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  3649. ssid->ssid = os_malloc(params->ssid_len);
  3650. if (ssid->ssid == NULL) {
  3651. wpa_config_remove_network(wpa_s->conf, ssid->id);
  3652. return -1;
  3653. }
  3654. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  3655. ssid->ssid_len = params->ssid_len;
  3656. ssid->p2p_group = 1;
  3657. ssid->export_keys = 1;
  3658. if (params->psk_set) {
  3659. os_memcpy(ssid->psk, params->psk, 32);
  3660. ssid->psk_set = 1;
  3661. }
  3662. if (params->passphrase)
  3663. ssid->passphrase = os_strdup(params->passphrase);
  3664. wpa_supplicant_select_network(wpa_s, ssid);
  3665. wpa_s->show_group_started = 1;
  3666. return 0;
  3667. }
  3668. int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
  3669. struct wpa_ssid *ssid, int addr_allocated,
  3670. int freq, int ht40,
  3671. const struct p2p_channels *channels)
  3672. {
  3673. struct p2p_go_neg_results params;
  3674. int go = 0;
  3675. if (ssid->disabled != 2 || ssid->ssid == NULL)
  3676. return -1;
  3677. if (wpas_get_p2p_group(wpa_s, ssid->ssid, ssid->ssid_len, &go) &&
  3678. go == (ssid->mode == WPAS_MODE_P2P_GO)) {
  3679. wpa_printf(MSG_DEBUG, "P2P: Requested persistent group is "
  3680. "already running");
  3681. return 0;
  3682. }
  3683. /* Make sure we are not running find during connection establishment */
  3684. wpas_p2p_stop_find_oper(wpa_s);
  3685. wpa_s->p2p_fallback_to_go_neg = 0;
  3686. if (ssid->mode == WPAS_MODE_INFRA)
  3687. return wpas_start_p2p_client(wpa_s, ssid, addr_allocated);
  3688. if (ssid->mode != WPAS_MODE_P2P_GO)
  3689. return -1;
  3690. if (wpas_p2p_init_go_params(wpa_s, &params, freq, ht40, channels))
  3691. return -1;
  3692. params.role_go = 1;
  3693. params.psk_set = ssid->psk_set;
  3694. if (params.psk_set)
  3695. os_memcpy(params.psk, ssid->psk, sizeof(params.psk));
  3696. if (ssid->passphrase) {
  3697. if (os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
  3698. wpa_printf(MSG_ERROR, "P2P: Invalid passphrase in "
  3699. "persistent group");
  3700. return -1;
  3701. }
  3702. os_strlcpy(params.passphrase, ssid->passphrase,
  3703. sizeof(params.passphrase));
  3704. }
  3705. os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
  3706. params.ssid_len = ssid->ssid_len;
  3707. params.persistent_group = 1;
  3708. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
  3709. if (wpa_s == NULL)
  3710. return -1;
  3711. wpas_start_wps_go(wpa_s, &params, 0);
  3712. return 0;
  3713. }
  3714. static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
  3715. struct wpabuf *proberesp_ies)
  3716. {
  3717. struct wpa_supplicant *wpa_s = ctx;
  3718. if (wpa_s->ap_iface) {
  3719. struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
  3720. if (!(hapd->conf->p2p & P2P_GROUP_OWNER)) {
  3721. wpabuf_free(beacon_ies);
  3722. wpabuf_free(proberesp_ies);
  3723. return;
  3724. }
  3725. if (beacon_ies) {
  3726. wpabuf_free(hapd->p2p_beacon_ie);
  3727. hapd->p2p_beacon_ie = beacon_ies;
  3728. }
  3729. wpabuf_free(hapd->p2p_probe_resp_ie);
  3730. hapd->p2p_probe_resp_ie = proberesp_ies;
  3731. } else {
  3732. wpabuf_free(beacon_ies);
  3733. wpabuf_free(proberesp_ies);
  3734. }
  3735. wpa_supplicant_ap_update_beacon(wpa_s);
  3736. }
  3737. static void wpas_p2p_idle_update(void *ctx, int idle)
  3738. {
  3739. struct wpa_supplicant *wpa_s = ctx;
  3740. if (!wpa_s->ap_iface)
  3741. return;
  3742. wpa_printf(MSG_DEBUG, "P2P: GO - group %sidle", idle ? "" : "not ");
  3743. if (idle)
  3744. wpas_p2p_set_group_idle_timeout(wpa_s);
  3745. else
  3746. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL);
  3747. }
  3748. struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
  3749. struct wpa_ssid *ssid)
  3750. {
  3751. struct p2p_group *group;
  3752. struct p2p_group_config *cfg;
  3753. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  3754. return NULL;
  3755. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3756. return NULL;
  3757. cfg = os_zalloc(sizeof(*cfg));
  3758. if (cfg == NULL)
  3759. return NULL;
  3760. if (ssid->p2p_persistent_group && wpa_s->conf->persistent_reconnect)
  3761. cfg->persistent_group = 2;
  3762. else if (ssid->p2p_persistent_group)
  3763. cfg->persistent_group = 1;
  3764. os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
  3765. if (wpa_s->max_stations &&
  3766. wpa_s->max_stations < wpa_s->conf->max_num_sta)
  3767. cfg->max_clients = wpa_s->max_stations;
  3768. else
  3769. cfg->max_clients = wpa_s->conf->max_num_sta;
  3770. os_memcpy(cfg->ssid, ssid->ssid, ssid->ssid_len);
  3771. cfg->ssid_len = ssid->ssid_len;
  3772. cfg->cb_ctx = wpa_s;
  3773. cfg->ie_update = wpas_p2p_ie_update;
  3774. cfg->idle_update = wpas_p2p_idle_update;
  3775. group = p2p_group_init(wpa_s->global->p2p, cfg);
  3776. if (group == NULL)
  3777. os_free(cfg);
  3778. if (ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION)
  3779. p2p_group_notif_formation_done(group);
  3780. wpa_s->p2p_group = group;
  3781. return group;
  3782. }
  3783. void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  3784. int registrar)
  3785. {
  3786. struct wpa_ssid *ssid = wpa_s->current_ssid;
  3787. if (!wpa_s->p2p_in_provisioning) {
  3788. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
  3789. "provisioning not in progress");
  3790. return;
  3791. }
  3792. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  3793. u8 go_dev_addr[ETH_ALEN];
  3794. os_memcpy(go_dev_addr, wpa_s->bssid, ETH_ALEN);
  3795. wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  3796. ssid->ssid_len);
  3797. /* Clear any stored provisioning info */
  3798. p2p_clear_provisioning_info(wpa_s->global->p2p, go_dev_addr);
  3799. }
  3800. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
  3801. NULL);
  3802. if (ssid && ssid->mode == WPAS_MODE_INFRA) {
  3803. /*
  3804. * Use a separate timeout for initial data connection to
  3805. * complete to allow the group to be removed automatically if
  3806. * something goes wrong in this step before the P2P group idle
  3807. * timeout mechanism is taken into use.
  3808. */
  3809. eloop_register_timeout(P2P_MAX_INITIAL_CONN_WAIT, 0,
  3810. wpas_p2p_group_formation_timeout,
  3811. wpa_s->parent, NULL);
  3812. }
  3813. if (wpa_s->global->p2p)
  3814. p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
  3815. else if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  3816. wpa_drv_wps_success_cb(wpa_s, peer_addr);
  3817. wpas_group_formation_completed(wpa_s, 1);
  3818. }
  3819. void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
  3820. struct wps_event_fail *fail)
  3821. {
  3822. if (!wpa_s->p2p_in_provisioning) {
  3823. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS fail event - P2P "
  3824. "provisioning not in progress");
  3825. return;
  3826. }
  3827. if (wpa_s->go_params) {
  3828. p2p_clear_provisioning_info(
  3829. wpa_s->global->p2p,
  3830. wpa_s->go_params->peer_device_addr);
  3831. }
  3832. wpas_notify_p2p_wps_failed(wpa_s, fail);
  3833. }
  3834. int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  3835. const char *config_method,
  3836. enum wpas_p2p_prov_disc_use use)
  3837. {
  3838. u16 config_methods;
  3839. wpa_s->p2p_fallback_to_go_neg = 0;
  3840. wpa_s->pending_pd_use = NORMAL_PD;
  3841. if (os_strncmp(config_method, "display", 7) == 0)
  3842. config_methods = WPS_CONFIG_DISPLAY;
  3843. else if (os_strncmp(config_method, "keypad", 6) == 0)
  3844. config_methods = WPS_CONFIG_KEYPAD;
  3845. else if (os_strncmp(config_method, "pbc", 3) == 0 ||
  3846. os_strncmp(config_method, "pushbutton", 10) == 0)
  3847. config_methods = WPS_CONFIG_PUSHBUTTON;
  3848. else {
  3849. wpa_printf(MSG_DEBUG, "P2P: Unknown config method");
  3850. return -1;
  3851. }
  3852. if (use == WPAS_P2P_PD_AUTO) {
  3853. os_memcpy(wpa_s->pending_join_dev_addr, peer_addr, ETH_ALEN);
  3854. wpa_s->pending_pd_config_methods = config_methods;
  3855. wpa_s->p2p_auto_pd = 1;
  3856. wpa_s->p2p_auto_join = 0;
  3857. wpa_s->pending_pd_before_join = 0;
  3858. wpa_s->auto_pd_scan_retry = 0;
  3859. wpas_p2p_stop_find(wpa_s);
  3860. wpa_s->p2p_join_scan_count = 0;
  3861. os_get_time(&wpa_s->p2p_auto_started);
  3862. wpa_printf(MSG_DEBUG, "P2P: Auto PD started at %ld.%06ld",
  3863. wpa_s->p2p_auto_started.sec,
  3864. wpa_s->p2p_auto_started.usec);
  3865. wpas_p2p_join_scan(wpa_s, NULL);
  3866. return 0;
  3867. }
  3868. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  3869. return wpa_drv_p2p_prov_disc_req(wpa_s, peer_addr,
  3870. config_methods,
  3871. use == WPAS_P2P_PD_FOR_JOIN);
  3872. }
  3873. if (wpa_s->global->p2p == NULL || wpa_s->global->p2p_disabled)
  3874. return -1;
  3875. return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr,
  3876. config_methods, use == WPAS_P2P_PD_FOR_JOIN,
  3877. 0, 1);
  3878. }
  3879. int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  3880. char *end)
  3881. {
  3882. return p2p_scan_result_text(ies, ies_len, buf, end);
  3883. }
  3884. static void wpas_p2p_clear_pending_action_tx(struct wpa_supplicant *wpa_s)
  3885. {
  3886. if (!offchannel_pending_action_tx(wpa_s))
  3887. return;
  3888. wpa_printf(MSG_DEBUG, "P2P: Drop pending Action TX due to new "
  3889. "operation request");
  3890. offchannel_clear_pending_action_tx(wpa_s);
  3891. }
  3892. int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
  3893. enum p2p_discovery_type type,
  3894. unsigned int num_req_dev_types, const u8 *req_dev_types,
  3895. const u8 *dev_id, unsigned int search_delay)
  3896. {
  3897. wpas_p2p_clear_pending_action_tx(wpa_s);
  3898. wpa_s->p2p_long_listen = 0;
  3899. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  3900. return wpa_drv_p2p_find(wpa_s, timeout, type);
  3901. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL ||
  3902. wpa_s->p2p_in_provisioning)
  3903. return -1;
  3904. wpa_supplicant_cancel_sched_scan(wpa_s);
  3905. return p2p_find(wpa_s->global->p2p, timeout, type,
  3906. num_req_dev_types, req_dev_types, dev_id,
  3907. search_delay);
  3908. }
  3909. static int wpas_p2p_stop_find_oper(struct wpa_supplicant *wpa_s)
  3910. {
  3911. wpas_p2p_clear_pending_action_tx(wpa_s);
  3912. wpa_s->p2p_long_listen = 0;
  3913. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  3914. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  3915. wpa_s->global->p2p_cb_on_scan_complete = 0;
  3916. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT) {
  3917. wpa_drv_p2p_stop_find(wpa_s);
  3918. return 1;
  3919. }
  3920. if (wpa_s->global->p2p)
  3921. p2p_stop_find(wpa_s->global->p2p);
  3922. return 0;
  3923. }
  3924. void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
  3925. {
  3926. if (wpas_p2p_stop_find_oper(wpa_s) > 0)
  3927. return;
  3928. wpas_p2p_remove_pending_group_interface(wpa_s);
  3929. }
  3930. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
  3931. {
  3932. struct wpa_supplicant *wpa_s = eloop_ctx;
  3933. wpa_s->p2p_long_listen = 0;
  3934. }
  3935. int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
  3936. {
  3937. int res;
  3938. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  3939. return -1;
  3940. wpa_supplicant_cancel_sched_scan(wpa_s);
  3941. wpas_p2p_clear_pending_action_tx(wpa_s);
  3942. if (timeout == 0) {
  3943. /*
  3944. * This is a request for unlimited Listen state. However, at
  3945. * least for now, this is mapped to a Listen state for one
  3946. * hour.
  3947. */
  3948. timeout = 3600;
  3949. }
  3950. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  3951. wpa_s->p2p_long_listen = 0;
  3952. /*
  3953. * Stop previous find/listen operation to avoid trying to request a new
  3954. * remain-on-channel operation while the driver is still running the
  3955. * previous one.
  3956. */
  3957. if (wpa_s->global->p2p)
  3958. p2p_stop_find(wpa_s->global->p2p);
  3959. res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
  3960. if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
  3961. wpa_s->p2p_long_listen = timeout * 1000;
  3962. eloop_register_timeout(timeout, 0,
  3963. wpas_p2p_long_listen_timeout,
  3964. wpa_s, NULL);
  3965. }
  3966. return res;
  3967. }
  3968. int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, struct wpa_bss *bss,
  3969. u8 *buf, size_t len, int p2p_group)
  3970. {
  3971. struct wpabuf *p2p_ie;
  3972. int ret;
  3973. if (wpa_s->global->p2p_disabled)
  3974. return -1;
  3975. if (wpa_s->global->p2p == NULL)
  3976. return -1;
  3977. if (bss == NULL)
  3978. return -1;
  3979. p2p_ie = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  3980. ret = p2p_assoc_req_ie(wpa_s->global->p2p, bss->bssid, buf, len,
  3981. p2p_group, p2p_ie);
  3982. wpabuf_free(p2p_ie);
  3983. return ret;
  3984. }
  3985. int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
  3986. const u8 *dst, const u8 *bssid,
  3987. const u8 *ie, size_t ie_len, int ssi_signal)
  3988. {
  3989. if (wpa_s->global->p2p_disabled)
  3990. return 0;
  3991. if (wpa_s->global->p2p == NULL)
  3992. return 0;
  3993. switch (p2p_probe_req_rx(wpa_s->global->p2p, addr, dst, bssid,
  3994. ie, ie_len)) {
  3995. case P2P_PREQ_NOT_P2P:
  3996. wpas_notify_preq(wpa_s, addr, dst, bssid, ie, ie_len,
  3997. ssi_signal);
  3998. /* fall through */
  3999. case P2P_PREQ_MALFORMED:
  4000. case P2P_PREQ_NOT_LISTEN:
  4001. case P2P_PREQ_NOT_PROCESSED:
  4002. default: /* make gcc happy */
  4003. return 0;
  4004. case P2P_PREQ_PROCESSED:
  4005. return 1;
  4006. }
  4007. }
  4008. void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
  4009. const u8 *sa, const u8 *bssid,
  4010. u8 category, const u8 *data, size_t len, int freq)
  4011. {
  4012. if (wpa_s->global->p2p_disabled)
  4013. return;
  4014. if (wpa_s->global->p2p == NULL)
  4015. return;
  4016. p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
  4017. freq);
  4018. }
  4019. void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
  4020. {
  4021. if (wpa_s->global->p2p_disabled)
  4022. return;
  4023. if (wpa_s->global->p2p == NULL)
  4024. return;
  4025. p2p_scan_ie(wpa_s->global->p2p, ies, NULL);
  4026. }
  4027. void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
  4028. {
  4029. p2p_group_deinit(wpa_s->p2p_group);
  4030. wpa_s->p2p_group = NULL;
  4031. wpa_s->ap_configured_cb = NULL;
  4032. wpa_s->ap_configured_cb_ctx = NULL;
  4033. wpa_s->ap_configured_cb_data = NULL;
  4034. wpa_s->connect_without_scan = NULL;
  4035. }
  4036. int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
  4037. {
  4038. wpa_s->p2p_long_listen = 0;
  4039. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4040. return wpa_drv_p2p_reject(wpa_s, addr);
  4041. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4042. return -1;
  4043. return p2p_reject(wpa_s->global->p2p, addr);
  4044. }
  4045. /* Invite to reinvoke a persistent group */
  4046. int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  4047. struct wpa_ssid *ssid, const u8 *go_dev_addr, int freq,
  4048. int ht40, int pref_freq)
  4049. {
  4050. enum p2p_invite_role role;
  4051. u8 *bssid = NULL, bssid_buf[ETH_ALEN];
  4052. int force_freq = 0, oper_freq = 0;
  4053. int res;
  4054. wpa_s->global->p2p_invite_group = NULL;
  4055. if (peer_addr)
  4056. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  4057. else
  4058. os_memset(wpa_s->p2p_auth_invite, 0, ETH_ALEN);
  4059. wpa_s->p2p_persistent_go_freq = freq;
  4060. wpa_s->p2p_go_ht40 = !!ht40;
  4061. if (ssid->mode == WPAS_MODE_P2P_GO) {
  4062. role = P2P_INVITE_ROLE_GO;
  4063. if (peer_addr == NULL) {
  4064. wpa_printf(MSG_DEBUG, "P2P: Missing peer "
  4065. "address in invitation command");
  4066. return -1;
  4067. }
  4068. if (wpas_p2p_create_iface(wpa_s)) {
  4069. if (wpas_p2p_add_group_interface(wpa_s,
  4070. WPA_IF_P2P_GO) < 0) {
  4071. wpa_printf(MSG_ERROR, "P2P: Failed to "
  4072. "allocate a new interface for the "
  4073. "group");
  4074. return -1;
  4075. }
  4076. bssid = wpa_s->pending_interface_addr;
  4077. } else
  4078. bssid = wpa_s->own_addr;
  4079. } else {
  4080. role = P2P_INVITE_ROLE_CLIENT;
  4081. peer_addr = ssid->bssid;
  4082. }
  4083. wpa_s->pending_invite_ssid_id = ssid->id;
  4084. if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, bssid_buf) == 0 &&
  4085. wpa_s->assoc_freq) {
  4086. oper_freq = wpa_s->assoc_freq;
  4087. if (bssid == NULL)
  4088. bssid = bssid_buf;
  4089. } else {
  4090. oper_freq = wpa_drv_shared_freq(wpa_s);
  4091. if (oper_freq < 0)
  4092. oper_freq = 0;
  4093. }
  4094. res = wpas_p2p_setup_freqs(wpa_s, freq, &force_freq, &pref_freq,
  4095. &oper_freq);
  4096. if (res)
  4097. return res;
  4098. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4099. return wpa_drv_p2p_invite(wpa_s, peer_addr, role, bssid,
  4100. ssid->ssid, ssid->ssid_len,
  4101. go_dev_addr, 1);
  4102. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4103. return -1;
  4104. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  4105. ssid->ssid, ssid->ssid_len, force_freq, go_dev_addr,
  4106. 1, pref_freq);
  4107. }
  4108. /* Invite to join an active group */
  4109. int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
  4110. const u8 *peer_addr, const u8 *go_dev_addr)
  4111. {
  4112. struct wpa_global *global = wpa_s->global;
  4113. enum p2p_invite_role role;
  4114. u8 *bssid = NULL, bssid_buf[ETH_ALEN];
  4115. struct wpa_ssid *ssid;
  4116. int persistent;
  4117. int force_freq = 0, oper_freq = 0, pref_freq = 0;
  4118. int res;
  4119. wpa_s->p2p_persistent_go_freq = 0;
  4120. wpa_s->p2p_go_ht40 = 0;
  4121. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  4122. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  4123. break;
  4124. }
  4125. if (wpa_s == NULL) {
  4126. wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
  4127. return -1;
  4128. }
  4129. ssid = wpa_s->current_ssid;
  4130. if (ssid == NULL) {
  4131. wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
  4132. "invitation");
  4133. return -1;
  4134. }
  4135. wpa_s->global->p2p_invite_group = wpa_s;
  4136. persistent = ssid->p2p_persistent_group &&
  4137. wpas_p2p_get_persistent(wpa_s->parent, peer_addr,
  4138. ssid->ssid, ssid->ssid_len);
  4139. if (ssid->mode == WPAS_MODE_P2P_GO) {
  4140. role = P2P_INVITE_ROLE_ACTIVE_GO;
  4141. bssid = wpa_s->own_addr;
  4142. if (go_dev_addr == NULL)
  4143. go_dev_addr = wpa_s->global->p2p_dev_addr;
  4144. } else {
  4145. role = P2P_INVITE_ROLE_CLIENT;
  4146. if (wpa_s->wpa_state < WPA_ASSOCIATED) {
  4147. wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
  4148. "invite to current group");
  4149. return -1;
  4150. }
  4151. bssid = wpa_s->bssid;
  4152. if (go_dev_addr == NULL &&
  4153. !is_zero_ether_addr(wpa_s->go_dev_addr))
  4154. go_dev_addr = wpa_s->go_dev_addr;
  4155. }
  4156. wpa_s->parent->pending_invite_ssid_id = -1;
  4157. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4158. return wpa_drv_p2p_invite(wpa_s, peer_addr, role, bssid,
  4159. ssid->ssid, ssid->ssid_len,
  4160. go_dev_addr, persistent);
  4161. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4162. return -1;
  4163. if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, bssid_buf) == 0 &&
  4164. wpa_s->assoc_freq) {
  4165. oper_freq = wpa_s->assoc_freq;
  4166. if (bssid == NULL)
  4167. bssid = bssid_buf;
  4168. } else {
  4169. oper_freq = wpa_drv_shared_freq(wpa_s);
  4170. if (oper_freq < 0)
  4171. oper_freq = 0;
  4172. }
  4173. res = wpas_p2p_setup_freqs(wpa_s, 0, &force_freq, &pref_freq,
  4174. &oper_freq);
  4175. if (res)
  4176. return res;
  4177. wpas_p2p_set_own_freq_preference(wpa_s, oper_freq);
  4178. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  4179. ssid->ssid, ssid->ssid_len, force_freq,
  4180. go_dev_addr, persistent, pref_freq);
  4181. }
  4182. void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
  4183. {
  4184. struct wpa_ssid *ssid = wpa_s->current_ssid;
  4185. const char *ssid_txt;
  4186. u8 go_dev_addr[ETH_ALEN];
  4187. int network_id = -1;
  4188. int persistent;
  4189. int freq;
  4190. if (ssid == NULL || ssid->mode != WPAS_MODE_P2P_GROUP_FORMATION) {
  4191. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  4192. wpa_s->parent, NULL);
  4193. }
  4194. if (!wpa_s->show_group_started || !ssid)
  4195. goto done;
  4196. wpa_s->show_group_started = 0;
  4197. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  4198. os_memset(go_dev_addr, 0, ETH_ALEN);
  4199. if (ssid->bssid_set)
  4200. os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
  4201. persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  4202. ssid->ssid_len);
  4203. os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
  4204. if (wpa_s->global->p2p_group_formation == wpa_s)
  4205. wpa_s->global->p2p_group_formation = NULL;
  4206. freq = wpa_s->current_bss ? wpa_s->current_bss->freq :
  4207. (int) wpa_s->assoc_freq;
  4208. if (ssid->passphrase == NULL && ssid->psk_set) {
  4209. char psk[65];
  4210. wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
  4211. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  4212. "%s client ssid=\"%s\" freq=%d psk=%s go_dev_addr="
  4213. MACSTR "%s",
  4214. wpa_s->ifname, ssid_txt, freq, psk,
  4215. MAC2STR(go_dev_addr),
  4216. persistent ? " [PERSISTENT]" : "");
  4217. } else {
  4218. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  4219. "%s client ssid=\"%s\" freq=%d passphrase=\"%s\" "
  4220. "go_dev_addr=" MACSTR "%s",
  4221. wpa_s->ifname, ssid_txt, freq,
  4222. ssid->passphrase ? ssid->passphrase : "",
  4223. MAC2STR(go_dev_addr),
  4224. persistent ? " [PERSISTENT]" : "");
  4225. }
  4226. if (persistent)
  4227. network_id = wpas_p2p_store_persistent_group(wpa_s->parent,
  4228. ssid, go_dev_addr);
  4229. if (network_id < 0)
  4230. network_id = ssid->id;
  4231. wpas_notify_p2p_group_started(wpa_s, ssid, network_id, 1);
  4232. done:
  4233. wpas_p2p_continue_after_scan(wpa_s);
  4234. }
  4235. int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
  4236. u32 interval1, u32 duration2, u32 interval2)
  4237. {
  4238. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4239. return -1;
  4240. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4241. return -1;
  4242. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  4243. wpa_s->current_ssid == NULL ||
  4244. wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
  4245. return -1;
  4246. return p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
  4247. wpa_s->own_addr, wpa_s->assoc_freq,
  4248. duration1, interval1, duration2, interval2);
  4249. }
  4250. int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
  4251. unsigned int interval)
  4252. {
  4253. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4254. return -1;
  4255. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4256. return -1;
  4257. return p2p_ext_listen(wpa_s->global->p2p, period, interval);
  4258. }
  4259. static int wpas_p2p_is_client(struct wpa_supplicant *wpa_s)
  4260. {
  4261. if (wpa_s->current_ssid == NULL) {
  4262. /*
  4263. * current_ssid can be cleared when P2P client interface gets
  4264. * disconnected, so assume this interface was used as P2P
  4265. * client.
  4266. */
  4267. return 1;
  4268. }
  4269. return wpa_s->current_ssid->p2p_group &&
  4270. wpa_s->current_ssid->mode == WPAS_MODE_INFRA;
  4271. }
  4272. static void wpas_p2p_group_idle_timeout(void *eloop_ctx, void *timeout_ctx)
  4273. {
  4274. struct wpa_supplicant *wpa_s = eloop_ctx;
  4275. if (wpa_s->conf->p2p_group_idle == 0 && !wpas_p2p_is_client(wpa_s)) {
  4276. wpa_printf(MSG_DEBUG, "P2P: Ignore group idle timeout - "
  4277. "disabled");
  4278. return;
  4279. }
  4280. wpa_printf(MSG_DEBUG, "P2P: Group idle timeout reached - terminate "
  4281. "group");
  4282. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_IDLE_TIMEOUT);
  4283. }
  4284. static void wpas_p2p_set_group_idle_timeout(struct wpa_supplicant *wpa_s)
  4285. {
  4286. int timeout;
  4287. if (eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  4288. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  4289. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  4290. return;
  4291. timeout = wpa_s->conf->p2p_group_idle;
  4292. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA &&
  4293. (timeout == 0 || timeout > P2P_MAX_CLIENT_IDLE))
  4294. timeout = P2P_MAX_CLIENT_IDLE;
  4295. if (timeout == 0)
  4296. return;
  4297. if (timeout < 0) {
  4298. if (wpa_s->current_ssid->mode == WPAS_MODE_INFRA)
  4299. timeout = 0; /* special client mode no-timeout */
  4300. else
  4301. return;
  4302. }
  4303. if (wpa_s->p2p_in_provisioning) {
  4304. /*
  4305. * Use the normal group formation timeout during the
  4306. * provisioning phase to avoid terminating this process too
  4307. * early due to group idle timeout.
  4308. */
  4309. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  4310. "during provisioning");
  4311. return;
  4312. }
  4313. if (wpa_s->show_group_started) {
  4314. /*
  4315. * Use the normal group formation timeout between the end of
  4316. * the provisioning phase and completion of 4-way handshake to
  4317. * avoid terminating this process too early due to group idle
  4318. * timeout.
  4319. */
  4320. wpa_printf(MSG_DEBUG, "P2P: Do not use P2P group idle timeout "
  4321. "while waiting for initial 4-way handshake to "
  4322. "complete");
  4323. return;
  4324. }
  4325. wpa_printf(MSG_DEBUG, "P2P: Set P2P group idle timeout to %u seconds",
  4326. timeout);
  4327. eloop_register_timeout(timeout, 0, wpas_p2p_group_idle_timeout,
  4328. wpa_s, NULL);
  4329. }
  4330. /* Returns 1 if the interface was removed */
  4331. int wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  4332. u16 reason_code, const u8 *ie, size_t ie_len,
  4333. int locally_generated)
  4334. {
  4335. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4336. return 0;
  4337. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4338. return 0;
  4339. if (!locally_generated)
  4340. p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  4341. ie_len);
  4342. if (reason_code == WLAN_REASON_DEAUTH_LEAVING && !locally_generated &&
  4343. wpa_s->current_ssid &&
  4344. wpa_s->current_ssid->p2p_group &&
  4345. wpa_s->current_ssid->mode == WPAS_MODE_INFRA) {
  4346. wpa_printf(MSG_DEBUG, "P2P: GO indicated that the P2P Group "
  4347. "session is ending");
  4348. if (wpas_p2p_group_delete(wpa_s,
  4349. P2P_GROUP_REMOVAL_GO_ENDING_SESSION)
  4350. > 0)
  4351. return 1;
  4352. }
  4353. return 0;
  4354. }
  4355. void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  4356. u16 reason_code, const u8 *ie, size_t ie_len,
  4357. int locally_generated)
  4358. {
  4359. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4360. return;
  4361. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4362. return;
  4363. if (!locally_generated)
  4364. p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie,
  4365. ie_len);
  4366. }
  4367. void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
  4368. {
  4369. struct p2p_data *p2p = wpa_s->global->p2p;
  4370. if (p2p == NULL)
  4371. return;
  4372. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  4373. return;
  4374. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
  4375. p2p_set_dev_name(p2p, wpa_s->conf->device_name);
  4376. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
  4377. p2p_set_pri_dev_type(p2p, wpa_s->conf->device_type);
  4378. if (wpa_s->wps &&
  4379. (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS))
  4380. p2p_set_config_methods(p2p, wpa_s->wps->config_methods);
  4381. if (wpa_s->wps && (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID))
  4382. p2p_set_uuid(p2p, wpa_s->wps->uuid);
  4383. if (wpa_s->conf->changed_parameters & CFG_CHANGED_WPS_STRING) {
  4384. p2p_set_manufacturer(p2p, wpa_s->conf->manufacturer);
  4385. p2p_set_model_name(p2p, wpa_s->conf->model_name);
  4386. p2p_set_model_number(p2p, wpa_s->conf->model_number);
  4387. p2p_set_serial_number(p2p, wpa_s->conf->serial_number);
  4388. }
  4389. if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE)
  4390. p2p_set_sec_dev_types(p2p,
  4391. (void *) wpa_s->conf->sec_device_type,
  4392. wpa_s->conf->num_sec_device_types);
  4393. if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION) {
  4394. int i;
  4395. p2p_remove_wps_vendor_extensions(p2p);
  4396. for (i = 0; i < MAX_WPS_VENDOR_EXT; i++) {
  4397. if (wpa_s->conf->wps_vendor_ext[i] == NULL)
  4398. continue;
  4399. p2p_add_wps_vendor_extension(
  4400. p2p, wpa_s->conf->wps_vendor_ext[i]);
  4401. }
  4402. }
  4403. if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
  4404. wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  4405. char country[3];
  4406. country[0] = wpa_s->conf->country[0];
  4407. country[1] = wpa_s->conf->country[1];
  4408. country[2] = 0x04;
  4409. p2p_set_country(p2p, country);
  4410. }
  4411. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
  4412. p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
  4413. wpa_s->conf->p2p_ssid_postfix ?
  4414. os_strlen(wpa_s->conf->p2p_ssid_postfix) :
  4415. 0);
  4416. }
  4417. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_INTRA_BSS)
  4418. p2p_set_intra_bss_dist(p2p, wpa_s->conf->p2p_intra_bss);
  4419. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_LISTEN_CHANNEL) {
  4420. u8 reg_class, channel;
  4421. int ret;
  4422. unsigned int r;
  4423. if (wpa_s->conf->p2p_listen_reg_class &&
  4424. wpa_s->conf->p2p_listen_channel) {
  4425. reg_class = wpa_s->conf->p2p_listen_reg_class;
  4426. channel = wpa_s->conf->p2p_listen_channel;
  4427. } else {
  4428. reg_class = 81;
  4429. /*
  4430. * Pick one of the social channels randomly as the
  4431. * listen channel.
  4432. */
  4433. os_get_random((u8 *) &r, sizeof(r));
  4434. channel = 1 + (r % 3) * 5;
  4435. }
  4436. ret = p2p_set_listen_channel(p2p, reg_class, channel);
  4437. if (ret)
  4438. wpa_printf(MSG_ERROR, "P2P: Own listen channel update "
  4439. "failed: %d", ret);
  4440. }
  4441. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_OPER_CHANNEL) {
  4442. u8 op_reg_class, op_channel, cfg_op_channel;
  4443. int ret = 0;
  4444. unsigned int r;
  4445. if (wpa_s->conf->p2p_oper_reg_class &&
  4446. wpa_s->conf->p2p_oper_channel) {
  4447. op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  4448. op_channel = wpa_s->conf->p2p_oper_channel;
  4449. cfg_op_channel = 1;
  4450. } else {
  4451. op_reg_class = 81;
  4452. /*
  4453. * Use random operation channel from (1, 6, 11)
  4454. *if no other preference is indicated.
  4455. */
  4456. os_get_random((u8 *) &r, sizeof(r));
  4457. op_channel = 1 + (r % 3) * 5;
  4458. cfg_op_channel = 0;
  4459. }
  4460. ret = p2p_set_oper_channel(p2p, op_reg_class, op_channel,
  4461. cfg_op_channel);
  4462. if (ret)
  4463. wpa_printf(MSG_ERROR, "P2P: Own oper channel update "
  4464. "failed: %d", ret);
  4465. }
  4466. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_PREF_CHAN) {
  4467. if (p2p_set_pref_chan(p2p, wpa_s->conf->num_p2p_pref_chan,
  4468. wpa_s->conf->p2p_pref_chan) < 0) {
  4469. wpa_printf(MSG_ERROR, "P2P: Preferred channel list "
  4470. "update failed");
  4471. }
  4472. }
  4473. }
  4474. int wpas_p2p_set_noa(struct wpa_supplicant *wpa_s, u8 count, int start,
  4475. int duration)
  4476. {
  4477. if (!wpa_s->ap_iface)
  4478. return -1;
  4479. return hostapd_p2p_set_noa(wpa_s->ap_iface->bss[0], count, start,
  4480. duration);
  4481. }
  4482. int wpas_p2p_set_cross_connect(struct wpa_supplicant *wpa_s, int enabled)
  4483. {
  4484. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4485. return -1;
  4486. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)
  4487. return -1;
  4488. wpa_s->global->cross_connection = enabled;
  4489. p2p_set_cross_connect(wpa_s->global->p2p, enabled);
  4490. if (!enabled) {
  4491. struct wpa_supplicant *iface;
  4492. for (iface = wpa_s->global->ifaces; iface; iface = iface->next)
  4493. {
  4494. if (iface->cross_connect_enabled == 0)
  4495. continue;
  4496. iface->cross_connect_enabled = 0;
  4497. iface->cross_connect_in_use = 0;
  4498. wpa_msg(iface->parent, MSG_INFO,
  4499. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  4500. iface->ifname, iface->cross_connect_uplink);
  4501. }
  4502. }
  4503. return 0;
  4504. }
  4505. static void wpas_p2p_enable_cross_connect(struct wpa_supplicant *uplink)
  4506. {
  4507. struct wpa_supplicant *iface;
  4508. if (!uplink->global->cross_connection)
  4509. return;
  4510. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  4511. if (!iface->cross_connect_enabled)
  4512. continue;
  4513. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  4514. 0)
  4515. continue;
  4516. if (iface->ap_iface == NULL)
  4517. continue;
  4518. if (iface->cross_connect_in_use)
  4519. continue;
  4520. iface->cross_connect_in_use = 1;
  4521. wpa_msg(iface->parent, MSG_INFO,
  4522. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  4523. iface->ifname, iface->cross_connect_uplink);
  4524. }
  4525. }
  4526. static void wpas_p2p_disable_cross_connect(struct wpa_supplicant *uplink)
  4527. {
  4528. struct wpa_supplicant *iface;
  4529. for (iface = uplink->global->ifaces; iface; iface = iface->next) {
  4530. if (!iface->cross_connect_enabled)
  4531. continue;
  4532. if (os_strcmp(uplink->ifname, iface->cross_connect_uplink) !=
  4533. 0)
  4534. continue;
  4535. if (!iface->cross_connect_in_use)
  4536. continue;
  4537. wpa_msg(iface->parent, MSG_INFO,
  4538. P2P_EVENT_CROSS_CONNECT_DISABLE "%s %s",
  4539. iface->ifname, iface->cross_connect_uplink);
  4540. iface->cross_connect_in_use = 0;
  4541. }
  4542. }
  4543. void wpas_p2p_notif_connected(struct wpa_supplicant *wpa_s)
  4544. {
  4545. if (wpa_s->ap_iface || wpa_s->current_ssid == NULL ||
  4546. wpa_s->current_ssid->mode != WPAS_MODE_INFRA ||
  4547. wpa_s->cross_connect_disallowed)
  4548. wpas_p2p_disable_cross_connect(wpa_s);
  4549. else
  4550. wpas_p2p_enable_cross_connect(wpa_s);
  4551. if (!wpa_s->ap_iface &&
  4552. eloop_cancel_timeout(wpas_p2p_group_idle_timeout, wpa_s, NULL) > 0)
  4553. wpa_printf(MSG_DEBUG, "P2P: Cancelled P2P group idle timeout");
  4554. }
  4555. void wpas_p2p_notif_disconnected(struct wpa_supplicant *wpa_s)
  4556. {
  4557. wpas_p2p_disable_cross_connect(wpa_s);
  4558. if (!wpa_s->ap_iface &&
  4559. !eloop_is_timeout_registered(wpas_p2p_group_idle_timeout,
  4560. wpa_s, NULL))
  4561. wpas_p2p_set_group_idle_timeout(wpa_s);
  4562. }
  4563. static void wpas_p2p_cross_connect_setup(struct wpa_supplicant *wpa_s)
  4564. {
  4565. struct wpa_supplicant *iface;
  4566. if (!wpa_s->global->cross_connection)
  4567. return;
  4568. for (iface = wpa_s->global->ifaces; iface; iface = iface->next) {
  4569. if (iface == wpa_s)
  4570. continue;
  4571. if (iface->drv_flags &
  4572. WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
  4573. continue;
  4574. if (iface->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE)
  4575. continue;
  4576. wpa_s->cross_connect_enabled = 1;
  4577. os_strlcpy(wpa_s->cross_connect_uplink, iface->ifname,
  4578. sizeof(wpa_s->cross_connect_uplink));
  4579. wpa_printf(MSG_DEBUG, "P2P: Enable cross connection from "
  4580. "%s to %s whenever uplink is available",
  4581. wpa_s->ifname, wpa_s->cross_connect_uplink);
  4582. if (iface->ap_iface || iface->current_ssid == NULL ||
  4583. iface->current_ssid->mode != WPAS_MODE_INFRA ||
  4584. iface->cross_connect_disallowed ||
  4585. iface->wpa_state != WPA_COMPLETED)
  4586. break;
  4587. wpa_s->cross_connect_in_use = 1;
  4588. wpa_msg(wpa_s->parent, MSG_INFO,
  4589. P2P_EVENT_CROSS_CONNECT_ENABLE "%s %s",
  4590. wpa_s->ifname, wpa_s->cross_connect_uplink);
  4591. break;
  4592. }
  4593. }
  4594. int wpas_p2p_notif_pbc_overlap(struct wpa_supplicant *wpa_s)
  4595. {
  4596. if (wpa_s->p2p_group_interface != P2P_GROUP_INTERFACE_CLIENT &&
  4597. !wpa_s->p2p_in_provisioning)
  4598. return 0; /* not P2P client operation */
  4599. wpa_printf(MSG_DEBUG, "P2P: Terminate connection due to WPS PBC "
  4600. "session overlap");
  4601. if (wpa_s != wpa_s->parent)
  4602. wpa_msg_ctrl(wpa_s->parent, MSG_INFO, WPS_EVENT_OVERLAP);
  4603. if (wpa_s->global->p2p)
  4604. p2p_group_formation_failed(wpa_s->global->p2p);
  4605. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  4606. wpa_s->parent, NULL);
  4607. wpas_group_formation_completed(wpa_s, 0);
  4608. return 1;
  4609. }
  4610. void wpas_p2p_update_channel_list(struct wpa_supplicant *wpa_s)
  4611. {
  4612. struct p2p_channels chan;
  4613. if (wpa_s->global == NULL || wpa_s->global->p2p == NULL)
  4614. return;
  4615. os_memset(&chan, 0, sizeof(chan));
  4616. if (wpas_p2p_setup_channels(wpa_s, &chan)) {
  4617. wpa_printf(MSG_ERROR, "P2P: Failed to update supported "
  4618. "channel list");
  4619. return;
  4620. }
  4621. p2p_update_channel_list(wpa_s->global->p2p, &chan);
  4622. }
  4623. static void wpas_p2p_scan_res_ignore(struct wpa_supplicant *wpa_s,
  4624. struct wpa_scan_results *scan_res)
  4625. {
  4626. wpa_printf(MSG_DEBUG, "P2P: Ignore scan results");
  4627. }
  4628. int wpas_p2p_cancel(struct wpa_supplicant *wpa_s)
  4629. {
  4630. struct wpa_global *global = wpa_s->global;
  4631. int found = 0;
  4632. const u8 *peer;
  4633. if (global->p2p == NULL)
  4634. return -1;
  4635. wpa_printf(MSG_DEBUG, "P2P: Request to cancel group formation");
  4636. if (wpa_s->pending_interface_name[0] &&
  4637. !is_zero_ether_addr(wpa_s->pending_interface_addr))
  4638. found = 1;
  4639. peer = p2p_get_go_neg_peer(global->p2p);
  4640. if (peer) {
  4641. wpa_printf(MSG_DEBUG, "P2P: Unauthorize pending GO Neg peer "
  4642. MACSTR, MAC2STR(peer));
  4643. p2p_unauthorize(global->p2p, peer);
  4644. found = 1;
  4645. }
  4646. if (wpa_s->scan_res_handler == wpas_p2p_scan_res_join) {
  4647. wpa_printf(MSG_DEBUG, "P2P: Stop pending scan for join");
  4648. wpa_s->scan_res_handler = wpas_p2p_scan_res_ignore;
  4649. found = 1;
  4650. }
  4651. if (wpa_s->pending_pd_before_join) {
  4652. wpa_printf(MSG_DEBUG, "P2P: Stop pending PD before join");
  4653. wpa_s->pending_pd_before_join = 0;
  4654. found = 1;
  4655. }
  4656. wpas_p2p_stop_find(wpa_s);
  4657. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  4658. if (wpa_s == global->p2p_group_formation &&
  4659. (wpa_s->p2p_in_provisioning ||
  4660. wpa_s->parent->pending_interface_type ==
  4661. WPA_IF_P2P_CLIENT)) {
  4662. wpa_printf(MSG_DEBUG, "P2P: Interface %s in group "
  4663. "formation found - cancelling",
  4664. wpa_s->ifname);
  4665. found = 1;
  4666. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  4667. wpa_s->parent, NULL);
  4668. if (wpa_s->p2p_in_provisioning) {
  4669. wpas_group_formation_completed(wpa_s, 0);
  4670. break;
  4671. }
  4672. wpas_p2p_group_delete(wpa_s,
  4673. P2P_GROUP_REMOVAL_REQUESTED);
  4674. break;
  4675. }
  4676. }
  4677. if (!found) {
  4678. wpa_printf(MSG_DEBUG, "P2P: No ongoing group formation found");
  4679. return -1;
  4680. }
  4681. return 0;
  4682. }
  4683. void wpas_p2p_interface_unavailable(struct wpa_supplicant *wpa_s)
  4684. {
  4685. if (wpa_s->current_ssid == NULL || !wpa_s->current_ssid->p2p_group)
  4686. return;
  4687. wpa_printf(MSG_DEBUG, "P2P: Remove group due to driver resource not "
  4688. "being available anymore");
  4689. wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_UNAVAILABLE);
  4690. }
  4691. void wpas_p2p_update_best_channels(struct wpa_supplicant *wpa_s,
  4692. int freq_24, int freq_5, int freq_overall)
  4693. {
  4694. struct p2p_data *p2p = wpa_s->global->p2p;
  4695. if (p2p == NULL || (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT))
  4696. return;
  4697. p2p_set_best_channels(p2p, freq_24, freq_5, freq_overall);
  4698. }
  4699. int wpas_p2p_unauthorize(struct wpa_supplicant *wpa_s, const char *addr)
  4700. {
  4701. u8 peer[ETH_ALEN];
  4702. struct p2p_data *p2p = wpa_s->global->p2p;
  4703. if (p2p == NULL || (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT))
  4704. return -1;
  4705. if (hwaddr_aton(addr, peer))
  4706. return -1;
  4707. return p2p_unauthorize(p2p, peer);
  4708. }
  4709. /**
  4710. * wpas_p2p_disconnect - Disconnect from a P2P Group
  4711. * @wpa_s: Pointer to wpa_supplicant data
  4712. * Returns: 0 on success, -1 on failure
  4713. *
  4714. * This can be used to disconnect from a group in which the local end is a P2P
  4715. * Client or to end a P2P Group in case the local end is the Group Owner. If a
  4716. * virtual network interface was created for this group, that interface will be
  4717. * removed. Otherwise, only the configured P2P group network will be removed
  4718. * from the interface.
  4719. */
  4720. int wpas_p2p_disconnect(struct wpa_supplicant *wpa_s)
  4721. {
  4722. if (wpa_s == NULL)
  4723. return -1;
  4724. return wpas_p2p_group_delete(wpa_s, P2P_GROUP_REMOVAL_REQUESTED) < 0 ?
  4725. -1 : 0;
  4726. }
  4727. int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s)
  4728. {
  4729. int ret;
  4730. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4731. return 0;
  4732. ret = p2p_in_progress(wpa_s->global->p2p);
  4733. if (ret == 0) {
  4734. /*
  4735. * Check whether there is an ongoing WPS provisioning step (or
  4736. * other parts of group formation) on another interface since
  4737. * p2p_in_progress() does not report this to avoid issues for
  4738. * scans during such provisioning step.
  4739. */
  4740. if (wpa_s->global->p2p_group_formation &&
  4741. wpa_s->global->p2p_group_formation != wpa_s) {
  4742. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Another interface (%s) "
  4743. "in group formation",
  4744. wpa_s->global->p2p_group_formation->ifname);
  4745. ret = 1;
  4746. }
  4747. }
  4748. return ret;
  4749. }
  4750. void wpas_p2p_network_removed(struct wpa_supplicant *wpa_s,
  4751. struct wpa_ssid *ssid)
  4752. {
  4753. if (wpa_s->p2p_in_provisioning && ssid->p2p_group &&
  4754. eloop_cancel_timeout(wpas_p2p_group_formation_timeout,
  4755. wpa_s->parent, NULL) > 0) {
  4756. /**
  4757. * Remove the network by scheduling the group formation
  4758. * timeout to happen immediately. The teardown code
  4759. * needs to be scheduled to run asynch later so that we
  4760. * don't delete data from under ourselves unexpectedly.
  4761. * Calling wpas_p2p_group_formation_timeout directly
  4762. * causes a series of crashes in WPS failure scenarios.
  4763. */
  4764. wpa_printf(MSG_DEBUG, "P2P: Canceled group formation due to "
  4765. "P2P group network getting removed");
  4766. eloop_register_timeout(0, 0, wpas_p2p_group_formation_timeout,
  4767. wpa_s->parent, NULL);
  4768. }
  4769. }
  4770. struct wpa_ssid * wpas_p2p_get_persistent(struct wpa_supplicant *wpa_s,
  4771. const u8 *addr, const u8 *ssid,
  4772. size_t ssid_len)
  4773. {
  4774. struct wpa_ssid *s;
  4775. size_t i;
  4776. for (s = wpa_s->conf->ssid; s; s = s->next) {
  4777. if (s->disabled != 2)
  4778. continue;
  4779. if (ssid &&
  4780. (ssid_len != s->ssid_len ||
  4781. os_memcmp(ssid, s->ssid, ssid_len) != 0))
  4782. continue;
  4783. if (os_memcmp(s->bssid, addr, ETH_ALEN) == 0)
  4784. return s; /* peer is GO in the persistent group */
  4785. if (s->mode != WPAS_MODE_P2P_GO || s->p2p_client_list == NULL)
  4786. continue;
  4787. for (i = 0; i < s->num_p2p_clients; i++) {
  4788. if (os_memcmp(s->p2p_client_list + i * ETH_ALEN,
  4789. addr, ETH_ALEN) == 0)
  4790. return s; /* peer is P2P client in persistent
  4791. * group */
  4792. }
  4793. }
  4794. return NULL;
  4795. }
  4796. void wpas_p2p_notify_ap_sta_authorized(struct wpa_supplicant *wpa_s,
  4797. const u8 *addr)
  4798. {
  4799. if (addr == NULL)
  4800. return;
  4801. wpas_p2p_add_persistent_group_client(wpa_s, addr);
  4802. }
  4803. static void wpas_p2p_fallback_to_go_neg(struct wpa_supplicant *wpa_s,
  4804. int group_added)
  4805. {
  4806. struct wpa_supplicant *group = wpa_s;
  4807. if (wpa_s->global->p2p_group_formation)
  4808. group = wpa_s->global->p2p_group_formation;
  4809. wpa_s = wpa_s->parent;
  4810. offchannel_send_action_done(wpa_s);
  4811. if (group_added)
  4812. wpas_p2p_group_delete(group, P2P_GROUP_REMOVAL_SILENT);
  4813. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Fall back to GO Negotiation");
  4814. wpas_p2p_connect(wpa_s, wpa_s->pending_join_dev_addr, wpa_s->p2p_pin,
  4815. wpa_s->p2p_wps_method, wpa_s->p2p_persistent_group, 0,
  4816. 0, 0, wpa_s->p2p_go_intent, wpa_s->p2p_connect_freq,
  4817. wpa_s->p2p_persistent_id,
  4818. wpa_s->p2p_pd_before_go_neg,
  4819. wpa_s->p2p_go_ht40);
  4820. }
  4821. int wpas_p2p_scan_no_go_seen(struct wpa_supplicant *wpa_s)
  4822. {
  4823. if (!wpa_s->p2p_fallback_to_go_neg ||
  4824. wpa_s->p2p_in_provisioning <= 5)
  4825. return 0;
  4826. if (wpas_p2p_peer_go(wpa_s, wpa_s->pending_join_dev_addr) > 0)
  4827. return 0; /* peer operating as a GO */
  4828. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: GO not found for p2p_connect-auto - "
  4829. "fallback to GO Negotiation");
  4830. wpas_p2p_fallback_to_go_neg(wpa_s, 1);
  4831. return 1;
  4832. }
  4833. unsigned int wpas_p2p_search_delay(struct wpa_supplicant *wpa_s)
  4834. {
  4835. const char *rn, *rn2;
  4836. struct wpa_supplicant *ifs;
  4837. if (wpa_s->wpa_state > WPA_SCANNING) {
  4838. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search delay due to "
  4839. "concurrent operation",
  4840. P2P_CONCURRENT_SEARCH_DELAY);
  4841. return P2P_CONCURRENT_SEARCH_DELAY;
  4842. }
  4843. if (!wpa_s->driver->get_radio_name)
  4844. return 0;
  4845. rn = wpa_s->driver->get_radio_name(wpa_s->drv_priv);
  4846. if (rn == NULL || rn[0] == '\0')
  4847. return 0;
  4848. for (ifs = wpa_s->global->ifaces; ifs; ifs = ifs->next) {
  4849. if (ifs == wpa_s || !ifs->driver->get_radio_name)
  4850. continue;
  4851. rn2 = ifs->driver->get_radio_name(ifs->drv_priv);
  4852. if (!rn2 || os_strcmp(rn, rn2) != 0)
  4853. continue;
  4854. if (ifs->wpa_state > WPA_SCANNING) {
  4855. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Use %u ms search "
  4856. "delay due to concurrent operation on "
  4857. "interface %s",
  4858. P2P_CONCURRENT_SEARCH_DELAY, ifs->ifname);
  4859. return P2P_CONCURRENT_SEARCH_DELAY;
  4860. }
  4861. }
  4862. return 0;
  4863. }
  4864. void wpas_p2p_continue_after_scan(struct wpa_supplicant *wpa_s)
  4865. {
  4866. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Station mode scan operation not "
  4867. "pending anymore (sta_scan_pending=%d "
  4868. "p2p_cb_on_scan_complete=%d)", wpa_s->sta_scan_pending,
  4869. wpa_s->global->p2p_cb_on_scan_complete);
  4870. wpa_s->sta_scan_pending = 0;
  4871. if (!wpa_s->global->p2p_cb_on_scan_complete)
  4872. return;
  4873. wpa_s->global->p2p_cb_on_scan_complete = 0;
  4874. if (wpa_s->global->p2p_disabled || wpa_s->global->p2p == NULL)
  4875. return;
  4876. if (p2p_other_scan_completed(wpa_s->global->p2p) == 1) {
  4877. wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Pending P2P operation "
  4878. "continued after successful connection");
  4879. p2p_increase_search_delay(wpa_s->global->p2p,
  4880. wpas_p2p_search_delay(wpa_s));
  4881. }
  4882. }