wps_supplicant.c 68 KB

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