p2p_supplicant.c 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291
  1. /*
  2. * wpa_supplicant - P2P
  3. * Copyright (c) 2009-2010, Atheros Communications
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "eloop.h"
  17. #include "common/ieee802_11_common.h"
  18. #include "common/ieee802_11_defs.h"
  19. #include "common/wpa_ctrl.h"
  20. #include "wps/wps_i.h"
  21. #include "p2p/p2p.h"
  22. #include "ap/hostapd.h"
  23. #include "wpa_supplicant_i.h"
  24. #include "driver_i.h"
  25. #include "ap.h"
  26. #include "config_ssid.h"
  27. #include "config.h"
  28. #include "mlme.h"
  29. #include "notify.h"
  30. #include "scan.h"
  31. #include "bss.h"
  32. #include "wps_supplicant.h"
  33. #include "p2p_supplicant.h"
  34. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx);
  35. static struct wpa_supplicant *
  36. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  37. int go);
  38. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s);
  39. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx);
  40. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  41. const u8 *dev_addr, enum p2p_wps_method wps_method);
  42. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s);
  43. static void wpas_p2p_scan_res_handler(struct wpa_supplicant *wpa_s,
  44. struct wpa_scan_results *scan_res)
  45. {
  46. size_t i;
  47. if (wpa_s->global->p2p_disabled)
  48. return;
  49. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS)",
  50. (int) scan_res->num);
  51. for (i = 0; i < scan_res->num; i++) {
  52. struct wpa_scan_res *bss = scan_res->res[i];
  53. if (p2p_scan_res_handler(wpa_s->global->p2p, bss->bssid,
  54. bss->freq, bss->level,
  55. (const u8 *) (bss + 1),
  56. bss->ie_len) > 0)
  57. return;
  58. }
  59. p2p_scan_res_handled(wpa_s->global->p2p);
  60. }
  61. static int wpas_p2p_scan(void *ctx, enum p2p_scan_type type, int freq)
  62. {
  63. struct wpa_supplicant *wpa_s = ctx;
  64. struct wpa_driver_scan_params params;
  65. int ret;
  66. struct wpabuf *wps_ie, *ies;
  67. int social_channels[] = { 2412, 2437, 2462, 0, 0 };
  68. os_memset(&params, 0, sizeof(params));
  69. /* P2P Wildcard SSID */
  70. params.num_ssids = 1;
  71. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  72. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  73. wpa_s->wps->dev.p2p = 1;
  74. wps_ie = wps_build_probe_req_ie(0, &wpa_s->wps->dev, wpa_s->wps->uuid,
  75. WPS_REQ_ENROLLEE);
  76. if (wps_ie == NULL)
  77. return -1;
  78. ies = wpabuf_alloc(wpabuf_len(wps_ie) + 100);
  79. if (ies == NULL) {
  80. wpabuf_free(wps_ie);
  81. return -1;
  82. }
  83. wpabuf_put_buf(ies, wps_ie);
  84. wpabuf_free(wps_ie);
  85. p2p_scan_ie(wpa_s->global->p2p, ies);
  86. params.extra_ies = wpabuf_head(ies);
  87. params.extra_ies_len = wpabuf_len(ies);
  88. switch (type) {
  89. case P2P_SCAN_SOCIAL:
  90. params.freqs = social_channels;
  91. break;
  92. case P2P_SCAN_FULL:
  93. break;
  94. case P2P_SCAN_SPECIFIC:
  95. social_channels[0] = freq;
  96. social_channels[1] = 0;
  97. params.freqs = social_channels;
  98. break;
  99. case P2P_SCAN_SOCIAL_PLUS_ONE:
  100. social_channels[3] = freq;
  101. params.freqs = social_channels;
  102. break;
  103. }
  104. wpa_s->scan_res_handler = wpas_p2p_scan_res_handler;
  105. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
  106. ret = ieee80211_sta_req_scan(wpa_s, &params);
  107. else
  108. ret = wpa_drv_scan(wpa_s, &params);
  109. wpabuf_free(ies);
  110. return ret;
  111. }
  112. #ifdef CONFIG_CLIENT_MLME
  113. static void p2p_rx_action_mlme(void *ctx, const u8 *buf, size_t len, int freq)
  114. {
  115. struct wpa_supplicant *wpa_s = ctx;
  116. const struct ieee80211_mgmt *mgmt;
  117. size_t hdr_len;
  118. if (wpa_s->global->p2p_disabled)
  119. return;
  120. mgmt = (const struct ieee80211_mgmt *) buf;
  121. hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
  122. if (hdr_len > len)
  123. return;
  124. p2p_rx_action(wpa_s->global->p2p, mgmt->da, mgmt->sa, mgmt->bssid,
  125. mgmt->u.action.category,
  126. &mgmt->u.action.u.vs_public_action.action,
  127. len - hdr_len, freq);
  128. }
  129. #endif /* CONFIG_CLIENT_MLME */
  130. static enum wpa_driver_if_type wpas_p2p_if_type(int p2p_group_interface)
  131. {
  132. switch (p2p_group_interface) {
  133. case P2P_GROUP_INTERFACE_PENDING:
  134. return WPA_IF_P2P_GROUP;
  135. case P2P_GROUP_INTERFACE_GO:
  136. return WPA_IF_P2P_GO;
  137. case P2P_GROUP_INTERFACE_CLIENT:
  138. return WPA_IF_P2P_CLIENT;
  139. }
  140. return WPA_IF_P2P_GROUP;
  141. }
  142. static void wpas_p2p_group_delete(struct wpa_supplicant *wpa_s)
  143. {
  144. struct wpa_ssid *ssid;
  145. char *gtype;
  146. ssid = wpa_s->current_ssid;
  147. if (ssid == NULL) {
  148. /*
  149. * The current SSID was not known, but there may still be a
  150. * pending P2P group interface waiting for provisioning.
  151. */
  152. ssid = wpa_s->conf->ssid;
  153. while (ssid) {
  154. if (ssid->p2p_group &&
  155. (ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
  156. (ssid->key_mgmt & WPA_KEY_MGMT_WPS)))
  157. break;
  158. ssid = ssid->next;
  159. }
  160. }
  161. if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_GO)
  162. gtype = "GO";
  163. else if (wpa_s->p2p_group_interface == P2P_GROUP_INTERFACE_CLIENT ||
  164. (ssid && ssid->mode == WPAS_MODE_INFRA)) {
  165. wpa_s->reassociate = 0;
  166. wpa_s->disconnected = 1;
  167. wpa_supplicant_deauthenticate(wpa_s,
  168. WLAN_REASON_DEAUTH_LEAVING);
  169. gtype = "client";
  170. } else
  171. gtype = "GO";
  172. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_REMOVED "%s %s",
  173. wpa_s->ifname, gtype);
  174. if (wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE) {
  175. struct wpa_global *global;
  176. char *ifname;
  177. enum wpa_driver_if_type type;
  178. wpa_printf(MSG_DEBUG, "P2P: Remove group interface %s",
  179. wpa_s->ifname);
  180. global = wpa_s->global;
  181. ifname = os_strdup(wpa_s->ifname);
  182. type = wpas_p2p_if_type(wpa_s->p2p_group_interface);
  183. wpa_supplicant_remove_iface(wpa_s->global, wpa_s);
  184. wpa_s = global->ifaces;
  185. if (wpa_s && ifname)
  186. wpa_drv_if_remove(wpa_s, type, ifname);
  187. os_free(ifname);
  188. return;
  189. }
  190. wpa_printf(MSG_DEBUG, "P2P: Remove temporary group network");
  191. if (ssid && (ssid->p2p_group ||
  192. ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION ||
  193. (ssid->key_mgmt & WPA_KEY_MGMT_WPS))) {
  194. int id = ssid->id;
  195. if (ssid == wpa_s->current_ssid)
  196. wpa_s->current_ssid = NULL;
  197. wpas_notify_network_removed(wpa_s, ssid);
  198. wpa_config_remove_network(wpa_s->conf, id);
  199. wpa_supplicant_clear_status(wpa_s);
  200. } else {
  201. wpa_printf(MSG_DEBUG, "P2P: Temporary group network not "
  202. "found");
  203. }
  204. wpa_supplicant_ap_deinit(wpa_s);
  205. }
  206. static int wpas_p2p_persistent_group(struct wpa_supplicant *wpa_s,
  207. u8 *go_dev_addr,
  208. const u8 *ssid, size_t ssid_len)
  209. {
  210. struct wpa_bss *bss;
  211. const u8 *bssid;
  212. struct wpabuf *p2p;
  213. u8 group_capab;
  214. const u8 *addr;
  215. if (wpa_s->go_params)
  216. bssid = wpa_s->go_params->peer_interface_addr;
  217. else
  218. bssid = wpa_s->bssid;
  219. bss = wpa_bss_get(wpa_s, bssid, ssid, ssid_len);
  220. if (bss == NULL) {
  221. u8 iface_addr[ETH_ALEN];
  222. if (p2p_get_interface_addr(wpa_s->global->p2p, bssid,
  223. iface_addr) == 0)
  224. bss = wpa_bss_get(wpa_s, iface_addr, ssid, ssid_len);
  225. }
  226. if (bss == NULL) {
  227. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  228. "group is persistent - BSS " MACSTR " not found",
  229. MAC2STR(bssid));
  230. return 0;
  231. }
  232. p2p = wpa_bss_get_vendor_ie_multi(bss, P2P_IE_VENDOR_TYPE);
  233. if (p2p == NULL) {
  234. wpa_printf(MSG_DEBUG, "P2P: Could not figure out whether "
  235. "group is persistent - BSS " MACSTR
  236. " did not include P2P IE", MAC2STR(bssid));
  237. wpa_hexdump(MSG_DEBUG, "P2P: Probe Response IEs",
  238. (u8 *) (bss + 1), bss->ie_len);
  239. wpa_hexdump(MSG_DEBUG, "P2P: Beacon IEs",
  240. ((u8 *) bss + 1) + bss->ie_len,
  241. bss->beacon_ie_len);
  242. return 0;
  243. }
  244. group_capab = p2p_get_group_capab(p2p);
  245. addr = p2p_get_go_dev_addr(p2p);
  246. wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
  247. "group_capab=0x%x", group_capab);
  248. if (addr) {
  249. os_memcpy(go_dev_addr, addr, ETH_ALEN);
  250. wpa_printf(MSG_DEBUG, "P2P: GO Device Address " MACSTR,
  251. MAC2STR(addr));
  252. } else
  253. os_memset(go_dev_addr, 0, ETH_ALEN);
  254. wpabuf_free(p2p);
  255. wpa_printf(MSG_DEBUG, "P2P: BSS " MACSTR " group_capab=0x%x "
  256. "go_dev_addr=" MACSTR,
  257. MAC2STR(bssid), group_capab, MAC2STR(go_dev_addr));
  258. return group_capab & P2P_GROUP_CAPAB_PERSISTENT_GROUP;
  259. }
  260. static void wpas_p2p_store_persistent_group(struct wpa_supplicant *wpa_s,
  261. struct wpa_ssid *ssid,
  262. const u8 *go_dev_addr)
  263. {
  264. struct wpa_ssid *s;
  265. int changed = 0;
  266. wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
  267. "group (GO Dev Addr " MACSTR ")", MAC2STR(go_dev_addr));
  268. for (s = wpa_s->conf->ssid; s; s = s->next) {
  269. if (s->disabled == 2 &&
  270. os_memcmp(go_dev_addr, s->bssid, ETH_ALEN) == 0 &&
  271. s->ssid_len == ssid->ssid_len &&
  272. os_memcmp(ssid->ssid, s->ssid, ssid->ssid_len) == 0)
  273. break;
  274. }
  275. if (s) {
  276. wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
  277. "entry");
  278. if (ssid->passphrase && !s->passphrase)
  279. changed = 1;
  280. else if (ssid->passphrase && s->passphrase &&
  281. os_strcmp(ssid->passphrase, s->passphrase) != 0)
  282. changed = 1;
  283. } else {
  284. wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
  285. "entry");
  286. changed = 1;
  287. s = wpa_config_add_network(wpa_s->conf);
  288. if (s == NULL)
  289. return;
  290. wpa_config_set_network_defaults(s);
  291. }
  292. s->p2p_group = 1;
  293. s->p2p_persistent_group = 1;
  294. s->disabled = 2;
  295. s->bssid_set = 1;
  296. os_memcpy(s->bssid, go_dev_addr, ETH_ALEN);
  297. s->mode = ssid->mode;
  298. s->auth_alg = WPA_AUTH_ALG_OPEN;
  299. s->key_mgmt = WPA_KEY_MGMT_PSK;
  300. s->proto = WPA_PROTO_RSN;
  301. s->pairwise_cipher = WPA_CIPHER_CCMP;
  302. if (ssid->passphrase) {
  303. os_free(s->passphrase);
  304. s->passphrase = os_strdup(ssid->passphrase);
  305. }
  306. if (ssid->psk_set) {
  307. s->psk_set = 1;
  308. os_memcpy(s->psk, ssid->psk, 32);
  309. }
  310. if (s->passphrase && !s->psk_set)
  311. wpa_config_update_psk(s);
  312. if (s->ssid == NULL || s->ssid_len < ssid->ssid_len) {
  313. os_free(s->ssid);
  314. s->ssid = os_malloc(ssid->ssid_len);
  315. }
  316. if (s->ssid) {
  317. s->ssid_len = ssid->ssid_len;
  318. os_memcpy(s->ssid, ssid->ssid, s->ssid_len);
  319. }
  320. #ifndef CONFIG_NO_CONFIG_WRITE
  321. if (changed && wpa_s->conf->update_config &&
  322. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  323. wpa_printf(MSG_DEBUG, "P2P: Failed to update configuration");
  324. }
  325. #endif /* CONFIG_NO_CONFIG_WRITE */
  326. }
  327. static void wpas_group_formation_completed(struct wpa_supplicant *wpa_s,
  328. int success)
  329. {
  330. struct wpa_ssid *ssid;
  331. const char *ssid_txt;
  332. int client;
  333. int persistent;
  334. u8 go_dev_addr[ETH_ALEN];
  335. /*
  336. * This callback is likely called for the main interface. Update wpa_s
  337. * to use the group interface if a new interface was created for the
  338. * group.
  339. */
  340. if (wpa_s->global->p2p_group_formation)
  341. wpa_s = wpa_s->global->p2p_group_formation;
  342. wpa_s->p2p_in_provisioning = 0;
  343. if (!success) {
  344. wpa_msg(wpa_s->parent, MSG_INFO,
  345. P2P_EVENT_GROUP_FORMATION_FAILURE);
  346. wpas_p2p_group_delete(wpa_s);
  347. return;
  348. }
  349. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_FORMATION_SUCCESS);
  350. ssid = wpa_s->current_ssid;
  351. if (ssid && ssid->mode == WPAS_MODE_P2P_GROUP_FORMATION) {
  352. ssid->mode = WPAS_MODE_P2P_GO;
  353. p2p_group_notif_formation_done(wpa_s->p2p_group);
  354. wpa_supplicant_ap_mac_addr_filter(wpa_s, NULL);
  355. }
  356. persistent = 0;
  357. if (ssid) {
  358. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  359. client = ssid->mode == WPAS_MODE_INFRA;
  360. if (ssid->mode == WPAS_MODE_P2P_GO) {
  361. persistent = ssid->p2p_persistent_group;
  362. os_memcpy(go_dev_addr, wpa_s->parent->own_addr,
  363. ETH_ALEN);
  364. } else
  365. persistent = wpas_p2p_persistent_group(wpa_s,
  366. go_dev_addr,
  367. ssid->ssid,
  368. ssid->ssid_len);
  369. } else {
  370. ssid_txt = "";
  371. client = wpa_s->p2p_group_interface ==
  372. P2P_GROUP_INTERFACE_CLIENT;
  373. }
  374. wpa_s->show_group_started = 0;
  375. if (client) {
  376. /*
  377. * Indicate event only after successfully completed 4-way
  378. * handshake, i.e., when the interface is ready for data
  379. * packets.
  380. */
  381. wpa_s->show_group_started = 1;
  382. } else if (ssid && ssid->passphrase == NULL && ssid->psk_set) {
  383. char psk[65];
  384. wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
  385. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  386. "%s GO ssid=\"%s\" psk=%s go_dev_addr=" MACSTR "%s",
  387. wpa_s->ifname, ssid_txt, psk, MAC2STR(go_dev_addr),
  388. persistent ? " [PERSISTENT]" : "");
  389. } else {
  390. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  391. "%s GO ssid=\"%s\" passphrase=\"%s\" go_dev_addr="
  392. MACSTR "%s",
  393. wpa_s->ifname, ssid_txt,
  394. ssid && ssid->passphrase ? ssid->passphrase : "",
  395. MAC2STR(go_dev_addr),
  396. persistent ? " [PERSISTENT]" : "");
  397. }
  398. if (persistent)
  399. wpas_p2p_store_persistent_group(wpa_s->parent, ssid,
  400. go_dev_addr);
  401. }
  402. static void wpas_send_action_cb(void *eloop_ctx, void *timeout_ctx)
  403. {
  404. struct wpa_supplicant *wpa_s = eloop_ctx;
  405. struct wpa_supplicant *iface;
  406. int res;
  407. int without_roc;
  408. without_roc = wpa_s->pending_action_without_roc;
  409. wpa_s->pending_action_without_roc = 0;
  410. if (wpa_s->pending_action_tx == NULL)
  411. return;
  412. if (wpa_s->off_channel_freq != wpa_s->pending_action_freq &&
  413. wpa_s->pending_action_freq != 0) {
  414. wpa_printf(MSG_DEBUG, "P2P: Pending Action frame TX "
  415. "waiting for another freq=%u (off_channel_freq=%u)",
  416. wpa_s->pending_action_freq,
  417. wpa_s->off_channel_freq);
  418. if (without_roc && wpa_s->off_channel_freq == 0) {
  419. /*
  420. * We may get here if wpas_send_action() found us to be
  421. * on the correct channel, but remain-on-channel cancel
  422. * event was received before getting here.
  423. */
  424. wpa_printf(MSG_DEBUG, "P2P: Schedule "
  425. "remain-on-channel to send Action frame");
  426. if (wpa_drv_remain_on_channel(
  427. wpa_s, wpa_s->pending_action_freq, 200) <
  428. 0) {
  429. wpa_printf(MSG_DEBUG, "P2P: Failed to request "
  430. "driver to remain on channel (%u "
  431. "MHz) for Action Frame TX",
  432. wpa_s->pending_action_freq);
  433. } else
  434. wpa_s->roc_waiting_drv_freq =
  435. wpa_s->pending_action_freq;
  436. }
  437. return;
  438. }
  439. /*
  440. * This call is likely going to be on the P2P device instance if the
  441. * driver uses a separate interface for that purpose. However, some
  442. * Action frames are actually sent within a P2P Group and when that is
  443. * the case, we need to follow power saving (e.g., GO buffering the
  444. * frame for a client in PS mode or a client following the advertised
  445. * NoA from its GO). To make that easier for the driver, select the
  446. * correct group interface here.
  447. */
  448. if (os_memcmp(wpa_s->pending_action_src, wpa_s->own_addr, ETH_ALEN) !=
  449. 0) {
  450. /*
  451. * Try to find a group interface that matches with the source
  452. * address.
  453. */
  454. iface = wpa_s->global->ifaces;
  455. while (iface) {
  456. if (os_memcmp(wpa_s->pending_action_src,
  457. iface->own_addr, ETH_ALEN) == 0)
  458. break;
  459. iface = iface->next;
  460. }
  461. if (iface) {
  462. wpa_printf(MSG_DEBUG, "P2P: Use group interface %s "
  463. "instead of interface %s for Action TX",
  464. iface->ifname, wpa_s->ifname);
  465. } else
  466. iface = wpa_s;
  467. } else
  468. iface = wpa_s;
  469. wpa_printf(MSG_DEBUG, "P2P: Sending pending Action frame to "
  470. MACSTR " using interface %s",
  471. MAC2STR(wpa_s->pending_action_dst), iface->ifname);
  472. res = wpa_drv_send_action(iface, wpa_s->pending_action_freq,
  473. wpa_s->pending_action_dst,
  474. wpa_s->pending_action_src,
  475. wpa_s->pending_action_bssid,
  476. wpabuf_head(wpa_s->pending_action_tx),
  477. wpabuf_len(wpa_s->pending_action_tx));
  478. if (res) {
  479. wpa_printf(MSG_DEBUG, "P2P: Failed to send the pending "
  480. "Action frame");
  481. /*
  482. * Use fake TX status event to allow P2P state machine to
  483. * continue.
  484. */
  485. wpas_send_action_tx_status(
  486. wpa_s, wpa_s->pending_action_dst,
  487. wpabuf_head(wpa_s->pending_action_tx),
  488. wpabuf_len(wpa_s->pending_action_tx), 0);
  489. }
  490. }
  491. void wpas_send_action_tx_status(struct wpa_supplicant *wpa_s, const u8 *dst,
  492. const u8 *data, size_t data_len, int ack)
  493. {
  494. if (wpa_s->global->p2p_disabled)
  495. return;
  496. if (wpa_s->pending_action_tx == NULL) {
  497. wpa_printf(MSG_DEBUG, "P2P: Ignore Action TX status - no "
  498. "pending operation");
  499. return;
  500. }
  501. if (os_memcmp(dst, wpa_s->pending_action_dst, ETH_ALEN) != 0) {
  502. wpa_printf(MSG_DEBUG, "P2P: Ignore Action TX status - unknown "
  503. "destination address");
  504. return;
  505. }
  506. wpabuf_free(wpa_s->pending_action_tx);
  507. wpa_s->pending_action_tx = NULL;
  508. p2p_send_action_cb(wpa_s->global->p2p, wpa_s->pending_action_freq,
  509. wpa_s->pending_action_dst,
  510. wpa_s->pending_action_src,
  511. wpa_s->pending_action_bssid,
  512. ack);
  513. if (wpa_s->pending_pd_before_join &&
  514. (os_memcmp(wpa_s->pending_action_dst, wpa_s->pending_join_dev_addr,
  515. ETH_ALEN) == 0 ||
  516. os_memcmp(wpa_s->pending_action_dst,
  517. wpa_s->pending_join_iface_addr, ETH_ALEN) == 0)) {
  518. wpa_s->pending_pd_before_join = 0;
  519. wpa_printf(MSG_DEBUG, "P2P: Starting pending "
  520. "join-existing-group operation");
  521. wpas_p2p_join_start(wpa_s);
  522. }
  523. }
  524. static int wpas_send_action(void *ctx, unsigned int freq, const u8 *dst,
  525. const u8 *src, const u8 *bssid, const u8 *buf,
  526. size_t len, unsigned int wait_time)
  527. {
  528. struct wpa_supplicant *wpa_s = ctx;
  529. wpa_printf(MSG_DEBUG, "P2P: Send action frame: freq=%d dst=" MACSTR
  530. " src=" MACSTR " bssid=" MACSTR,
  531. freq, MAC2STR(dst), MAC2STR(src), MAC2STR(bssid));
  532. if (wpa_s->pending_action_tx) {
  533. wpa_printf(MSG_DEBUG, "P2P: Dropped pending Action frame TX "
  534. "to " MACSTR, MAC2STR(wpa_s->pending_action_dst));
  535. wpabuf_free(wpa_s->pending_action_tx);
  536. }
  537. wpa_s->pending_action_tx = wpabuf_alloc(len);
  538. if (wpa_s->pending_action_tx == NULL)
  539. return -1;
  540. wpabuf_put_data(wpa_s->pending_action_tx, buf, len);
  541. os_memcpy(wpa_s->pending_action_src, src, ETH_ALEN);
  542. os_memcpy(wpa_s->pending_action_dst, dst, ETH_ALEN);
  543. os_memcpy(wpa_s->pending_action_bssid, bssid, ETH_ALEN);
  544. wpa_s->pending_action_freq = freq;
  545. if (wpa_s->off_channel_freq == freq || freq == 0) {
  546. /* Already on requested channel; send immediately */
  547. /* TODO: Would there ever be need to extend the current
  548. * duration on the channel? */
  549. wpa_s->pending_action_without_roc = 1;
  550. eloop_cancel_timeout(wpas_send_action_cb, wpa_s, NULL);
  551. eloop_register_timeout(0, 0, wpas_send_action_cb, wpa_s, NULL);
  552. return 0;
  553. }
  554. wpa_s->pending_action_without_roc = 0;
  555. if (wpa_s->roc_waiting_drv_freq == freq) {
  556. wpa_printf(MSG_DEBUG, "P2P: Already waiting for driver to get "
  557. "to frequency %u MHz; continue waiting to send the "
  558. "Action frame", freq);
  559. return 0;
  560. }
  561. wpa_printf(MSG_DEBUG, "P2P: Schedule Action frame to be transmitted "
  562. "once the driver gets to the requested channel");
  563. if (wait_time > wpa_s->max_remain_on_chan)
  564. wait_time = wpa_s->max_remain_on_chan;
  565. if (wpa_drv_remain_on_channel(wpa_s, freq, wait_time) < 0) {
  566. wpa_printf(MSG_DEBUG, "P2P: Failed to request driver "
  567. "to remain on channel (%u MHz) for Action "
  568. "Frame TX", freq);
  569. return -1;
  570. }
  571. wpa_s->roc_waiting_drv_freq = freq;
  572. return 0;
  573. }
  574. static void wpas_send_action_done(void *ctx)
  575. {
  576. struct wpa_supplicant *wpa_s = ctx;
  577. wpa_printf(MSG_DEBUG, "P2P: Action frame sequence done notification");
  578. wpabuf_free(wpa_s->pending_action_tx);
  579. wpa_s->pending_action_tx = NULL;
  580. if (wpa_s->off_channel_freq) {
  581. wpa_drv_cancel_remain_on_channel(wpa_s);
  582. wpa_s->off_channel_freq = 0;
  583. wpa_s->roc_waiting_drv_freq = 0;
  584. }
  585. }
  586. static int wpas_copy_go_neg_results(struct wpa_supplicant *wpa_s,
  587. struct p2p_go_neg_results *params)
  588. {
  589. if (wpa_s->go_params == NULL) {
  590. wpa_s->go_params = os_malloc(sizeof(*params));
  591. if (wpa_s->go_params == NULL)
  592. return -1;
  593. }
  594. os_memcpy(wpa_s->go_params, params, sizeof(*params));
  595. return 0;
  596. }
  597. static void wpas_start_wps_enrollee(struct wpa_supplicant *wpa_s,
  598. struct p2p_go_neg_results *res)
  599. {
  600. wpa_supplicant_ap_deinit(wpa_s);
  601. wpas_copy_go_neg_results(wpa_s, res);
  602. if (res->wps_method == WPS_PBC)
  603. wpas_wps_start_pbc(wpa_s, NULL /* res->peer_interface_addr */,
  604. 1);
  605. else {
  606. u16 dev_pw_id = DEV_PW_DEFAULT;
  607. if (wpa_s->p2p_wps_method == WPS_PIN_KEYPAD)
  608. dev_pw_id = DEV_PW_REGISTRAR_SPECIFIED;
  609. wpas_wps_start_pin(wpa_s, res->peer_interface_addr,
  610. wpa_s->p2p_pin, 1, dev_pw_id);
  611. }
  612. }
  613. static void p2p_go_configured(void *ctx, void *data)
  614. {
  615. struct wpa_supplicant *wpa_s = ctx;
  616. struct p2p_go_neg_results *params = data;
  617. struct wpa_ssid *ssid;
  618. ssid = wpa_s->current_ssid;
  619. if (ssid && ssid->mode == WPAS_MODE_P2P_GO) {
  620. wpa_printf(MSG_DEBUG, "P2P: Group setup without provisioning");
  621. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  622. "%s GO ssid=\"%s\" passphrase=\"%s\" go_dev_addr="
  623. MACSTR "%s",
  624. wpa_s->ifname,
  625. wpa_ssid_txt(ssid->ssid, ssid->ssid_len),
  626. params->passphrase ? params->passphrase : "",
  627. MAC2STR(wpa_s->parent->own_addr),
  628. params->persistent_group ? " [PERSISTENT]" : "");
  629. if (params->persistent_group)
  630. wpas_p2p_store_persistent_group(
  631. wpa_s->parent, ssid,
  632. wpa_s->parent->own_addr);
  633. return;
  634. }
  635. wpa_printf(MSG_DEBUG, "P2P: Setting up WPS for GO provisioning");
  636. if (wpa_supplicant_ap_mac_addr_filter(wpa_s,
  637. params->peer_interface_addr)) {
  638. wpa_printf(MSG_DEBUG, "P2P: Failed to setup MAC address "
  639. "filtering");
  640. return;
  641. }
  642. if (params->wps_method == WPS_PBC)
  643. wpa_supplicant_ap_wps_pbc(wpa_s, params->peer_interface_addr);
  644. else if (wpa_s->p2p_pin[0])
  645. wpa_supplicant_ap_wps_pin(wpa_s, params->peer_interface_addr,
  646. wpa_s->p2p_pin, NULL, 0);
  647. os_free(wpa_s->go_params);
  648. wpa_s->go_params = NULL;
  649. }
  650. static void wpas_start_wps_go(struct wpa_supplicant *wpa_s,
  651. struct p2p_go_neg_results *params,
  652. int group_formation)
  653. {
  654. struct wpa_ssid *ssid;
  655. if (wpas_copy_go_neg_results(wpa_s, params) < 0)
  656. return;
  657. ssid = wpa_config_add_network(wpa_s->conf);
  658. if (ssid == NULL)
  659. return;
  660. wpa_config_set_network_defaults(ssid);
  661. ssid->temporary = 1;
  662. ssid->p2p_group = 1;
  663. ssid->p2p_persistent_group = params->persistent_group;
  664. ssid->mode = group_formation ? WPAS_MODE_P2P_GROUP_FORMATION :
  665. WPAS_MODE_P2P_GO;
  666. ssid->frequency = params->freq;
  667. ssid->ssid = os_zalloc(params->ssid_len + 1);
  668. if (ssid->ssid) {
  669. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  670. ssid->ssid_len = params->ssid_len;
  671. }
  672. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  673. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  674. ssid->proto = WPA_PROTO_RSN;
  675. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  676. ssid->passphrase = os_strdup(params->passphrase);
  677. wpa_s->ap_configured_cb = p2p_go_configured;
  678. wpa_s->ap_configured_cb_ctx = wpa_s;
  679. wpa_s->ap_configured_cb_data = wpa_s->go_params;
  680. wpa_s->connect_without_scan = 1;
  681. wpa_s->reassociate = 1;
  682. wpa_s->disconnected = 0;
  683. wpa_supplicant_req_scan(wpa_s, 0, 0);
  684. }
  685. static void wpas_p2p_clone_config(struct wpa_supplicant *dst,
  686. const struct wpa_supplicant *src)
  687. {
  688. struct wpa_config *d;
  689. const struct wpa_config *s;
  690. d = dst->conf;
  691. s = src->conf;
  692. #define C(n) if (s->n) d->n = os_strdup(s->n)
  693. C(device_name);
  694. C(manufacturer);
  695. C(model_name);
  696. C(model_number);
  697. C(serial_number);
  698. C(device_type);
  699. C(config_methods);
  700. #undef C
  701. }
  702. static int wpas_p2p_add_group_interface(struct wpa_supplicant *wpa_s,
  703. enum wpa_driver_if_type type)
  704. {
  705. char ifname[120], force_ifname[120];
  706. if (wpa_s->pending_interface_name[0]) {
  707. wpa_printf(MSG_DEBUG, "P2P: Pending virtual interface exists "
  708. "- skip creation of a new one");
  709. if (is_zero_ether_addr(wpa_s->pending_interface_addr)) {
  710. wpa_printf(MSG_DEBUG, "P2P: Pending virtual address "
  711. "unknown?! ifname='%s'",
  712. wpa_s->pending_interface_name);
  713. return -1;
  714. }
  715. return 0;
  716. }
  717. os_snprintf(ifname, sizeof(ifname), "%s-p2p-%d", wpa_s->ifname,
  718. wpa_s->p2p_group_idx);
  719. force_ifname[0] = '\0';
  720. wpa_printf(MSG_DEBUG, "P2P: Create a new interface %s for the group",
  721. ifname);
  722. wpa_s->p2p_group_idx++;
  723. wpa_s->pending_interface_type = type;
  724. if (wpa_drv_if_add(wpa_s, type, ifname, NULL, NULL, force_ifname,
  725. wpa_s->pending_interface_addr) < 0) {
  726. wpa_printf(MSG_ERROR, "P2P: Failed to create new group "
  727. "interface");
  728. return -1;
  729. }
  730. if (force_ifname[0]) {
  731. wpa_printf(MSG_DEBUG, "P2P: Driver forced interface name %s",
  732. force_ifname);
  733. os_strlcpy(wpa_s->pending_interface_name, force_ifname,
  734. sizeof(wpa_s->pending_interface_name));
  735. } else
  736. os_strlcpy(wpa_s->pending_interface_name, ifname,
  737. sizeof(wpa_s->pending_interface_name));
  738. wpa_printf(MSG_DEBUG, "P2P: Created pending virtual interface %s addr "
  739. MACSTR, wpa_s->pending_interface_name,
  740. MAC2STR(wpa_s->pending_interface_addr));
  741. return 0;
  742. }
  743. static void wpas_p2p_remove_pending_group_interface(
  744. struct wpa_supplicant *wpa_s)
  745. {
  746. if (!wpa_s->pending_interface_name[0] ||
  747. is_zero_ether_addr(wpa_s->pending_interface_addr))
  748. return; /* No pending virtual interface */
  749. wpa_printf(MSG_DEBUG, "P2P: Removing pending group interface %s",
  750. wpa_s->pending_interface_name);
  751. wpa_drv_if_remove(wpa_s, wpa_s->pending_interface_type,
  752. wpa_s->pending_interface_name);
  753. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  754. wpa_s->pending_interface_name[0] = '\0';
  755. }
  756. static struct wpa_supplicant *
  757. wpas_p2p_init_group_interface(struct wpa_supplicant *wpa_s, int go)
  758. {
  759. struct wpa_interface iface;
  760. struct wpa_supplicant *group_wpa_s;
  761. if (!wpa_s->pending_interface_name[0]) {
  762. wpa_printf(MSG_ERROR, "P2P: No pending group interface");
  763. return NULL;
  764. }
  765. os_memset(&iface, 0, sizeof(iface));
  766. iface.ifname = wpa_s->pending_interface_name;
  767. iface.driver = wpa_s->driver->name;
  768. iface.ctrl_interface = wpa_s->conf->ctrl_interface;
  769. iface.driver_param = wpa_s->conf->driver_param;
  770. group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
  771. if (group_wpa_s == NULL) {
  772. wpa_printf(MSG_ERROR, "P2P: Failed to create new "
  773. "wpa_supplicant interface");
  774. return NULL;
  775. }
  776. wpa_s->pending_interface_name[0] = '\0';
  777. group_wpa_s->parent = wpa_s;
  778. group_wpa_s->p2p_group_interface = go ? P2P_GROUP_INTERFACE_GO :
  779. P2P_GROUP_INTERFACE_CLIENT;
  780. wpa_s->global->p2p_group_formation = group_wpa_s;
  781. wpas_p2p_clone_config(group_wpa_s, wpa_s);
  782. return group_wpa_s;
  783. }
  784. static void wpas_p2p_group_formation_timeout(void *eloop_ctx,
  785. void *timeout_ctx)
  786. {
  787. struct wpa_supplicant *wpa_s = eloop_ctx;
  788. wpa_printf(MSG_DEBUG, "P2P: Group Formation timed out");
  789. if (wpa_s->global->p2p)
  790. p2p_group_formation_failed(wpa_s->global->p2p);
  791. wpas_group_formation_completed(wpa_s, 0);
  792. }
  793. void wpas_go_neg_completed(void *ctx, struct p2p_go_neg_results *res)
  794. {
  795. struct wpa_supplicant *wpa_s = ctx;
  796. if (wpa_s->off_channel_freq) {
  797. wpa_drv_cancel_remain_on_channel(wpa_s);
  798. wpa_s->off_channel_freq = 0;
  799. wpa_s->roc_waiting_drv_freq = 0;
  800. }
  801. if (res->status) {
  802. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_FAILURE "status=%d",
  803. res->status);
  804. wpas_p2p_remove_pending_group_interface(wpa_s);
  805. return;
  806. }
  807. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_SUCCESS);
  808. if (wpa_s->create_p2p_iface) {
  809. struct wpa_supplicant *group_wpa_s =
  810. wpas_p2p_init_group_interface(wpa_s, res->role_go);
  811. if (group_wpa_s == NULL) {
  812. wpas_p2p_remove_pending_group_interface(wpa_s);
  813. return;
  814. }
  815. if (group_wpa_s != wpa_s) {
  816. os_memcpy(group_wpa_s->p2p_pin, wpa_s->p2p_pin,
  817. sizeof(group_wpa_s->p2p_pin));
  818. group_wpa_s->p2p_wps_method = wpa_s->p2p_wps_method;
  819. }
  820. os_memset(wpa_s->pending_interface_addr, 0, ETH_ALEN);
  821. wpa_s->pending_interface_name[0] = '\0';
  822. group_wpa_s->p2p_in_provisioning = 1;
  823. if (res->role_go)
  824. wpas_start_wps_go(group_wpa_s, res, 1);
  825. else
  826. wpas_start_wps_enrollee(group_wpa_s, res);
  827. } else {
  828. wpa_s->p2p_in_provisioning = 1;
  829. wpa_s->global->p2p_group_formation = wpa_s;
  830. if (res->role_go)
  831. wpas_start_wps_go(wpa_s, res, 1);
  832. else
  833. wpas_start_wps_enrollee(ctx, res);
  834. }
  835. wpa_s->p2p_long_listen = 0;
  836. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  837. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  838. /* TODO: add peer Config Timeout */
  839. eloop_register_timeout(15, 0, wpas_p2p_group_formation_timeout, wpa_s,
  840. NULL);
  841. }
  842. void wpas_go_neg_req_rx(void *ctx, const u8 *src)
  843. {
  844. struct wpa_supplicant *wpa_s = ctx;
  845. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_GO_NEG_REQUEST MACSTR,
  846. MAC2STR(src));
  847. }
  848. void wpas_dev_found(void *ctx, const u8 *addr, const u8 *dev_addr,
  849. const u8 *pri_dev_type, const char *dev_name,
  850. u16 config_methods, u8 dev_capab, u8 group_capab)
  851. {
  852. struct wpa_supplicant *wpa_s = ctx;
  853. char devtype[WPS_DEV_TYPE_BUFSIZE];
  854. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_DEVICE_FOUND MACSTR
  855. " p2p_dev_addr=" MACSTR
  856. " pri_dev_type=%s name='%s' config_methods=0x%x "
  857. "dev_capab=0x%x group_capab=0x%x",
  858. MAC2STR(addr), MAC2STR(dev_addr),
  859. wps_dev_type_bin2str(pri_dev_type, devtype, sizeof(devtype)),
  860. dev_name, config_methods, dev_capab, group_capab);
  861. }
  862. static int wpas_start_listen(void *ctx, unsigned int freq,
  863. unsigned int duration,
  864. const struct wpabuf *probe_resp_ie)
  865. {
  866. struct wpa_supplicant *wpa_s = ctx;
  867. wpa_drv_set_ap_wps_ie(wpa_s, NULL, probe_resp_ie);
  868. if (wpa_drv_probe_req_report(wpa_s, 1) < 0) {
  869. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver to "
  870. "report received Probe Request frames");
  871. return -1;
  872. }
  873. wpa_s->pending_listen_freq = freq;
  874. wpa_s->pending_listen_duration = duration;
  875. if (wpa_drv_remain_on_channel(wpa_s, freq, duration) < 0) {
  876. wpa_printf(MSG_DEBUG, "P2P: Failed to request the driver "
  877. "to remain on channel (%u MHz) for Listen "
  878. "state", freq);
  879. wpa_s->pending_listen_freq = 0;
  880. return -1;
  881. }
  882. wpa_s->roc_waiting_drv_freq = freq;
  883. return 0;
  884. }
  885. static void wpas_stop_listen(void *ctx)
  886. {
  887. struct wpa_supplicant *wpa_s = ctx;
  888. if (wpa_s->off_channel_freq) {
  889. wpa_drv_cancel_remain_on_channel(wpa_s);
  890. wpa_s->off_channel_freq = 0;
  891. wpa_s->roc_waiting_drv_freq = 0;
  892. }
  893. wpa_drv_probe_req_report(wpa_s, 0);
  894. }
  895. static int wpas_send_probe_resp(void *ctx, const struct wpabuf *buf)
  896. {
  897. struct wpa_supplicant *wpa_s = ctx;
  898. return wpa_drv_send_mlme(wpa_s, wpabuf_head(buf), wpabuf_len(buf));
  899. }
  900. static struct p2p_srv_bonjour *
  901. wpas_p2p_service_get_bonjour(struct wpa_supplicant *wpa_s,
  902. const struct wpabuf *query)
  903. {
  904. struct p2p_srv_bonjour *bsrv;
  905. size_t len;
  906. len = wpabuf_len(query);
  907. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  908. struct p2p_srv_bonjour, list) {
  909. if (len == wpabuf_len(bsrv->query) &&
  910. os_memcmp(wpabuf_head(query), wpabuf_head(bsrv->query),
  911. len) == 0)
  912. return bsrv;
  913. }
  914. return NULL;
  915. }
  916. static struct p2p_srv_upnp *
  917. wpas_p2p_service_get_upnp(struct wpa_supplicant *wpa_s, u8 version,
  918. const char *service)
  919. {
  920. struct p2p_srv_upnp *usrv;
  921. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  922. struct p2p_srv_upnp, list) {
  923. if (version == usrv->version &&
  924. os_strcmp(service, usrv->service) == 0)
  925. return usrv;
  926. }
  927. return NULL;
  928. }
  929. static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto,
  930. u8 srv_trans_id)
  931. {
  932. u8 *len_pos;
  933. if (wpabuf_tailroom(resp) < 5)
  934. return;
  935. /* Length (to be filled) */
  936. len_pos = wpabuf_put(resp, 2);
  937. wpabuf_put_u8(resp, srv_proto);
  938. wpabuf_put_u8(resp, srv_trans_id);
  939. /* Status Code */
  940. wpabuf_put_u8(resp, P2P_SD_PROTO_NOT_AVAILABLE);
  941. /* Response Data: empty */
  942. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  943. }
  944. static void wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s,
  945. struct wpabuf *resp, u8 srv_trans_id)
  946. {
  947. struct p2p_srv_bonjour *bsrv;
  948. u8 *len_pos;
  949. wpa_printf(MSG_DEBUG, "P2P: SD Request for all Bonjour services");
  950. if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  951. wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
  952. return;
  953. }
  954. dl_list_for_each(bsrv, &wpa_s->global->p2p_srv_bonjour,
  955. struct p2p_srv_bonjour, list) {
  956. if (wpabuf_tailroom(resp) <
  957. 5 + wpabuf_len(bsrv->query) + wpabuf_len(bsrv->resp))
  958. return;
  959. /* Length (to be filled) */
  960. len_pos = wpabuf_put(resp, 2);
  961. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  962. wpabuf_put_u8(resp, srv_trans_id);
  963. /* Status Code */
  964. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  965. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
  966. wpabuf_head(bsrv->resp),
  967. wpabuf_len(bsrv->resp));
  968. /* Response Data */
  969. wpabuf_put_buf(resp, bsrv->query); /* Key */
  970. wpabuf_put_buf(resp, bsrv->resp); /* Value */
  971. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  972. 2);
  973. }
  974. }
  975. static void wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s,
  976. struct wpabuf *resp, u8 srv_trans_id,
  977. const u8 *query, size_t query_len)
  978. {
  979. struct p2p_srv_bonjour *bsrv;
  980. struct wpabuf buf;
  981. u8 *len_pos;
  982. wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for Bonjour",
  983. query, query_len);
  984. if (dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  985. wpa_printf(MSG_DEBUG, "P2P: Bonjour protocol not available");
  986. wpas_sd_add_proto_not_avail(resp, P2P_SERV_BONJOUR,
  987. srv_trans_id);
  988. return;
  989. }
  990. if (query_len == 0) {
  991. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  992. return;
  993. }
  994. if (wpabuf_tailroom(resp) < 5)
  995. return;
  996. /* Length (to be filled) */
  997. len_pos = wpabuf_put(resp, 2);
  998. wpabuf_put_u8(resp, P2P_SERV_BONJOUR);
  999. wpabuf_put_u8(resp, srv_trans_id);
  1000. wpabuf_set(&buf, query, query_len);
  1001. bsrv = wpas_p2p_service_get_bonjour(wpa_s, &buf);
  1002. if (bsrv == NULL) {
  1003. wpa_printf(MSG_DEBUG, "P2P: Requested Bonjour service not "
  1004. "available");
  1005. /* Status Code */
  1006. wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
  1007. /* Response Data: empty */
  1008. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1009. 2);
  1010. return;
  1011. }
  1012. /* Status Code */
  1013. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1014. wpa_hexdump_ascii(MSG_DEBUG, "P2P: Matching Bonjour service",
  1015. wpabuf_head(bsrv->resp), wpabuf_len(bsrv->resp));
  1016. if (wpabuf_tailroom(resp) >=
  1017. wpabuf_len(bsrv->query) + wpabuf_len(bsrv->resp)) {
  1018. /* Response Data */
  1019. wpabuf_put_buf(resp, bsrv->query); /* Key */
  1020. wpabuf_put_buf(resp, bsrv->resp); /* Value */
  1021. }
  1022. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1023. }
  1024. static void wpas_sd_all_upnp(struct wpa_supplicant *wpa_s,
  1025. struct wpabuf *resp, u8 srv_trans_id)
  1026. {
  1027. struct p2p_srv_upnp *usrv;
  1028. u8 *len_pos;
  1029. wpa_printf(MSG_DEBUG, "P2P: SD Request for all UPnP services");
  1030. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
  1031. wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
  1032. return;
  1033. }
  1034. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1035. struct p2p_srv_upnp, list) {
  1036. if (wpabuf_tailroom(resp) < 5 + 1 + os_strlen(usrv->service))
  1037. return;
  1038. /* Length (to be filled) */
  1039. len_pos = wpabuf_put(resp, 2);
  1040. wpabuf_put_u8(resp, P2P_SERV_UPNP);
  1041. wpabuf_put_u8(resp, srv_trans_id);
  1042. /* Status Code */
  1043. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1044. /* Response Data */
  1045. wpabuf_put_u8(resp, usrv->version);
  1046. wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
  1047. usrv->service);
  1048. wpabuf_put_str(resp, usrv->service);
  1049. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos -
  1050. 2);
  1051. }
  1052. }
  1053. static void wpas_sd_req_upnp(struct wpa_supplicant *wpa_s,
  1054. struct wpabuf *resp, u8 srv_trans_id,
  1055. const u8 *query, size_t query_len)
  1056. {
  1057. struct p2p_srv_upnp *usrv;
  1058. u8 *len_pos;
  1059. u8 version;
  1060. char *str;
  1061. int count = 0;
  1062. wpa_hexdump_ascii(MSG_DEBUG, "P2P: SD Request for UPnP",
  1063. query, query_len);
  1064. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp)) {
  1065. wpa_printf(MSG_DEBUG, "P2P: UPnP protocol not available");
  1066. wpas_sd_add_proto_not_avail(resp, P2P_SERV_UPNP,
  1067. srv_trans_id);
  1068. return;
  1069. }
  1070. if (query_len == 0) {
  1071. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1072. return;
  1073. }
  1074. version = query[0];
  1075. str = os_malloc(query_len);
  1076. if (str == NULL)
  1077. return;
  1078. os_memcpy(str, query + 1, query_len - 1);
  1079. str[query_len - 1] = '\0';
  1080. if (wpabuf_tailroom(resp) < 5)
  1081. return;
  1082. /* Length (to be filled) */
  1083. len_pos = wpabuf_put(resp, 2);
  1084. wpabuf_put_u8(resp, P2P_SERV_UPNP);
  1085. wpabuf_put_u8(resp, srv_trans_id);
  1086. dl_list_for_each(usrv, &wpa_s->global->p2p_srv_upnp,
  1087. struct p2p_srv_upnp, list) {
  1088. if (version != usrv->version)
  1089. continue;
  1090. if (os_strcmp(str, "ssdp:all") != 0 &&
  1091. os_strstr(usrv->service, str) == NULL)
  1092. continue;
  1093. if (wpabuf_tailroom(resp) < 2)
  1094. break;
  1095. if (count == 0) {
  1096. /* Status Code */
  1097. wpabuf_put_u8(resp, P2P_SD_SUCCESS);
  1098. /* Response Data */
  1099. wpabuf_put_u8(resp, version);
  1100. } else
  1101. wpabuf_put_u8(resp, ',');
  1102. count++;
  1103. wpa_printf(MSG_DEBUG, "P2P: Matching UPnP Service: %s",
  1104. usrv->service);
  1105. if (wpabuf_tailroom(resp) < os_strlen(usrv->service))
  1106. break;
  1107. wpabuf_put_str(resp, usrv->service);
  1108. }
  1109. if (count == 0) {
  1110. wpa_printf(MSG_DEBUG, "P2P: Requested UPnP service not "
  1111. "available");
  1112. /* Status Code */
  1113. wpabuf_put_u8(resp, P2P_SD_REQUESTED_INFO_NOT_AVAILABLE);
  1114. /* Response Data: empty */
  1115. }
  1116. WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2);
  1117. }
  1118. void wpas_sd_request(void *ctx, int freq, const u8 *sa, u8 dialog_token,
  1119. u16 update_indic, const u8 *tlvs, size_t tlvs_len)
  1120. {
  1121. struct wpa_supplicant *wpa_s = ctx;
  1122. const u8 *pos = tlvs;
  1123. const u8 *end = tlvs + tlvs_len;
  1124. const u8 *tlv_end;
  1125. u16 slen;
  1126. struct wpabuf *resp;
  1127. u8 srv_proto, srv_trans_id;
  1128. size_t buf_len;
  1129. char *buf;
  1130. wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Request TLVs",
  1131. tlvs, tlvs_len);
  1132. buf_len = 2 * tlvs_len + 1;
  1133. buf = os_malloc(buf_len);
  1134. if (buf) {
  1135. wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
  1136. wpa_msg_ctrl(wpa_s, MSG_INFO, P2P_EVENT_SERV_DISC_REQ "%d "
  1137. MACSTR " %u %u %s",
  1138. freq, MAC2STR(sa), dialog_token, update_indic,
  1139. buf);
  1140. os_free(buf);
  1141. }
  1142. if (wpa_s->p2p_sd_over_ctrl_iface)
  1143. return; /* to be processed by an external program */
  1144. resp = wpabuf_alloc(10000);
  1145. if (resp == NULL)
  1146. return;
  1147. while (pos + 1 < end) {
  1148. wpa_printf(MSG_DEBUG, "P2P: Service Request TLV");
  1149. slen = WPA_GET_LE16(pos);
  1150. pos += 2;
  1151. if (pos + slen > end || slen < 2) {
  1152. wpa_printf(MSG_DEBUG, "P2P: Unexpected Query Data "
  1153. "length");
  1154. wpabuf_free(resp);
  1155. return;
  1156. }
  1157. tlv_end = pos + slen;
  1158. srv_proto = *pos++;
  1159. wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
  1160. srv_proto);
  1161. srv_trans_id = *pos++;
  1162. wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
  1163. srv_trans_id);
  1164. wpa_hexdump(MSG_MSGDUMP, "P2P: Query Data",
  1165. pos, tlv_end - pos);
  1166. if (wpa_s->force_long_sd) {
  1167. wpa_printf(MSG_DEBUG, "P2P: SD test - force long "
  1168. "response");
  1169. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1170. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1171. goto done;
  1172. }
  1173. switch (srv_proto) {
  1174. case P2P_SERV_ALL_SERVICES:
  1175. wpa_printf(MSG_DEBUG, "P2P: Service Discovery Request "
  1176. "for all services");
  1177. if (dl_list_empty(&wpa_s->global->p2p_srv_upnp) &&
  1178. dl_list_empty(&wpa_s->global->p2p_srv_bonjour)) {
  1179. wpa_printf(MSG_DEBUG, "P2P: No service "
  1180. "discovery protocols available");
  1181. wpas_sd_add_proto_not_avail(
  1182. resp, P2P_SERV_ALL_SERVICES,
  1183. srv_trans_id);
  1184. break;
  1185. }
  1186. wpas_sd_all_bonjour(wpa_s, resp, srv_trans_id);
  1187. wpas_sd_all_upnp(wpa_s, resp, srv_trans_id);
  1188. break;
  1189. case P2P_SERV_BONJOUR:
  1190. wpas_sd_req_bonjour(wpa_s, resp, srv_trans_id,
  1191. pos, tlv_end - pos);
  1192. break;
  1193. case P2P_SERV_UPNP:
  1194. wpas_sd_req_upnp(wpa_s, resp, srv_trans_id,
  1195. pos, tlv_end - pos);
  1196. break;
  1197. default:
  1198. wpa_printf(MSG_DEBUG, "P2P: Unavailable service "
  1199. "protocol %u", srv_proto);
  1200. wpas_sd_add_proto_not_avail(resp, srv_proto,
  1201. srv_trans_id);
  1202. break;
  1203. }
  1204. pos = tlv_end;
  1205. }
  1206. done:
  1207. wpas_p2p_sd_response(wpa_s, freq, sa, dialog_token, resp);
  1208. wpabuf_free(resp);
  1209. }
  1210. void wpas_sd_response(void *ctx, const u8 *sa, u16 update_indic,
  1211. const u8 *tlvs, size_t tlvs_len)
  1212. {
  1213. struct wpa_supplicant *wpa_s = ctx;
  1214. const u8 *pos = tlvs;
  1215. const u8 *end = tlvs + tlvs_len;
  1216. const u8 *tlv_end;
  1217. u16 slen;
  1218. size_t buf_len;
  1219. char *buf;
  1220. wpa_hexdump(MSG_MSGDUMP, "P2P: Service Discovery Response TLVs",
  1221. tlvs, tlvs_len);
  1222. if (tlvs_len > 1500) {
  1223. /* TODO: better way for handling this */
  1224. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1225. P2P_EVENT_SERV_DISC_RESP MACSTR
  1226. " %u <long response: %u bytes>",
  1227. MAC2STR(sa), update_indic,
  1228. (unsigned int) tlvs_len);
  1229. } else {
  1230. buf_len = 2 * tlvs_len + 1;
  1231. buf = os_malloc(buf_len);
  1232. if (buf) {
  1233. wpa_snprintf_hex(buf, buf_len, tlvs, tlvs_len);
  1234. wpa_msg_ctrl(wpa_s, MSG_INFO,
  1235. P2P_EVENT_SERV_DISC_RESP MACSTR " %u %s",
  1236. MAC2STR(sa), update_indic, buf);
  1237. os_free(buf);
  1238. }
  1239. }
  1240. while (pos < end) {
  1241. u8 srv_proto, srv_trans_id, status;
  1242. wpa_printf(MSG_DEBUG, "P2P: Service Response TLV");
  1243. slen = WPA_GET_LE16(pos);
  1244. pos += 2;
  1245. if (pos + slen > end || slen < 3) {
  1246. wpa_printf(MSG_DEBUG, "P2P: Unexpected Response Data "
  1247. "length");
  1248. return;
  1249. }
  1250. tlv_end = pos + slen;
  1251. srv_proto = *pos++;
  1252. wpa_printf(MSG_DEBUG, "P2P: Service Protocol Type %u",
  1253. srv_proto);
  1254. srv_trans_id = *pos++;
  1255. wpa_printf(MSG_DEBUG, "P2P: Service Transaction ID %u",
  1256. srv_trans_id);
  1257. status = *pos++;
  1258. wpa_printf(MSG_DEBUG, "P2P: Status Code ID %u",
  1259. status);
  1260. wpa_hexdump(MSG_MSGDUMP, "P2P: Response Data",
  1261. pos, tlv_end - pos);
  1262. pos = tlv_end;
  1263. }
  1264. }
  1265. void * wpas_p2p_sd_request(struct wpa_supplicant *wpa_s, const u8 *dst,
  1266. const struct wpabuf *tlvs)
  1267. {
  1268. return p2p_sd_request(wpa_s->global->p2p, dst, tlvs);
  1269. }
  1270. void * wpas_p2p_sd_request_upnp(struct wpa_supplicant *wpa_s, const u8 *dst,
  1271. u8 version, const char *query)
  1272. {
  1273. struct wpabuf *tlvs;
  1274. void *ret;
  1275. tlvs = wpabuf_alloc(2 + 1 + 1 + 1 + os_strlen(query));
  1276. if (tlvs == NULL)
  1277. return NULL;
  1278. wpabuf_put_le16(tlvs, 1 + 1 + 1 + os_strlen(query));
  1279. wpabuf_put_u8(tlvs, P2P_SERV_UPNP); /* Service Protocol Type */
  1280. wpabuf_put_u8(tlvs, 1); /* Service Transaction ID */
  1281. wpabuf_put_u8(tlvs, version);
  1282. wpabuf_put_str(tlvs, query);
  1283. ret = wpas_p2p_sd_request(wpa_s, dst, tlvs);
  1284. wpabuf_free(tlvs);
  1285. return ret;
  1286. }
  1287. int wpas_p2p_sd_cancel_request(struct wpa_supplicant *wpa_s, void *req)
  1288. {
  1289. return p2p_sd_cancel_request(wpa_s->global->p2p, req);
  1290. }
  1291. void wpas_p2p_sd_response(struct wpa_supplicant *wpa_s, int freq,
  1292. const u8 *dst, u8 dialog_token,
  1293. const struct wpabuf *resp_tlvs)
  1294. {
  1295. p2p_sd_response(wpa_s->global->p2p, freq, dst, dialog_token,
  1296. resp_tlvs);
  1297. }
  1298. void wpas_p2p_sd_service_update(struct wpa_supplicant *wpa_s)
  1299. {
  1300. p2p_sd_service_update(wpa_s->global->p2p);
  1301. }
  1302. static void wpas_p2p_srv_bonjour_free(struct p2p_srv_bonjour *bsrv)
  1303. {
  1304. dl_list_del(&bsrv->list);
  1305. wpabuf_free(bsrv->query);
  1306. wpabuf_free(bsrv->resp);
  1307. os_free(bsrv);
  1308. }
  1309. static void wpas_p2p_srv_upnp_free(struct p2p_srv_upnp *usrv)
  1310. {
  1311. dl_list_del(&usrv->list);
  1312. os_free(usrv->service);
  1313. os_free(usrv);
  1314. }
  1315. void wpas_p2p_service_flush(struct wpa_supplicant *wpa_s)
  1316. {
  1317. struct p2p_srv_bonjour *bsrv, *bn;
  1318. struct p2p_srv_upnp *usrv, *un;
  1319. dl_list_for_each_safe(bsrv, bn, &wpa_s->global->p2p_srv_bonjour,
  1320. struct p2p_srv_bonjour, list)
  1321. wpas_p2p_srv_bonjour_free(bsrv);
  1322. dl_list_for_each_safe(usrv, un, &wpa_s->global->p2p_srv_upnp,
  1323. struct p2p_srv_upnp, list)
  1324. wpas_p2p_srv_upnp_free(usrv);
  1325. wpas_p2p_sd_service_update(wpa_s);
  1326. }
  1327. int wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s,
  1328. struct wpabuf *query, struct wpabuf *resp)
  1329. {
  1330. struct p2p_srv_bonjour *bsrv;
  1331. bsrv = wpas_p2p_service_get_bonjour(wpa_s, query);
  1332. if (bsrv) {
  1333. wpabuf_free(query);
  1334. wpabuf_free(bsrv->resp);
  1335. bsrv->resp = resp;
  1336. return 0;
  1337. }
  1338. bsrv = os_zalloc(sizeof(*bsrv));
  1339. if (bsrv == NULL)
  1340. return -1;
  1341. bsrv->query = query;
  1342. bsrv->resp = resp;
  1343. dl_list_add(&wpa_s->global->p2p_srv_bonjour, &bsrv->list);
  1344. wpas_p2p_sd_service_update(wpa_s);
  1345. return 0;
  1346. }
  1347. int wpas_p2p_service_del_bonjour(struct wpa_supplicant *wpa_s,
  1348. const struct wpabuf *query)
  1349. {
  1350. struct p2p_srv_bonjour *bsrv;
  1351. bsrv = wpas_p2p_service_get_bonjour(wpa_s, query);
  1352. if (bsrv == NULL)
  1353. return -1;
  1354. wpas_p2p_srv_bonjour_free(bsrv);
  1355. wpas_p2p_sd_service_update(wpa_s);
  1356. return 0;
  1357. }
  1358. int wpas_p2p_service_add_upnp(struct wpa_supplicant *wpa_s, u8 version,
  1359. const char *service)
  1360. {
  1361. struct p2p_srv_upnp *usrv;
  1362. if (wpas_p2p_service_get_upnp(wpa_s, version, service))
  1363. return 0; /* Already listed */
  1364. usrv = os_zalloc(sizeof(*usrv));
  1365. if (usrv == NULL)
  1366. return -1;
  1367. usrv->version = version;
  1368. usrv->service = os_strdup(service);
  1369. if (usrv->service == NULL) {
  1370. os_free(usrv);
  1371. return -1;
  1372. }
  1373. dl_list_add(&wpa_s->global->p2p_srv_upnp, &usrv->list);
  1374. wpas_p2p_sd_service_update(wpa_s);
  1375. return 0;
  1376. }
  1377. int wpas_p2p_service_del_upnp(struct wpa_supplicant *wpa_s, u8 version,
  1378. const char *service)
  1379. {
  1380. struct p2p_srv_upnp *usrv;
  1381. usrv = wpas_p2p_service_get_upnp(wpa_s, version, service);
  1382. if (usrv == NULL)
  1383. return -1;
  1384. wpas_p2p_srv_upnp_free(usrv);
  1385. wpas_p2p_sd_service_update(wpa_s);
  1386. return 0;
  1387. }
  1388. static void wpas_prov_disc_local_display(struct wpa_supplicant *wpa_s,
  1389. const u8 *peer, const char *params)
  1390. {
  1391. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_SHOW_PIN MACSTR " %08d%s",
  1392. MAC2STR(peer), wps_generate_pin(), params);
  1393. }
  1394. static void wpas_prov_disc_local_keypad(struct wpa_supplicant *wpa_s,
  1395. const u8 *peer, const char *params)
  1396. {
  1397. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_ENTER_PIN MACSTR "%s",
  1398. MAC2STR(peer), params);
  1399. }
  1400. void wpas_prov_disc_req(void *ctx, const u8 *peer, u16 config_methods,
  1401. const u8 *dev_addr, const u8 *pri_dev_type,
  1402. const char *dev_name, u16 supp_config_methods,
  1403. u8 dev_capab, u8 group_capab)
  1404. {
  1405. struct wpa_supplicant *wpa_s = ctx;
  1406. char devtype[WPS_DEV_TYPE_BUFSIZE];
  1407. char params[200];
  1408. u8 empty_dev_type[8];
  1409. if (pri_dev_type == NULL) {
  1410. os_memset(empty_dev_type, 0, sizeof(empty_dev_type));
  1411. pri_dev_type = empty_dev_type;
  1412. }
  1413. os_snprintf(params, sizeof(params), " p2p_dev_addr=" MACSTR
  1414. " pri_dev_type=%s name='%s' config_methods=0x%x "
  1415. "dev_capab=0x%x group_capab=0x%x",
  1416. MAC2STR(dev_addr),
  1417. wps_dev_type_bin2str(pri_dev_type, devtype,
  1418. sizeof(devtype)),
  1419. dev_name, supp_config_methods, dev_capab, group_capab);
  1420. params[sizeof(params) - 1] = '\0';
  1421. if (config_methods & WPS_CONFIG_DISPLAY)
  1422. wpas_prov_disc_local_display(wpa_s, peer, params);
  1423. else if (config_methods & WPS_CONFIG_KEYPAD)
  1424. wpas_prov_disc_local_keypad(wpa_s, peer, params);
  1425. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  1426. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_REQ MACSTR
  1427. "%s", MAC2STR(peer), params);
  1428. }
  1429. void wpas_prov_disc_resp(void *ctx, const u8 *peer, u16 config_methods)
  1430. {
  1431. struct wpa_supplicant *wpa_s = ctx;
  1432. if (config_methods & WPS_CONFIG_DISPLAY)
  1433. wpas_prov_disc_local_keypad(wpa_s, peer, "");
  1434. else if (config_methods & WPS_CONFIG_KEYPAD)
  1435. wpas_prov_disc_local_display(wpa_s, peer, "");
  1436. else if (config_methods & WPS_CONFIG_PUSHBUTTON)
  1437. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_PROV_DISC_PBC_RESP MACSTR,
  1438. MAC2STR(peer));
  1439. }
  1440. static u8 wpas_invitation_process(void *ctx, const u8 *sa, const u8 *bssid,
  1441. const u8 *go_dev_addr, const u8 *ssid,
  1442. size_t ssid_len, int *go, u8 *group_bssid,
  1443. int *force_freq, int persistent_group)
  1444. {
  1445. struct wpa_supplicant *wpa_s = ctx;
  1446. struct wpa_ssid *s;
  1447. u8 cur_bssid[ETH_ALEN];
  1448. int res;
  1449. if (!persistent_group) {
  1450. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  1451. " to join an active group", MAC2STR(sa));
  1452. if (!is_zero_ether_addr(wpa_s->p2p_auth_invite) &&
  1453. (os_memcmp(go_dev_addr, wpa_s->p2p_auth_invite, ETH_ALEN)
  1454. == 0 ||
  1455. os_memcmp(sa, wpa_s->p2p_auth_invite, ETH_ALEN) == 0)) {
  1456. wpa_printf(MSG_DEBUG, "P2P: Accept previously "
  1457. "authorized invitation");
  1458. goto accept_inv;
  1459. }
  1460. /*
  1461. * Do not accept the invitation automatically; notify user and
  1462. * request approval.
  1463. */
  1464. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  1465. }
  1466. if (!wpa_s->conf->persistent_reconnect)
  1467. return P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE;
  1468. for (s = wpa_s->conf->ssid; s; s = s->next) {
  1469. if (s->disabled == 2 &&
  1470. os_memcmp(s->bssid, go_dev_addr, ETH_ALEN) == 0 &&
  1471. s->ssid_len == ssid_len &&
  1472. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  1473. break;
  1474. }
  1475. if (!s) {
  1476. wpa_printf(MSG_DEBUG, "P2P: Invitation from " MACSTR
  1477. " requested reinvocation of an unknown group",
  1478. MAC2STR(sa));
  1479. return P2P_SC_FAIL_UNKNOWN_GROUP;
  1480. }
  1481. if (s->mode == WPAS_MODE_P2P_GO && !wpas_p2p_create_iface(wpa_s)) {
  1482. *go = 1;
  1483. if (wpa_s->wpa_state >= WPA_AUTHENTICATING) {
  1484. wpa_printf(MSG_DEBUG, "P2P: The only available "
  1485. "interface is already in use - reject "
  1486. "invitation");
  1487. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  1488. }
  1489. os_memcpy(group_bssid, wpa_s->own_addr, ETH_ALEN);
  1490. } else if (s->mode == WPAS_MODE_P2P_GO) {
  1491. *go = 1;
  1492. if (wpas_p2p_add_group_interface(wpa_s, WPA_IF_P2P_GO) < 0)
  1493. {
  1494. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  1495. "interface address for the group");
  1496. return P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE;
  1497. }
  1498. os_memcpy(group_bssid, wpa_s->pending_interface_addr,
  1499. ETH_ALEN);
  1500. }
  1501. accept_inv:
  1502. if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, cur_bssid) == 0 &&
  1503. wpa_s->assoc_freq) {
  1504. wpa_printf(MSG_DEBUG, "P2P: Trying to force channel to match "
  1505. "the channel we are already using");
  1506. *force_freq = wpa_s->assoc_freq;
  1507. }
  1508. res = wpa_drv_shared_freq(wpa_s);
  1509. if (res > 0) {
  1510. wpa_printf(MSG_DEBUG, "P2P: Trying to force channel to match "
  1511. "with the channel we are already using on a "
  1512. "shared interface");
  1513. *force_freq = res;
  1514. }
  1515. return P2P_SC_SUCCESS;
  1516. }
  1517. static void wpas_invitation_received(void *ctx, const u8 *sa, const u8 *bssid,
  1518. const u8 *ssid, size_t ssid_len,
  1519. const u8 *go_dev_addr, u8 status,
  1520. int op_freq)
  1521. {
  1522. struct wpa_supplicant *wpa_s = ctx;
  1523. struct wpa_ssid *s;
  1524. for (s = wpa_s->conf->ssid; s; s = s->next) {
  1525. if (s->disabled == 2 &&
  1526. s->ssid_len == ssid_len &&
  1527. os_memcmp(ssid, s->ssid, ssid_len) == 0)
  1528. break;
  1529. }
  1530. if (status == P2P_SC_SUCCESS) {
  1531. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  1532. " was accepted; op_freq=%d MHz",
  1533. MAC2STR(sa), op_freq);
  1534. if (s) {
  1535. wpas_p2p_group_add_persistent(
  1536. wpa_s, s, s->mode == WPAS_MODE_P2P_GO, 0);
  1537. } else {
  1538. wpas_p2p_join(wpa_s, bssid, go_dev_addr,
  1539. wpa_s->p2p_wps_method);
  1540. }
  1541. return;
  1542. }
  1543. if (status != P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE) {
  1544. wpa_printf(MSG_DEBUG, "P2P: Invitation from peer " MACSTR
  1545. " was rejected (status %u)", MAC2STR(sa), status);
  1546. return;
  1547. }
  1548. if (!s) {
  1549. if (bssid) {
  1550. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  1551. "sa=" MACSTR " go_dev_addr=" MACSTR
  1552. " bssid=" MACSTR " unknown-network",
  1553. MAC2STR(sa), MAC2STR(go_dev_addr),
  1554. MAC2STR(bssid));
  1555. } else {
  1556. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED
  1557. "sa=" MACSTR " go_dev_addr=" MACSTR
  1558. " unknown-network",
  1559. MAC2STR(sa), MAC2STR(go_dev_addr));
  1560. }
  1561. return;
  1562. }
  1563. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RECEIVED "sa=" MACSTR
  1564. " persistent=%d", MAC2STR(sa), s->id);
  1565. }
  1566. static void wpas_invitation_result(void *ctx, int status, const u8 *bssid)
  1567. {
  1568. struct wpa_supplicant *wpa_s = ctx;
  1569. struct wpa_ssid *ssid;
  1570. if (bssid) {
  1571. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  1572. "status=%d " MACSTR,
  1573. status, MAC2STR(bssid));
  1574. } else {
  1575. wpa_msg(wpa_s, MSG_INFO, P2P_EVENT_INVITATION_RESULT
  1576. "status=%d ", status);
  1577. }
  1578. if (wpa_s->pending_invite_ssid_id == -1)
  1579. return; /* Invitation to active group */
  1580. if (status != P2P_SC_SUCCESS) {
  1581. wpas_p2p_remove_pending_group_interface(wpa_s);
  1582. return;
  1583. }
  1584. ssid = wpa_config_get_network(wpa_s->conf,
  1585. wpa_s->pending_invite_ssid_id);
  1586. if (ssid == NULL) {
  1587. wpa_printf(MSG_ERROR, "P2P: Could not find persistent group "
  1588. "data matching with invitation");
  1589. return;
  1590. }
  1591. wpas_p2p_group_add_persistent(wpa_s, ssid,
  1592. ssid->mode == WPAS_MODE_P2P_GO, 0);
  1593. }
  1594. static int wpas_p2p_setup_channels(struct wpa_supplicant *wpa_s,
  1595. struct p2p_config *p2p)
  1596. {
  1597. struct hostapd_hw_modes *modes;
  1598. u16 num_modes, flags;
  1599. int i, cla;
  1600. int band24 = 0, band5_low = 0, band5_high = 0;
  1601. /* TODO: more detailed selection of channels within reg_class based on
  1602. * driver capabilities */
  1603. modes = wpa_drv_get_hw_feature_data(wpa_s, &num_modes, &flags);
  1604. if (modes == NULL) {
  1605. wpa_printf(MSG_DEBUG, "P2P: Driver did not support fetching "
  1606. "of all supported channels; assume dualband "
  1607. "support");
  1608. band24 = band5_low = band5_high = 1;
  1609. } else {
  1610. for (i = 0; i < num_modes; i++) {
  1611. struct hostapd_hw_modes *mode;
  1612. mode = &modes[i];
  1613. if (mode->mode == HOSTAPD_MODE_IEEE80211G) {
  1614. band24 = 1;
  1615. } else if (mode->mode == HOSTAPD_MODE_IEEE80211A) {
  1616. int j;
  1617. for (j = 0; j < mode->num_channels; j++) {
  1618. struct hostapd_channel_data *ch;
  1619. ch = &mode->channels[j];
  1620. if (ch->chan == 36)
  1621. band5_low = 1;
  1622. else if (ch->chan == 157)
  1623. band5_high = 1;
  1624. }
  1625. }
  1626. }
  1627. }
  1628. cla = 0;
  1629. if (band24) {
  1630. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for "
  1631. "2.4 GHz band");
  1632. /* Operating class 81 - 2.4 GHz band channels 1..13 */
  1633. p2p->channels.reg_class[cla].reg_class = 81;
  1634. p2p->channels.reg_class[cla].channels = 13;
  1635. for (i = 0; i < 13; i++)
  1636. p2p->channels.reg_class[cla].channel[i] = i + 1;
  1637. cla++;
  1638. /* Operating class 82 - 2.4 GHz band channel 14 */
  1639. p2p->channels.reg_class[cla].reg_class = 82;
  1640. p2p->channels.reg_class[cla].channels = 1;
  1641. p2p->channels.reg_class[cla].channel[0] = 14;
  1642. cla++;
  1643. #if 0
  1644. /* Operating class 83 - 2.4 GHz band channels 1..9; 40 MHz */
  1645. p2p->channels.reg_class[cla].reg_class = 83;
  1646. p2p->channels.reg_class[cla].channels = 9;
  1647. for (i = 0; i < 9; i++)
  1648. p2p->channels.reg_class[cla].channel[i] = i + 1;
  1649. cla++;
  1650. /* Operating class 84 - 2.4 GHz band channels 5..13; 40 MHz */
  1651. p2p->channels.reg_class[cla].reg_class = 84;
  1652. p2p->channels.reg_class[cla].channels = 9;
  1653. for (i = 0; i < 9; i++)
  1654. p2p->channels.reg_class[cla].channel[i] = i + 5;
  1655. cla++;
  1656. #endif
  1657. }
  1658. if (band5_low) {
  1659. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for "
  1660. "lower 5 GHz band");
  1661. /* Operating class 115 - 5 GHz, channels 36-48 */
  1662. p2p->channels.reg_class[cla].reg_class = 115;
  1663. p2p->channels.reg_class[cla].channels = 4;
  1664. p2p->channels.reg_class[cla].channel[0] = 36;
  1665. p2p->channels.reg_class[cla].channel[1] = 40;
  1666. p2p->channels.reg_class[cla].channel[2] = 44;
  1667. p2p->channels.reg_class[cla].channel[3] = 48;
  1668. cla++;
  1669. #if 0
  1670. /* Operating class 116 - 5 GHz, channels 36,44; 40 MHz */
  1671. p2p->channels.reg_class[cla].reg_class = 116;
  1672. p2p->channels.reg_class[cla].channels = 2;
  1673. p2p->channels.reg_class[cla].channel[0] = 36;
  1674. p2p->channels.reg_class[cla].channel[1] = 44;
  1675. cla++;
  1676. /* Operating class 117 - 5 GHz, channels 40,48; 40 MHz */
  1677. p2p->channels.reg_class[cla].reg_class = 117;
  1678. p2p->channels.reg_class[cla].channels = 2;
  1679. p2p->channels.reg_class[cla].channel[0] = 40;
  1680. p2p->channels.reg_class[cla].channel[1] = 48;
  1681. cla++;
  1682. #endif
  1683. }
  1684. if (band5_high) {
  1685. wpa_printf(MSG_DEBUG, "P2P: Enable operating classes for "
  1686. "higher 5 GHz band");
  1687. /* Operating class 124 - 5 GHz, channels 149,153,157,161 */
  1688. p2p->channels.reg_class[cla].reg_class = 124;
  1689. p2p->channels.reg_class[cla].channels = 4;
  1690. p2p->channels.reg_class[cla].channel[0] = 149;
  1691. p2p->channels.reg_class[cla].channel[1] = 153;
  1692. p2p->channels.reg_class[cla].channel[2] = 157;
  1693. p2p->channels.reg_class[cla].channel[3] = 161;
  1694. cla++;
  1695. #if 0
  1696. /* Operating class 126 - 5 GHz, channels 149,157; 40 MHz */
  1697. p2p->channels.reg_class[cla].reg_class = 126;
  1698. p2p->channels.reg_class[cla].channels = 2;
  1699. p2p->channels.reg_class[cla].channel[0] = 149;
  1700. p2p->channels.reg_class[cla].channel[1] = 157;
  1701. cla++;
  1702. /* Operating class 127 - 5 GHz, channels 153,161; 40 MHz */
  1703. p2p->channels.reg_class[cla].reg_class = 127;
  1704. p2p->channels.reg_class[cla].channels = 2;
  1705. p2p->channels.reg_class[cla].channel[0] = 153;
  1706. p2p->channels.reg_class[cla].channel[1] = 161;
  1707. cla++;
  1708. #endif
  1709. }
  1710. p2p->channels.reg_classes = cla;
  1711. if (modes)
  1712. ieee80211_sta_free_hw_features(modes, num_modes);
  1713. return 0;
  1714. }
  1715. static int wpas_get_noa(void *ctx, const u8 *interface_addr, u8 *buf,
  1716. size_t buf_len)
  1717. {
  1718. struct wpa_supplicant *wpa_s = ctx;
  1719. for (wpa_s = wpa_s->global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  1720. if (os_memcmp(wpa_s->own_addr, interface_addr, ETH_ALEN) == 0)
  1721. break;
  1722. }
  1723. if (wpa_s == NULL)
  1724. return -1;
  1725. return wpa_drv_get_noa(wpa_s, buf, buf_len);
  1726. }
  1727. /**
  1728. * wpas_p2p_init - Initialize P2P module for %wpa_supplicant
  1729. * @global: Pointer to global data from wpa_supplicant_init()
  1730. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  1731. * Returns: 0 on success, -1 on failure
  1732. */
  1733. int wpas_p2p_init(struct wpa_global *global, struct wpa_supplicant *wpa_s)
  1734. {
  1735. struct p2p_config p2p;
  1736. unsigned int r;
  1737. int i;
  1738. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CAPABLE))
  1739. return 0;
  1740. #ifdef CONFIG_CLIENT_MLME
  1741. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_MGMT)) {
  1742. wpa_s->mlme.public_action_cb = p2p_rx_action_mlme;
  1743. wpa_s->mlme.public_action_cb_ctx = wpa_s;
  1744. }
  1745. #endif /* CONFIG_CLIENT_MLME */
  1746. if (wpa_drv_disable_11b_rates(wpa_s, 1) < 0) {
  1747. wpa_printf(MSG_DEBUG, "P2P: Failed to disable 11b rates");
  1748. /* Continue anyway; this is not really a fatal error */
  1749. }
  1750. if (global->p2p)
  1751. return 0;
  1752. os_memset(&p2p, 0, sizeof(p2p));
  1753. p2p.msg_ctx = wpa_s;
  1754. p2p.cb_ctx = wpa_s;
  1755. p2p.p2p_scan = wpas_p2p_scan;
  1756. p2p.send_action = wpas_send_action;
  1757. p2p.send_action_done = wpas_send_action_done;
  1758. p2p.go_neg_completed = wpas_go_neg_completed;
  1759. p2p.go_neg_req_rx = wpas_go_neg_req_rx;
  1760. p2p.dev_found = wpas_dev_found;
  1761. p2p.start_listen = wpas_start_listen;
  1762. p2p.stop_listen = wpas_stop_listen;
  1763. p2p.send_probe_resp = wpas_send_probe_resp;
  1764. p2p.sd_request = wpas_sd_request;
  1765. p2p.sd_response = wpas_sd_response;
  1766. p2p.prov_disc_req = wpas_prov_disc_req;
  1767. p2p.prov_disc_resp = wpas_prov_disc_resp;
  1768. p2p.invitation_process = wpas_invitation_process;
  1769. p2p.invitation_received = wpas_invitation_received;
  1770. p2p.invitation_result = wpas_invitation_result;
  1771. p2p.get_noa = wpas_get_noa;
  1772. os_memcpy(wpa_s->global->p2p_dev_addr, wpa_s->own_addr, ETH_ALEN);
  1773. os_memcpy(p2p.dev_addr, wpa_s->own_addr, ETH_ALEN);
  1774. p2p.dev_name = wpa_s->conf->device_name;
  1775. if (wpa_s->conf->p2p_listen_reg_class &&
  1776. wpa_s->conf->p2p_listen_channel) {
  1777. p2p.reg_class = wpa_s->conf->p2p_listen_reg_class;
  1778. p2p.channel = wpa_s->conf->p2p_listen_channel;
  1779. } else {
  1780. p2p.reg_class = 81;
  1781. /*
  1782. * Pick one of the social channels randomly as the listen
  1783. * channel.
  1784. */
  1785. os_get_random((u8 *) &r, sizeof(r));
  1786. p2p.channel = 1 + (r % 3) * 5;
  1787. }
  1788. if (wpa_s->conf->p2p_oper_reg_class &&
  1789. wpa_s->conf->p2p_oper_channel) {
  1790. p2p.op_reg_class = wpa_s->conf->p2p_oper_reg_class;
  1791. p2p.op_channel = wpa_s->conf->p2p_oper_channel;
  1792. } else {
  1793. p2p.op_reg_class = 81;
  1794. /*
  1795. * For initial tests, pick the operation channel randomly.
  1796. * TODO: Use scan results (etc.) to select the best channel.
  1797. */
  1798. p2p.op_channel = 1 + r % 11;
  1799. }
  1800. wpa_printf(MSG_DEBUG, "P2P: Own listen channel: %d "
  1801. "Own preferred operation channel: %d",
  1802. p2p.channel, p2p.op_channel);
  1803. if (wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  1804. os_memcpy(p2p.country, wpa_s->conf->country, 2);
  1805. p2p.country[2] = 0x04;
  1806. } else
  1807. os_memcpy(p2p.country, "US\x04", 3);
  1808. if (wpas_p2p_setup_channels(wpa_s, &p2p)) {
  1809. wpa_printf(MSG_ERROR, "P2P: Failed to configure supported "
  1810. "channel list");
  1811. return -1;
  1812. }
  1813. if (wpa_s->conf->device_type &&
  1814. wps_dev_type_str2bin(wpa_s->conf->device_type, p2p.pri_dev_type) <
  1815. 0) {
  1816. wpa_printf(MSG_ERROR, "P2P: Invalid device_type");
  1817. return -1;
  1818. }
  1819. for (i = 0; i < MAX_SEC_DEVICE_TYPES; i++) {
  1820. if (wpa_s->conf->sec_device_type[i] == NULL)
  1821. continue;
  1822. if (wps_dev_type_str2bin(
  1823. wpa_s->conf->sec_device_type[i],
  1824. p2p.sec_dev_type[p2p.num_sec_dev_types]) < 0) {
  1825. wpa_printf(MSG_ERROR, "P2P: Invalid sec_device_type");
  1826. return -1;
  1827. }
  1828. p2p.num_sec_dev_types++;
  1829. if (p2p.num_sec_dev_types == P2P_SEC_DEVICE_TYPES)
  1830. break;
  1831. }
  1832. p2p.concurrent_operations = !!(wpa_s->drv_flags &
  1833. WPA_DRIVER_FLAGS_P2P_CONCURRENT);
  1834. p2p.max_peers = 100;
  1835. if (wpa_s->conf->p2p_ssid_postfix) {
  1836. p2p.ssid_postfix_len =
  1837. os_strlen(wpa_s->conf->p2p_ssid_postfix);
  1838. if (p2p.ssid_postfix_len > sizeof(p2p.ssid_postfix))
  1839. p2p.ssid_postfix_len = sizeof(p2p.ssid_postfix);
  1840. os_memcpy(p2p.ssid_postfix, wpa_s->conf->p2p_ssid_postfix,
  1841. p2p.ssid_postfix_len);
  1842. }
  1843. global->p2p = p2p_init(&p2p);
  1844. if (global->p2p == NULL)
  1845. return -1;
  1846. return 0;
  1847. }
  1848. /**
  1849. * wpas_p2p_deinit - Deinitialize per-interface P2P data
  1850. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  1851. *
  1852. * This function deinitialize per-interface P2P data.
  1853. */
  1854. void wpas_p2p_deinit(struct wpa_supplicant *wpa_s)
  1855. {
  1856. if (wpa_s->driver && wpa_s->drv_priv)
  1857. wpa_drv_probe_req_report(wpa_s, 0);
  1858. os_free(wpa_s->go_params);
  1859. wpa_s->go_params = NULL;
  1860. wpabuf_free(wpa_s->pending_action_tx);
  1861. wpa_s->pending_action_tx = NULL;
  1862. eloop_cancel_timeout(wpas_send_action_cb, wpa_s, NULL);
  1863. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s, NULL);
  1864. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  1865. wpa_s->p2p_long_listen = 0;
  1866. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  1867. wpas_p2p_remove_pending_group_interface(wpa_s);
  1868. /* TODO: remove group interface from the driver if this wpa_s instance
  1869. * is on top of a P2P group interface */
  1870. }
  1871. /**
  1872. * wpas_p2p_deinit_global - Deinitialize global P2P module
  1873. * @global: Pointer to global data from wpa_supplicant_init()
  1874. *
  1875. * This function deinitializes the global (per device) P2P module.
  1876. */
  1877. void wpas_p2p_deinit_global(struct wpa_global *global)
  1878. {
  1879. struct wpa_supplicant *wpa_s, *tmp;
  1880. char *ifname;
  1881. if (global->p2p == NULL)
  1882. return;
  1883. /* Remove remaining P2P group interfaces */
  1884. wpa_s = global->ifaces;
  1885. if (wpa_s)
  1886. wpas_p2p_service_flush(wpa_s);
  1887. while (wpa_s && wpa_s->p2p_group_interface != NOT_P2P_GROUP_INTERFACE)
  1888. wpa_s = wpa_s->next;
  1889. while (wpa_s) {
  1890. enum wpa_driver_if_type type;
  1891. tmp = global->ifaces;
  1892. while (tmp &&
  1893. (tmp == wpa_s ||
  1894. tmp->p2p_group_interface == NOT_P2P_GROUP_INTERFACE)) {
  1895. tmp = tmp->next;
  1896. }
  1897. if (tmp == NULL)
  1898. break;
  1899. ifname = os_strdup(tmp->ifname);
  1900. type = wpas_p2p_if_type(tmp->p2p_group_interface);
  1901. wpa_supplicant_remove_iface(global, tmp);
  1902. if (ifname)
  1903. wpa_drv_if_remove(wpa_s, type, ifname);
  1904. os_free(ifname);
  1905. }
  1906. p2p_deinit(global->p2p);
  1907. global->p2p = NULL;
  1908. }
  1909. static int wpas_p2p_create_iface(struct wpa_supplicant *wpa_s)
  1910. {
  1911. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_DEDICATED_INTERFACE)
  1912. return 1; /* P2P group requires a new interface in every case
  1913. */
  1914. if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_P2P_CONCURRENT))
  1915. return 0; /* driver does not support concurrent operations */
  1916. if (wpa_s->global->ifaces->next)
  1917. return 1; /* more that one interface already in use */
  1918. if (wpa_s->wpa_state >= WPA_AUTHENTICATING)
  1919. return 1; /* this interface is already in use */
  1920. return 0;
  1921. }
  1922. static int wpas_p2p_start_go_neg(struct wpa_supplicant *wpa_s,
  1923. const u8 *peer_addr,
  1924. enum p2p_wps_method wps_method,
  1925. int go_intent, const u8 *own_interface_addr,
  1926. unsigned int force_freq, int persistent_group)
  1927. {
  1928. return p2p_connect(wpa_s->global->p2p, peer_addr, wps_method,
  1929. go_intent, own_interface_addr, force_freq,
  1930. persistent_group);
  1931. }
  1932. static int wpas_p2p_auth_go_neg(struct wpa_supplicant *wpa_s,
  1933. const u8 *peer_addr,
  1934. enum p2p_wps_method wps_method,
  1935. int go_intent, const u8 *own_interface_addr,
  1936. unsigned int force_freq, int persistent_group)
  1937. {
  1938. return p2p_authorize(wpa_s->global->p2p, peer_addr, wps_method,
  1939. go_intent, own_interface_addr, force_freq,
  1940. persistent_group);
  1941. }
  1942. static void wpas_p2p_scan_res_join(struct wpa_supplicant *wpa_s,
  1943. struct wpa_scan_results *scan_res)
  1944. {
  1945. struct wpa_bss *bss;
  1946. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  1947. if (wpa_s->global->p2p_disabled)
  1948. return;
  1949. wpa_printf(MSG_DEBUG, "P2P: Scan results received (%d BSS) for join",
  1950. scan_res ? (int) scan_res->num : -1);
  1951. if (scan_res)
  1952. wpas_p2p_scan_res_handler(wpa_s, scan_res);
  1953. bss = wpa_bss_get_bssid(wpa_s, wpa_s->pending_join_iface_addr);
  1954. if (bss) {
  1955. u16 method;
  1956. wpa_printf(MSG_DEBUG, "P2P: Send Provision Discovery Request "
  1957. "prior to joining an existing group (GO " MACSTR
  1958. " freq=%u MHz)",
  1959. MAC2STR(wpa_s->pending_join_dev_addr), bss->freq);
  1960. wpa_s->pending_pd_before_join = 1;
  1961. switch (wpa_s->pending_join_wps_method) {
  1962. case WPS_PIN_LABEL:
  1963. case WPS_PIN_DISPLAY:
  1964. method = WPS_CONFIG_KEYPAD;
  1965. break;
  1966. case WPS_PIN_KEYPAD:
  1967. method = WPS_CONFIG_DISPLAY;
  1968. break;
  1969. case WPS_PBC:
  1970. method = WPS_CONFIG_PUSHBUTTON;
  1971. break;
  1972. default:
  1973. method = 0;
  1974. break;
  1975. }
  1976. if (p2p_prov_disc_req(wpa_s->global->p2p,
  1977. wpa_s->pending_join_dev_addr, method, 1)
  1978. < 0) {
  1979. wpa_printf(MSG_DEBUG, "P2P: Failed to send Provision "
  1980. "Discovery Request before joining an "
  1981. "existing group");
  1982. wpa_s->pending_pd_before_join = 0;
  1983. goto start;
  1984. }
  1985. /*
  1986. * Actual join operation will be started from the Action frame
  1987. * TX status callback.
  1988. */
  1989. return;
  1990. }
  1991. wpa_printf(MSG_DEBUG, "P2P: Target BSS/GO not yet in BSS table - "
  1992. "cannot send Provision Discovery Request");
  1993. start:
  1994. /* Start join operation immediately */
  1995. wpas_p2p_join_start(wpa_s);
  1996. }
  1997. static void wpas_p2p_join_scan(void *eloop_ctx, void *timeout_ctx)
  1998. {
  1999. struct wpa_supplicant *wpa_s = eloop_ctx;
  2000. int ret;
  2001. struct wpa_driver_scan_params params;
  2002. struct wpabuf *wps_ie, *ies;
  2003. os_memset(&params, 0, sizeof(params));
  2004. /* P2P Wildcard SSID */
  2005. params.num_ssids = 1;
  2006. params.ssids[0].ssid = (u8 *) P2P_WILDCARD_SSID;
  2007. params.ssids[0].ssid_len = P2P_WILDCARD_SSID_LEN;
  2008. wpa_s->wps->dev.p2p = 1;
  2009. wps_ie = wps_build_probe_req_ie(0, &wpa_s->wps->dev, wpa_s->wps->uuid,
  2010. WPS_REQ_ENROLLEE);
  2011. if (wps_ie == NULL) {
  2012. wpas_p2p_scan_res_join(wpa_s, NULL);
  2013. return;
  2014. }
  2015. ies = wpabuf_alloc(wpabuf_len(wps_ie) + 100);
  2016. if (ies == NULL) {
  2017. wpabuf_free(wps_ie);
  2018. wpas_p2p_scan_res_join(wpa_s, NULL);
  2019. return;
  2020. }
  2021. wpabuf_put_buf(ies, wps_ie);
  2022. wpabuf_free(wps_ie);
  2023. p2p_scan_ie(wpa_s->global->p2p, ies);
  2024. params.extra_ies = wpabuf_head(ies);
  2025. params.extra_ies_len = wpabuf_len(ies);
  2026. /*
  2027. * Run a scan to update BSS table and start Provision Discovery once
  2028. * the new scan results become available.
  2029. */
  2030. wpa_s->scan_res_handler = wpas_p2p_scan_res_join;
  2031. if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_USER_SPACE_MLME)
  2032. ret = ieee80211_sta_req_scan(wpa_s, &params);
  2033. else
  2034. ret = wpa_drv_scan(wpa_s, &params);
  2035. wpabuf_free(ies);
  2036. if (ret) {
  2037. wpa_printf(MSG_DEBUG, "P2P: Failed to start scan for join - "
  2038. "try again later");
  2039. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  2040. eloop_register_timeout(1, 0, wpas_p2p_join_scan, wpa_s, NULL);
  2041. }
  2042. }
  2043. static int wpas_p2p_join(struct wpa_supplicant *wpa_s, const u8 *iface_addr,
  2044. const u8 *dev_addr, enum p2p_wps_method wps_method)
  2045. {
  2046. wpa_printf(MSG_DEBUG, "P2P: Request to join existing group (iface "
  2047. MACSTR " dev " MACSTR ")",
  2048. MAC2STR(iface_addr), MAC2STR(dev_addr));
  2049. os_memcpy(wpa_s->pending_join_iface_addr, iface_addr, ETH_ALEN);
  2050. os_memcpy(wpa_s->pending_join_dev_addr, dev_addr, ETH_ALEN);
  2051. wpa_s->pending_join_wps_method = wps_method;
  2052. /* Make sure we are not running find during connection establishment */
  2053. wpas_p2p_stop_find(wpa_s);
  2054. wpas_p2p_join_scan(wpa_s, NULL);
  2055. return 0;
  2056. }
  2057. static int wpas_p2p_join_start(struct wpa_supplicant *wpa_s)
  2058. {
  2059. struct wpa_supplicant *group;
  2060. struct p2p_go_neg_results res;
  2061. group = wpas_p2p_get_group_iface(wpa_s, 0, 0);
  2062. if (group == NULL)
  2063. return -1;
  2064. if (group != wpa_s) {
  2065. os_memcpy(group->p2p_pin, wpa_s->p2p_pin,
  2066. sizeof(group->p2p_pin));
  2067. group->p2p_wps_method = wpa_s->p2p_wps_method;
  2068. }
  2069. group->p2p_in_provisioning = 1;
  2070. os_memset(&res, 0, sizeof(res));
  2071. os_memcpy(res.peer_interface_addr, wpa_s->pending_join_iface_addr,
  2072. ETH_ALEN);
  2073. res.wps_method = wpa_s->pending_join_wps_method;
  2074. wpas_start_wps_enrollee(group, &res);
  2075. return 0;
  2076. }
  2077. /**
  2078. * wpas_p2p_connect - Request P2P Group Formation to be started
  2079. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2080. * @peer_addr: Address of the peer P2P Device
  2081. * @pin: PIN to use during provisioning or %NULL to indicate PBC mode
  2082. * @persistent_group: Whether to create a persistent group
  2083. * @join: Whether to join an existing group (as a client) instead of starting
  2084. * Group Owner negotiation; @peer_addr is BSSID in that case
  2085. * @auth: Whether to only authorize the connection instead of doing that and
  2086. * initiating Group Owner negotiation
  2087. * @go_intent: GO Intent or -1 to use default
  2088. * @freq: Frequency for the group or 0 for auto-selection
  2089. * Returns: 0 or new PIN (if pin was %NULL) on success, -1 on failure
  2090. */
  2091. int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  2092. const char *pin, enum p2p_wps_method wps_method,
  2093. int persistent_group, int join, int auth, int go_intent,
  2094. int freq)
  2095. {
  2096. int force_freq = 0;
  2097. u8 bssid[ETH_ALEN];
  2098. int ret = 0;
  2099. enum wpa_driver_if_type iftype;
  2100. if (go_intent < 0)
  2101. go_intent = wpa_s->conf->p2p_go_intent;
  2102. if (!auth)
  2103. wpa_s->p2p_long_listen = 0;
  2104. wpa_s->p2p_wps_method = wps_method;
  2105. if (pin)
  2106. os_strlcpy(wpa_s->p2p_pin, pin, sizeof(wpa_s->p2p_pin));
  2107. else if (wps_method == WPS_PIN_DISPLAY) {
  2108. ret = wps_generate_pin();
  2109. os_snprintf(wpa_s->p2p_pin, sizeof(wpa_s->p2p_pin), "%08d",
  2110. ret);
  2111. wpa_printf(MSG_DEBUG, "P2P: Randomly generated PIN: %s",
  2112. wpa_s->p2p_pin);
  2113. } else
  2114. wpa_s->p2p_pin[0] = '\0';
  2115. if (join) {
  2116. u8 iface_addr[ETH_ALEN];
  2117. if (auth) {
  2118. wpa_printf(MSG_DEBUG, "P2P: Authorize invitation to "
  2119. "connect a running group from " MACSTR,
  2120. MAC2STR(peer_addr));
  2121. os_memcpy(wpa_s->p2p_auth_invite, peer_addr, ETH_ALEN);
  2122. return ret;
  2123. }
  2124. if (p2p_get_interface_addr(wpa_s->global->p2p, peer_addr,
  2125. iface_addr) < 0)
  2126. os_memcpy(iface_addr, peer_addr, ETH_ALEN);
  2127. if (wpas_p2p_join(wpa_s, iface_addr, peer_addr, wps_method) <
  2128. 0)
  2129. return -1;
  2130. return ret;
  2131. }
  2132. if (freq > 0)
  2133. force_freq = freq;
  2134. else if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, bssid) == 0 &&
  2135. wpa_s->assoc_freq)
  2136. force_freq = wpa_s->assoc_freq;
  2137. else {
  2138. force_freq = wpa_drv_shared_freq(wpa_s);
  2139. if (force_freq < 0)
  2140. force_freq = 0;
  2141. }
  2142. if (force_freq > 0) {
  2143. wpa_printf(MSG_DEBUG, "P2P: Trying to force us to use the "
  2144. "channel we are already using (%u MHz) on another "
  2145. "interface", force_freq);
  2146. }
  2147. wpa_s->create_p2p_iface = wpas_p2p_create_iface(wpa_s);
  2148. if (!wpa_s->create_p2p_iface) {
  2149. if (auth) {
  2150. if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
  2151. go_intent, wpa_s->own_addr,
  2152. force_freq, persistent_group)
  2153. < 0)
  2154. return -1;
  2155. return ret;
  2156. }
  2157. if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method,
  2158. go_intent, wpa_s->own_addr,
  2159. force_freq, persistent_group) < 0)
  2160. return -1;
  2161. return ret;
  2162. }
  2163. /* Prepare to add a new interface for the group */
  2164. iftype = WPA_IF_P2P_GROUP;
  2165. if (join)
  2166. iftype = WPA_IF_P2P_CLIENT;
  2167. else if (go_intent == 15)
  2168. iftype = WPA_IF_P2P_GO;
  2169. if (wpas_p2p_add_group_interface(wpa_s, iftype) < 0) {
  2170. wpa_printf(MSG_ERROR, "P2P: Failed to allocate a new "
  2171. "interface for the group");
  2172. return -1;
  2173. }
  2174. if (auth) {
  2175. if (wpas_p2p_auth_go_neg(wpa_s, peer_addr, wps_method,
  2176. go_intent,
  2177. wpa_s->pending_interface_addr,
  2178. force_freq, persistent_group) < 0)
  2179. return -1;
  2180. return ret;
  2181. }
  2182. if (wpas_p2p_start_go_neg(wpa_s, peer_addr, wps_method, go_intent,
  2183. wpa_s->pending_interface_addr,
  2184. force_freq, persistent_group) < 0) {
  2185. wpas_p2p_remove_pending_group_interface(wpa_s);
  2186. return -1;
  2187. }
  2188. return ret;
  2189. }
  2190. /**
  2191. * wpas_p2p_remain_on_channel_cb - Indication of remain-on-channel start
  2192. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2193. * @freq: Frequency of the channel in MHz
  2194. * @duration: Duration of the stay on the channel in milliseconds
  2195. *
  2196. * This callback is called when the driver indicates that it has started the
  2197. * requested remain-on-channel duration.
  2198. */
  2199. void wpas_p2p_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  2200. unsigned int freq, unsigned int duration)
  2201. {
  2202. wpa_s->roc_waiting_drv_freq = 0;
  2203. wpa_s->off_channel_freq = freq;
  2204. wpas_send_action_cb(wpa_s, NULL);
  2205. if (wpa_s->off_channel_freq == wpa_s->pending_listen_freq) {
  2206. p2p_listen_cb(wpa_s->global->p2p, wpa_s->pending_listen_freq,
  2207. wpa_s->pending_listen_duration);
  2208. wpa_s->pending_listen_freq = 0;
  2209. }
  2210. }
  2211. static int wpas_p2p_listen_start(struct wpa_supplicant *wpa_s,
  2212. unsigned int timeout)
  2213. {
  2214. /* Limit maximum Listen state time based on driver limitation. */
  2215. if (timeout > wpa_s->max_remain_on_chan)
  2216. timeout = wpa_s->max_remain_on_chan;
  2217. return p2p_listen(wpa_s->global->p2p, timeout);
  2218. }
  2219. /**
  2220. * wpas_p2p_cancel_remain_on_channel_cb - Remain-on-channel timeout
  2221. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2222. * @freq: Frequency of the channel in MHz
  2223. *
  2224. * This callback is called when the driver indicates that a remain-on-channel
  2225. * operation has been completed, i.e., the duration on the requested channel
  2226. * has timed out.
  2227. */
  2228. void wpas_p2p_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  2229. unsigned int freq)
  2230. {
  2231. wpa_s->off_channel_freq = 0;
  2232. if (p2p_listen_end(wpa_s->global->p2p, freq) > 0)
  2233. return; /* P2P module started a new operation */
  2234. if (wpa_s->pending_action_tx)
  2235. return;
  2236. if (wpa_s->p2p_long_listen > 0)
  2237. wpa_s->p2p_long_listen -= 5;
  2238. if (wpa_s->p2p_long_listen > 0) {
  2239. wpa_printf(MSG_DEBUG, "P2P: Continuing long Listen state");
  2240. wpas_p2p_listen_start(wpa_s, wpa_s->p2p_long_listen * 1000);
  2241. }
  2242. }
  2243. /**
  2244. * wpas_p2p_group_remove - Remove a P2P group
  2245. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2246. * @ifname: Network interface name of the group interface or "*" to remove all
  2247. * groups
  2248. * Returns: 0 on success, -1 on failure
  2249. *
  2250. * This function is used to remove a P2P group. This can be used to disconnect
  2251. * from a group in which the local end is a P2P Client or to end a P2P Group in
  2252. * case the local end is the Group Owner. If a virtual network interface was
  2253. * created for this group, that interface will be removed. Otherwise, only the
  2254. * configured P2P group network will be removed from the interface.
  2255. */
  2256. int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname)
  2257. {
  2258. struct wpa_global *global = wpa_s->global;
  2259. if (os_strcmp(ifname, "*") == 0) {
  2260. struct wpa_supplicant *prev;
  2261. wpa_s = global->ifaces;
  2262. while (wpa_s) {
  2263. prev = wpa_s;
  2264. wpa_s = wpa_s->next;
  2265. wpas_p2p_group_delete(prev);
  2266. }
  2267. return 0;
  2268. }
  2269. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2270. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  2271. break;
  2272. }
  2273. if (wpa_s == NULL)
  2274. return -1;
  2275. wpas_p2p_group_delete(wpa_s);
  2276. return 0;
  2277. }
  2278. static void wpas_p2p_init_go_params(struct wpa_supplicant *wpa_s,
  2279. struct p2p_go_neg_results *params,
  2280. int freq)
  2281. {
  2282. u8 bssid[ETH_ALEN];
  2283. int res;
  2284. os_memset(params, 0, sizeof(*params));
  2285. params->role_go = 1;
  2286. params->freq = 2412;
  2287. if (freq)
  2288. params->freq = freq;
  2289. else if (wpa_s->conf->p2p_oper_reg_class == 81 &&
  2290. wpa_s->conf->p2p_oper_channel >= 1 &&
  2291. wpa_s->conf->p2p_oper_channel <= 11)
  2292. params->freq = 2407 + 5 * wpa_s->conf->p2p_oper_channel;
  2293. else if (wpa_s->conf->p2p_oper_reg_class == 115 ||
  2294. wpa_s->conf->p2p_oper_reg_class == 118)
  2295. params->freq = 5000 + 5 * wpa_s->conf->p2p_oper_channel;
  2296. if (wpa_s->current_ssid && wpa_drv_get_bssid(wpa_s, bssid) == 0 &&
  2297. wpa_s->assoc_freq && !freq) {
  2298. wpa_printf(MSG_DEBUG, "P2P: Force GO on the channel we are "
  2299. "already using");
  2300. params->freq = wpa_s->assoc_freq;
  2301. }
  2302. res = wpa_drv_shared_freq(wpa_s);
  2303. if (res > 0 && !freq) {
  2304. wpa_printf(MSG_DEBUG, "P2P: Force GO on the channel we are "
  2305. "already using on a shared interface");
  2306. params->freq = res;
  2307. }
  2308. }
  2309. static struct wpa_supplicant *
  2310. wpas_p2p_get_group_iface(struct wpa_supplicant *wpa_s, int addr_allocated,
  2311. int go)
  2312. {
  2313. struct wpa_supplicant *group_wpa_s;
  2314. if (!wpas_p2p_create_iface(wpa_s))
  2315. return wpa_s;
  2316. if (wpas_p2p_add_group_interface(wpa_s, go ? WPA_IF_P2P_GO :
  2317. WPA_IF_P2P_CLIENT) < 0)
  2318. return NULL;
  2319. group_wpa_s = wpas_p2p_init_group_interface(wpa_s, go);
  2320. if (group_wpa_s == NULL) {
  2321. wpas_p2p_remove_pending_group_interface(wpa_s);
  2322. return NULL;
  2323. }
  2324. return group_wpa_s;
  2325. }
  2326. /**
  2327. * wpas_p2p_group_add - Add a new P2P group with local end as Group Owner
  2328. * @wpa_s: Pointer to wpa_supplicant data from wpa_supplicant_add_iface()
  2329. * @persistent_group: Whether to create a persistent group
  2330. * @freq: Frequency for the group or 0 to indicate no hardcoding
  2331. * Returns: 0 on success, -1 on failure
  2332. *
  2333. * This function creates a new P2P group with the local end as the Group Owner,
  2334. * i.e., without using Group Owner Negotiation.
  2335. */
  2336. int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
  2337. int freq)
  2338. {
  2339. struct p2p_go_neg_results params;
  2340. wpas_p2p_init_go_params(wpa_s, &params, freq);
  2341. p2p_go_params(wpa_s->global->p2p, &params);
  2342. params.persistent_group = persistent_group;
  2343. wpa_s = wpas_p2p_get_group_iface(wpa_s, 0, 1);
  2344. if (wpa_s == NULL)
  2345. return -1;
  2346. wpas_start_wps_go(wpa_s, &params, 0);
  2347. return 0;
  2348. }
  2349. static int wpas_start_p2p_client(struct wpa_supplicant *wpa_s,
  2350. struct wpa_ssid *params, int addr_allocated)
  2351. {
  2352. struct wpa_ssid *ssid;
  2353. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 0);
  2354. if (wpa_s == NULL)
  2355. return -1;
  2356. wpa_supplicant_ap_deinit(wpa_s);
  2357. ssid = wpa_config_add_network(wpa_s->conf);
  2358. if (ssid == NULL)
  2359. return -1;
  2360. wpas_notify_network_added(wpa_s, ssid);
  2361. wpa_config_set_network_defaults(ssid);
  2362. ssid->temporary = 1;
  2363. ssid->proto = WPA_PROTO_RSN;
  2364. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  2365. ssid->group_cipher = WPA_CIPHER_CCMP;
  2366. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  2367. ssid->ssid = os_malloc(params->ssid_len);
  2368. if (ssid->ssid == NULL) {
  2369. wpas_notify_network_removed(wpa_s, ssid);
  2370. wpa_config_remove_network(wpa_s->conf, ssid->id);
  2371. return -1;
  2372. }
  2373. os_memcpy(ssid->ssid, params->ssid, params->ssid_len);
  2374. ssid->ssid_len = params->ssid_len;
  2375. ssid->p2p_group = 1;
  2376. if (params->psk_set) {
  2377. os_memcpy(ssid->psk, params->psk, 32);
  2378. ssid->psk_set = 1;
  2379. }
  2380. if (params->passphrase)
  2381. ssid->passphrase = os_strdup(params->passphrase);
  2382. wpa_supplicant_select_network(wpa_s, ssid);
  2383. wpa_s->show_group_started = 1;
  2384. return 0;
  2385. }
  2386. int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
  2387. struct wpa_ssid *ssid, int addr_allocated,
  2388. int freq)
  2389. {
  2390. struct p2p_go_neg_results params;
  2391. if (ssid->disabled != 2 || ssid->ssid == NULL)
  2392. return -1;
  2393. wpa_s->p2p_long_listen = 0;
  2394. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  2395. if (ssid->mode == WPAS_MODE_INFRA)
  2396. return wpas_start_p2p_client(wpa_s, ssid, addr_allocated);
  2397. if (ssid->mode != WPAS_MODE_P2P_GO)
  2398. return -1;
  2399. wpas_p2p_init_go_params(wpa_s, &params, freq);
  2400. params.role_go = 1;
  2401. if (ssid->passphrase == NULL ||
  2402. os_strlen(ssid->passphrase) >= sizeof(params.passphrase)) {
  2403. wpa_printf(MSG_DEBUG, "P2P: Invalid passphrase in persistent "
  2404. "group");
  2405. return -1;
  2406. }
  2407. os_strlcpy(params.passphrase, ssid->passphrase,
  2408. sizeof(params.passphrase));
  2409. os_memcpy(params.ssid, ssid->ssid, ssid->ssid_len);
  2410. params.ssid_len = ssid->ssid_len;
  2411. params.persistent_group = 1;
  2412. wpa_s = wpas_p2p_get_group_iface(wpa_s, addr_allocated, 1);
  2413. if (wpa_s == NULL)
  2414. return -1;
  2415. wpas_start_wps_go(wpa_s, &params, 0);
  2416. return 0;
  2417. }
  2418. static void wpas_p2p_ie_update(void *ctx, struct wpabuf *beacon_ies,
  2419. struct wpabuf *proberesp_ies)
  2420. {
  2421. struct wpa_supplicant *wpa_s = ctx;
  2422. if (wpa_s->ap_iface) {
  2423. struct hostapd_data *hapd = wpa_s->ap_iface->bss[0];
  2424. if (beacon_ies) {
  2425. wpabuf_free(hapd->p2p_beacon_ie);
  2426. hapd->p2p_beacon_ie = beacon_ies;
  2427. }
  2428. wpabuf_free(hapd->p2p_probe_resp_ie);
  2429. hapd->p2p_probe_resp_ie = proberesp_ies;
  2430. } else {
  2431. wpabuf_free(beacon_ies);
  2432. wpabuf_free(proberesp_ies);
  2433. }
  2434. wpa_supplicant_ap_update_beacon(wpa_s);
  2435. }
  2436. struct p2p_group * wpas_p2p_group_init(struct wpa_supplicant *wpa_s,
  2437. int persistent_group,
  2438. int group_formation)
  2439. {
  2440. struct p2p_group *group;
  2441. struct p2p_group_config *cfg;
  2442. cfg = os_zalloc(sizeof(*cfg));
  2443. if (cfg == NULL)
  2444. return NULL;
  2445. cfg->persistent_group = persistent_group;
  2446. os_memcpy(cfg->interface_addr, wpa_s->own_addr, ETH_ALEN);
  2447. cfg->cb_ctx = wpa_s;
  2448. cfg->ie_update = wpas_p2p_ie_update;
  2449. group = p2p_group_init(wpa_s->global->p2p, cfg);
  2450. if (group == NULL)
  2451. os_free(cfg);
  2452. if (!group_formation)
  2453. p2p_group_notif_formation_done(group);
  2454. wpa_s->p2p_group = group;
  2455. return group;
  2456. }
  2457. void wpas_p2p_wps_success(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  2458. int registrar)
  2459. {
  2460. if (!wpa_s->p2p_in_provisioning) {
  2461. wpa_printf(MSG_DEBUG, "P2P: Ignore WPS success event - P2P "
  2462. "provisioning not in progress");
  2463. return;
  2464. }
  2465. eloop_cancel_timeout(wpas_p2p_group_formation_timeout, wpa_s->parent,
  2466. NULL);
  2467. if (wpa_s->global->p2p)
  2468. p2p_wps_success_cb(wpa_s->global->p2p, peer_addr);
  2469. wpas_group_formation_completed(wpa_s, 1);
  2470. }
  2471. int wpas_p2p_prov_disc(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  2472. const char *config_method)
  2473. {
  2474. u16 config_methods;
  2475. if (os_strcmp(config_method, "display") == 0)
  2476. config_methods = WPS_CONFIG_DISPLAY;
  2477. else if (os_strcmp(config_method, "keypad") == 0)
  2478. config_methods = WPS_CONFIG_KEYPAD;
  2479. else if (os_strcmp(config_method, "pbc") == 0 ||
  2480. os_strcmp(config_method, "pushbutton") == 0)
  2481. config_methods = WPS_CONFIG_PUSHBUTTON;
  2482. else
  2483. return -1;
  2484. if (wpa_s->global->p2p == NULL)
  2485. return -1;
  2486. return p2p_prov_disc_req(wpa_s->global->p2p, peer_addr,
  2487. config_methods, 0);
  2488. }
  2489. int wpas_p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  2490. char *end)
  2491. {
  2492. return p2p_scan_result_text(ies, ies_len, buf, end);
  2493. }
  2494. int wpas_p2p_find(struct wpa_supplicant *wpa_s, unsigned int timeout,
  2495. enum p2p_discovery_type type)
  2496. {
  2497. wpa_s->p2p_long_listen = 0;
  2498. return p2p_find(wpa_s->global->p2p, timeout, type);
  2499. }
  2500. void wpas_p2p_stop_find(struct wpa_supplicant *wpa_s)
  2501. {
  2502. wpa_s->p2p_long_listen = 0;
  2503. eloop_cancel_timeout(wpas_p2p_join_scan, wpa_s, NULL);
  2504. p2p_stop_find(wpa_s->global->p2p);
  2505. wpas_p2p_remove_pending_group_interface(wpa_s);
  2506. }
  2507. static void wpas_p2p_long_listen_timeout(void *eloop_ctx, void *timeout_ctx)
  2508. {
  2509. struct wpa_supplicant *wpa_s = eloop_ctx;
  2510. wpa_s->p2p_long_listen = 0;
  2511. }
  2512. int wpas_p2p_listen(struct wpa_supplicant *wpa_s, unsigned int timeout)
  2513. {
  2514. int res;
  2515. if (timeout == 0) {
  2516. /*
  2517. * This is a request for unlimited Listen state. However, at
  2518. * least for now, this is mapped to a Listen state for one
  2519. * hour.
  2520. */
  2521. timeout = 3600;
  2522. }
  2523. eloop_cancel_timeout(wpas_p2p_long_listen_timeout, wpa_s, NULL);
  2524. wpa_s->p2p_long_listen = 0;
  2525. res = wpas_p2p_listen_start(wpa_s, timeout * 1000);
  2526. if (res == 0 && timeout * 1000 > wpa_s->max_remain_on_chan) {
  2527. wpa_s->p2p_long_listen = timeout;
  2528. eloop_register_timeout(timeout, 0,
  2529. wpas_p2p_long_listen_timeout,
  2530. wpa_s, NULL);
  2531. }
  2532. return res;
  2533. }
  2534. int wpas_p2p_assoc_req_ie(struct wpa_supplicant *wpa_s, const u8 *bssid,
  2535. u8 *buf, size_t len, int p2p_group)
  2536. {
  2537. if (wpa_s->global->p2p_disabled)
  2538. return -1;
  2539. if (wpa_s->global->p2p == NULL)
  2540. return -1;
  2541. return p2p_assoc_req_ie(wpa_s->global->p2p, bssid, buf, len,
  2542. p2p_group);
  2543. }
  2544. int wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr,
  2545. const u8 *ie, size_t ie_len)
  2546. {
  2547. if (wpa_s->global->p2p_disabled)
  2548. return 0;
  2549. if (wpa_s->global->p2p == NULL)
  2550. return 0;
  2551. return p2p_probe_req_rx(wpa_s->global->p2p, addr, ie, ie_len);
  2552. }
  2553. void wpas_p2p_rx_action(struct wpa_supplicant *wpa_s, const u8 *da,
  2554. const u8 *sa, const u8 *bssid,
  2555. u8 category, const u8 *data, size_t len, int freq)
  2556. {
  2557. if (wpa_s->global->p2p_disabled)
  2558. return;
  2559. if (wpa_s->global->p2p == NULL)
  2560. return;
  2561. p2p_rx_action(wpa_s->global->p2p, da, sa, bssid, category, data, len,
  2562. freq);
  2563. }
  2564. void wpas_p2p_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ies)
  2565. {
  2566. if (wpa_s->global->p2p_disabled)
  2567. return;
  2568. if (wpa_s->global->p2p == NULL)
  2569. return;
  2570. p2p_scan_ie(wpa_s->global->p2p, ies);
  2571. }
  2572. void wpas_p2p_group_deinit(struct wpa_supplicant *wpa_s)
  2573. {
  2574. p2p_group_deinit(wpa_s->p2p_group);
  2575. wpa_s->p2p_group = NULL;
  2576. }
  2577. int wpas_p2p_reject(struct wpa_supplicant *wpa_s, const u8 *addr)
  2578. {
  2579. wpa_s->p2p_long_listen = 0;
  2580. return p2p_reject(wpa_s->global->p2p, addr);
  2581. }
  2582. /* Invite to reinvoke a persistent group */
  2583. int wpas_p2p_invite(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
  2584. struct wpa_ssid *ssid, const u8 *go_dev_addr)
  2585. {
  2586. enum p2p_invite_role role;
  2587. u8 *bssid = NULL;
  2588. if (ssid->mode == WPAS_MODE_P2P_GO) {
  2589. role = P2P_INVITE_ROLE_GO;
  2590. if (peer_addr == NULL) {
  2591. wpa_printf(MSG_DEBUG, "P2P: Missing peer "
  2592. "address in invitation command");
  2593. return -1;
  2594. }
  2595. if (wpas_p2p_create_iface(wpa_s)) {
  2596. if (wpas_p2p_add_group_interface(wpa_s,
  2597. WPA_IF_P2P_GO) < 0) {
  2598. wpa_printf(MSG_ERROR, "P2P: Failed to "
  2599. "allocate a new interface for the "
  2600. "group");
  2601. return -1;
  2602. }
  2603. bssid = wpa_s->pending_interface_addr;
  2604. } else
  2605. bssid = wpa_s->own_addr;
  2606. } else {
  2607. role = P2P_INVITE_ROLE_CLIENT;
  2608. peer_addr = ssid->bssid;
  2609. }
  2610. wpa_s->pending_invite_ssid_id = ssid->id;
  2611. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  2612. ssid->ssid, ssid->ssid_len, 0, go_dev_addr, 1);
  2613. }
  2614. /* Invite to join an active group */
  2615. int wpas_p2p_invite_group(struct wpa_supplicant *wpa_s, const char *ifname,
  2616. const u8 *peer_addr, const u8 *go_dev_addr)
  2617. {
  2618. struct wpa_global *global = wpa_s->global;
  2619. enum p2p_invite_role role;
  2620. u8 *bssid = NULL;
  2621. struct wpa_ssid *ssid;
  2622. for (wpa_s = global->ifaces; wpa_s; wpa_s = wpa_s->next) {
  2623. if (os_strcmp(wpa_s->ifname, ifname) == 0)
  2624. break;
  2625. }
  2626. if (wpa_s == NULL) {
  2627. wpa_printf(MSG_DEBUG, "P2P: Interface '%s' not found", ifname);
  2628. return -1;
  2629. }
  2630. ssid = wpa_s->current_ssid;
  2631. if (ssid == NULL) {
  2632. wpa_printf(MSG_DEBUG, "P2P: No current SSID to use for "
  2633. "invitation");
  2634. return -1;
  2635. }
  2636. if (ssid->mode == WPAS_MODE_P2P_GO) {
  2637. role = P2P_INVITE_ROLE_ACTIVE_GO;
  2638. bssid = wpa_s->own_addr;
  2639. if (go_dev_addr == NULL)
  2640. go_dev_addr = wpa_s->parent->own_addr;
  2641. } else {
  2642. role = P2P_INVITE_ROLE_CLIENT;
  2643. if (wpa_s->wpa_state < WPA_ASSOCIATED) {
  2644. wpa_printf(MSG_DEBUG, "P2P: Not associated - cannot "
  2645. "invite to current group");
  2646. return -1;
  2647. }
  2648. bssid = wpa_s->bssid;
  2649. if (go_dev_addr == NULL &&
  2650. !is_zero_ether_addr(wpa_s->go_dev_addr))
  2651. go_dev_addr = wpa_s->go_dev_addr;
  2652. }
  2653. wpa_s->pending_invite_ssid_id = -1;
  2654. return p2p_invite(wpa_s->global->p2p, peer_addr, role, bssid,
  2655. ssid->ssid, ssid->ssid_len, wpa_s->assoc_freq,
  2656. go_dev_addr, 0);
  2657. }
  2658. void wpas_p2p_completed(struct wpa_supplicant *wpa_s)
  2659. {
  2660. struct wpa_ssid *ssid = wpa_s->current_ssid;
  2661. const char *ssid_txt;
  2662. u8 go_dev_addr[ETH_ALEN];
  2663. int persistent;
  2664. if (!wpa_s->show_group_started || !ssid)
  2665. return;
  2666. wpa_s->show_group_started = 0;
  2667. ssid_txt = wpa_ssid_txt(ssid->ssid, ssid->ssid_len);
  2668. os_memset(go_dev_addr, 0, ETH_ALEN);
  2669. if (ssid->bssid_set)
  2670. os_memcpy(go_dev_addr, ssid->bssid, ETH_ALEN);
  2671. persistent = wpas_p2p_persistent_group(wpa_s, go_dev_addr, ssid->ssid,
  2672. ssid->ssid_len);
  2673. os_memcpy(wpa_s->go_dev_addr, go_dev_addr, ETH_ALEN);
  2674. if (ssid->passphrase == NULL && ssid->psk_set) {
  2675. char psk[65];
  2676. wpa_snprintf_hex(psk, sizeof(psk), ssid->psk, 32);
  2677. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  2678. "%s client ssid=\"%s\" psk=%s go_dev_addr=" MACSTR
  2679. "%s",
  2680. wpa_s->ifname, ssid_txt, psk, MAC2STR(go_dev_addr),
  2681. persistent ? " [PERSISTENT]" : "");
  2682. } else {
  2683. wpa_msg(wpa_s->parent, MSG_INFO, P2P_EVENT_GROUP_STARTED
  2684. "%s client ssid=\"%s\" passphrase=\"%s\" go_dev_addr="
  2685. MACSTR "%s",
  2686. wpa_s->ifname, ssid_txt,
  2687. ssid->passphrase ? ssid->passphrase : "",
  2688. MAC2STR(go_dev_addr),
  2689. persistent ? " [PERSISTENT]" : "");
  2690. }
  2691. if (persistent)
  2692. wpas_p2p_store_persistent_group(wpa_s->parent, ssid,
  2693. go_dev_addr);
  2694. }
  2695. int wpas_p2p_presence_req(struct wpa_supplicant *wpa_s, u32 duration1,
  2696. u32 interval1, u32 duration2, u32 interval2)
  2697. {
  2698. if (wpa_s->wpa_state < WPA_ASSOCIATED ||
  2699. wpa_s->current_ssid == NULL ||
  2700. wpa_s->current_ssid->mode != WPAS_MODE_INFRA)
  2701. return -1;
  2702. return p2p_presence_req(wpa_s->global->p2p, wpa_s->bssid,
  2703. wpa_s->own_addr, wpa_s->assoc_freq,
  2704. duration1, interval1, duration2, interval2);
  2705. }
  2706. int wpas_p2p_ext_listen(struct wpa_supplicant *wpa_s, unsigned int period,
  2707. unsigned int interval)
  2708. {
  2709. return p2p_ext_listen(wpa_s->global->p2p, period, interval);
  2710. }
  2711. void wpas_p2p_deauth_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  2712. u16 reason_code, const u8 *ie, size_t ie_len)
  2713. {
  2714. if (wpa_s->global->p2p_disabled)
  2715. return;
  2716. p2p_deauth_notif(wpa_s->global->p2p, bssid, reason_code, ie, ie_len);
  2717. }
  2718. void wpas_p2p_disassoc_notif(struct wpa_supplicant *wpa_s, const u8 *bssid,
  2719. u16 reason_code, const u8 *ie, size_t ie_len)
  2720. {
  2721. if (wpa_s->global->p2p_disabled)
  2722. return;
  2723. p2p_disassoc_notif(wpa_s->global->p2p, bssid, reason_code, ie, ie_len);
  2724. }
  2725. void wpas_p2p_update_config(struct wpa_supplicant *wpa_s)
  2726. {
  2727. struct p2p_data *p2p = wpa_s->global->p2p;
  2728. if (p2p == NULL)
  2729. return;
  2730. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_NAME)
  2731. p2p_set_dev_name(p2p, wpa_s->conf->device_name);
  2732. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE) {
  2733. u8 pri_dev_type[8];
  2734. if (wpa_s->conf->device_type) {
  2735. if (wps_dev_type_str2bin(wpa_s->conf->device_type,
  2736. pri_dev_type) < 0) {
  2737. wpa_printf(MSG_ERROR, "P2P: Invalid "
  2738. "device_type");
  2739. } else
  2740. p2p_set_pri_dev_type(p2p, pri_dev_type);
  2741. }
  2742. }
  2743. if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE) {
  2744. u8 sec_dev_type[P2P_SEC_DEVICE_TYPES][8];
  2745. size_t num = 0;
  2746. int i;
  2747. for (i = 0; i < MAX_SEC_DEVICE_TYPES; i++) {
  2748. if (wpa_s->conf->sec_device_type[i] == NULL)
  2749. continue;
  2750. if (wps_dev_type_str2bin(
  2751. wpa_s->conf->sec_device_type[i],
  2752. sec_dev_type[num]) < 0) {
  2753. wpa_printf(MSG_ERROR, "P2P: Invalid "
  2754. "sec_device_type");
  2755. continue;
  2756. }
  2757. num++;
  2758. if (num == P2P_SEC_DEVICE_TYPES)
  2759. break;
  2760. }
  2761. p2p_set_sec_dev_types(p2p, (void *) sec_dev_type, num);
  2762. }
  2763. if ((wpa_s->conf->changed_parameters & CFG_CHANGED_COUNTRY) &&
  2764. wpa_s->conf->country[0] && wpa_s->conf->country[1]) {
  2765. char country[3];
  2766. country[0] = wpa_s->conf->country[0];
  2767. country[1] = wpa_s->conf->country[1];
  2768. country[2] = 0x04;
  2769. p2p_set_country(p2p, country);
  2770. }
  2771. if (wpa_s->conf->changed_parameters & CFG_CHANGED_P2P_SSID_POSTFIX) {
  2772. p2p_set_ssid_postfix(p2p, (u8 *) wpa_s->conf->p2p_ssid_postfix,
  2773. wpa_s->conf->p2p_ssid_postfix ?
  2774. os_strlen(wpa_s->conf->p2p_ssid_postfix) :
  2775. 0);
  2776. }
  2777. }