wps_supplicant.c 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286
  1. /*
  2. * wpa_supplicant / WPS integration
  3. * Copyright (c) 2008-2010, 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 "eloop.h"
  17. #include "uuid.h"
  18. #include "crypto/dh_group5.h"
  19. #include "common/ieee802_11_defs.h"
  20. #include "common/ieee802_11_common.h"
  21. #include "common/wpa_common.h"
  22. #include "common/wpa_ctrl.h"
  23. #include "eap_common/eap_wsc_common.h"
  24. #include "eap_peer/eap.h"
  25. #include "rsn_supp/wpa.h"
  26. #include "config.h"
  27. #include "wpa_supplicant_i.h"
  28. #include "driver_i.h"
  29. #include "notify.h"
  30. #include "blacklist.h"
  31. #include "bss.h"
  32. #include "scan.h"
  33. #include "wps_supplicant.h"
  34. #define WPS_PIN_SCAN_IGNORE_SEL_REG 3
  35. static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx);
  36. static void wpas_clear_wps(struct wpa_supplicant *wpa_s);
  37. int wpas_wps_eapol_cb(struct wpa_supplicant *wpa_s)
  38. {
  39. if (!wpa_s->wps_success &&
  40. wpa_s->current_ssid &&
  41. eap_is_wps_pin_enrollee(&wpa_s->current_ssid->eap)) {
  42. const u8 *bssid = wpa_s->bssid;
  43. if (is_zero_ether_addr(bssid))
  44. bssid = wpa_s->pending_bssid;
  45. wpa_printf(MSG_DEBUG, "WPS: PIN registration with " MACSTR
  46. " did not succeed - continue trying to find "
  47. "suitable AP", MAC2STR(bssid));
  48. wpa_blacklist_add(wpa_s, bssid);
  49. wpa_supplicant_deauthenticate(wpa_s,
  50. WLAN_REASON_DEAUTH_LEAVING);
  51. wpa_s->reassociate = 1;
  52. wpa_supplicant_req_scan(wpa_s,
  53. wpa_s->blacklist_cleared ? 5 : 0, 0);
  54. wpa_s->blacklist_cleared = 0;
  55. return 1;
  56. }
  57. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  58. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid &&
  59. !(wpa_s->current_ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  60. wpa_printf(MSG_DEBUG, "WPS: Network configuration replaced - "
  61. "try to associate with the received credential");
  62. wpa_supplicant_deauthenticate(wpa_s,
  63. WLAN_REASON_DEAUTH_LEAVING);
  64. wpa_s->after_wps = 5;
  65. wpa_s->wps_freq = wpa_s->assoc_freq;
  66. wpa_s->reassociate = 1;
  67. wpa_supplicant_req_scan(wpa_s, 0, 0);
  68. return 1;
  69. }
  70. if (wpa_s->key_mgmt == WPA_KEY_MGMT_WPS && wpa_s->current_ssid) {
  71. wpa_printf(MSG_DEBUG, "WPS: Registration completed - waiting "
  72. "for external credential processing");
  73. wpas_clear_wps(wpa_s);
  74. wpa_supplicant_deauthenticate(wpa_s,
  75. WLAN_REASON_DEAUTH_LEAVING);
  76. return 1;
  77. }
  78. return 0;
  79. }
  80. static void wpas_wps_security_workaround(struct wpa_supplicant *wpa_s,
  81. struct wpa_ssid *ssid,
  82. const struct wps_credential *cred)
  83. {
  84. struct wpa_driver_capa capa;
  85. struct wpa_bss *bss;
  86. const u8 *ie;
  87. struct wpa_ie_data adv;
  88. int wpa2 = 0, ccmp = 0;
  89. /*
  90. * Many existing WPS APs do not know how to negotiate WPA2 or CCMP in
  91. * case they are configured for mixed mode operation (WPA+WPA2 and
  92. * TKIP+CCMP). Try to use scan results to figure out whether the AP
  93. * actually supports stronger security and select that if the client
  94. * has support for it, too.
  95. */
  96. if (wpa_drv_get_capa(wpa_s, &capa))
  97. return; /* Unknown what driver supports */
  98. bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len);
  99. if (bss == NULL) {
  100. wpa_printf(MSG_DEBUG, "WPS: The AP was not found from BSS "
  101. "table - use credential as-is");
  102. return;
  103. }
  104. wpa_printf(MSG_DEBUG, "WPS: AP found from BSS table");
  105. ie = wpa_bss_get_ie(bss, WLAN_EID_RSN);
  106. if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0) {
  107. wpa2 = 1;
  108. if (adv.pairwise_cipher & WPA_CIPHER_CCMP)
  109. ccmp = 1;
  110. } else {
  111. ie = wpa_bss_get_vendor_ie(bss, WPA_IE_VENDOR_TYPE);
  112. if (ie && wpa_parse_wpa_ie(ie, 2 + ie[1], &adv) == 0 &&
  113. adv.pairwise_cipher & WPA_CIPHER_CCMP)
  114. ccmp = 1;
  115. }
  116. if (ie == NULL && (ssid->proto & WPA_PROTO_WPA) &&
  117. (ssid->pairwise_cipher & WPA_CIPHER_TKIP)) {
  118. /*
  119. * TODO: This could be the initial AP configuration and the
  120. * Beacon contents could change shortly. Should request a new
  121. * scan and delay addition of the network until the updated
  122. * scan results are available.
  123. */
  124. wpa_printf(MSG_DEBUG, "WPS: The AP did not yet advertise WPA "
  125. "support - use credential as-is");
  126. return;
  127. }
  128. if (ccmp && !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
  129. (ssid->pairwise_cipher & WPA_CIPHER_TKIP) &&
  130. (capa.key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK)) {
  131. wpa_printf(MSG_DEBUG, "WPS: Add CCMP into the credential "
  132. "based on scan results");
  133. if (wpa_s->conf->ap_scan == 1)
  134. ssid->pairwise_cipher |= WPA_CIPHER_CCMP;
  135. else
  136. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  137. }
  138. if (wpa2 && !(ssid->proto & WPA_PROTO_RSN) &&
  139. (ssid->proto & WPA_PROTO_WPA) &&
  140. (capa.enc & WPA_DRIVER_CAPA_ENC_CCMP)) {
  141. wpa_printf(MSG_DEBUG, "WPS: Add WPA2 into the credential "
  142. "based on scan results");
  143. if (wpa_s->conf->ap_scan == 1)
  144. ssid->proto |= WPA_PROTO_RSN;
  145. else
  146. ssid->proto = WPA_PROTO_RSN;
  147. }
  148. }
  149. static int wpa_supplicant_wps_cred(void *ctx,
  150. const struct wps_credential *cred)
  151. {
  152. struct wpa_supplicant *wpa_s = ctx;
  153. struct wpa_ssid *ssid = wpa_s->current_ssid;
  154. u8 key_idx = 0;
  155. u16 auth_type;
  156. if ((wpa_s->conf->wps_cred_processing == 1 ||
  157. wpa_s->conf->wps_cred_processing == 2) && cred->cred_attr) {
  158. size_t blen = cred->cred_attr_len * 2 + 1;
  159. char *buf = os_malloc(blen);
  160. if (buf) {
  161. wpa_snprintf_hex(buf, blen,
  162. cred->cred_attr, cred->cred_attr_len);
  163. wpa_msg(wpa_s, MSG_INFO, "%s%s",
  164. WPS_EVENT_CRED_RECEIVED, buf);
  165. os_free(buf);
  166. }
  167. wpas_notify_wps_credential(wpa_s, cred);
  168. } else
  169. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_CRED_RECEIVED);
  170. wpa_hexdump_key(MSG_DEBUG, "WPS: Received Credential attribute",
  171. cred->cred_attr, cred->cred_attr_len);
  172. if (wpa_s->conf->wps_cred_processing == 1)
  173. return 0;
  174. wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len);
  175. wpa_printf(MSG_DEBUG, "WPS: Authentication Type 0x%x",
  176. cred->auth_type);
  177. wpa_printf(MSG_DEBUG, "WPS: Encryption Type 0x%x", cred->encr_type);
  178. wpa_printf(MSG_DEBUG, "WPS: Network Key Index %d", cred->key_idx);
  179. wpa_hexdump_key(MSG_DEBUG, "WPS: Network Key",
  180. cred->key, cred->key_len);
  181. wpa_printf(MSG_DEBUG, "WPS: MAC Address " MACSTR,
  182. MAC2STR(cred->mac_addr));
  183. auth_type = cred->auth_type;
  184. if (auth_type == (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
  185. wpa_printf(MSG_DEBUG, "WPS: Workaround - convert mixed-mode "
  186. "auth_type into WPA2PSK");
  187. auth_type = WPS_AUTH_WPA2PSK;
  188. }
  189. if (auth_type != WPS_AUTH_OPEN &&
  190. auth_type != WPS_AUTH_SHARED &&
  191. auth_type != WPS_AUTH_WPAPSK &&
  192. auth_type != WPS_AUTH_WPA2PSK) {
  193. wpa_printf(MSG_DEBUG, "WPS: Ignored credentials for "
  194. "unsupported authentication type 0x%x",
  195. auth_type);
  196. return 0;
  197. }
  198. if (ssid && (ssid->key_mgmt & WPA_KEY_MGMT_WPS)) {
  199. wpa_printf(MSG_DEBUG, "WPS: Replace WPS network block based "
  200. "on the received credential");
  201. os_free(ssid->eap.identity);
  202. ssid->eap.identity = NULL;
  203. ssid->eap.identity_len = 0;
  204. os_free(ssid->eap.phase1);
  205. ssid->eap.phase1 = NULL;
  206. os_free(ssid->eap.eap_methods);
  207. ssid->eap.eap_methods = NULL;
  208. } else {
  209. wpa_printf(MSG_DEBUG, "WPS: Create a new network based on the "
  210. "received credential");
  211. ssid = wpa_config_add_network(wpa_s->conf);
  212. if (ssid == NULL)
  213. return -1;
  214. wpas_notify_network_added(wpa_s, ssid);
  215. }
  216. wpa_config_set_network_defaults(ssid);
  217. os_free(ssid->ssid);
  218. ssid->ssid = os_malloc(cred->ssid_len);
  219. if (ssid->ssid) {
  220. os_memcpy(ssid->ssid, cred->ssid, cred->ssid_len);
  221. ssid->ssid_len = cred->ssid_len;
  222. }
  223. switch (cred->encr_type) {
  224. case WPS_ENCR_NONE:
  225. break;
  226. case WPS_ENCR_WEP:
  227. if (cred->key_len <= 0)
  228. break;
  229. if (cred->key_len != 5 && cred->key_len != 13 &&
  230. cred->key_len != 10 && cred->key_len != 26) {
  231. wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key length "
  232. "%lu", (unsigned long) cred->key_len);
  233. return -1;
  234. }
  235. if (cred->key_idx > NUM_WEP_KEYS) {
  236. wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key index %d",
  237. cred->key_idx);
  238. return -1;
  239. }
  240. if (cred->key_idx)
  241. key_idx = cred->key_idx - 1;
  242. if (cred->key_len == 10 || cred->key_len == 26) {
  243. if (hexstr2bin((char *) cred->key,
  244. ssid->wep_key[key_idx],
  245. cred->key_len / 2) < 0) {
  246. wpa_printf(MSG_ERROR, "WPS: Invalid WEP Key "
  247. "%d", key_idx);
  248. return -1;
  249. }
  250. ssid->wep_key_len[key_idx] = cred->key_len / 2;
  251. } else {
  252. os_memcpy(ssid->wep_key[key_idx], cred->key,
  253. cred->key_len);
  254. ssid->wep_key_len[key_idx] = cred->key_len;
  255. }
  256. ssid->wep_tx_keyidx = key_idx;
  257. break;
  258. case WPS_ENCR_TKIP:
  259. ssid->pairwise_cipher = WPA_CIPHER_TKIP;
  260. break;
  261. case WPS_ENCR_AES:
  262. ssid->pairwise_cipher = WPA_CIPHER_CCMP;
  263. break;
  264. }
  265. switch (auth_type) {
  266. case WPS_AUTH_OPEN:
  267. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  268. ssid->key_mgmt = WPA_KEY_MGMT_NONE;
  269. ssid->proto = 0;
  270. break;
  271. case WPS_AUTH_SHARED:
  272. ssid->auth_alg = WPA_AUTH_ALG_SHARED;
  273. ssid->key_mgmt = WPA_KEY_MGMT_NONE;
  274. ssid->proto = 0;
  275. break;
  276. case WPS_AUTH_WPAPSK:
  277. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  278. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  279. ssid->proto = WPA_PROTO_WPA;
  280. break;
  281. case WPS_AUTH_WPA:
  282. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  283. ssid->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
  284. ssid->proto = WPA_PROTO_WPA;
  285. break;
  286. case WPS_AUTH_WPA2:
  287. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  288. ssid->key_mgmt = WPA_KEY_MGMT_IEEE8021X;
  289. ssid->proto = WPA_PROTO_RSN;
  290. break;
  291. case WPS_AUTH_WPA2PSK:
  292. ssid->auth_alg = WPA_AUTH_ALG_OPEN;
  293. ssid->key_mgmt = WPA_KEY_MGMT_PSK;
  294. ssid->proto = WPA_PROTO_RSN;
  295. break;
  296. }
  297. if (ssid->key_mgmt == WPA_KEY_MGMT_PSK) {
  298. if (cred->key_len == 2 * PMK_LEN) {
  299. if (hexstr2bin((const char *) cred->key, ssid->psk,
  300. PMK_LEN)) {
  301. wpa_printf(MSG_ERROR, "WPS: Invalid Network "
  302. "Key");
  303. return -1;
  304. }
  305. ssid->psk_set = 1;
  306. } else if (cred->key_len >= 8 && cred->key_len < 2 * PMK_LEN) {
  307. os_free(ssid->passphrase);
  308. ssid->passphrase = os_malloc(cred->key_len + 1);
  309. if (ssid->passphrase == NULL)
  310. return -1;
  311. os_memcpy(ssid->passphrase, cred->key, cred->key_len);
  312. ssid->passphrase[cred->key_len] = '\0';
  313. wpa_config_update_psk(ssid);
  314. } else {
  315. wpa_printf(MSG_ERROR, "WPS: Invalid Network Key "
  316. "length %lu",
  317. (unsigned long) cred->key_len);
  318. return -1;
  319. }
  320. }
  321. wpas_wps_security_workaround(wpa_s, ssid, cred);
  322. #ifndef CONFIG_NO_CONFIG_WRITE
  323. if (wpa_s->conf->update_config &&
  324. wpa_config_write(wpa_s->confname, wpa_s->conf)) {
  325. wpa_printf(MSG_DEBUG, "WPS: Failed to update configuration");
  326. return -1;
  327. }
  328. #endif /* CONFIG_NO_CONFIG_WRITE */
  329. return 0;
  330. }
  331. static void wpa_supplicant_wps_event_m2d(struct wpa_supplicant *wpa_s,
  332. struct wps_event_m2d *m2d)
  333. {
  334. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_M2D
  335. "dev_password_id=%d config_error=%d",
  336. m2d->dev_password_id, m2d->config_error);
  337. wpas_notify_wps_event_m2d(wpa_s, m2d);
  338. }
  339. static void wpa_supplicant_wps_event_fail(struct wpa_supplicant *wpa_s,
  340. struct wps_event_fail *fail)
  341. {
  342. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_FAIL "msg=%d", fail->msg);
  343. wpas_clear_wps(wpa_s);
  344. wpas_notify_wps_event_fail(wpa_s, fail);
  345. }
  346. static void wpa_supplicant_wps_event_success(struct wpa_supplicant *wpa_s)
  347. {
  348. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_SUCCESS);
  349. wpa_s->wps_success = 1;
  350. wpas_notify_wps_event_success(wpa_s);
  351. }
  352. static void wpa_supplicant_wps_event_er_ap_add(struct wpa_supplicant *wpa_s,
  353. struct wps_event_er_ap *ap)
  354. {
  355. char uuid_str[100];
  356. char dev_type[WPS_DEV_TYPE_BUFSIZE];
  357. uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
  358. if (ap->pri_dev_type)
  359. wps_dev_type_bin2str(ap->pri_dev_type, dev_type,
  360. sizeof(dev_type));
  361. else
  362. dev_type[0] = '\0';
  363. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_ADD "%s " MACSTR
  364. " pri_dev_type=%s wps_state=%d |%s|%s|%s|%s|%s|%s|",
  365. uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state,
  366. ap->friendly_name ? ap->friendly_name : "",
  367. ap->manufacturer ? ap->manufacturer : "",
  368. ap->model_description ? ap->model_description : "",
  369. ap->model_name ? ap->model_name : "",
  370. ap->manufacturer_url ? ap->manufacturer_url : "",
  371. ap->model_url ? ap->model_url : "");
  372. }
  373. static void wpa_supplicant_wps_event_er_ap_remove(struct wpa_supplicant *wpa_s,
  374. struct wps_event_er_ap *ap)
  375. {
  376. char uuid_str[100];
  377. uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
  378. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str);
  379. }
  380. static void wpa_supplicant_wps_event_er_enrollee_add(
  381. struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee)
  382. {
  383. char uuid_str[100];
  384. char dev_type[WPS_DEV_TYPE_BUFSIZE];
  385. uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
  386. if (enrollee->pri_dev_type)
  387. wps_dev_type_bin2str(enrollee->pri_dev_type, dev_type,
  388. sizeof(dev_type));
  389. else
  390. dev_type[0] = '\0';
  391. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_ADD "%s " MACSTR
  392. " M1=%d config_methods=0x%x dev_passwd_id=%d pri_dev_type=%s "
  393. "|%s|%s|%s|%s|%s|",
  394. uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received,
  395. enrollee->config_methods, enrollee->dev_passwd_id, dev_type,
  396. enrollee->dev_name ? enrollee->dev_name : "",
  397. enrollee->manufacturer ? enrollee->manufacturer : "",
  398. enrollee->model_name ? enrollee->model_name : "",
  399. enrollee->model_number ? enrollee->model_number : "",
  400. enrollee->serial_number ? enrollee->serial_number : "");
  401. }
  402. static void wpa_supplicant_wps_event_er_enrollee_remove(
  403. struct wpa_supplicant *wpa_s, struct wps_event_er_enrollee *enrollee)
  404. {
  405. char uuid_str[100];
  406. uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str));
  407. wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_ENROLLEE_REMOVE "%s " MACSTR,
  408. uuid_str, MAC2STR(enrollee->mac_addr));
  409. }
  410. static void wpa_supplicant_wps_event_er_ap_settings(
  411. struct wpa_supplicant *wpa_s,
  412. struct wps_event_er_ap_settings *ap_settings)
  413. {
  414. char uuid_str[100];
  415. char key_str[65];
  416. const struct wps_credential *cred = ap_settings->cred;
  417. key_str[0] = '\0';
  418. if (cred->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
  419. if (cred->key_len >= 8 && cred->key_len <= 64) {
  420. os_memcpy(key_str, cred->key, cred->key_len);
  421. key_str[cred->key_len] = '\0';
  422. }
  423. }
  424. uuid_bin2str(ap_settings->uuid, uuid_str, sizeof(uuid_str));
  425. /* Use wpa_msg_ctrl to avoid showing the key in debug log */
  426. wpa_msg_ctrl(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_SETTINGS
  427. "uuid=%s ssid=%s auth_type=0x%04x encr_type=0x%04x "
  428. "key=%s",
  429. uuid_str, wpa_ssid_txt(cred->ssid, cred->ssid_len),
  430. cred->auth_type, cred->encr_type, key_str);
  431. }
  432. static void wpa_supplicant_wps_event(void *ctx, enum wps_event event,
  433. union wps_event_data *data)
  434. {
  435. struct wpa_supplicant *wpa_s = ctx;
  436. switch (event) {
  437. case WPS_EV_M2D:
  438. wpa_supplicant_wps_event_m2d(wpa_s, &data->m2d);
  439. break;
  440. case WPS_EV_FAIL:
  441. wpa_supplicant_wps_event_fail(wpa_s, &data->fail);
  442. break;
  443. case WPS_EV_SUCCESS:
  444. wpa_supplicant_wps_event_success(wpa_s);
  445. break;
  446. case WPS_EV_PWD_AUTH_FAIL:
  447. break;
  448. case WPS_EV_PBC_OVERLAP:
  449. break;
  450. case WPS_EV_PBC_TIMEOUT:
  451. break;
  452. case WPS_EV_ER_AP_ADD:
  453. wpa_supplicant_wps_event_er_ap_add(wpa_s, &data->ap);
  454. break;
  455. case WPS_EV_ER_AP_REMOVE:
  456. wpa_supplicant_wps_event_er_ap_remove(wpa_s, &data->ap);
  457. break;
  458. case WPS_EV_ER_ENROLLEE_ADD:
  459. wpa_supplicant_wps_event_er_enrollee_add(wpa_s,
  460. &data->enrollee);
  461. break;
  462. case WPS_EV_ER_ENROLLEE_REMOVE:
  463. wpa_supplicant_wps_event_er_enrollee_remove(wpa_s,
  464. &data->enrollee);
  465. break;
  466. case WPS_EV_ER_AP_SETTINGS:
  467. wpa_supplicant_wps_event_er_ap_settings(wpa_s,
  468. &data->ap_settings);
  469. break;
  470. }
  471. }
  472. enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid)
  473. {
  474. if (eap_is_wps_pbc_enrollee(&ssid->eap) ||
  475. eap_is_wps_pin_enrollee(&ssid->eap))
  476. return WPS_REQ_ENROLLEE;
  477. else
  478. return WPS_REQ_REGISTRAR;
  479. }
  480. static void wpas_clear_wps(struct wpa_supplicant *wpa_s)
  481. {
  482. int id;
  483. struct wpa_ssid *ssid, *remove_ssid = NULL;
  484. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  485. /* Remove any existing WPS network from configuration */
  486. ssid = wpa_s->conf->ssid;
  487. while (ssid) {
  488. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  489. if (ssid == wpa_s->current_ssid) {
  490. wpa_s->current_ssid = NULL;
  491. if (ssid != NULL)
  492. wpas_notify_network_changed(wpa_s);
  493. }
  494. id = ssid->id;
  495. remove_ssid = ssid;
  496. } else
  497. id = -1;
  498. ssid = ssid->next;
  499. if (id >= 0) {
  500. wpas_notify_network_removed(wpa_s, remove_ssid);
  501. wpa_config_remove_network(wpa_s->conf, id);
  502. }
  503. }
  504. }
  505. static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx)
  506. {
  507. struct wpa_supplicant *wpa_s = eloop_ctx;
  508. wpa_printf(MSG_INFO, WPS_EVENT_TIMEOUT "Requested operation timed "
  509. "out");
  510. wpas_clear_wps(wpa_s);
  511. }
  512. static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s,
  513. int registrar, const u8 *bssid)
  514. {
  515. struct wpa_ssid *ssid;
  516. ssid = wpa_config_add_network(wpa_s->conf);
  517. if (ssid == NULL)
  518. return NULL;
  519. wpas_notify_network_added(wpa_s, ssid);
  520. wpa_config_set_network_defaults(ssid);
  521. if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 ||
  522. wpa_config_set(ssid, "eap", "WSC", 0) < 0 ||
  523. wpa_config_set(ssid, "identity", registrar ?
  524. "\"" WSC_ID_REGISTRAR "\"" :
  525. "\"" WSC_ID_ENROLLEE "\"", 0) < 0) {
  526. wpas_notify_network_removed(wpa_s, ssid);
  527. wpa_config_remove_network(wpa_s->conf, ssid->id);
  528. return NULL;
  529. }
  530. if (bssid) {
  531. struct wpa_bss *bss;
  532. int count = 0;
  533. os_memcpy(ssid->bssid, bssid, ETH_ALEN);
  534. ssid->bssid_set = 1;
  535. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  536. if (os_memcmp(bssid, bss->bssid, ETH_ALEN) != 0)
  537. continue;
  538. os_free(ssid->ssid);
  539. ssid->ssid = os_malloc(bss->ssid_len);
  540. if (ssid->ssid == NULL)
  541. break;
  542. os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
  543. ssid->ssid_len = bss->ssid_len;
  544. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Picked SSID from "
  545. "scan results",
  546. ssid->ssid, ssid->ssid_len);
  547. count++;
  548. }
  549. if (count > 1) {
  550. wpa_printf(MSG_DEBUG, "WPS: More than one SSID found "
  551. "for the AP; use wildcard");
  552. os_free(ssid->ssid);
  553. ssid->ssid = NULL;
  554. ssid->ssid_len = 0;
  555. }
  556. }
  557. return ssid;
  558. }
  559. static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s,
  560. struct wpa_ssid *selected)
  561. {
  562. struct wpa_ssid *ssid;
  563. /* Mark all other networks disabled and trigger reassociation */
  564. ssid = wpa_s->conf->ssid;
  565. while (ssid) {
  566. int was_disabled = ssid->disabled;
  567. ssid->disabled = ssid != selected;
  568. if (was_disabled != ssid->disabled)
  569. wpas_notify_network_enabled_changed(wpa_s, ssid);
  570. ssid = ssid->next;
  571. }
  572. wpa_s->disconnected = 0;
  573. wpa_s->reassociate = 1;
  574. wpa_s->scan_runs = 0;
  575. wpa_s->wps_success = 0;
  576. wpa_s->blacklist_cleared = 0;
  577. wpa_supplicant_req_scan(wpa_s, 0, 0);
  578. }
  579. int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid)
  580. {
  581. struct wpa_ssid *ssid;
  582. wpas_clear_wps(wpa_s);
  583. ssid = wpas_wps_add_network(wpa_s, 0, bssid);
  584. if (ssid == NULL)
  585. return -1;
  586. wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0);
  587. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  588. wpa_s, NULL);
  589. wpas_wps_reassoc(wpa_s, ssid);
  590. return 0;
  591. }
  592. int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
  593. const char *pin)
  594. {
  595. struct wpa_ssid *ssid;
  596. char val[128];
  597. unsigned int rpin = 0;
  598. wpas_clear_wps(wpa_s);
  599. ssid = wpas_wps_add_network(wpa_s, 0, bssid);
  600. if (ssid == NULL)
  601. return -1;
  602. if (pin)
  603. os_snprintf(val, sizeof(val), "\"pin=%s\"", pin);
  604. else {
  605. rpin = wps_generate_pin();
  606. os_snprintf(val, sizeof(val), "\"pin=%08d\"", rpin);
  607. }
  608. wpa_config_set(ssid, "phase1", val, 0);
  609. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  610. wpa_s, NULL);
  611. wpas_wps_reassoc(wpa_s, ssid);
  612. return rpin;
  613. }
  614. #ifdef CONFIG_WPS_OOB
  615. int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type,
  616. char *path, char *method, char *name)
  617. {
  618. struct wps_context *wps = wpa_s->wps;
  619. struct oob_device_data *oob_dev;
  620. oob_dev = wps_get_oob_device(device_type);
  621. if (oob_dev == NULL)
  622. return -1;
  623. oob_dev->device_path = path;
  624. oob_dev->device_name = name;
  625. wps->oob_conf.oob_method = wps_get_oob_method(method);
  626. if (wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E) {
  627. /*
  628. * Use pre-configured DH keys in order to be able to write the
  629. * key hash into the OOB file.
  630. */
  631. wpabuf_free(wps->dh_pubkey);
  632. wpabuf_free(wps->dh_privkey);
  633. wps->dh_privkey = NULL;
  634. wps->dh_pubkey = NULL;
  635. dh5_free(wps->dh_ctx);
  636. wps->dh_ctx = dh5_init(&wps->dh_privkey, &wps->dh_pubkey);
  637. wps->dh_pubkey = wpabuf_zeropad(wps->dh_pubkey, 192);
  638. if (wps->dh_ctx == NULL || wps->dh_pubkey == NULL) {
  639. wpa_printf(MSG_ERROR, "WPS: Failed to initialize "
  640. "Diffie-Hellman handshake");
  641. return -1;
  642. }
  643. }
  644. if (wps->oob_conf.oob_method == OOB_METHOD_CRED)
  645. wpas_clear_wps(wpa_s);
  646. if (wps_process_oob(wps, oob_dev, 0) < 0)
  647. return -1;
  648. if ((wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E ||
  649. wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) &&
  650. wpas_wps_start_pin(wpa_s, NULL,
  651. wpabuf_head(wps->oob_conf.dev_password)) < 0)
  652. return -1;
  653. return 0;
  654. }
  655. #endif /* CONFIG_WPS_OOB */
  656. int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
  657. const char *pin, struct wps_new_ap_settings *settings)
  658. {
  659. struct wpa_ssid *ssid;
  660. char val[200];
  661. char *pos, *end;
  662. int res;
  663. if (!pin)
  664. return -1;
  665. wpas_clear_wps(wpa_s);
  666. ssid = wpas_wps_add_network(wpa_s, 1, bssid);
  667. if (ssid == NULL)
  668. return -1;
  669. pos = val;
  670. end = pos + sizeof(val);
  671. res = os_snprintf(pos, end - pos, "\"pin=%s", pin);
  672. if (res < 0 || res >= end - pos)
  673. return -1;
  674. pos += res;
  675. if (settings) {
  676. res = os_snprintf(pos, end - pos, " new_ssid=%s new_auth=%s "
  677. "new_encr=%s new_key=%s",
  678. settings->ssid_hex, settings->auth,
  679. settings->encr, settings->key_hex);
  680. if (res < 0 || res >= end - pos)
  681. return -1;
  682. pos += res;
  683. }
  684. res = os_snprintf(pos, end - pos, "\"");
  685. if (res < 0 || res >= end - pos)
  686. return -1;
  687. wpa_config_set(ssid, "phase1", val, 0);
  688. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  689. wpa_s, NULL);
  690. wpas_wps_reassoc(wpa_s, ssid);
  691. return 0;
  692. }
  693. static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
  694. size_t psk_len)
  695. {
  696. wpa_printf(MSG_DEBUG, "WPS: Received new WPA/WPA2-PSK from WPS for "
  697. "STA " MACSTR, MAC2STR(mac_addr));
  698. wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
  699. /* TODO */
  700. return 0;
  701. }
  702. static void wpas_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
  703. const struct wps_device_data *dev)
  704. {
  705. char uuid[40], txt[400];
  706. int len;
  707. char devtype[WPS_DEV_TYPE_BUFSIZE];
  708. if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
  709. return;
  710. wpa_printf(MSG_DEBUG, "WPS: PIN needed for UUID-E %s", uuid);
  711. len = os_snprintf(txt, sizeof(txt), "WPS-EVENT-PIN-NEEDED %s " MACSTR
  712. " [%s|%s|%s|%s|%s|%s]",
  713. uuid, MAC2STR(dev->mac_addr), dev->device_name,
  714. dev->manufacturer, dev->model_name,
  715. dev->model_number, dev->serial_number,
  716. wps_dev_type_bin2str(dev->pri_dev_type, devtype,
  717. sizeof(devtype)));
  718. if (len > 0 && len < (int) sizeof(txt))
  719. wpa_printf(MSG_INFO, "%s", txt);
  720. }
  721. static void wpas_wps_set_sel_reg_cb(void *ctx, int sel_reg, u16 dev_passwd_id,
  722. u16 sel_reg_config_methods)
  723. {
  724. #ifdef CONFIG_WPS_ER
  725. struct wpa_supplicant *wpa_s = ctx;
  726. if (wpa_s->wps_er == NULL)
  727. return;
  728. wps_er_set_sel_reg(wpa_s->wps_er, sel_reg, dev_passwd_id,
  729. sel_reg_config_methods);
  730. #endif /* CONFIG_WPS_ER */
  731. }
  732. int wpas_wps_init(struct wpa_supplicant *wpa_s)
  733. {
  734. struct wps_context *wps;
  735. struct wps_registrar_config rcfg;
  736. wps = os_zalloc(sizeof(*wps));
  737. if (wps == NULL)
  738. return -1;
  739. wps->cred_cb = wpa_supplicant_wps_cred;
  740. wps->event_cb = wpa_supplicant_wps_event;
  741. wps->cb_ctx = wpa_s;
  742. wps->dev.device_name = wpa_s->conf->device_name;
  743. wps->dev.manufacturer = wpa_s->conf->manufacturer;
  744. wps->dev.model_name = wpa_s->conf->model_name;
  745. wps->dev.model_number = wpa_s->conf->model_number;
  746. wps->dev.serial_number = wpa_s->conf->serial_number;
  747. wps->config_methods =
  748. wps_config_methods_str2bin(wpa_s->conf->config_methods);
  749. if ((wps->config_methods & (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
  750. (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
  751. wpa_printf(MSG_ERROR, "WPS: Both Label and Display config "
  752. "methods are not allowed at the same time");
  753. os_free(wps);
  754. return -1;
  755. }
  756. if (wpa_s->conf->device_type &&
  757. wps_dev_type_str2bin(wpa_s->conf->device_type,
  758. wps->dev.pri_dev_type) < 0) {
  759. wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
  760. os_free(wps);
  761. return -1;
  762. }
  763. wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
  764. wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ; /* TODO: config */
  765. os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
  766. if (is_nil_uuid(wpa_s->conf->uuid)) {
  767. uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid);
  768. wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC address",
  769. wps->uuid, WPS_UUID_LEN);
  770. } else
  771. os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
  772. wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
  773. wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
  774. os_memset(&rcfg, 0, sizeof(rcfg));
  775. rcfg.new_psk_cb = wpas_wps_new_psk_cb;
  776. rcfg.pin_needed_cb = wpas_wps_pin_needed_cb;
  777. rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb;
  778. rcfg.cb_ctx = wpa_s;
  779. wps->registrar = wps_registrar_init(wps, &rcfg);
  780. if (wps->registrar == NULL) {
  781. wpa_printf(MSG_DEBUG, "Failed to initialize WPS Registrar");
  782. os_free(wps);
  783. return -1;
  784. }
  785. wpa_s->wps = wps;
  786. return 0;
  787. }
  788. void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
  789. {
  790. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  791. if (wpa_s->wps == NULL)
  792. return;
  793. #ifdef CONFIG_WPS_ER
  794. wps_er_deinit(wpa_s->wps_er, NULL, NULL);
  795. wpa_s->wps_er = NULL;
  796. #endif /* CONFIG_WPS_ER */
  797. wps_registrar_deinit(wpa_s->wps->registrar);
  798. wpabuf_free(wpa_s->wps->dh_pubkey);
  799. wpabuf_free(wpa_s->wps->dh_privkey);
  800. wpabuf_free(wpa_s->wps->oob_conf.pubkey_hash);
  801. wpabuf_free(wpa_s->wps->oob_conf.dev_password);
  802. os_free(wpa_s->wps->network_key);
  803. os_free(wpa_s->wps);
  804. wpa_s->wps = NULL;
  805. }
  806. int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
  807. struct wpa_ssid *ssid, struct wpa_scan_res *bss)
  808. {
  809. struct wpabuf *wps_ie;
  810. if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
  811. return -1;
  812. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  813. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  814. if (!wps_ie) {
  815. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  816. return 0;
  817. }
  818. if (!wps_is_selected_pbc_registrar(wps_ie)) {
  819. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  820. "without active PBC Registrar");
  821. wpabuf_free(wps_ie);
  822. return 0;
  823. }
  824. /* TODO: overlap detection */
  825. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  826. "(Active PBC)");
  827. wpabuf_free(wps_ie);
  828. return 1;
  829. }
  830. if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  831. if (!wps_ie) {
  832. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  833. return 0;
  834. }
  835. /*
  836. * Start with WPS APs that advertise active PIN Registrar and
  837. * allow any WPS AP after third scan since some APs do not set
  838. * Selected Registrar attribute properly when using external
  839. * Registrar.
  840. */
  841. if (!wps_is_selected_pin_registrar(wps_ie)) {
  842. if (wpa_s->scan_runs < WPS_PIN_SCAN_IGNORE_SEL_REG) {
  843. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  844. "without active PIN Registrar");
  845. wpabuf_free(wps_ie);
  846. return 0;
  847. }
  848. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  849. } else {
  850. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  851. "(Active PIN)");
  852. }
  853. wpabuf_free(wps_ie);
  854. return 1;
  855. }
  856. if (wps_ie) {
  857. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  858. wpabuf_free(wps_ie);
  859. return 1;
  860. }
  861. return -1;
  862. }
  863. int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
  864. struct wpa_ssid *ssid,
  865. struct wpa_scan_res *bss)
  866. {
  867. struct wpabuf *wps_ie = NULL;
  868. int ret = 0;
  869. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  870. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  871. if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) {
  872. /* allow wildcard SSID for WPS PBC */
  873. ret = 1;
  874. }
  875. } else if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  876. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  877. if (wps_ie &&
  878. (wps_is_selected_pin_registrar(wps_ie) ||
  879. wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) {
  880. /* allow wildcard SSID for WPS PIN */
  881. ret = 1;
  882. }
  883. }
  884. if (!ret && ssid->bssid_set &&
  885. os_memcmp(ssid->bssid, bss->bssid, ETH_ALEN) == 0) {
  886. /* allow wildcard SSID due to hardcoded BSSID match */
  887. ret = 1;
  888. }
  889. wpabuf_free(wps_ie);
  890. return ret;
  891. }
  892. int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
  893. struct wpa_bss *selected, struct wpa_ssid *ssid)
  894. {
  895. const u8 *sel_uuid, *uuid;
  896. struct wpabuf *wps_ie;
  897. int ret = 0;
  898. struct wpa_bss *bss;
  899. if (!eap_is_wps_pbc_enrollee(&ssid->eap))
  900. return 0;
  901. /* Make sure that only one AP is in active PBC mode */
  902. wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE);
  903. if (wps_ie)
  904. sel_uuid = wps_get_uuid_e(wps_ie);
  905. else
  906. sel_uuid = NULL;
  907. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  908. struct wpabuf *ie;
  909. if (bss == selected)
  910. continue;
  911. ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  912. if (!ie)
  913. continue;
  914. if (!wps_is_selected_pbc_registrar(ie)) {
  915. wpabuf_free(ie);
  916. continue;
  917. }
  918. uuid = wps_get_uuid_e(ie);
  919. if (sel_uuid == NULL || uuid == NULL ||
  920. os_memcmp(sel_uuid, uuid, 16) != 0) {
  921. ret = 1; /* PBC overlap */
  922. wpabuf_free(ie);
  923. break;
  924. }
  925. /* TODO: verify that this is reasonable dual-band situation */
  926. wpabuf_free(ie);
  927. }
  928. wpabuf_free(wps_ie);
  929. return ret;
  930. }
  931. void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
  932. {
  933. struct wpa_bss *bss;
  934. if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED)
  935. return;
  936. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  937. struct wpabuf *ie;
  938. ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  939. if (!ie)
  940. continue;
  941. if (wps_is_selected_pbc_registrar(ie))
  942. wpa_msg_ctrl(wpa_s, MSG_INFO,
  943. WPS_EVENT_AP_AVAILABLE_PBC);
  944. else if (wps_is_selected_pin_registrar(ie))
  945. wpa_msg_ctrl(wpa_s, MSG_INFO,
  946. WPS_EVENT_AP_AVAILABLE_PIN);
  947. else
  948. wpa_msg_ctrl(wpa_s, MSG_INFO,
  949. WPS_EVENT_AP_AVAILABLE);
  950. wpabuf_free(ie);
  951. break;
  952. }
  953. }
  954. int wpas_wps_searching(struct wpa_supplicant *wpa_s)
  955. {
  956. struct wpa_ssid *ssid;
  957. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  958. if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !ssid->disabled)
  959. return 1;
  960. }
  961. return 0;
  962. }
  963. int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  964. char *end)
  965. {
  966. struct wpabuf *wps_ie;
  967. int ret;
  968. wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA);
  969. if (wps_ie == NULL)
  970. return 0;
  971. ret = wps_attr_text(wps_ie, buf, end);
  972. wpabuf_free(wps_ie);
  973. return ret;
  974. }
  975. int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter)
  976. {
  977. #ifdef CONFIG_WPS_ER
  978. if (wpa_s->wps_er) {
  979. wps_er_refresh(wpa_s->wps_er);
  980. return 0;
  981. }
  982. wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname, filter);
  983. if (wpa_s->wps_er == NULL)
  984. return -1;
  985. return 0;
  986. #else /* CONFIG_WPS_ER */
  987. return 0;
  988. #endif /* CONFIG_WPS_ER */
  989. }
  990. int wpas_wps_er_stop(struct wpa_supplicant *wpa_s)
  991. {
  992. #ifdef CONFIG_WPS_ER
  993. wps_er_deinit(wpa_s->wps_er, NULL, NULL);
  994. wpa_s->wps_er = NULL;
  995. #endif /* CONFIG_WPS_ER */
  996. return 0;
  997. }
  998. #ifdef CONFIG_WPS_ER
  999. int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const char *uuid,
  1000. const char *pin)
  1001. {
  1002. u8 u[UUID_LEN];
  1003. int any = 0;
  1004. if (os_strcmp(uuid, "any") == 0)
  1005. any = 1;
  1006. else if (uuid_str2bin(uuid, u))
  1007. return -1;
  1008. return wps_registrar_add_pin(wpa_s->wps->registrar, any ? NULL : u,
  1009. (const u8 *) pin, os_strlen(pin), 300);
  1010. }
  1011. int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid)
  1012. {
  1013. u8 u[UUID_LEN];
  1014. if (uuid_str2bin(uuid, u))
  1015. return -1;
  1016. return wps_er_pbc(wpa_s->wps_er, u);
  1017. }
  1018. int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
  1019. const char *pin)
  1020. {
  1021. u8 u[UUID_LEN];
  1022. if (uuid_str2bin(uuid, u))
  1023. return -1;
  1024. return wps_er_learn(wpa_s->wps_er, u, (const u8 *) pin,
  1025. os_strlen(pin));
  1026. }
  1027. int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
  1028. const char *pin, struct wps_new_ap_settings *settings)
  1029. {
  1030. u8 u[UUID_LEN];
  1031. struct wps_credential cred;
  1032. size_t len;
  1033. if (uuid_str2bin(uuid, u))
  1034. return -1;
  1035. if (settings->ssid_hex == NULL || settings->auth == NULL ||
  1036. settings->encr == NULL || settings->key_hex == NULL)
  1037. return -1;
  1038. os_memset(&cred, 0, sizeof(cred));
  1039. len = os_strlen(settings->ssid_hex);
  1040. if ((len & 1) || len > 2 * sizeof(cred.ssid) ||
  1041. hexstr2bin(settings->ssid_hex, cred.ssid, len / 2))
  1042. return -1;
  1043. cred.ssid_len = len / 2;
  1044. len = os_strlen(settings->key_hex);
  1045. if ((len & 1) || len > 2 * sizeof(cred.key) ||
  1046. hexstr2bin(settings->key_hex, cred.key, len / 2))
  1047. return -1;
  1048. cred.key_len = len / 2;
  1049. if (os_strcmp(settings->auth, "OPEN") == 0)
  1050. cred.auth_type = WPS_AUTH_OPEN;
  1051. else if (os_strcmp(settings->auth, "WPAPSK") == 0)
  1052. cred.auth_type = WPS_AUTH_WPAPSK;
  1053. else if (os_strcmp(settings->auth, "WPA2PSK") == 0)
  1054. cred.auth_type = WPS_AUTH_WPA2PSK;
  1055. else
  1056. return -1;
  1057. if (os_strcmp(settings->encr, "NONE") == 0)
  1058. cred.encr_type = WPS_ENCR_NONE;
  1059. else if (os_strcmp(settings->encr, "WEP") == 0)
  1060. cred.encr_type = WPS_ENCR_WEP;
  1061. else if (os_strcmp(settings->encr, "TKIP") == 0)
  1062. cred.encr_type = WPS_ENCR_TKIP;
  1063. else if (os_strcmp(settings->encr, "CCMP") == 0)
  1064. cred.encr_type = WPS_ENCR_AES;
  1065. else
  1066. return -1;
  1067. return wps_er_config(wpa_s->wps_er, u, (const u8 *) pin,
  1068. os_strlen(pin), &cred);
  1069. }
  1070. static void wpas_wps_terminate_cb(void *ctx)
  1071. {
  1072. wpa_printf(MSG_DEBUG, "WPS ER: Terminated");
  1073. eloop_terminate();
  1074. }
  1075. #endif /* CONFIG_WPS_ER */
  1076. int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s)
  1077. {
  1078. #ifdef CONFIG_WPS_ER
  1079. if (wpa_s->wps_er) {
  1080. wps_er_deinit(wpa_s->wps_er, wpas_wps_terminate_cb, wpa_s);
  1081. wpa_s->wps_er = NULL;
  1082. return 1;
  1083. }
  1084. #endif /* CONFIG_WPS_ER */
  1085. return 0;
  1086. }
  1087. int wpas_wps_in_progress(struct wpa_supplicant *wpa_s)
  1088. {
  1089. struct wpa_ssid *ssid;
  1090. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1091. if (!ssid->disabled && ssid->key_mgmt == WPA_KEY_MGMT_WPS)
  1092. return 1;
  1093. }
  1094. return 0;
  1095. }