wps_supplicant.c 73 KB

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