wps_supplicant.c 73 KB

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