wps_supplicant.c 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760
  1. /*
  2. * wpa_supplicant / WPS integration
  3. * Copyright (c) 2008-2014, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "eloop.h"
  11. #include "uuid.h"
  12. #include "crypto/random.h"
  13. #include "crypto/dh_group5.h"
  14. #include "common/ieee802_11_defs.h"
  15. #include "common/ieee802_11_common.h"
  16. #include "common/wpa_common.h"
  17. #include "common/wpa_ctrl.h"
  18. #include "eap_common/eap_wsc_common.h"
  19. #include "eap_peer/eap.h"
  20. #include "eapol_supp/eapol_supp_sm.h"
  21. #include "rsn_supp/wpa.h"
  22. #include "wps/wps_attr_parse.h"
  23. #include "config.h"
  24. #include "wpa_supplicant_i.h"
  25. #include "driver_i.h"
  26. #include "notify.h"
  27. #include "blacklist.h"
  28. #include "bss.h"
  29. #include "scan.h"
  30. #include "ap.h"
  31. #include "p2p/p2p.h"
  32. #include "p2p_supplicant.h"
  33. #include "wps_supplicant.h"
  34. #ifndef WPS_PIN_SCAN_IGNORE_SEL_REG
  35. #define WPS_PIN_SCAN_IGNORE_SEL_REG 3
  36. #endif /* WPS_PIN_SCAN_IGNORE_SEL_REG */
  37. static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx);
  38. static void wpas_clear_wps(struct wpa_supplicant *wpa_s);
  39. static void wpas_wps_clear_ap_info(struct wpa_supplicant *wpa_s)
  40. {
  41. os_free(wpa_s->wps_ap);
  42. wpa_s->wps_ap = NULL;
  43. wpa_s->num_wps_ap = 0;
  44. wpa_s->wps_ap_iter = 0;
  45. }
  46. static void wpas_wps_assoc_with_cred(void *eloop_ctx, void *timeout_ctx)
  47. {
  48. struct wpa_supplicant *wpa_s = eloop_ctx;
  49. int use_fast_assoc = timeout_ctx != NULL;
  50. wpa_printf(MSG_DEBUG, "WPS: Continuing association after eapol_cb");
  51. if (!use_fast_assoc ||
  52. wpa_supplicant_fast_associate(wpa_s) != 1)
  53. wpa_supplicant_req_scan(wpa_s, 0, 0);
  54. }
  55. static void wpas_wps_assoc_with_cred_cancel(struct wpa_supplicant *wpa_s)
  56. {
  57. eloop_cancel_timeout(wpas_wps_assoc_with_cred, wpa_s, (void *) 0);
  58. eloop_cancel_timeout(wpas_wps_assoc_with_cred, wpa_s, (void *) 1);
  59. }
  60. int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
  61. {
  62. #ifdef CONFIG_P2P
  63. if (wpas_p2p_wps_eapol_cb(wpa_s) > 0)
  64. return 1;
  65. #endif /* CONFIG_P2P */
  66. if (!wpa_s->wps_success &&
  67. wpa_s->current_ssid &&
  68. eap_is_wps_pin_enrollee(&wpa_s->current_ssid->eap)) {
  69. const u8 *bssid = wpa_s->bssid;
  70. if (is_zero_ether_addr(bssid))
  71. bssid = wpa_s->pending_bssid;
  72. wpa_printf(MSG_DEBUG, "WPS: PIN registration with " MACSTR
  73. " did not succeed - continue trying to find "
  74. "suitable AP", MAC2STR(bssid));
  75. wpa_blacklist_add(wpa_s, bssid);
  76. wpa_supplicant_deauthenticate(wpa_s,
  77. WLAN_REASON_DEAUTH_LEAVING);
  78. wpa_s->reassociate = 1;
  79. wpa_supplicant_req_scan(wpa_s,
  80. wpa_s->blacklist_cleared ? 5 : 0, 0);
  81. wpa_s->blacklist_cleared = 0;
  82. return 1;
  83. }
  84. wpas_wps_clear_ap_info(wpa_s);
  85. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  86. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && !wpa_s->wps_success)
  87. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_FAIL);
  88. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid &&
  89. !(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  90. int disabled = wpa_s->current_ssid->disabled;
  91. unsigned int freq = wpa_s->assoc_freq;
  92. struct wpa_bss *bss;
  93. struct wpa_ssid *ssid = NULL;
  94. int use_fast_assoc = 0;
  95. wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
  96. "try to associate with the received credential "
  97. "(freq=%u)", freq);
  98. wpa_supplicant_deauthenticate(wpa_s,
  99. WLAN_REASON_DEAUTH_LEAVING);
  100. if (disabled) {
  101. wpa_printf(MSG_DEBUG, "WPS: Current network is "
  102. "disabled - wait for user to enable");
  103. return 1;
  104. }
  105. wpa_s->after_wps = 5;
  106. wpa_s->wps_freq = freq;
  107. wpa_s->normal_scans = 0;
  108. wpa_s->reassociate = 1;
  109. wpa_printf(MSG_DEBUG, "WPS: Checking whether fast association "
  110. "without a new scan can be used");
  111. bss = wpa_supplicant_pick_network(wpa_s, &ssid);
  112. if (bss) {
  113. struct wpabuf *wps;
  114. struct wps_parse_attr attr;
  115. wps = wpa_bss_get_vendor_ie_multi(bss,
  116. WPS_IE_VENDOR_TYPE);
  117. if (wps && wps_parse_msg(wps, &attr) == 0 &&
  118. attr.wps_state &&
  119. *attr.wps_state == WPS_STATE_CONFIGURED)
  120. use_fast_assoc = 1;
  121. wpabuf_free(wps);
  122. }
  123. /*
  124. * Complete the next step from an eloop timeout to allow pending
  125. * driver events related to the disconnection to be processed
  126. * first. This makes it less likely for disconnection event to
  127. * cause problems with the following connection.
  128. */
  129. wpa_printf(MSG_DEBUG, "WPS: Continue association from timeout");
  130. wpas_wps_assoc_with_cred_cancel(wpa_s);
  131. eloop_register_timeout(0, 10000,
  132. wpas_wps_assoc_with_cred, wpa_s,
  133. use_fast_assoc ? (void *) 1 :
  134. (void *) 0);
  135. return 1;
  136. }
  137. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid) {
  138. wpa_printf(MSG_DEBUG, "WPS: Registration completed - waiting "
  139. "for external credential processing");
  140. wpas_clear_wps(wpa_s);
  141. wpa_supplicant_deauthenticate(wpa_s,
  142. WLAN_REASON_DEAUTH_LEAVING);
  143. return 1;
  144. }
  145. return 0;
  146. }
  147. static void wpas_wps_security_workaround(struct wpa_supplicant *wpa_s,
  148. struct wpa_ssid *ssid,
  149. const struct wps_credential *cred)
  150. {
  151. struct wpa_driver_capa capa;
  152. struct wpa_bss *bss;
  153. const u8 *ie;
  154. struct wpa_ie_data adv;
  155. int wpa2 = 0, ccmp = 0;
  156. /*
  157. * Many existing WPS APs do not know how to negotiate WPA2 or CCMP in
  158. * case they are configured for mixed mode operation (WPA+WPA2 and
  159. * TKIP+CCMP). Try to use scan results to figure out whether the AP
  160. * actually supports stronger security and select that if the client
  161. * has support for it, too.
  162. */
  163. if (wpa_drv_get_capa(wpa_s, &capa))
  164. return; /* Unknown what driver supports */
  165. if (ssid->ssid == NULL)
  166. return;
  167. bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len);
  168. if (bss == NULL) {
  169. wpa_printf(MSG_DEBUG, "WPS: The AP was not found from BSS "
  170. "table - use credential as-is");
  171. return;
  172. }
  173. wpa_printf(MSG_DEBUG, "WPS: AP found from BSS table");
  174. ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  175. if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0) {
  176. wpa2 = 1;
  177. if (adv.pairwise_cipher & WPA_CIPHER_CCMP)
  178. ccmp = 1;
  179. } else {
  180. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  181. if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0 &&
  182. adv.pairwise_cipher & WPA_CIPHER_CCMP)
  183. ccmp = 1;
  184. }
  185. if (ie == NULL && (ssid->proto & WPA_PROTO_WPA) &&
  186. (ssid->pairwise_cipher & WPA_CIPHER_TKIP)) {
  187. /*
  188. * TODO: This could be the initial AP configuration and the
  189. * Beacon contents could change shortly. Should request a new
  190. * scan and delay addition of the network until the updated
  191. * scan results are available.
  192. */
  193. wpa_printf(MSG_DEBUG, "WPS: The AP did not yet advertise WPA "
  194. "support - use credential as-is");
  195. return;
  196. }
  197. if (ccmp && !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
  198. (ssid->pairwise_cipher & WPA_CIPHER_TKIP) &&
  199. (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  200. wpa_printf(MSG_DEBUG, "WPS: Add CCMP into the credential "
  201. "based on scan results");
  202. if (wpa_s->conf->ap_scan == 1)
  203. ssid->pairwise_cipher |= WPA_CIPHER_CCMP;
  204. else
  205. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  206. }
  207. if (wpa2 && !(ssid->proto & WPA_PROTO_RSN) &&
  208. (ssid->proto & WPA_PROTO_WPA) &&
  209. (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP)) {
  210. wpa_printf(MSG_DEBUG, "WPS: Add WPA2 into the credential "
  211. "based on scan results");
  212. if (wpa_s->conf->ap_scan == 1)
  213. ssid->proto |= WPA_PROTO_RSN;
  214. else
  215. ssid->proto = WPA_PROTO_RSN;
  216. }
  217. }
  218. static void wpas_wps_remove_dup_network(struct wpa_supplicant *wpa_s,
  219. struct wpa_ssid *new_ssid)
  220. {
  221. struct wpa_ssid *ssid, *next;
  222. for (ssid = wpa_s->conf->ssid, next = ssid ? ssid->next : NULL; ssid;
  223. ssid = next, next = ssid ? ssid->next : NULL) {
  224. /*
  225. * new_ssid has already been added to the list in
  226. * wpas_wps_add_network(), so skip it.
  227. */
  228. if (ssid == new_ssid)
  229. continue;
  230. if (ssid->bssid_set || new_ssid->bssid_set) {
  231. if (ssid->bssid_set != new_ssid->bssid_set)
  232. continue;
  233. if (os_memcmp(ssid->bssid, new_ssid->bssid, ETH_ALEN) !=
  234. 0)
  235. continue;
  236. }
  237. /* compare SSID */
  238. if (ssid->ssid_len == 0 || ssid->ssid_len != new_ssid->ssid_len)
  239. continue;
  240. if (ssid->ssid && new_ssid->ssid) {
  241. if (os_memcmp(ssid->ssid, new_ssid->ssid,
  242. ssid->ssid_len) != 0)
  243. continue;
  244. } else if (ssid->ssid || new_ssid->ssid)
  245. continue;
  246. /* compare security parameters */
  247. if (ssid->auth_alg != new_ssid->auth_alg ||
  248. ssid->key_mgmt != new_ssid->key_mgmt ||
  249. ssid->proto != new_ssid->proto ||
  250. ssid->pairwise_cipher != new_ssid->pairwise_cipher ||
  251. ssid->group_cipher != new_ssid->group_cipher)
  252. continue;
  253. /* Remove the duplicated older network entry. */
  254. wpa_printf(MSG_DEBUG, "Remove duplicate network %d", ssid->id);
  255. wpas_notify_network_removed(wpa_s, ssid);
  256. wpa_config_remove_network(wpa_s->conf, ssid->id);
  257. }
  258. }
  259. static int wpa_supplicant_wps_cred(void *ctx,
  260. const struct wps_credential *cred)
  261. {
  262. struct wpa_supplicant *wpa_s = ctx;
  263. struct wpa_ssid *ssid = wpa_s->current_ssid;
  264. u16 auth_type;
  265. #ifdef CONFIG_WPS_REG_DISABLE_OPEN
  266. int registrar = 0;
  267. #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
  268. if ((wpa_s->conf->wps_cred_processing == 1 ||
  269. wpa_s->conf->wps_cred_processing == 2) && cred->cred_attr) {
  270. size_t blen = cred->cred_attr_len * 2 + 1;
  271. char *buf = os_malloc(blen);
  272. if (buf) {
  273. wpa_snprintf_hex(buf, blen,
  274. cred->cred_attr, cred->cred_attr_len);
  275. wpa_msg(wpa_s, MSG_INFO, "%s%s",
  276. WPS_EVENT_CRED_RECEIVED, buf);
  277. os_free(buf);
  278. }
  279. wpas_notify_wps_credential(wpa_s, cred);
  280. } else
  281. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_CRED_RECEIVED);
  282. wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute",
  283. cred->cred_attr, cred->cred_attr_len);
  284. if (wpa_s->conf->wps_cred_processing == 1)
  285. return 0;
  286. wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len);
  287. wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x",
  288. cred->auth_type);
  289. wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
  290. wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx);
  291. wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key",
  292. cred->key, cred->key_len);
  293. wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR,
  294. MAC2STR(cred->mac_addr));
  295. auth_type = cred->auth_type;
  296. if (auth_type == (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
  297. wpa_printf(MSG_DEBUG, "WPS: Workaround - convert mixed-mode "
  298. "auth_type into WPA2PSK");
  299. auth_type = WPS_AUTH_WPA2PSK;
  300. }
  301. if (auth_type != WPS_AUTH_OPEN &&
  302. auth_type != WPS_AUTH_WPAPSK &&
  303. auth_type != WPS_AUTH_WPA2PSK) {
  304. wpa_printf(MSG_DEBUG, "WPS: Ignored credentials for "
  305. "unsupported authentication type 0x%x",
  306. auth_type);
  307. return 0;
  308. }
  309. if (auth_type == WPS_AUTH_WPAPSK || auth_type == WPS_AUTH_WPA2PSK) {
  310. if (cred->key_len < 8 || cred->key_len > 2 * PMK_LEN) {
  311. wpa_printf(MSG_ERROR, "WPS: Reject PSK credential with "
  312. "invalid Network Key length %lu",
  313. (unsigned long) cred->key_len);
  314. return -1;
  315. }
  316. }
  317. if (ssid && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  318. wpa_printf(MSG_DEBUG, "WPS: Replace WPS network block based "
  319. "on the received credential");
  320. #ifdef CONFIG_WPS_REG_DISABLE_OPEN
  321. if (ssid->eap.identity &&
  322. ssid->eap.identity_len == WSC_ID_REGISTRAR_LEN &&
  323. os_memcmp(ssid->eap.identity, WSC_ID_REGISTRAR,
  324. WSC_ID_REGISTRAR_LEN) == 0)
  325. registrar = 1;
  326. #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
  327. os_free(ssid->eap.identity);
  328. ssid->eap.identity = NULL;
  329. ssid->eap.identity_len = 0;
  330. os_free(ssid->eap.phase1);
  331. ssid->eap.phase1 = NULL;
  332. os_free(ssid->eap.eap_methods);
  333. ssid->eap.eap_methods = NULL;
  334. if (!ssid->p2p_group) {
  335. ssid->temporary = 0;
  336. ssid->bssid_set = 0;
  337. }
  338. ssid->disabled_until.sec = 0;
  339. ssid->disabled_until.usec = 0;
  340. ssid->auth_failures = 0;
  341. } else {
  342. wpa_printf(MSG_DEBUG, "WPS: Create a new network based on the "
  343. "received credential");
  344. ssid = wpa_config_add_network(wpa_s->conf);
  345. if (ssid == NULL)
  346. return -1;
  347. if (wpa_s->current_ssid) {
  348. /*
  349. * Should the GO issue multiple credentials for some
  350. * reason, each credential should be marked as a
  351. * temporary P2P group similarly to the one that gets
  352. * marked as such based on the pre-configured values
  353. * used for the WPS network block.
  354. */
  355. ssid->p2p_group = wpa_s->current_ssid->p2p_group;
  356. ssid->temporary = wpa_s->current_ssid->temporary;
  357. }
  358. wpas_notify_network_added(wpa_s, ssid);
  359. }
  360. wpa_config_set_network_defaults(ssid);
  361. os_free(ssid->ssid);
  362. ssid->ssid = os_malloc(cred->ssid_len);
  363. if (ssid->ssid) {
  364. os_memcpy(ssid->ssid, cred->ssid, cred->ssid_len);
  365. ssid->ssid_len = cred->ssid_len;
  366. }
  367. switch (cred->encr_type) {
  368. case WPS_ENCR_NONE:
  369. break;
  370. case WPS_ENCR_TKIP:
  371. ssid->pairwise_cipher = WPA_CIPHER_TKIP;
  372. break;
  373. case WPS_ENCR_AES:
  374. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  375. break;
  376. }
  377. switch (auth_type) {
  378. case WPS_AUTH_OPEN:
  379. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  380. ssid->key_mgmt = WPA_KEY_MGMT_NONE;
  381. ssid->proto = 0;
  382. #ifdef CONFIG_WPS_REG_DISABLE_OPEN
  383. if (registrar) {
  384. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_OPEN_NETWORK
  385. "id=%d - Credentials for an open "
  386. "network disabled by default - use "
  387. "'select_network %d' to enable",
  388. ssid->id, ssid->id);
  389. ssid->disabled = 1;
  390. }
  391. #endif /* CONFIG_WPS_REG_DISABLE_OPEN */
  392. break;
  393. case WPS_AUTH_WPAPSK:
  394. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  395. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  396. ssid->proto = WPA_PROTO_WPA;
  397. break;
  398. case WPS_AUTH_WPA2PSK:
  399. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  400. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  401. ssid->proto = WPA_PROTO_RSN;
  402. break;
  403. }
  404. if (ssid->key_mgmt == WPA_KEY_MGMT_PSK) {
  405. if (cred->key_len == 2 * PMK_LEN) {
  406. if (hexstr2bin((const char *) cred->key, ssid->psk,
  407. PMK_LEN)) {
  408. wpa_printf(MSG_ERROR, "WPS: Invalid Network "
  409. "Key");
  410. return -1;
  411. }
  412. ssid->psk_set = 1;
  413. ssid->export_keys = 1;
  414. } else if (cred->key_len >= 8 && cred->key_len < 2 * PMK_LEN) {
  415. os_free(ssid->passphrase);
  416. ssid->passphrase = os_malloc(cred->key_len + 1);
  417. if (ssid->passphrase == NULL)
  418. return -1;
  419. os_memcpy(ssid->passphrase, cred->key, cred->key_len);
  420. ssid->passphrase[cred->key_len] = '\0';
  421. wpa_config_update_psk(ssid);
  422. ssid->export_keys = 1;
  423. } else {
  424. wpa_printf(MSG_ERROR, "WPS: Invalid Network Key "
  425. "length %lu",
  426. (unsigned long) cred->key_len);
  427. return -1;
  428. }
  429. }
  430. wpas_wps_security_workaround(wpa_s, ssid, cred);
  431. wpas_wps_remove_dup_network(wpa_s, ssid);
  432. #ifndef CONFIG_NO_CONFIG_WRITE
  433. if (wpa_s->conf->update_config &&
  434. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  435. wpa_printf(MSG_DEBUG, "WPS: Failed to update configuration");
  436. return -1;
  437. }
  438. #endif /* CONFIG_NO_CONFIG_WRITE */
  439. /*
  440. * Optimize the post-WPS scan based on the channel used during
  441. * the provisioning in case EAP-Failure is not received.
  442. */
  443. wpa_s->after_wps = 5;
  444. wpa_s->wps_freq = wpa_s->assoc_freq;
  445. return 0;
  446. }
  447. static void wpa_supplicant_wps_event_m2d(struct wpa_supplicant *wpa_s,
  448. struct wps_event_m2d *m2d)
  449. {
  450. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_M2D
  451. "dev_password_id=%d config_error=%d",
  452. m2d->dev_password_id, m2d->config_error);
  453. wpas_notify_wps_event_m2d(wpa_s, m2d);
  454. #ifdef CONFIG_P2P
  455. if (wpa_s->parent && wpa_s->parent != wpa_s) {
  456. wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_M2D
  457. "dev_password_id=%d config_error=%d",
  458. m2d->dev_password_id, m2d->config_error);
  459. }
  460. if (m2d->config_error == WPS_CFG_MULTIPLE_PBC_DETECTED) {
  461. /*
  462. * Notify P2P from eloop timeout to avoid issues with the
  463. * interface getting removed while processing a message.
  464. */
  465. eloop_register_timeout(0, 0, wpas_p2p_pbc_overlap_cb, wpa_s,
  466. NULL);
  467. }
  468. #endif /* CONFIG_P2P */
  469. }
  470. static void wpas_wps_clear_timeout(void *eloop_ctx, void *timeout_ctx)
  471. {
  472. struct wpa_supplicant *wpa_s = eloop_ctx;
  473. wpa_printf(MSG_DEBUG, "WPS: Clear WPS network from timeout");
  474. wpas_clear_wps(wpa_s);
  475. }
  476. static void wpa_supplicant_wps_event_fail(struct wpa_supplicant *wpa_s,
  477. struct wps_event_fail *fail)
  478. {
  479. if (fail->error_indication > 0 &&
  480. fail->error_indication < NUM_WPS_EI_VALUES) {
  481. wpa_msg(wpa_s, MSG_INFO,
  482. WPS_EVENT_FAIL "msg=%d config_error=%d reason=%d (%s)",
  483. fail->msg, fail->config_error, fail->error_indication,
  484. wps_ei_str(fail->error_indication));
  485. if (wpa_s->parent && wpa_s->parent != wpa_s)
  486. wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL
  487. "msg=%d config_error=%d reason=%d (%s)",
  488. fail->msg, fail->config_error,
  489. fail->error_indication,
  490. wps_ei_str(fail->error_indication));
  491. } else {
  492. wpa_msg(wpa_s, MSG_INFO,
  493. WPS_EVENT_FAIL "msg=%d config_error=%d",
  494. fail->msg, fail->config_error);
  495. if (wpa_s->parent && wpa_s->parent != wpa_s)
  496. wpa_msg(wpa_s->parent, MSG_INFO, WPS_EVENT_FAIL
  497. "msg=%d config_error=%d",
  498. fail->msg, fail->config_error);
  499. }
  500. /*
  501. * Need to allow WPS processing to complete, e.g., by sending WSC_NACK.
  502. */
  503. wpa_printf(MSG_DEBUG, "WPS: Register timeout to clear WPS network");
  504. eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL);
  505. eloop_register_timeout(0, 100000, wpas_wps_clear_timeout, wpa_s, NULL);
  506. wpas_notify_wps_event_fail(wpa_s, fail);
  507. #ifdef CONFIG_P2P
  508. wpas_p2p_wps_failed(wpa_s, fail);
  509. #endif /* CONFIG_P2P */
  510. }
  511. static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx);
  512. static void wpas_wps_reenable_networks(struct wpa_supplicant *wpa_s)
  513. {
  514. struct wpa_ssid *ssid;
  515. int changed = 0;
  516. eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL);
  517. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  518. if (ssid->disabled_for_connect && ssid->disabled) {
  519. ssid->disabled_for_connect = 0;
  520. ssid->disabled = 0;
  521. wpas_notify_network_enabled_changed(wpa_s, ssid);
  522. changed++;
  523. }
  524. }
  525. if (changed) {
  526. #ifndef CONFIG_NO_CONFIG_WRITE
  527. if (wpa_s->conf->update_config &&
  528. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  529. wpa_printf(MSG_DEBUG, "WPS: Failed to update "
  530. "configuration");
  531. }
  532. #endif /* CONFIG_NO_CONFIG_WRITE */
  533. }
  534. }
  535. static void wpas_wps_reenable_networks_cb(void *eloop_ctx, void *timeout_ctx)
  536. {
  537. struct wpa_supplicant *wpa_s = eloop_ctx;
  538. /* Enable the networks disabled during wpas_wps_reassoc */
  539. wpas_wps_reenable_networks(wpa_s);
  540. }
  541. static void wpa_supplicant_wps_event_success(struct wpa_supplicant *wpa_s)
  542. {
  543. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_SUCCESS);
  544. wpa_s->wps_success = 1;
  545. wpas_notify_wps_event_success(wpa_s);
  546. if (wpa_s->current_ssid)
  547. wpas_clear_temp_disabled(wpa_s, wpa_s->current_ssid, 1);
  548. wpa_s->extra_blacklist_count = 0;
  549. /*
  550. * Enable the networks disabled during wpas_wps_reassoc after 10
  551. * seconds. The 10 seconds timer is to allow the data connection to be
  552. * formed before allowing other networks to be selected.
  553. */
  554. eloop_register_timeout(10, 0, wpas_wps_reenable_networks_cb, wpa_s,
  555. NULL);
  556. #ifdef CONFIG_P2P
  557. wpas_p2p_wps_success(wpa_s, wpa_s->bssid, 0);
  558. #endif /* CONFIG_P2P */
  559. }
  560. static void wpa_supplicant_wps_event_er_ap_add(struct wpa_supplicant *wpa_s,
  561. struct wps_event_er_ap *ap)
  562. {
  563. char uuid_str[100];
  564. char dev_type[WPS_DEV_TYPE_BUFSIZE];
  565. uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
  566. if (ap->pri_dev_type)
  567. wps_dev_type_bin2str(ap->pri_dev_type, dev_type,
  568. sizeof(dev_type));
  569. else
  570. dev_type[0] = '\0';
  571. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_ADD "%s " MACSTR
  572. " pri_dev_type=%s wps_state=%d |%s|%s|%s|%s|%s|%s|",
  573. uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state,
  574. ap->friendly_name ? ap->friendly_name : "",
  575. ap->manufacturer ? ap->manufacturer : "",
  576. ap->model_description ? ap->model_description : "",
  577. ap->model_name ? ap->model_name : "",
  578. ap->manufacturer_url ? ap->manufacturer_url : "",
  579. ap->model_url ? ap->model_url : "");
  580. }
  581. static void wpa_supplicant_wps_event_er_ap_remove(struct wpa_supplicant *wpa_s,
  582. struct wps_event_er_ap *ap)
  583. {
  584. char uuid_str[100];
  585. uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
  586. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str);
  587. }
  588. static void wpa_supplicant_wps_event_er_enrollee_add(
  589. struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee)
  590. {
  591. char uuid_str[100];
  592. char dev_type[WPS_DEV_TYPE_BUFSIZE];
  593. uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
  594. if (enrollee->pri_dev_type)
  595. wps_dev_type_bin2str(enrollee->pri_dev_type, dev_type,
  596. sizeof(dev_type));
  597. else
  598. dev_type[0] = '\0';
  599. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_ADD "%s " MACSTR
  600. " M1=%d config_methods=0x%x dev_passwd_id=%d pri_dev_type=%s "
  601. "|%s|%s|%s|%s|%s|",
  602. uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received,
  603. enrollee->config_methods, enrollee->dev_passwd_id, dev_type,
  604. enrollee->dev_name ? enrollee->dev_name : "",
  605. enrollee->manufacturer ? enrollee->manufacturer : "",
  606. enrollee->model_name ? enrollee->model_name : "",
  607. enrollee->model_number ? enrollee->model_number : "",
  608. enrollee->serial_number ? enrollee->serial_number : "");
  609. }
  610. static void wpa_supplicant_wps_event_er_enrollee_remove(
  611. struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee)
  612. {
  613. char uuid_str[100];
  614. uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
  615. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_REMOVE "%s " MACSTR,
  616. uuid_str, MAC2STR(enrollee->mac_addr));
  617. }
  618. static void wpa_supplicant_wps_event_er_ap_settings(
  619. struct wpa_supplicant *wpa_s,
  620. struct wps_event_er_ap_settings *ap_settings)
  621. {
  622. char uuid_str[100];
  623. char key_str[65];
  624. const struct wps_credential *cred = ap_settings->cred;
  625. key_str[0] = '\0';
  626. if (cred->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
  627. if (cred->key_len >= 8 && cred->key_len <= 64) {
  628. os_memcpy(key_str, cred->key, cred->key_len);
  629. key_str[cred->key_len] = '\0';
  630. }
  631. }
  632. uuid_bin2str(ap_settings->uuid, uuid_str, sizeof(uuid_str));
  633. /* Use wpa_msg_ctrl to avoid showing the key in debug log */
  634. wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_SETTINGS
  635. "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x "
  636. "key=%s",
  637. uuid_str, wpa_ssid_txt(cred->ssid, cred->ssid_len),
  638. cred->auth_type, cred->encr_type, key_str);
  639. }
  640. static void wpa_supplicant_wps_event_er_set_sel_reg(
  641. struct wpa_supplicant *wpa_s,
  642. struct wps_event_er_set_selected_registrar *ev)
  643. {
  644. char uuid_str[100];
  645. uuid_bin2str(ev->uuid, uuid_str, sizeof(uuid_str));
  646. switch (ev->state) {
  647. case WPS_ER_SET_SEL_REG_START:
  648. wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG
  649. "uuid=%s state=START sel_reg=%d dev_passwd_id=%u "
  650. "sel_reg_config_methods=0x%x",
  651. uuid_str, ev->sel_reg, ev->dev_passwd_id,
  652. ev->sel_reg_config_methods);
  653. break;
  654. case WPS_ER_SET_SEL_REG_DONE:
  655. wpa_msg(wpa_s, MSG_DEBUG, WPS_EVENT_ER_SET_SEL_REG
  656. "uuid=%s state=DONE", uuid_str);
  657. break;
  658. case WPS_ER_SET_SEL_REG_FAILED:
  659. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_SET_SEL_REG
  660. "uuid=%s state=FAILED", uuid_str);
  661. break;
  662. }
  663. }
  664. static void wpa_supplicant_wps_event(void *ctx, enum wps_event event,
  665. union wps_event_data *data)
  666. {
  667. struct wpa_supplicant *wpa_s = ctx;
  668. switch (event) {
  669. case WPS_EV_M2D:
  670. wpa_supplicant_wps_event_m2d(wpa_s, &data->m2d);
  671. break;
  672. case WPS_EV_FAIL:
  673. wpa_supplicant_wps_event_fail(wpa_s, &data->fail);
  674. break;
  675. case WPS_EV_SUCCESS:
  676. wpa_supplicant_wps_event_success(wpa_s);
  677. break;
  678. case WPS_EV_PWD_AUTH_FAIL:
  679. #ifdef CONFIG_AP
  680. if (wpa_s->ap_iface && data->pwd_auth_fail.enrollee)
  681. wpa_supplicant_ap_pwd_auth_fail(wpa_s);
  682. #endif /* CONFIG_AP */
  683. break;
  684. case WPS_EV_PBC_OVERLAP:
  685. break;
  686. case WPS_EV_PBC_TIMEOUT:
  687. break;
  688. case WPS_EV_PBC_ACTIVE:
  689. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ACTIVE);
  690. break;
  691. case WPS_EV_PBC_DISABLE:
  692. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_DISABLE);
  693. break;
  694. case WPS_EV_ER_AP_ADD:
  695. wpa_supplicant_wps_event_er_ap_add(wpa_s, &data->ap);
  696. break;
  697. case WPS_EV_ER_AP_REMOVE:
  698. wpa_supplicant_wps_event_er_ap_remove(wpa_s, &data->ap);
  699. break;
  700. case WPS_EV_ER_ENROLLEE_ADD:
  701. wpa_supplicant_wps_event_er_enrollee_add(wpa_s,
  702. &data->enrollee);
  703. break;
  704. case WPS_EV_ER_ENROLLEE_REMOVE:
  705. wpa_supplicant_wps_event_er_enrollee_remove(wpa_s,
  706. &data->enrollee);
  707. break;
  708. case WPS_EV_ER_AP_SETTINGS:
  709. wpa_supplicant_wps_event_er_ap_settings(wpa_s,
  710. &data->ap_settings);
  711. break;
  712. case WPS_EV_ER_SET_SELECTED_REGISTRAR:
  713. wpa_supplicant_wps_event_er_set_sel_reg(wpa_s,
  714. &data->set_sel_reg);
  715. break;
  716. case WPS_EV_AP_PIN_SUCCESS:
  717. break;
  718. }
  719. }
  720. static int wpa_supplicant_wps_rf_band(void *ctx)
  721. {
  722. struct wpa_supplicant *wpa_s = ctx;
  723. if (!wpa_s->current_ssid || !wpa_s->assoc_freq)
  724. return 0;
  725. return (wpa_s->assoc_freq > 2484) ? WPS_RF_50GHZ : WPS_RF_24GHZ;
  726. }
  727. enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid)
  728. {
  729. if (eap_is_wps_pbc_enrollee(&ssid->eap) ||
  730. eap_is_wps_pin_enrollee(&ssid->eap))
  731. return WPS_REQ_ENROLLEE;
  732. else
  733. return WPS_REQ_REGISTRAR;
  734. }
  735. static void wpas_clear_wps(struct wpa_supplicant *wpa_s)
  736. {
  737. int id;
  738. struct wpa_ssid *ssid, *remove_ssid = NULL, *prev_current;
  739. wpa_s->after_wps = 0;
  740. wpa_s->known_wps_freq = 0;
  741. prev_current = wpa_s->current_ssid;
  742. /* Enable the networks disabled during wpas_wps_reassoc */
  743. wpas_wps_reenable_networks(wpa_s);
  744. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  745. eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL);
  746. /* Remove any existing WPS network from configuration */
  747. ssid = wpa_s->conf->ssid;
  748. while (ssid) {
  749. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  750. if (ssid == wpa_s->current_ssid) {
  751. wpa_supplicant_deauthenticate(
  752. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  753. }
  754. id = ssid->id;
  755. remove_ssid = ssid;
  756. } else
  757. id = -1;
  758. ssid = ssid->next;
  759. if (id >= 0) {
  760. if (prev_current == remove_ssid) {
  761. wpa_sm_set_config(wpa_s->wpa, NULL);
  762. eapol_sm_notify_config(wpa_s->eapol, NULL,
  763. NULL);
  764. }
  765. wpas_notify_network_removed(wpa_s, remove_ssid);
  766. wpa_config_remove_network(wpa_s->conf, id);
  767. }
  768. }
  769. wpas_wps_clear_ap_info(wpa_s);
  770. }
  771. static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx)
  772. {
  773. struct wpa_supplicant *wpa_s = eloop_ctx;
  774. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_TIMEOUT "Requested operation timed "
  775. "out");
  776. wpas_clear_wps(wpa_s);
  777. }
  778. static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s,
  779. int registrar, const u8 *dev_addr,
  780. const u8 *bssid)
  781. {
  782. struct wpa_ssid *ssid;
  783. ssid = wpa_config_add_network(wpa_s->conf);
  784. if (ssid == NULL)
  785. return NULL;
  786. wpas_notify_network_added(wpa_s, ssid);
  787. wpa_config_set_network_defaults(ssid);
  788. ssid->temporary = 1;
  789. if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 ||
  790. wpa_config_set(ssid, "eap", "WSC", 0) < 0 ||
  791. wpa_config_set(ssid, "identity", registrar ?
  792. "\"" WSC_ID_REGISTRAR "\"" :
  793. "\"" WSC_ID_ENROLLEE "\"", 0) < 0) {
  794. wpas_notify_network_removed(wpa_s, ssid);
  795. wpa_config_remove_network(wpa_s->conf, ssid->id);
  796. return NULL;
  797. }
  798. #ifdef CONFIG_P2P
  799. if (dev_addr)
  800. os_memcpy(ssid->go_p2p_dev_addr, dev_addr, ETH_ALEN);
  801. #endif /* CONFIG_P2P */
  802. if (bssid) {
  803. #ifndef CONFIG_P2P
  804. struct wpa_bss *bss;
  805. int count = 0;
  806. #endif /* CONFIG_P2P */
  807. os_memcpy(ssid->bssid, bssid, ETH_ALEN);
  808. ssid->bssid_set = 1;
  809. /*
  810. * Note: With P2P, the SSID may change at the time the WPS
  811. * provisioning is started, so better not filter the AP based
  812. * on the current SSID in the scan results.
  813. */
  814. #ifndef CONFIG_P2P
  815. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  816. if (os_memcmp(bssid, bss->bssid, ETH_ALEN) != 0)
  817. continue;
  818. os_free(ssid->ssid);
  819. ssid->ssid = os_malloc(bss->ssid_len);
  820. if (ssid->ssid == NULL)
  821. break;
  822. os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
  823. ssid->ssid_len = bss->ssid_len;
  824. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Picked SSID from "
  825. "scan results",
  826. ssid->ssid, ssid->ssid_len);
  827. count++;
  828. }
  829. if (count > 1) {
  830. wpa_printf(MSG_DEBUG, "WPS: More than one SSID found "
  831. "for the AP; use wildcard");
  832. os_free(ssid->ssid);
  833. ssid->ssid = NULL;
  834. ssid->ssid_len = 0;
  835. }
  836. #endif /* CONFIG_P2P */
  837. }
  838. return ssid;
  839. }
  840. static void wpas_wps_temp_disable(struct wpa_supplicant *wpa_s,
  841. struct wpa_ssid *selected)
  842. {
  843. struct wpa_ssid *ssid;
  844. if (wpa_s->current_ssid)
  845. wpa_supplicant_deauthenticate(
  846. wpa_s, WLAN_REASON_DEAUTH_LEAVING);
  847. /* Mark all other networks disabled and trigger reassociation */
  848. ssid = wpa_s->conf->ssid;
  849. while (ssid) {
  850. int was_disabled = ssid->disabled;
  851. ssid->disabled_for_connect = 0;
  852. /*
  853. * In case the network object corresponds to a persistent group
  854. * then do not send out network disabled signal. In addition,
  855. * do not change disabled status of persistent network objects
  856. * from 2 to 1 should we connect to another network.
  857. */
  858. if (was_disabled != 2) {
  859. ssid->disabled = ssid != selected;
  860. if (was_disabled != ssid->disabled) {
  861. if (ssid->disabled)
  862. ssid->disabled_for_connect = 1;
  863. wpas_notify_network_enabled_changed(wpa_s,
  864. ssid);
  865. }
  866. }
  867. ssid = ssid->next;
  868. }
  869. }
  870. static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s,
  871. struct wpa_ssid *selected, const u8 *bssid,
  872. int freq)
  873. {
  874. struct wpa_bss *bss;
  875. wpa_s->after_wps = 0;
  876. wpa_s->known_wps_freq = 0;
  877. if (freq) {
  878. wpa_s->after_wps = 5;
  879. wpa_s->wps_freq = freq;
  880. } else if (bssid) {
  881. bss = wpa_bss_get_bssid_latest(wpa_s, bssid);
  882. if (bss && bss->freq > 0) {
  883. wpa_s->known_wps_freq = 1;
  884. wpa_s->wps_freq = bss->freq;
  885. }
  886. }
  887. wpas_wps_temp_disable(wpa_s, selected);
  888. wpa_s->disconnected = 0;
  889. wpa_s->reassociate = 1;
  890. wpa_s->scan_runs = 0;
  891. wpa_s->normal_scans = 0;
  892. wpa_s->wps_success = 0;
  893. wpa_s->blacklist_cleared = 0;
  894. wpa_supplicant_cancel_sched_scan(wpa_s);
  895. wpa_supplicant_req_scan(wpa_s, 0, 0);
  896. }
  897. int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid,
  898. int p2p_group)
  899. {
  900. struct wpa_ssid *ssid;
  901. wpas_clear_wps(wpa_s);
  902. ssid = wpas_wps_add_network(wpa_s, 0, NULL, bssid);
  903. if (ssid == NULL)
  904. return -1;
  905. ssid->temporary = 1;
  906. ssid->p2p_group = p2p_group;
  907. #ifdef CONFIG_P2P
  908. if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) {
  909. ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1);
  910. if (ssid->ssid) {
  911. ssid->ssid_len = wpa_s->go_params->ssid_len;
  912. os_memcpy(ssid->ssid, wpa_s->go_params->ssid,
  913. ssid->ssid_len);
  914. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP "
  915. "SSID", ssid->ssid, ssid->ssid_len);
  916. }
  917. }
  918. #endif /* CONFIG_P2P */
  919. if (wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0) < 0)
  920. return -1;
  921. if (wpa_s->wps_fragment_size)
  922. ssid->eap.fragment_size = wpa_s->wps_fragment_size;
  923. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  924. wpa_s, NULL);
  925. wpas_wps_reassoc(wpa_s, ssid, bssid, 0);
  926. return 0;
  927. }
  928. static int wpas_wps_start_dev_pw(struct wpa_supplicant *wpa_s,
  929. const u8 *dev_addr, const u8 *bssid,
  930. const char *pin, int p2p_group, u16 dev_pw_id,
  931. const u8 *peer_pubkey_hash,
  932. const u8 *ssid_val, size_t ssid_len, int freq)
  933. {
  934. struct wpa_ssid *ssid;
  935. char val[128 + 2 * WPS_OOB_PUBKEY_HASH_LEN];
  936. unsigned int rpin = 0;
  937. char hash[2 * WPS_OOB_PUBKEY_HASH_LEN + 10];
  938. wpas_clear_wps(wpa_s);
  939. if (bssid && is_zero_ether_addr(bssid))
  940. bssid = NULL;
  941. ssid = wpas_wps_add_network(wpa_s, 0, dev_addr, bssid);
  942. if (ssid == NULL) {
  943. wpa_printf(MSG_DEBUG, "WPS: Could not add network");
  944. return -1;
  945. }
  946. ssid->temporary = 1;
  947. ssid->p2p_group = p2p_group;
  948. if (ssid_val) {
  949. ssid->ssid = os_malloc(ssid_len);
  950. if (ssid->ssid) {
  951. os_memcpy(ssid->ssid, ssid_val, ssid_len);
  952. ssid->ssid_len = ssid_len;
  953. }
  954. }
  955. if (peer_pubkey_hash) {
  956. os_memcpy(hash, " pkhash=", 8);
  957. wpa_snprintf_hex_uppercase(hash + 8, sizeof(hash) - 8,
  958. peer_pubkey_hash,
  959. WPS_OOB_PUBKEY_HASH_LEN);
  960. } else {
  961. hash[0] = '\0';
  962. }
  963. #ifdef CONFIG_P2P
  964. if (p2p_group && wpa_s->go_params && wpa_s->go_params->ssid_len) {
  965. ssid->ssid = os_zalloc(wpa_s->go_params->ssid_len + 1);
  966. if (ssid->ssid) {
  967. ssid->ssid_len = wpa_s->go_params->ssid_len;
  968. os_memcpy(ssid->ssid, wpa_s->go_params->ssid,
  969. ssid->ssid_len);
  970. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Use specific AP "
  971. "SSID", ssid->ssid, ssid->ssid_len);
  972. }
  973. }
  974. #endif /* CONFIG_P2P */
  975. if (pin)
  976. os_snprintf(val, sizeof(val), "\"pin=%s dev_pw_id=%u%s\"",
  977. pin, dev_pw_id, hash);
  978. else if (pin == NULL && dev_pw_id == DEV_PW_NFC_CONNECTION_HANDOVER) {
  979. os_snprintf(val, sizeof(val), "\"dev_pw_id=%u%s\"",
  980. dev_pw_id, hash);
  981. } else {
  982. rpin = wps_generate_pin();
  983. os_snprintf(val, sizeof(val), "\"pin=%08d dev_pw_id=%u%s\"",
  984. rpin, dev_pw_id, hash);
  985. }
  986. if (wpa_config_set(ssid, "phase1", val, 0) < 0) {
  987. wpa_printf(MSG_DEBUG, "WPS: Failed to set phase1 '%s'", val);
  988. return -1;
  989. }
  990. if (wpa_s->wps_fragment_size)
  991. ssid->eap.fragment_size = wpa_s->wps_fragment_size;
  992. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  993. wpa_s, NULL);
  994. wpa_s->wps_ap_iter = 1;
  995. wpas_wps_reassoc(wpa_s, ssid, bssid, freq);
  996. return rpin;
  997. }
  998. int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
  999. const char *pin, int p2p_group, u16 dev_pw_id)
  1000. {
  1001. return wpas_wps_start_dev_pw(wpa_s, NULL, bssid, pin, p2p_group,
  1002. dev_pw_id, NULL, NULL, 0, 0);
  1003. }
  1004. /* Cancel the wps pbc/pin requests */
  1005. int wpas_wps_cancel(struct wpa_supplicant *wpa_s)
  1006. {
  1007. #ifdef CONFIG_AP
  1008. if (wpa_s->ap_iface) {
  1009. wpa_printf(MSG_DEBUG, "WPS: Cancelling in AP mode");
  1010. return wpa_supplicant_ap_wps_cancel(wpa_s);
  1011. }
  1012. #endif /* CONFIG_AP */
  1013. if (wpa_s->wpa_state == WPA_SCANNING ||
  1014. wpa_s->wpa_state == WPA_DISCONNECTED) {
  1015. wpa_printf(MSG_DEBUG, "WPS: Cancel operation - cancel scan");
  1016. wpa_supplicant_cancel_scan(wpa_s);
  1017. wpas_clear_wps(wpa_s);
  1018. } else if (wpa_s->wpa_state >= WPA_ASSOCIATED) {
  1019. wpa_printf(MSG_DEBUG, "WPS: Cancel operation - "
  1020. "deauthenticate");
  1021. wpa_supplicant_deauthenticate(wpa_s,
  1022. WLAN_REASON_DEAUTH_LEAVING);
  1023. wpas_clear_wps(wpa_s);
  1024. } else {
  1025. wpas_wps_reenable_networks(wpa_s);
  1026. wpas_wps_clear_ap_info(wpa_s);
  1027. if (eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL) >
  1028. 0)
  1029. wpas_clear_wps(wpa_s);
  1030. }
  1031. wpa_s->after_wps = 0;
  1032. return 0;
  1033. }
  1034. int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
  1035. const char *pin, struct wps_new_ap_settings *settings)
  1036. {
  1037. struct wpa_ssid *ssid;
  1038. char val[200];
  1039. char *pos, *end;
  1040. int res;
  1041. if (!pin)
  1042. return -1;
  1043. wpas_clear_wps(wpa_s);
  1044. ssid = wpas_wps_add_network(wpa_s, 1, NULL, bssid);
  1045. if (ssid == NULL)
  1046. return -1;
  1047. ssid->temporary = 1;
  1048. pos = val;
  1049. end = pos + sizeof(val);
  1050. res = os_snprintf(pos, end - pos, "\"pin=%s", pin);
  1051. if (res < 0 || res >= end - pos)
  1052. return -1;
  1053. pos += res;
  1054. if (settings) {
  1055. res = os_snprintf(pos, end - pos, " new_ssid=%s new_auth=%s "
  1056. "new_encr=%s new_key=%s",
  1057. settings->ssid_hex, settings->auth,
  1058. settings->encr, settings->key_hex);
  1059. if (res < 0 || res >= end - pos)
  1060. return -1;
  1061. pos += res;
  1062. }
  1063. res = os_snprintf(pos, end - pos, "\"");
  1064. if (res < 0 || res >= end - pos)
  1065. return -1;
  1066. if (wpa_config_set(ssid, "phase1", val, 0) < 0)
  1067. return -1;
  1068. if (wpa_s->wps_fragment_size)
  1069. ssid->eap.fragment_size = wpa_s->wps_fragment_size;
  1070. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  1071. wpa_s, NULL);
  1072. wpas_wps_reassoc(wpa_s, ssid, bssid, 0);
  1073. return 0;
  1074. }
  1075. static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr,
  1076. const u8 *p2p_dev_addr, const u8 *psk,
  1077. size_t psk_len)
  1078. {
  1079. if (is_zero_ether_addr(p2p_dev_addr)) {
  1080. wpa_printf(MSG_DEBUG,
  1081. "Received new WPA/WPA2-PSK from WPS for STA " MACSTR,
  1082. MAC2STR(mac_addr));
  1083. } else {
  1084. wpa_printf(MSG_DEBUG,
  1085. "Received new WPA/WPA2-PSK from WPS for STA " MACSTR
  1086. " P2P Device Addr " MACSTR,
  1087. MAC2STR(mac_addr), MAC2STR(p2p_dev_addr));
  1088. }
  1089. wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
  1090. /* TODO */
  1091. return 0;
  1092. }
  1093. static void wpas_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
  1094. const struct wps_device_data *dev)
  1095. {
  1096. char uuid[40], txt[400];
  1097. int len;
  1098. char devtype[WPS_DEV_TYPE_BUFSIZE];
  1099. if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
  1100. return;
  1101. wpa_printf(MSG_DEBUG, "WPS: PIN needed for UUID-E %s", uuid);
  1102. len = os_snprintf(txt, sizeof(txt), "WPS-EVENT-PIN-NEEDED %s " MACSTR
  1103. " [%s|%s|%s|%s|%s|%s]",
  1104. uuid, MAC2STR(dev->mac_addr), dev->device_name,
  1105. dev->manufacturer, dev->model_name,
  1106. dev->model_number, dev->serial_number,
  1107. wps_dev_type_bin2str(dev->pri_dev_type, devtype,
  1108. sizeof(devtype)));
  1109. if (len > 0 && len < (int) sizeof(txt))
  1110. wpa_printf(MSG_INFO, "%s", txt);
  1111. }
  1112. static void wpas_wps_set_sel_reg_cb(void *ctx, int sel_reg, u16 dev_passwd_id,
  1113. u16 sel_reg_config_methods)
  1114. {
  1115. #ifdef CONFIG_WPS_ER
  1116. struct wpa_supplicant *wpa_s = ctx;
  1117. if (wpa_s->wps_er == NULL)
  1118. return;
  1119. wpa_printf(MSG_DEBUG, "WPS ER: SetSelectedRegistrar - sel_reg=%d "
  1120. "dev_password_id=%u sel_reg_config_methods=0x%x",
  1121. sel_reg, dev_passwd_id, sel_reg_config_methods);
  1122. wps_er_set_sel_reg(wpa_s->wps_er, sel_reg, dev_passwd_id,
  1123. sel_reg_config_methods);
  1124. #endif /* CONFIG_WPS_ER */
  1125. }
  1126. static u16 wps_fix_config_methods(u16 config_methods)
  1127. {
  1128. if ((config_methods &
  1129. (WPS_CONFIG_DISPLAY | WPS_CONFIG_VIRT_DISPLAY |
  1130. WPS_CONFIG_PHY_DISPLAY)) == WPS_CONFIG_DISPLAY) {
  1131. wpa_printf(MSG_INFO, "WPS: Converting display to "
  1132. "virtual_display for WPS 2.0 compliance");
  1133. config_methods |= WPS_CONFIG_VIRT_DISPLAY;
  1134. }
  1135. if ((config_methods &
  1136. (WPS_CONFIG_PUSHBUTTON | WPS_CONFIG_VIRT_PUSHBUTTON |
  1137. WPS_CONFIG_PHY_PUSHBUTTON)) == WPS_CONFIG_PUSHBUTTON) {
  1138. wpa_printf(MSG_INFO, "WPS: Converting push_button to "
  1139. "virtual_push_button for WPS 2.0 compliance");
  1140. config_methods |= WPS_CONFIG_VIRT_PUSHBUTTON;
  1141. }
  1142. return config_methods;
  1143. }
  1144. static void wpas_wps_set_uuid(struct wpa_supplicant *wpa_s,
  1145. struct wps_context *wps)
  1146. {
  1147. char buf[50];
  1148. const char *src;
  1149. if (is_nil_uuid(wpa_s->conf->uuid)) {
  1150. struct wpa_supplicant *first;
  1151. first = wpa_s->global->ifaces;
  1152. while (first && first->next)
  1153. first = first->next;
  1154. if (first && first != wpa_s) {
  1155. if (wps != wpa_s->global->ifaces->wps)
  1156. os_memcpy(wps->uuid,
  1157. wpa_s->global->ifaces->wps->uuid,
  1158. WPS_UUID_LEN);
  1159. src = "from the first interface";
  1160. } else {
  1161. uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid);
  1162. src = "based on MAC address";
  1163. }
  1164. } else {
  1165. os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
  1166. src = "based on configuration";
  1167. }
  1168. uuid_bin2str(wps->uuid, buf, sizeof(buf));
  1169. wpa_dbg(wpa_s, MSG_DEBUG, "WPS: UUID %s: %s", src, buf);
  1170. }
  1171. static void wpas_wps_set_vendor_ext_m1(struct wpa_supplicant *wpa_s,
  1172. struct wps_context *wps)
  1173. {
  1174. wpabuf_free(wps->dev.vendor_ext_m1);
  1175. wps->dev.vendor_ext_m1 = NULL;
  1176. if (wpa_s->conf->wps_vendor_ext_m1) {
  1177. wps->dev.vendor_ext_m1 =
  1178. wpabuf_dup(wpa_s->conf->wps_vendor_ext_m1);
  1179. if (!wps->dev.vendor_ext_m1) {
  1180. wpa_printf(MSG_ERROR, "WPS: Cannot "
  1181. "allocate memory for vendor_ext_m1");
  1182. }
  1183. }
  1184. }
  1185. int wpas_wps_init(struct wpa_supplicant *wpa_s)
  1186. {
  1187. struct wps_context *wps;
  1188. struct wps_registrar_config rcfg;
  1189. struct hostapd_hw_modes *modes;
  1190. u16 m;
  1191. wps = os_zalloc(sizeof(*wps));
  1192. if (wps == NULL)
  1193. return -1;
  1194. wps->cred_cb = wpa_supplicant_wps_cred;
  1195. wps->event_cb = wpa_supplicant_wps_event;
  1196. wps->rf_band_cb = wpa_supplicant_wps_rf_band;
  1197. wps->cb_ctx = wpa_s;
  1198. wps->dev.device_name = wpa_s->conf->device_name;
  1199. wps->dev.manufacturer = wpa_s->conf->manufacturer;
  1200. wps->dev.model_name = wpa_s->conf->model_name;
  1201. wps->dev.model_number = wpa_s->conf->model_number;
  1202. wps->dev.serial_number = wpa_s->conf->serial_number;
  1203. wps->config_methods =
  1204. wps_config_methods_str2bin(wpa_s->conf->config_methods);
  1205. if ((wps->config_methods & (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
  1206. (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
  1207. wpa_printf(MSG_ERROR, "WPS: Both Label and Display config "
  1208. "methods are not allowed at the same time");
  1209. os_free(wps);
  1210. return -1;
  1211. }
  1212. wps->config_methods = wps_fix_config_methods(wps->config_methods);
  1213. wps->dev.config_methods = wps->config_methods;
  1214. os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type,
  1215. WPS_DEV_TYPE_LEN);
  1216. wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  1217. os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type,
  1218. WPS_DEV_TYPE_LEN * wps->dev.num_sec_dev_types);
  1219. wpas_wps_set_vendor_ext_m1(wpa_s, wps);
  1220. wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
  1221. modes = wpa_s->hw.modes;
  1222. if (modes) {
  1223. for (m = 0; m < wpa_s->hw.num_modes; m++) {
  1224. if (modes[m].mode == HOSTAPD_MODE_IEEE80211B ||
  1225. modes[m].mode == HOSTAPD_MODE_IEEE80211G)
  1226. wps->dev.rf_bands |= WPS_RF_24GHZ;
  1227. else if (modes[m].mode == HOSTAPD_MODE_IEEE80211A)
  1228. wps->dev.rf_bands |= WPS_RF_50GHZ;
  1229. }
  1230. }
  1231. if (wps->dev.rf_bands == 0) {
  1232. /*
  1233. * Default to claiming support for both bands if the driver
  1234. * does not provide support for fetching supported bands.
  1235. */
  1236. wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ;
  1237. }
  1238. os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
  1239. wpas_wps_set_uuid(wpa_s, wps);
  1240. wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
  1241. wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
  1242. os_memset(&rcfg, 0, sizeof(rcfg));
  1243. rcfg.new_psk_cb = wpas_wps_new_psk_cb;
  1244. rcfg.pin_needed_cb = wpas_wps_pin_needed_cb;
  1245. rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb;
  1246. rcfg.cb_ctx = wpa_s;
  1247. wps->registrar = wps_registrar_init(wps, &rcfg);
  1248. if (wps->registrar == NULL) {
  1249. wpa_printf(MSG_DEBUG, "Failed to initialize WPS Registrar");
  1250. os_free(wps);
  1251. return -1;
  1252. }
  1253. wpa_s->wps = wps;
  1254. return 0;
  1255. }
  1256. #ifdef CONFIG_WPS_ER
  1257. static void wpas_wps_nfc_clear(struct wps_context *wps)
  1258. {
  1259. wps->ap_nfc_dev_pw_id = 0;
  1260. wpabuf_free(wps->ap_nfc_dh_pubkey);
  1261. wps->ap_nfc_dh_pubkey = NULL;
  1262. wpabuf_free(wps->ap_nfc_dh_privkey);
  1263. wps->ap_nfc_dh_privkey = NULL;
  1264. wpabuf_free(wps->ap_nfc_dev_pw);
  1265. wps->ap_nfc_dev_pw = NULL;
  1266. }
  1267. #endif /* CONFIG_WPS_ER */
  1268. void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
  1269. {
  1270. wpas_wps_assoc_with_cred_cancel(wpa_s);
  1271. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  1272. eloop_cancel_timeout(wpas_wps_clear_timeout, wpa_s, NULL);
  1273. eloop_cancel_timeout(wpas_wps_reenable_networks_cb, wpa_s, NULL);
  1274. wpas_wps_clear_ap_info(wpa_s);
  1275. if (wpa_s->wps == NULL)
  1276. return;
  1277. #ifdef CONFIG_WPS_ER
  1278. wps_er_deinit(wpa_s->wps_er, NULL, NULL);
  1279. wpa_s->wps_er = NULL;
  1280. wpas_wps_nfc_clear(wpa_s->wps);
  1281. #endif /* CONFIG_WPS_ER */
  1282. wps_registrar_deinit(wpa_s->wps->registrar);
  1283. wpabuf_free(wpa_s->wps->dh_pubkey);
  1284. wpabuf_free(wpa_s->wps->dh_privkey);
  1285. wpabuf_free(wpa_s->wps->dev.vendor_ext_m1);
  1286. os_free(wpa_s->wps->network_key);
  1287. os_free(wpa_s->wps);
  1288. wpa_s->wps = NULL;
  1289. }
  1290. int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
  1291. struct wpa_ssid *ssid, struct wpa_bss *bss)
  1292. {
  1293. struct wpabuf *wps_ie;
  1294. if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
  1295. return -1;
  1296. wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  1297. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  1298. if (!wps_ie) {
  1299. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  1300. return 0;
  1301. }
  1302. if (!wps_is_selected_pbc_registrar(wps_ie)) {
  1303. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  1304. "without active PBC Registrar");
  1305. wpabuf_free(wps_ie);
  1306. return 0;
  1307. }
  1308. /* TODO: overlap detection */
  1309. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  1310. "(Active PBC)");
  1311. wpabuf_free(wps_ie);
  1312. return 1;
  1313. }
  1314. if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  1315. if (!wps_ie) {
  1316. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  1317. return 0;
  1318. }
  1319. /*
  1320. * Start with WPS APs that advertise our address as an
  1321. * authorized MAC (v2.0) or active PIN Registrar (v1.0) and
  1322. * allow any WPS AP after couple of scans since some APs do not
  1323. * set Selected Registrar attribute properly when using
  1324. * external Registrar.
  1325. */
  1326. if (!wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1)) {
  1327. if (wpa_s->scan_runs < WPS_PIN_SCAN_IGNORE_SEL_REG) {
  1328. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  1329. "without active PIN Registrar");
  1330. wpabuf_free(wps_ie);
  1331. return 0;
  1332. }
  1333. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  1334. } else {
  1335. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  1336. "(Authorized MAC or Active PIN)");
  1337. }
  1338. wpabuf_free(wps_ie);
  1339. return 1;
  1340. }
  1341. if (wps_ie) {
  1342. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  1343. wpabuf_free(wps_ie);
  1344. return 1;
  1345. }
  1346. return -1;
  1347. }
  1348. int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
  1349. struct wpa_ssid *ssid,
  1350. struct wpa_bss *bss)
  1351. {
  1352. struct wpabuf *wps_ie = NULL;
  1353. int ret = 0;
  1354. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  1355. wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  1356. if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) {
  1357. /* allow wildcard SSID for WPS PBC */
  1358. ret = 1;
  1359. }
  1360. } else if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  1361. wps_ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  1362. if (wps_ie &&
  1363. (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1) ||
  1364. wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) {
  1365. /* allow wildcard SSID for WPS PIN */
  1366. ret = 1;
  1367. }
  1368. }
  1369. if (!ret && ssid->bssid_set &&
  1370. os_memcmp(ssid->bssid, bss->bssid, ETH_ALEN) == 0) {
  1371. /* allow wildcard SSID due to hardcoded BSSID match */
  1372. ret = 1;
  1373. }
  1374. #ifdef CONFIG_WPS_STRICT
  1375. if (wps_ie) {
  1376. if (wps_validate_beacon_probe_resp(wps_ie, bss->beacon_ie_len >
  1377. 0, bss->bssid) < 0)
  1378. ret = 0;
  1379. if (bss->beacon_ie_len) {
  1380. struct wpabuf *bcn_wps;
  1381. bcn_wps = wpa_bss_get_vendor_ie_multi_beacon(
  1382. bss, WPS_IE_VENDOR_TYPE);
  1383. if (bcn_wps == NULL) {
  1384. wpa_printf(MSG_DEBUG, "WPS: Mandatory WPS IE "
  1385. "missing from AP Beacon");
  1386. ret = 0;
  1387. } else {
  1388. if (wps_validate_beacon(wps_ie) < 0)
  1389. ret = 0;
  1390. wpabuf_free(bcn_wps);
  1391. }
  1392. }
  1393. }
  1394. #endif /* CONFIG_WPS_STRICT */
  1395. wpabuf_free(wps_ie);
  1396. return ret;
  1397. }
  1398. int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
  1399. struct wpa_bss *selected, struct wpa_ssid *ssid)
  1400. {
  1401. const u8 *sel_uuid, *uuid;
  1402. struct wpabuf *wps_ie;
  1403. int ret = 0;
  1404. struct wpa_bss *bss;
  1405. if (!eap_is_wps_pbc_enrollee(&ssid->eap))
  1406. return 0;
  1407. wpa_printf(MSG_DEBUG, "WPS: Check whether PBC session overlap is "
  1408. "present in scan results; selected BSSID " MACSTR,
  1409. MAC2STR(selected->bssid));
  1410. /* Make sure that only one AP is in active PBC mode */
  1411. wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE);
  1412. if (wps_ie) {
  1413. sel_uuid = wps_get_uuid_e(wps_ie);
  1414. wpa_hexdump(MSG_DEBUG, "WPS: UUID of the selected BSS",
  1415. sel_uuid, UUID_LEN);
  1416. } else {
  1417. wpa_printf(MSG_DEBUG, "WPS: Selected BSS does not include "
  1418. "WPS IE?!");
  1419. sel_uuid = NULL;
  1420. }
  1421. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1422. struct wpabuf *ie;
  1423. if (bss == selected)
  1424. continue;
  1425. ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  1426. if (!ie)
  1427. continue;
  1428. if (!wps_is_selected_pbc_registrar(ie)) {
  1429. wpabuf_free(ie);
  1430. continue;
  1431. }
  1432. wpa_printf(MSG_DEBUG, "WPS: Another BSS in active PBC mode: "
  1433. MACSTR, MAC2STR(bss->bssid));
  1434. uuid = wps_get_uuid_e(ie);
  1435. wpa_hexdump(MSG_DEBUG, "WPS: UUID of the other BSS",
  1436. uuid, UUID_LEN);
  1437. if (sel_uuid == NULL || uuid == NULL ||
  1438. os_memcmp(sel_uuid, uuid, UUID_LEN) != 0) {
  1439. ret = 1; /* PBC overlap */
  1440. wpa_msg(wpa_s, MSG_INFO, "WPS: PBC overlap detected: "
  1441. MACSTR " and " MACSTR,
  1442. MAC2STR(selected->bssid),
  1443. MAC2STR(bss->bssid));
  1444. wpabuf_free(ie);
  1445. break;
  1446. }
  1447. /* TODO: verify that this is reasonable dual-band situation */
  1448. wpabuf_free(ie);
  1449. }
  1450. wpabuf_free(wps_ie);
  1451. return ret;
  1452. }
  1453. void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
  1454. {
  1455. struct wpa_bss *bss;
  1456. unsigned int pbc = 0, auth = 0, pin = 0, wps = 0;
  1457. if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED)
  1458. return;
  1459. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  1460. struct wpabuf *ie;
  1461. ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  1462. if (!ie)
  1463. continue;
  1464. if (wps_is_selected_pbc_registrar(ie))
  1465. pbc++;
  1466. else if (wps_is_addr_authorized(ie, wpa_s->own_addr, 0))
  1467. auth++;
  1468. else if (wps_is_selected_pin_registrar(ie))
  1469. pin++;
  1470. else
  1471. wps++;
  1472. wpabuf_free(ie);
  1473. }
  1474. if (pbc)
  1475. wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PBC);
  1476. else if (auth)
  1477. wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_AUTH);
  1478. else if (pin)
  1479. wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PIN);
  1480. else if (wps)
  1481. wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE);
  1482. }
  1483. int wpas_wps_searching(struct wpa_supplicant *wpa_s)
  1484. {
  1485. struct wpa_ssid *ssid;
  1486. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1487. if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !ssid->disabled)
  1488. return 1;
  1489. }
  1490. return 0;
  1491. }
  1492. int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  1493. char *end)
  1494. {
  1495. struct wpabuf *wps_ie;
  1496. int ret;
  1497. wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA);
  1498. if (wps_ie == NULL)
  1499. return 0;
  1500. ret = wps_attr_text(wps_ie, buf, end);
  1501. wpabuf_free(wps_ie);
  1502. return ret;
  1503. }
  1504. int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter)
  1505. {
  1506. #ifdef CONFIG_WPS_ER
  1507. if (wpa_s->wps_er) {
  1508. wps_er_refresh(wpa_s->wps_er);
  1509. return 0;
  1510. }
  1511. wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname, filter);
  1512. if (wpa_s->wps_er == NULL)
  1513. return -1;
  1514. return 0;
  1515. #else /* CONFIG_WPS_ER */
  1516. return 0;
  1517. #endif /* CONFIG_WPS_ER */
  1518. }
  1519. int wpas_wps_er_stop(struct wpa_supplicant *wpa_s)
  1520. {
  1521. #ifdef CONFIG_WPS_ER
  1522. wps_er_deinit(wpa_s->wps_er, NULL, NULL);
  1523. wpa_s->wps_er = NULL;
  1524. #endif /* CONFIG_WPS_ER */
  1525. return 0;
  1526. }
  1527. #ifdef CONFIG_WPS_ER
  1528. int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr,
  1529. const char *uuid, const char *pin)
  1530. {
  1531. u8 u[UUID_LEN];
  1532. const u8 *use_uuid = NULL;
  1533. u8 addr_buf[ETH_ALEN];
  1534. if (os_strcmp(uuid, "any") == 0) {
  1535. } else if (uuid_str2bin(uuid, u) == 0) {
  1536. use_uuid = u;
  1537. } else if (hwaddr_aton(uuid, addr_buf) == 0) {
  1538. use_uuid = wps_er_get_sta_uuid(wpa_s->wps_er, addr_buf);
  1539. if (use_uuid == NULL)
  1540. return -1;
  1541. } else
  1542. return -1;
  1543. return wps_registrar_add_pin(wpa_s->wps->registrar, addr,
  1544. use_uuid,
  1545. (const u8 *) pin, os_strlen(pin), 300);
  1546. }
  1547. int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid)
  1548. {
  1549. u8 u[UUID_LEN], *use_uuid = NULL;
  1550. u8 addr[ETH_ALEN], *use_addr = NULL;
  1551. if (uuid_str2bin(uuid, u) == 0)
  1552. use_uuid = u;
  1553. else if (hwaddr_aton(uuid, addr) == 0)
  1554. use_addr = addr;
  1555. else
  1556. return -1;
  1557. return wps_er_pbc(wpa_s->wps_er, use_uuid, use_addr);
  1558. }
  1559. int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
  1560. const char *pin)
  1561. {
  1562. u8 u[UUID_LEN], *use_uuid = NULL;
  1563. u8 addr[ETH_ALEN], *use_addr = NULL;
  1564. if (uuid_str2bin(uuid, u) == 0)
  1565. use_uuid = u;
  1566. else if (hwaddr_aton(uuid, addr) == 0)
  1567. use_addr = addr;
  1568. else
  1569. return -1;
  1570. return wps_er_learn(wpa_s->wps_er, use_uuid, use_addr, (const u8 *) pin,
  1571. os_strlen(pin));
  1572. }
  1573. static int wpas_wps_network_to_cred(struct wpa_ssid *ssid,
  1574. struct wps_credential *cred)
  1575. {
  1576. os_memset(cred, 0, sizeof(*cred));
  1577. if (ssid->ssid_len > 32)
  1578. return -1;
  1579. os_memcpy(cred->ssid, ssid->ssid, ssid->ssid_len);
  1580. cred->ssid_len = ssid->ssid_len;
  1581. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
  1582. cred->auth_type = (ssid->proto & WPA_PROTO_RSN) ?
  1583. WPS_AUTH_WPA2PSK : WPS_AUTH_WPAPSK;
  1584. if (ssid->pairwise_cipher & WPA_CIPHER_CCMP)
  1585. cred->encr_type = WPS_ENCR_AES;
  1586. else
  1587. cred->encr_type = WPS_ENCR_TKIP;
  1588. if (ssid->passphrase) {
  1589. cred->key_len = os_strlen(ssid->passphrase);
  1590. if (cred->key_len >= 64)
  1591. return -1;
  1592. os_memcpy(cred->key, ssid->passphrase, cred->key_len);
  1593. } else if (ssid->psk_set) {
  1594. cred->key_len = 32;
  1595. os_memcpy(cred->key, ssid->psk, 32);
  1596. } else
  1597. return -1;
  1598. } else {
  1599. cred->auth_type = WPS_AUTH_OPEN;
  1600. cred->encr_type = WPS_ENCR_NONE;
  1601. }
  1602. return 0;
  1603. }
  1604. int wpas_wps_er_set_config(struct wpa_supplicant *wpa_s, const char *uuid,
  1605. int id)
  1606. {
  1607. u8 u[UUID_LEN], *use_uuid = NULL;
  1608. u8 addr[ETH_ALEN], *use_addr = NULL;
  1609. struct wpa_ssid *ssid;
  1610. struct wps_credential cred;
  1611. if (uuid_str2bin(uuid, u) == 0)
  1612. use_uuid = u;
  1613. else if (hwaddr_aton(uuid, addr) == 0)
  1614. use_addr = addr;
  1615. else
  1616. return -1;
  1617. ssid = wpa_config_get_network(wpa_s->conf, id);
  1618. if (ssid == NULL || ssid->ssid == NULL)
  1619. return -1;
  1620. if (wpas_wps_network_to_cred(ssid, &cred) < 0)
  1621. return -1;
  1622. return wps_er_set_config(wpa_s->wps_er, use_uuid, use_addr, &cred);
  1623. }
  1624. int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
  1625. const char *pin, struct wps_new_ap_settings *settings)
  1626. {
  1627. u8 u[UUID_LEN], *use_uuid = NULL;
  1628. u8 addr[ETH_ALEN], *use_addr = NULL;
  1629. struct wps_credential cred;
  1630. size_t len;
  1631. if (uuid_str2bin(uuid, u) == 0)
  1632. use_uuid = u;
  1633. else if (hwaddr_aton(uuid, addr) == 0)
  1634. use_addr = addr;
  1635. else
  1636. return -1;
  1637. if (settings->ssid_hex == NULL || settings->auth == NULL ||
  1638. settings->encr == NULL || settings->key_hex == NULL)
  1639. return -1;
  1640. os_memset(&cred, 0, sizeof(cred));
  1641. len = os_strlen(settings->ssid_hex);
  1642. if ((len & 1) || len > 2 * sizeof(cred.ssid) ||
  1643. hexstr2bin(settings->ssid_hex, cred.ssid, len / 2))
  1644. return -1;
  1645. cred.ssid_len = len / 2;
  1646. len = os_strlen(settings->key_hex);
  1647. if ((len & 1) || len > 2 * sizeof(cred.key) ||
  1648. hexstr2bin(settings->key_hex, cred.key, len / 2))
  1649. return -1;
  1650. cred.key_len = len / 2;
  1651. if (os_strcmp(settings->auth, "OPEN") == 0)
  1652. cred.auth_type = WPS_AUTH_OPEN;
  1653. else if (os_strcmp(settings->auth, "WPAPSK") == 0)
  1654. cred.auth_type = WPS_AUTH_WPAPSK;
  1655. else if (os_strcmp(settings->auth, "WPA2PSK") == 0)
  1656. cred.auth_type = WPS_AUTH_WPA2PSK;
  1657. else
  1658. return -1;
  1659. if (os_strcmp(settings->encr, "NONE") == 0)
  1660. cred.encr_type = WPS_ENCR_NONE;
  1661. #ifdef CONFIG_TESTING_OPTIONS
  1662. else if (os_strcmp(settings->encr, "WEP") == 0)
  1663. cred.encr_type = WPS_ENCR_WEP;
  1664. #endif /* CONFIG_TESTING_OPTIONS */
  1665. else if (os_strcmp(settings->encr, "TKIP") == 0)
  1666. cred.encr_type = WPS_ENCR_TKIP;
  1667. else if (os_strcmp(settings->encr, "CCMP") == 0)
  1668. cred.encr_type = WPS_ENCR_AES;
  1669. else
  1670. return -1;
  1671. return wps_er_config(wpa_s->wps_er, use_uuid, use_addr,
  1672. (const u8 *) pin, os_strlen(pin), &cred);
  1673. }
  1674. #ifdef CONFIG_WPS_NFC
  1675. struct wpabuf * wpas_wps_er_nfc_config_token(struct wpa_supplicant *wpa_s,
  1676. int ndef, const char *uuid)
  1677. {
  1678. struct wpabuf *ret;
  1679. u8 u[UUID_LEN], *use_uuid = NULL;
  1680. u8 addr[ETH_ALEN], *use_addr = NULL;
  1681. if (!wpa_s->wps_er)
  1682. return NULL;
  1683. if (uuid_str2bin(uuid, u) == 0)
  1684. use_uuid = u;
  1685. else if (hwaddr_aton(uuid, addr) == 0)
  1686. use_addr = addr;
  1687. else
  1688. return NULL;
  1689. ret = wps_er_nfc_config_token(wpa_s->wps_er, use_uuid, use_addr);
  1690. if (ndef && ret) {
  1691. struct wpabuf *tmp;
  1692. tmp = ndef_build_wifi(ret);
  1693. wpabuf_free(ret);
  1694. if (tmp == NULL)
  1695. return NULL;
  1696. ret = tmp;
  1697. }
  1698. return ret;
  1699. }
  1700. #endif /* CONFIG_WPS_NFC */
  1701. static int callbacks_pending = 0;
  1702. static void wpas_wps_terminate_cb(void *ctx)
  1703. {
  1704. wpa_printf(MSG_DEBUG, "WPS ER: Terminated");
  1705. if (--callbacks_pending <= 0)
  1706. eloop_terminate();
  1707. }
  1708. #endif /* CONFIG_WPS_ER */
  1709. int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s)
  1710. {
  1711. #ifdef CONFIG_WPS_ER
  1712. if (wpa_s->wps_er) {
  1713. callbacks_pending++;
  1714. wps_er_deinit(wpa_s->wps_er, wpas_wps_terminate_cb, wpa_s);
  1715. wpa_s->wps_er = NULL;
  1716. return 1;
  1717. }
  1718. #endif /* CONFIG_WPS_ER */
  1719. return 0;
  1720. }
  1721. void wpas_wps_update_config(struct wpa_supplicant *wpa_s)
  1722. {
  1723. struct wps_context *wps = wpa_s->wps;
  1724. if (wps == NULL)
  1725. return;
  1726. if (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS) {
  1727. wps->config_methods = wps_config_methods_str2bin(
  1728. wpa_s->conf->config_methods);
  1729. if ((wps->config_methods &
  1730. (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
  1731. (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
  1732. wpa_printf(MSG_ERROR, "WPS: Both Label and Display "
  1733. "config methods are not allowed at the "
  1734. "same time");
  1735. wps->config_methods &= ~WPS_CONFIG_LABEL;
  1736. }
  1737. }
  1738. wps->config_methods = wps_fix_config_methods(wps->config_methods);
  1739. wps->dev.config_methods = wps->config_methods;
  1740. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE)
  1741. os_memcpy(wps->dev.pri_dev_type, wpa_s->conf->device_type,
  1742. WPS_DEV_TYPE_LEN);
  1743. if (wpa_s->conf->changed_parameters & CFG_CHANGED_SEC_DEVICE_TYPE) {
  1744. wps->dev.num_sec_dev_types = wpa_s->conf->num_sec_device_types;
  1745. os_memcpy(wps->dev.sec_dev_type, wpa_s->conf->sec_device_type,
  1746. wps->dev.num_sec_dev_types * WPS_DEV_TYPE_LEN);
  1747. }
  1748. if (wpa_s->conf->changed_parameters & CFG_CHANGED_VENDOR_EXTENSION)
  1749. wpas_wps_set_vendor_ext_m1(wpa_s, wps);
  1750. if (wpa_s->conf->changed_parameters & CFG_CHANGED_OS_VERSION)
  1751. wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
  1752. if (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID)
  1753. wpas_wps_set_uuid(wpa_s, wps);
  1754. if (wpa_s->conf->changed_parameters &
  1755. (CFG_CHANGED_DEVICE_NAME | CFG_CHANGED_WPS_STRING)) {
  1756. /* Update pointers to make sure they refer current values */
  1757. wps->dev.device_name = wpa_s->conf->device_name;
  1758. wps->dev.manufacturer = wpa_s->conf->manufacturer;
  1759. wps->dev.model_name = wpa_s->conf->model_name;
  1760. wps->dev.model_number = wpa_s->conf->model_number;
  1761. wps->dev.serial_number = wpa_s->conf->serial_number;
  1762. }
  1763. }
  1764. #ifdef CONFIG_WPS_NFC
  1765. #ifdef CONFIG_WPS_ER
  1766. static struct wpabuf *
  1767. wpas_wps_network_config_token(struct wpa_supplicant *wpa_s, int ndef,
  1768. struct wpa_ssid *ssid)
  1769. {
  1770. struct wpabuf *ret;
  1771. struct wps_credential cred;
  1772. if (wpas_wps_network_to_cred(ssid, &cred) < 0)
  1773. return NULL;
  1774. ret = wps_er_config_token_from_cred(wpa_s->wps, &cred);
  1775. if (ndef && ret) {
  1776. struct wpabuf *tmp;
  1777. tmp = ndef_build_wifi(ret);
  1778. wpabuf_free(ret);
  1779. if (tmp == NULL)
  1780. return NULL;
  1781. ret = tmp;
  1782. }
  1783. return ret;
  1784. }
  1785. #endif /* CONFIG_WPS_ER */
  1786. struct wpabuf * wpas_wps_nfc_config_token(struct wpa_supplicant *wpa_s,
  1787. int ndef, const char *id_str)
  1788. {
  1789. #ifdef CONFIG_WPS_ER
  1790. if (id_str) {
  1791. int id;
  1792. char *end = NULL;
  1793. struct wpa_ssid *ssid;
  1794. id = strtol(id_str, &end, 10);
  1795. if (end && *end)
  1796. return NULL;
  1797. ssid = wpa_config_get_network(wpa_s->conf, id);
  1798. if (ssid == NULL)
  1799. return NULL;
  1800. return wpas_wps_network_config_token(wpa_s, ndef, ssid);
  1801. }
  1802. #endif /* CONFIG_WPS_ER */
  1803. #ifdef CONFIG_AP
  1804. if (wpa_s->ap_iface)
  1805. return wpas_ap_wps_nfc_config_token(wpa_s, ndef);
  1806. #endif /* CONFIG_AP */
  1807. return NULL;
  1808. }
  1809. struct wpabuf * wpas_wps_nfc_token(struct wpa_supplicant *wpa_s, int ndef)
  1810. {
  1811. if (wpa_s->conf->wps_nfc_pw_from_config) {
  1812. return wps_nfc_token_build(ndef,
  1813. wpa_s->conf->wps_nfc_dev_pw_id,
  1814. wpa_s->conf->wps_nfc_dh_pubkey,
  1815. wpa_s->conf->wps_nfc_dev_pw);
  1816. }
  1817. return wps_nfc_token_gen(ndef, &wpa_s->conf->wps_nfc_dev_pw_id,
  1818. &wpa_s->conf->wps_nfc_dh_pubkey,
  1819. &wpa_s->conf->wps_nfc_dh_privkey,
  1820. &wpa_s->conf->wps_nfc_dev_pw);
  1821. }
  1822. int wpas_wps_start_nfc(struct wpa_supplicant *wpa_s, const u8 *go_dev_addr,
  1823. const u8 *bssid,
  1824. const struct wpabuf *dev_pw, u16 dev_pw_id,
  1825. int p2p_group, const u8 *peer_pubkey_hash,
  1826. const u8 *ssid, size_t ssid_len, int freq)
  1827. {
  1828. struct wps_context *wps = wpa_s->wps;
  1829. char pw[32 * 2 + 1];
  1830. if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER && dev_pw == NULL) {
  1831. dev_pw = wpa_s->conf->wps_nfc_dev_pw;
  1832. dev_pw_id = wpa_s->conf->wps_nfc_dev_pw_id;
  1833. }
  1834. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL ||
  1835. wpa_s->conf->wps_nfc_dh_privkey == NULL) {
  1836. wpa_printf(MSG_DEBUG, "WPS: Missing DH params - "
  1837. "cannot start NFC-triggered connection");
  1838. return -1;
  1839. }
  1840. if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER && dev_pw == NULL) {
  1841. wpa_printf(MSG_DEBUG, "WPS: Missing Device Password (id=%u) - "
  1842. "cannot start NFC-triggered connection", dev_pw_id);
  1843. return -1;
  1844. }
  1845. dh5_free(wps->dh_ctx);
  1846. wpabuf_free(wps->dh_pubkey);
  1847. wpabuf_free(wps->dh_privkey);
  1848. wps->dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
  1849. wps->dh_pubkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
  1850. if (wps->dh_privkey == NULL || wps->dh_pubkey == NULL) {
  1851. wps->dh_ctx = NULL;
  1852. wpabuf_free(wps->dh_pubkey);
  1853. wps->dh_pubkey = NULL;
  1854. wpabuf_free(wps->dh_privkey);
  1855. wps->dh_privkey = NULL;
  1856. wpa_printf(MSG_DEBUG, "WPS: Failed to get DH priv/pub key");
  1857. return -1;
  1858. }
  1859. wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, wps->dh_pubkey);
  1860. if (wps->dh_ctx == NULL) {
  1861. wpabuf_free(wps->dh_pubkey);
  1862. wps->dh_pubkey = NULL;
  1863. wpabuf_free(wps->dh_privkey);
  1864. wps->dh_privkey = NULL;
  1865. wpa_printf(MSG_DEBUG, "WPS: Failed to initialize DH context");
  1866. return -1;
  1867. }
  1868. if (dev_pw) {
  1869. wpa_snprintf_hex_uppercase(pw, sizeof(pw),
  1870. wpabuf_head(dev_pw),
  1871. wpabuf_len(dev_pw));
  1872. }
  1873. return wpas_wps_start_dev_pw(wpa_s, go_dev_addr, bssid,
  1874. dev_pw ? pw : NULL,
  1875. p2p_group, dev_pw_id, peer_pubkey_hash,
  1876. ssid, ssid_len, freq);
  1877. }
  1878. static int wpas_wps_use_cred(struct wpa_supplicant *wpa_s,
  1879. struct wps_parse_attr *attr)
  1880. {
  1881. /*
  1882. * Disable existing networks temporarily to allow the newly learned
  1883. * credential to be preferred. Enable the temporarily disabled networks
  1884. * after 10 seconds.
  1885. */
  1886. wpas_wps_temp_disable(wpa_s, NULL);
  1887. eloop_register_timeout(10, 0, wpas_wps_reenable_networks_cb, wpa_s,
  1888. NULL);
  1889. if (wps_oob_use_cred(wpa_s->wps, attr) < 0)
  1890. return -1;
  1891. if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED)
  1892. return 0;
  1893. if (attr->ap_channel) {
  1894. u16 chan = WPA_GET_BE16(attr->ap_channel);
  1895. int freq = 0;
  1896. if (chan >= 1 && chan <= 13)
  1897. freq = 2407 + 5 * chan;
  1898. else if (chan == 14)
  1899. freq = 2484;
  1900. else if (chan >= 30)
  1901. freq = 5000 + 5 * chan;
  1902. if (freq) {
  1903. wpa_printf(MSG_DEBUG, "WPS: Credential container indicated AP channel %u -> %u MHz",
  1904. chan, freq);
  1905. wpa_s->after_wps = 5;
  1906. wpa_s->wps_freq = freq;
  1907. }
  1908. }
  1909. wpa_printf(MSG_DEBUG, "WPS: Request reconnection with new network "
  1910. "based on the received credential added");
  1911. wpa_s->normal_scans = 0;
  1912. wpa_supplicant_reinit_autoscan(wpa_s);
  1913. wpa_s->disconnected = 0;
  1914. wpa_s->reassociate = 1;
  1915. wpa_supplicant_cancel_sched_scan(wpa_s);
  1916. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1917. return 0;
  1918. }
  1919. #ifdef CONFIG_WPS_ER
  1920. static int wpas_wps_add_nfc_password_token(struct wpa_supplicant *wpa_s,
  1921. struct wps_parse_attr *attr)
  1922. {
  1923. return wps_registrar_add_nfc_password_token(
  1924. wpa_s->wps->registrar, attr->oob_dev_password,
  1925. attr->oob_dev_password_len);
  1926. }
  1927. #endif /* CONFIG_WPS_ER */
  1928. static int wpas_wps_nfc_tag_process(struct wpa_supplicant *wpa_s,
  1929. const struct wpabuf *wps)
  1930. {
  1931. struct wps_parse_attr attr;
  1932. wpa_hexdump_buf(MSG_DEBUG, "WPS: Received NFC tag payload", wps);
  1933. if (wps_parse_msg(wps, &attr)) {
  1934. wpa_printf(MSG_DEBUG, "WPS: Ignore invalid data from NFC tag");
  1935. return -1;
  1936. }
  1937. if (attr.num_cred)
  1938. return wpas_wps_use_cred(wpa_s, &attr);
  1939. #ifdef CONFIG_WPS_ER
  1940. if (attr.oob_dev_password)
  1941. return wpas_wps_add_nfc_password_token(wpa_s, &attr);
  1942. #endif /* CONFIG_WPS_ER */
  1943. wpa_printf(MSG_DEBUG, "WPS: Ignore unrecognized NFC tag");
  1944. return -1;
  1945. }
  1946. int wpas_wps_nfc_tag_read(struct wpa_supplicant *wpa_s,
  1947. const struct wpabuf *data, int forced_freq)
  1948. {
  1949. const struct wpabuf *wps = data;
  1950. struct wpabuf *tmp = NULL;
  1951. int ret;
  1952. if (wpabuf_len(data) < 4)
  1953. return -1;
  1954. if (*wpabuf_head_u8(data) != 0x10) {
  1955. /* Assume this contains full NDEF record */
  1956. tmp = ndef_parse_wifi(data);
  1957. if (tmp == NULL) {
  1958. #ifdef CONFIG_P2P
  1959. tmp = ndef_parse_p2p(data);
  1960. if (tmp) {
  1961. ret = wpas_p2p_nfc_tag_process(wpa_s, tmp,
  1962. forced_freq);
  1963. wpabuf_free(tmp);
  1964. return ret;
  1965. }
  1966. #endif /* CONFIG_P2P */
  1967. wpa_printf(MSG_DEBUG, "WPS: Could not parse NDEF");
  1968. return -1;
  1969. }
  1970. wps = tmp;
  1971. }
  1972. ret = wpas_wps_nfc_tag_process(wpa_s, wps);
  1973. wpabuf_free(tmp);
  1974. return ret;
  1975. }
  1976. struct wpabuf * wpas_wps_nfc_handover_req(struct wpa_supplicant *wpa_s,
  1977. int ndef)
  1978. {
  1979. struct wpabuf *ret;
  1980. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL &&
  1981. wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
  1982. &wpa_s->conf->wps_nfc_dh_privkey) < 0)
  1983. return NULL;
  1984. ret = wps_build_nfc_handover_req(wpa_s->wps,
  1985. wpa_s->conf->wps_nfc_dh_pubkey);
  1986. if (ndef && ret) {
  1987. struct wpabuf *tmp;
  1988. tmp = ndef_build_wifi(ret);
  1989. wpabuf_free(ret);
  1990. if (tmp == NULL)
  1991. return NULL;
  1992. ret = tmp;
  1993. }
  1994. return ret;
  1995. }
  1996. #ifdef CONFIG_WPS_NFC
  1997. static struct wpabuf *
  1998. wpas_wps_er_nfc_handover_sel(struct wpa_supplicant *wpa_s, int ndef,
  1999. const char *uuid)
  2000. {
  2001. #ifdef CONFIG_WPS_ER
  2002. struct wpabuf *ret;
  2003. u8 u[UUID_LEN], *use_uuid = NULL;
  2004. u8 addr[ETH_ALEN], *use_addr = NULL;
  2005. struct wps_context *wps = wpa_s->wps;
  2006. if (wps == NULL)
  2007. return NULL;
  2008. if (uuid == NULL)
  2009. return NULL;
  2010. if (uuid_str2bin(uuid, u) == 0)
  2011. use_uuid = u;
  2012. else if (hwaddr_aton(uuid, addr) == 0)
  2013. use_addr = addr;
  2014. else
  2015. return NULL;
  2016. if (wpa_s->conf->wps_nfc_dh_pubkey == NULL) {
  2017. if (wps_nfc_gen_dh(&wpa_s->conf->wps_nfc_dh_pubkey,
  2018. &wpa_s->conf->wps_nfc_dh_privkey) < 0)
  2019. return NULL;
  2020. }
  2021. wpas_wps_nfc_clear(wps);
  2022. wps->ap_nfc_dev_pw_id = DEV_PW_NFC_CONNECTION_HANDOVER;
  2023. wps->ap_nfc_dh_pubkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_pubkey);
  2024. wps->ap_nfc_dh_privkey = wpabuf_dup(wpa_s->conf->wps_nfc_dh_privkey);
  2025. if (!wps->ap_nfc_dh_pubkey || !wps->ap_nfc_dh_privkey) {
  2026. wpas_wps_nfc_clear(wps);
  2027. return NULL;
  2028. }
  2029. ret = wps_er_nfc_handover_sel(wpa_s->wps_er, wpa_s->wps, use_uuid,
  2030. use_addr, wpa_s->conf->wps_nfc_dh_pubkey);
  2031. if (ndef && ret) {
  2032. struct wpabuf *tmp;
  2033. tmp = ndef_build_wifi(ret);
  2034. wpabuf_free(ret);
  2035. if (tmp == NULL)
  2036. return NULL;
  2037. ret = tmp;
  2038. }
  2039. return ret;
  2040. #else /* CONFIG_WPS_ER */
  2041. return NULL;
  2042. #endif /* CONFIG_WPS_ER */
  2043. }
  2044. #endif /* CONFIG_WPS_NFC */
  2045. struct wpabuf * wpas_wps_nfc_handover_sel(struct wpa_supplicant *wpa_s,
  2046. int ndef, int cr, const char *uuid)
  2047. {
  2048. struct wpabuf *ret;
  2049. if (!cr)
  2050. return NULL;
  2051. ret = wpas_ap_wps_nfc_handover_sel(wpa_s, ndef);
  2052. if (ret)
  2053. return ret;
  2054. return wpas_wps_er_nfc_handover_sel(wpa_s, ndef, uuid);
  2055. }
  2056. static int wpas_wps_nfc_rx_handover_sel(struct wpa_supplicant *wpa_s,
  2057. const struct wpabuf *data)
  2058. {
  2059. struct wpabuf *wps;
  2060. int ret = -1;
  2061. u16 wsc_len;
  2062. const u8 *pos;
  2063. struct wpabuf msg;
  2064. struct wps_parse_attr attr;
  2065. u16 dev_pw_id;
  2066. const u8 *bssid = NULL;
  2067. int freq = 0;
  2068. wps = ndef_parse_wifi(data);
  2069. if (wps == NULL)
  2070. return -1;
  2071. wpa_printf(MSG_DEBUG, "WPS: Received application/vnd.wfa.wsc "
  2072. "payload from NFC connection handover");
  2073. wpa_hexdump_buf(MSG_DEBUG, "WPS: NFC payload", wps);
  2074. if (wpabuf_len(wps) < 2) {
  2075. wpa_printf(MSG_DEBUG, "WPS: Too short Wi-Fi Handover Select "
  2076. "Message");
  2077. goto out;
  2078. }
  2079. pos = wpabuf_head(wps);
  2080. wsc_len = WPA_GET_BE16(pos);
  2081. if (wsc_len > wpabuf_len(wps) - 2) {
  2082. wpa_printf(MSG_DEBUG, "WPS: Invalid WSC attribute length (%u) "
  2083. "in Wi-Fi Handover Select Message", wsc_len);
  2084. goto out;
  2085. }
  2086. pos += 2;
  2087. wpa_hexdump(MSG_DEBUG,
  2088. "WPS: WSC attributes in Wi-Fi Handover Select Message",
  2089. pos, wsc_len);
  2090. if (wsc_len < wpabuf_len(wps) - 2) {
  2091. wpa_hexdump(MSG_DEBUG,
  2092. "WPS: Ignore extra data after WSC attributes",
  2093. pos + wsc_len, wpabuf_len(wps) - 2 - wsc_len);
  2094. }
  2095. wpabuf_set(&msg, pos, wsc_len);
  2096. ret = wps_parse_msg(&msg, &attr);
  2097. if (ret < 0) {
  2098. wpa_printf(MSG_DEBUG, "WPS: Could not parse WSC attributes in "
  2099. "Wi-Fi Handover Select Message");
  2100. goto out;
  2101. }
  2102. if (attr.oob_dev_password == NULL ||
  2103. attr.oob_dev_password_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
  2104. wpa_printf(MSG_DEBUG, "WPS: No Out-of-Band Device Password "
  2105. "included in Wi-Fi Handover Select Message");
  2106. ret = -1;
  2107. goto out;
  2108. }
  2109. if (attr.ssid == NULL) {
  2110. wpa_printf(MSG_DEBUG, "WPS: No SSID included in Wi-Fi Handover "
  2111. "Select Message");
  2112. ret = -1;
  2113. goto out;
  2114. }
  2115. wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", attr.ssid, attr.ssid_len);
  2116. if (attr.mac_addr) {
  2117. bssid = attr.mac_addr;
  2118. wpa_printf(MSG_DEBUG, "WPS: MAC Address (BSSID): " MACSTR,
  2119. MAC2STR(bssid));
  2120. }
  2121. if (attr.rf_bands)
  2122. wpa_printf(MSG_DEBUG, "WPS: RF Bands: %d", *attr.rf_bands);
  2123. if (attr.ap_channel) {
  2124. u16 chan = WPA_GET_BE16(attr.ap_channel);
  2125. wpa_printf(MSG_DEBUG, "WPS: AP Channel: %d", chan);
  2126. if (chan >= 1 && chan <= 13 &&
  2127. (attr.rf_bands == NULL || *attr.rf_bands & WPS_RF_24GHZ))
  2128. freq = 2407 + 5 * chan;
  2129. else if (chan == 14 &&
  2130. (attr.rf_bands == NULL ||
  2131. *attr.rf_bands & WPS_RF_24GHZ))
  2132. freq = 2484;
  2133. else if (chan >= 30 &&
  2134. (attr.rf_bands == NULL ||
  2135. *attr.rf_bands & WPS_RF_50GHZ))
  2136. freq = 5000 + 5 * chan;
  2137. if (freq) {
  2138. wpa_printf(MSG_DEBUG,
  2139. "WPS: AP indicated channel %u -> %u MHz",
  2140. chan, freq);
  2141. }
  2142. }
  2143. wpa_hexdump(MSG_DEBUG, "WPS: Out-of-Band Device Password",
  2144. attr.oob_dev_password, attr.oob_dev_password_len);
  2145. dev_pw_id = WPA_GET_BE16(attr.oob_dev_password +
  2146. WPS_OOB_PUBKEY_HASH_LEN);
  2147. if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER) {
  2148. wpa_printf(MSG_DEBUG, "WPS: Unexpected OOB Device Password ID "
  2149. "%u in Wi-Fi Handover Select Message", dev_pw_id);
  2150. ret = -1;
  2151. goto out;
  2152. }
  2153. wpa_hexdump(MSG_DEBUG, "WPS: AP Public Key hash",
  2154. attr.oob_dev_password, WPS_OOB_PUBKEY_HASH_LEN);
  2155. ret = wpas_wps_start_nfc(wpa_s, NULL, bssid, NULL, dev_pw_id, 0,
  2156. attr.oob_dev_password,
  2157. attr.ssid, attr.ssid_len, freq);
  2158. out:
  2159. wpabuf_free(wps);
  2160. return ret;
  2161. }
  2162. int wpas_wps_nfc_report_handover(struct wpa_supplicant *wpa_s,
  2163. const struct wpabuf *req,
  2164. const struct wpabuf *sel)
  2165. {
  2166. wpa_printf(MSG_DEBUG, "NFC: WPS connection handover reported");
  2167. wpa_hexdump_buf_key(MSG_DEBUG, "WPS: Carrier record in request", req);
  2168. wpa_hexdump_buf_key(MSG_DEBUG, "WPS: Carrier record in select", sel);
  2169. return wpas_wps_nfc_rx_handover_sel(wpa_s, sel);
  2170. }
  2171. int wpas_er_wps_nfc_report_handover(struct wpa_supplicant *wpa_s,
  2172. const struct wpabuf *req,
  2173. const struct wpabuf *sel)
  2174. {
  2175. struct wpabuf *wps;
  2176. int ret = -1;
  2177. u16 wsc_len;
  2178. const u8 *pos;
  2179. struct wpabuf msg;
  2180. struct wps_parse_attr attr;
  2181. u16 dev_pw_id;
  2182. /*
  2183. * Enrollee/station is always initiator of the NFC connection handover,
  2184. * so use the request message here to find Enrollee public key hash.
  2185. */
  2186. wps = ndef_parse_wifi(req);
  2187. if (wps == NULL)
  2188. return -1;
  2189. wpa_printf(MSG_DEBUG, "WPS: Received application/vnd.wfa.wsc "
  2190. "payload from NFC connection handover");
  2191. wpa_hexdump_buf(MSG_DEBUG, "WPS: NFC payload", wps);
  2192. if (wpabuf_len(wps) < 2) {
  2193. wpa_printf(MSG_DEBUG, "WPS: Too short Wi-Fi Handover Request "
  2194. "Message");
  2195. goto out;
  2196. }
  2197. pos = wpabuf_head(wps);
  2198. wsc_len = WPA_GET_BE16(pos);
  2199. if (wsc_len > wpabuf_len(wps) - 2) {
  2200. wpa_printf(MSG_DEBUG, "WPS: Invalid WSC attribute length (%u) "
  2201. "in rt Wi-Fi Handover Request Message", wsc_len);
  2202. goto out;
  2203. }
  2204. pos += 2;
  2205. wpa_hexdump(MSG_DEBUG,
  2206. "WPS: WSC attributes in Wi-Fi Handover Request Message",
  2207. pos, wsc_len);
  2208. if (wsc_len < wpabuf_len(wps) - 2) {
  2209. wpa_hexdump(MSG_DEBUG,
  2210. "WPS: Ignore extra data after WSC attributes",
  2211. pos + wsc_len, wpabuf_len(wps) - 2 - wsc_len);
  2212. }
  2213. wpabuf_set(&msg, pos, wsc_len);
  2214. ret = wps_parse_msg(&msg, &attr);
  2215. if (ret < 0) {
  2216. wpa_printf(MSG_DEBUG, "WPS: Could not parse WSC attributes in "
  2217. "Wi-Fi Handover Request Message");
  2218. goto out;
  2219. }
  2220. if (attr.oob_dev_password == NULL ||
  2221. attr.oob_dev_password_len < WPS_OOB_PUBKEY_HASH_LEN + 2) {
  2222. wpa_printf(MSG_DEBUG, "WPS: No Out-of-Band Device Password "
  2223. "included in Wi-Fi Handover Request Message");
  2224. ret = -1;
  2225. goto out;
  2226. }
  2227. if (attr.uuid_e == NULL) {
  2228. wpa_printf(MSG_DEBUG, "WPS: No UUID-E included in Wi-Fi "
  2229. "Handover Request Message");
  2230. ret = -1;
  2231. goto out;
  2232. }
  2233. wpa_hexdump(MSG_DEBUG, "WPS: UUID-E", attr.uuid_e, WPS_UUID_LEN);
  2234. wpa_hexdump(MSG_DEBUG, "WPS: Out-of-Band Device Password",
  2235. attr.oob_dev_password, attr.oob_dev_password_len);
  2236. dev_pw_id = WPA_GET_BE16(attr.oob_dev_password +
  2237. WPS_OOB_PUBKEY_HASH_LEN);
  2238. if (dev_pw_id != DEV_PW_NFC_CONNECTION_HANDOVER) {
  2239. wpa_printf(MSG_DEBUG, "WPS: Unexpected OOB Device Password ID "
  2240. "%u in Wi-Fi Handover Request Message", dev_pw_id);
  2241. ret = -1;
  2242. goto out;
  2243. }
  2244. wpa_hexdump(MSG_DEBUG, "WPS: Enrollee Public Key hash",
  2245. attr.oob_dev_password, WPS_OOB_PUBKEY_HASH_LEN);
  2246. ret = wps_registrar_add_nfc_pw_token(wpa_s->wps->registrar,
  2247. attr.oob_dev_password,
  2248. DEV_PW_NFC_CONNECTION_HANDOVER,
  2249. NULL, 0, 1);
  2250. out:
  2251. wpabuf_free(wps);
  2252. return ret;
  2253. }
  2254. #endif /* CONFIG_WPS_NFC */
  2255. static void wpas_wps_dump_ap_info(struct wpa_supplicant *wpa_s)
  2256. {
  2257. size_t i;
  2258. struct os_reltime now;
  2259. if (wpa_debug_level > MSG_DEBUG)
  2260. return;
  2261. if (wpa_s->wps_ap == NULL)
  2262. return;
  2263. os_get_reltime(&now);
  2264. for (i = 0; i < wpa_s->num_wps_ap; i++) {
  2265. struct wps_ap_info *ap = &wpa_s->wps_ap[i];
  2266. struct wpa_blacklist *e = wpa_blacklist_get(wpa_s, ap->bssid);
  2267. wpa_printf(MSG_DEBUG, "WPS: AP[%d] " MACSTR " type=%d "
  2268. "tries=%d last_attempt=%d sec ago blacklist=%d",
  2269. (int) i, MAC2STR(ap->bssid), ap->type, ap->tries,
  2270. ap->last_attempt.sec > 0 ?
  2271. (int) now.sec - (int) ap->last_attempt.sec : -1,
  2272. e ? e->count : 0);
  2273. }
  2274. }
  2275. static struct wps_ap_info * wpas_wps_get_ap_info(struct wpa_supplicant *wpa_s,
  2276. const u8 *bssid)
  2277. {
  2278. size_t i;
  2279. if (wpa_s->wps_ap == NULL)
  2280. return NULL;
  2281. for (i = 0; i < wpa_s->num_wps_ap; i++) {
  2282. struct wps_ap_info *ap = &wpa_s->wps_ap[i];
  2283. if (os_memcmp(ap->bssid, bssid, ETH_ALEN) == 0)
  2284. return ap;
  2285. }
  2286. return NULL;
  2287. }
  2288. static void wpas_wps_update_ap_info_bss(struct wpa_supplicant *wpa_s,
  2289. struct wpa_scan_res *res)
  2290. {
  2291. struct wpabuf *wps;
  2292. enum wps_ap_info_type type;
  2293. struct wps_ap_info *ap;
  2294. int r;
  2295. if (wpa_scan_get_vendor_ie(res, WPS_IE_VENDOR_TYPE) == NULL)
  2296. return;
  2297. wps = wpa_scan_get_vendor_ie_multi(res, WPS_IE_VENDOR_TYPE);
  2298. if (wps == NULL)
  2299. return;
  2300. r = wps_is_addr_authorized(wps, wpa_s->own_addr, 1);
  2301. if (r == 2)
  2302. type = WPS_AP_SEL_REG_OUR;
  2303. else if (r == 1)
  2304. type = WPS_AP_SEL_REG;
  2305. else
  2306. type = WPS_AP_NOT_SEL_REG;
  2307. wpabuf_free(wps);
  2308. ap = wpas_wps_get_ap_info(wpa_s, res->bssid);
  2309. if (ap) {
  2310. if (ap->type != type) {
  2311. wpa_printf(MSG_DEBUG, "WPS: AP " MACSTR
  2312. " changed type %d -> %d",
  2313. MAC2STR(res->bssid), ap->type, type);
  2314. ap->type = type;
  2315. if (type != WPS_AP_NOT_SEL_REG)
  2316. wpa_blacklist_del(wpa_s, ap->bssid);
  2317. }
  2318. return;
  2319. }
  2320. ap = os_realloc_array(wpa_s->wps_ap, wpa_s->num_wps_ap + 1,
  2321. sizeof(struct wps_ap_info));
  2322. if (ap == NULL)
  2323. return;
  2324. wpa_s->wps_ap = ap;
  2325. ap = &wpa_s->wps_ap[wpa_s->num_wps_ap];
  2326. wpa_s->num_wps_ap++;
  2327. os_memset(ap, 0, sizeof(*ap));
  2328. os_memcpy(ap->bssid, res->bssid, ETH_ALEN);
  2329. ap->type = type;
  2330. wpa_printf(MSG_DEBUG, "WPS: AP " MACSTR " type %d added",
  2331. MAC2STR(ap->bssid), ap->type);
  2332. }
  2333. void wpas_wps_update_ap_info(struct wpa_supplicant *wpa_s,
  2334. struct wpa_scan_results *scan_res)
  2335. {
  2336. size_t i;
  2337. for (i = 0; i < scan_res->num; i++)
  2338. wpas_wps_update_ap_info_bss(wpa_s, scan_res->res[i]);
  2339. wpas_wps_dump_ap_info(wpa_s);
  2340. }
  2341. void wpas_wps_notify_assoc(struct wpa_supplicant *wpa_s, const u8 *bssid)
  2342. {
  2343. struct wps_ap_info *ap;
  2344. wpa_s->after_wps = 0;
  2345. if (!wpa_s->wps_ap_iter)
  2346. return;
  2347. ap = wpas_wps_get_ap_info(wpa_s, bssid);
  2348. if (ap == NULL)
  2349. return;
  2350. ap->tries++;
  2351. os_get_reltime(&ap->last_attempt);
  2352. }