wps_supplicant.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. /*
  2. * wpa_supplicant / WPS integration
  3. * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "ieee802_11_defs.h"
  17. #include "wpa_common.h"
  18. #include "config.h"
  19. #include "eap_peer/eap.h"
  20. #include "wpa_supplicant_i.h"
  21. #include "eloop.h"
  22. #include "wpa_ctrl.h"
  23. #include "eap_common/eap_wsc_common.h"
  24. #include "wps/wps.h"
  25. #include "wps/wps_defs.h"
  26. #include "wps_supplicant.h"
  27. static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx);
  28. static void wpas_clear_wps(struct wpa_supplicant *wpa_s);
  29. int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
  30. {
  31. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  32. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid &&
  33. !(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  34. wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
  35. "try to associate with the received credential");
  36. wpa_supplicant_deauthenticate(wpa_s,
  37. WLAN_REASON_DEAUTH_LEAVING);
  38. wpa_s->reassociate = 1;
  39. wpa_supplicant_req_scan(wpa_s, 0, 0);
  40. return 1;
  41. }
  42. return 0;
  43. }
  44. static int wpa_supplicant_wps_cred(void *ctx,
  45. const struct wps_credential *cred)
  46. {
  47. struct wpa_supplicant *wpa_s = ctx;
  48. struct wpa_ssid *ssid = wpa_s->current_ssid;
  49. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_CRED_RECEIVED);
  50. if (ssid && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  51. wpa_printf(MSG_DEBUG, "WPS: Replace WPS network block based "
  52. "on the received credential");
  53. os_free(ssid->eap.identity);
  54. ssid->eap.identity = NULL;
  55. ssid->eap.identity_len = 0;
  56. os_free(ssid->eap.phase1);
  57. ssid->eap.phase1 = NULL;
  58. os_free(ssid->eap.eap_methods);
  59. ssid->eap.eap_methods = NULL;
  60. } else {
  61. wpa_printf(MSG_DEBUG, "WPS: Create a new network based on the "
  62. "received credential");
  63. ssid = wpa_config_add_network(wpa_s->conf);
  64. if (ssid == NULL)
  65. return -1;
  66. }
  67. wpa_config_set_network_defaults(ssid);
  68. os_free(ssid->ssid);
  69. ssid->ssid = os_malloc(cred->ssid_len);
  70. if (ssid->ssid) {
  71. os_memcpy(ssid->ssid, cred->ssid, cred->ssid_len);
  72. ssid->ssid_len = cred->ssid_len;
  73. }
  74. switch (cred->encr_type) {
  75. case WPS_ENCR_NONE:
  76. ssid->pairwise_cipher = ssid->group_cipher = WPA_CIPHER_NONE;
  77. break;
  78. case WPS_ENCR_WEP:
  79. ssid->pairwise_cipher = ssid->group_cipher =
  80. WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104;
  81. if (cred->key_len > 0 && cred->key_len <= MAX_WEP_KEY_LEN &&
  82. cred->key_idx < NUM_WEP_KEYS) {
  83. os_memcpy(ssid->wep_key[cred->key_idx], cred->key,
  84. cred->key_len);
  85. ssid->wep_key_len[cred->key_idx] = cred->key_len;
  86. ssid->wep_tx_keyidx = cred->key_idx;
  87. }
  88. break;
  89. case WPS_ENCR_TKIP:
  90. ssid->pairwise_cipher = WPA_CIPHER_TKIP;
  91. ssid->group_cipher = WPA_CIPHER_TKIP;
  92. break;
  93. case WPS_ENCR_AES:
  94. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  95. ssid->group_cipher = WPA_CIPHER_CCMP | WPA_CIPHER_TKIP;
  96. break;
  97. }
  98. switch (cred->auth_type) {
  99. case WPS_AUTH_OPEN:
  100. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  101. ssid->key_mgmt = WPA_KEY_MGMT_NONE;
  102. ssid->proto = 0;
  103. break;
  104. case WPS_AUTH_SHARED:
  105. ssid->auth_alg = WPA_AUTH_ALG_SHARED;
  106. ssid->key_mgmt = WPA_KEY_MGMT_NONE;
  107. ssid->proto = 0;
  108. break;
  109. case WPS_AUTH_WPAPSK:
  110. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  111. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  112. ssid->proto = WPA_PROTO_WPA;
  113. break;
  114. case WPS_AUTH_WPA:
  115. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  116. ssid->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
  117. ssid->proto = WPA_PROTO_WPA;
  118. break;
  119. case WPS_AUTH_WPA2:
  120. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  121. ssid->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
  122. ssid->proto = WPA_PROTO_RSN;
  123. break;
  124. case WPS_AUTH_WPA2PSK:
  125. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  126. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  127. ssid->proto = WPA_PROTO_RSN;
  128. break;
  129. }
  130. if (ssid->key_mgmt == WPA_KEY_MGMT_PSK) {
  131. if (cred->key_len == 2 * PMK_LEN) {
  132. if (hexstr2bin((const char *) cred->key, ssid->psk,
  133. PMK_LEN)) {
  134. wpa_printf(MSG_ERROR, "WPS: Invalid Network "
  135. "Key");
  136. return -1;
  137. }
  138. ssid->psk_set = 1;
  139. } else if (cred->key_len >= 8 && cred->key_len < 2 * PMK_LEN) {
  140. os_free(ssid->passphrase);
  141. ssid->passphrase = os_malloc(cred->key_len + 1);
  142. if (ssid->passphrase == NULL)
  143. return -1;
  144. os_memcpy(ssid->passphrase, cred->key, cred->key_len);
  145. ssid->passphrase[cred->key_len] = '\0';
  146. wpa_config_update_psk(ssid);
  147. } else {
  148. wpa_printf(MSG_ERROR, "WPS: Invalid Network Key "
  149. "length %lu",
  150. (unsigned long) cred->key_len);
  151. return -1;
  152. }
  153. }
  154. #ifndef CONFIG_NO_CONFIG_WRITE
  155. if (wpa_s->conf->update_config &&
  156. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  157. wpa_printf(MSG_DEBUG, "WPS: Failed to update configuration");
  158. return -1;
  159. }
  160. #endif /* CONFIG_NO_CONFIG_WRITE */
  161. return 0;
  162. }
  163. static void wpa_supplicant_wps_event_m2d(struct wpa_supplicant *wpa_s,
  164. struct wps_event_m2d *m2d)
  165. {
  166. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_M2D
  167. "dev_password_id=%d config_error=%d",
  168. m2d->dev_password_id, m2d->config_error);
  169. }
  170. static void wpa_supplicant_wps_event_fail(struct wpa_supplicant *wpa_s,
  171. struct wps_event_fail *fail)
  172. {
  173. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_FAIL "msg=%d", fail->msg);
  174. wpas_clear_wps(wpa_s);
  175. }
  176. static void wpa_supplicant_wps_event(void *ctx, enum wps_event event,
  177. union wps_event_data *data)
  178. {
  179. struct wpa_supplicant *wpa_s = ctx;
  180. switch (event) {
  181. case WPS_EV_M2D:
  182. wpa_supplicant_wps_event_m2d(wpa_s, &data->m2d);
  183. break;
  184. case WPS_EV_FAIL:
  185. wpa_supplicant_wps_event_fail(wpa_s, &data->fail);
  186. break;
  187. }
  188. }
  189. u8 wpas_wps_get_req_type(struct wpa_ssid *ssid)
  190. {
  191. if (eap_is_wps_pbc_enrollee(&ssid->eap) ||
  192. eap_is_wps_pin_enrollee(&ssid->eap))
  193. return WPS_REQ_ENROLLEE;
  194. else
  195. return WPS_REQ_REGISTRAR;
  196. }
  197. static void wpas_clear_wps(struct wpa_supplicant *wpa_s)
  198. {
  199. int id;
  200. struct wpa_ssid *ssid;
  201. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  202. /* Remove any existing WPS network from configuration */
  203. ssid = wpa_s->conf->ssid;
  204. while (ssid) {
  205. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  206. if (ssid == wpa_s->current_ssid)
  207. wpa_s->current_ssid = NULL;
  208. id = ssid->id;
  209. } else
  210. id = -1;
  211. ssid = ssid->next;
  212. if (id >= 0)
  213. wpa_config_remove_network(wpa_s->conf, id);
  214. }
  215. }
  216. static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx)
  217. {
  218. struct wpa_supplicant *wpa_s = eloop_ctx;
  219. wpa_printf(MSG_DEBUG, "WPS: Requested operation timed out");
  220. wpas_clear_wps(wpa_s);
  221. }
  222. static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s,
  223. int registrar, const u8 *bssid)
  224. {
  225. struct wpa_ssid *ssid;
  226. ssid = wpa_config_add_network(wpa_s->conf);
  227. if (ssid == NULL)
  228. return NULL;
  229. wpa_config_set_network_defaults(ssid);
  230. if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 ||
  231. wpa_config_set(ssid, "eap", "WSC", 0) < 0 ||
  232. wpa_config_set(ssid, "identity", registrar ?
  233. "\"" WSC_ID_REGISTRAR "\"" :
  234. "\"" WSC_ID_ENROLLEE "\"", 0) < 0) {
  235. wpa_config_remove_network(wpa_s->conf, ssid->id);
  236. return NULL;
  237. }
  238. if (bssid) {
  239. size_t i;
  240. struct wpa_scan_res *res;
  241. os_memcpy(ssid->bssid, bssid, ETH_ALEN);
  242. /* Try to get SSID from scan results */
  243. if (wpa_s->scan_res == NULL &&
  244. wpa_supplicant_get_scan_results(wpa_s) < 0)
  245. return ssid; /* Could not find any scan results */
  246. for (i = 0; i < wpa_s->scan_res->num; i++) {
  247. const u8 *ie;
  248. res = wpa_s->scan_res->res[i];
  249. if (os_memcmp(bssid, res->bssid, ETH_ALEN) != 0)
  250. continue;
  251. ie = wpa_scan_get_ie(res, WLAN_EID_SSID);
  252. if (ie == NULL)
  253. break;
  254. os_free(ssid->ssid);
  255. ssid->ssid = os_malloc(ie[1]);
  256. if (ssid->ssid == NULL)
  257. break;
  258. os_memcpy(ssid->ssid, ie + 2, ie[1]);
  259. ssid->ssid_len = ie[1];
  260. break;
  261. }
  262. }
  263. return ssid;
  264. }
  265. static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s,
  266. struct wpa_ssid *selected)
  267. {
  268. struct wpa_ssid *ssid;
  269. /* Mark all other networks disabled and trigger reassociation */
  270. ssid = wpa_s->conf->ssid;
  271. while (ssid) {
  272. ssid->disabled = ssid != selected;
  273. ssid = ssid->next;
  274. }
  275. wpa_s->disconnected = 0;
  276. wpa_s->reassociate = 1;
  277. wpa_supplicant_req_scan(wpa_s, 0, 0);
  278. }
  279. int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid)
  280. {
  281. struct wpa_ssid *ssid;
  282. wpas_clear_wps(wpa_s);
  283. ssid = wpas_wps_add_network(wpa_s, 0, bssid);
  284. if (ssid == NULL)
  285. return -1;
  286. wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0);
  287. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  288. wpa_s, NULL);
  289. wpas_wps_reassoc(wpa_s, ssid);
  290. return 0;
  291. }
  292. int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
  293. const char *pin)
  294. {
  295. struct wpa_ssid *ssid;
  296. char val[30];
  297. unsigned int rpin = 0;
  298. wpas_clear_wps(wpa_s);
  299. ssid = wpas_wps_add_network(wpa_s, 0, bssid);
  300. if (ssid == NULL)
  301. return -1;
  302. if (pin)
  303. os_snprintf(val, sizeof(val), "\"pin=%s\"", pin);
  304. else {
  305. rpin = wps_generate_pin();
  306. os_snprintf(val, sizeof(val), "\"pin=%08d\"", rpin);
  307. }
  308. wpa_config_set(ssid, "phase1", val, 0);
  309. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  310. wpa_s, NULL);
  311. wpas_wps_reassoc(wpa_s, ssid);
  312. return rpin;
  313. }
  314. int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
  315. const char *pin)
  316. {
  317. struct wpa_ssid *ssid;
  318. char val[30];
  319. if (!pin)
  320. return -1;
  321. wpas_clear_wps(wpa_s);
  322. ssid = wpas_wps_add_network(wpa_s, 1, bssid);
  323. if (ssid == NULL)
  324. return -1;
  325. os_snprintf(val, sizeof(val), "\"pin=%s\"", pin);
  326. wpa_config_set(ssid, "phase1", val, 0);
  327. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  328. wpa_s, NULL);
  329. wpas_wps_reassoc(wpa_s, ssid);
  330. return 0;
  331. }
  332. int wpas_wps_init(struct wpa_supplicant *wpa_s)
  333. {
  334. struct wps_context *wps;
  335. wps = os_zalloc(sizeof(*wps));
  336. if (wps == NULL)
  337. return -1;
  338. wps->cred_cb = wpa_supplicant_wps_cred;
  339. wps->event_cb = wpa_supplicant_wps_event;
  340. wps->cb_ctx = wpa_s;
  341. wps->dev.device_name = wpa_s->conf->device_name;
  342. wps->dev.manufacturer = wpa_s->conf->manufacturer;
  343. wps->dev.model_name = wpa_s->conf->model_name;
  344. wps->dev.model_number = wpa_s->conf->model_number;
  345. wps->dev.serial_number = wpa_s->conf->serial_number;
  346. if (wpa_s->conf->device_type) {
  347. char *pos;
  348. u8 oui[4];
  349. /* <categ>-<OUI>-<subcateg> */
  350. wps->dev.categ = atoi(wpa_s->conf->device_type);
  351. pos = os_strchr(wpa_s->conf->device_type, '-');
  352. if (pos == NULL) {
  353. wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
  354. os_free(wps);
  355. return -1;
  356. }
  357. pos++;
  358. if (hexstr2bin(pos, oui, 4)) {
  359. wpa_printf(MSG_ERROR, "WPS: Invalid device_type OUI");
  360. os_free(wps);
  361. return -1;
  362. }
  363. wps->dev.oui = WPA_GET_BE32(oui);
  364. pos = os_strchr(pos, '-');
  365. if (pos == NULL) {
  366. wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
  367. os_free(wps);
  368. return -1;
  369. }
  370. pos++;
  371. wps->dev.sub_categ = atoi(pos);
  372. }
  373. wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
  374. wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ; /* TODO: config */
  375. os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
  376. os_memcpy(wps->uuid, wpa_s->conf->uuid, 16);
  377. wpa_s->wps = wps;
  378. return 0;
  379. }
  380. void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
  381. {
  382. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  383. if (wpa_s->wps == NULL)
  384. return;
  385. os_free(wpa_s->wps->network_key);
  386. os_free(wpa_s->wps);
  387. wpa_s->wps = NULL;
  388. }
  389. int wpas_wps_ssid_bss_match(struct wpa_ssid *ssid, struct wpa_scan_res *bss)
  390. {
  391. struct wpabuf *wps_ie;
  392. if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
  393. return -1;
  394. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  395. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  396. if (!wps_ie) {
  397. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  398. return 0;
  399. }
  400. if (!wps_is_selected_pbc_registrar(wps_ie)) {
  401. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  402. "without active PBC Registrar");
  403. wpabuf_free(wps_ie);
  404. return 0;
  405. }
  406. /* TODO: overlap detection */
  407. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  408. "(Active PBC)");
  409. wpabuf_free(wps_ie);
  410. return 1;
  411. }
  412. if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  413. if (!wps_ie) {
  414. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  415. return 0;
  416. }
  417. if (!wps_is_selected_pin_registrar(wps_ie)) {
  418. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  419. "without active PIN Registrar");
  420. wpabuf_free(wps_ie);
  421. return 0;
  422. }
  423. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  424. "(Active PIN)");
  425. wpabuf_free(wps_ie);
  426. return 1;
  427. }
  428. if (wps_ie) {
  429. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  430. wpabuf_free(wps_ie);
  431. return 1;
  432. }
  433. return -1;
  434. }
  435. int wpas_wps_ssid_wildcard_ok(struct wpa_ssid *ssid,
  436. struct wpa_scan_res *bss)
  437. {
  438. struct wpabuf *wps_ie = NULL;
  439. int ret = 0;
  440. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  441. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  442. if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) {
  443. /* allow wildcard SSID for WPS PBC */
  444. ret = 1;
  445. }
  446. } else if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  447. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  448. if (wps_ie && wps_is_selected_pin_registrar(wps_ie)) {
  449. /* allow wildcard SSID for WPS PIN */
  450. ret = 1;
  451. }
  452. }
  453. wpabuf_free(wps_ie);
  454. return ret;
  455. }
  456. int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
  457. struct wpa_scan_res *selected,
  458. struct wpa_ssid *ssid)
  459. {
  460. const u8 *sel_uuid, *uuid;
  461. size_t i;
  462. struct wpabuf *wps_ie;
  463. int ret = 0;
  464. if (!eap_is_wps_pbc_enrollee(&ssid->eap))
  465. return 0;
  466. /* Make sure that only one AP is in active PBC mode */
  467. wps_ie = wpa_scan_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE);
  468. if (wps_ie)
  469. sel_uuid = wps_get_uuid_e(wps_ie);
  470. else
  471. sel_uuid = NULL;
  472. if (!sel_uuid) {
  473. wpa_printf(MSG_DEBUG, "WPS: UUID-E not available for PBC "
  474. "overlap detection");
  475. wpabuf_free(wps_ie);
  476. return 1;
  477. }
  478. for (i = 0; i < wpa_s->scan_res->num; i++) {
  479. struct wpa_scan_res *bss = wpa_s->scan_res->res[i];
  480. struct wpabuf *ie;
  481. if (bss == selected)
  482. continue;
  483. ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  484. if (!ie)
  485. continue;
  486. if (!wps_is_selected_pbc_registrar(ie)) {
  487. wpabuf_free(ie);
  488. continue;
  489. }
  490. uuid = wps_get_uuid_e(ie);
  491. if (uuid == NULL) {
  492. wpa_printf(MSG_DEBUG, "WPS: UUID-E not available for "
  493. "PBC overlap detection (other BSS)");
  494. ret = 1;
  495. wpabuf_free(ie);
  496. break;
  497. }
  498. if (os_memcmp(sel_uuid, uuid, 16) != 0) {
  499. ret = 1; /* PBC overlap */
  500. wpabuf_free(ie);
  501. break;
  502. }
  503. /* TODO: verify that this is reasonable dual-band situation */
  504. wpabuf_free(ie);
  505. }
  506. wpabuf_free(wps_ie);
  507. return ret;
  508. }
  509. void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
  510. {
  511. size_t i;
  512. if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED)
  513. return;
  514. for (i = 0; i < wpa_s->scan_res->num; i++) {
  515. struct wpa_scan_res *bss = wpa_s->scan_res->res[i];
  516. struct wpabuf *ie;
  517. ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  518. if (!ie)
  519. continue;
  520. if (wps_is_selected_pbc_registrar(ie))
  521. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PBC);
  522. else if (wps_is_selected_pin_registrar(ie))
  523. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE_PIN);
  524. else
  525. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_AP_AVAILABLE);
  526. wpabuf_free(ie);
  527. break;
  528. }
  529. }