wps_supplicant.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185
  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(void *ctx, enum wps_event event,
  411. union wps_event_data *data)
  412. {
  413. struct wpa_supplicant *wpa_s = ctx;
  414. switch (event) {
  415. case WPS_EV_M2D:
  416. wpa_supplicant_wps_event_m2d(wpa_s, &data->m2d);
  417. break;
  418. case WPS_EV_FAIL:
  419. wpa_supplicant_wps_event_fail(wpa_s, &data->fail);
  420. break;
  421. case WPS_EV_SUCCESS:
  422. wpa_supplicant_wps_event_success(wpa_s);
  423. break;
  424. case WPS_EV_PWD_AUTH_FAIL:
  425. break;
  426. case WPS_EV_PBC_OVERLAP:
  427. break;
  428. case WPS_EV_PBC_TIMEOUT:
  429. break;
  430. case WPS_EV_ER_AP_ADD:
  431. wpa_supplicant_wps_event_er_ap_add(wpa_s, &data->ap);
  432. break;
  433. case WPS_EV_ER_AP_REMOVE:
  434. wpa_supplicant_wps_event_er_ap_remove(wpa_s, &data->ap);
  435. break;
  436. case WPS_EV_ER_ENROLLEE_ADD:
  437. wpa_supplicant_wps_event_er_enrollee_add(wpa_s,
  438. &data->enrollee);
  439. break;
  440. case WPS_EV_ER_ENROLLEE_REMOVE:
  441. wpa_supplicant_wps_event_er_enrollee_remove(wpa_s,
  442. &data->enrollee);
  443. break;
  444. }
  445. }
  446. enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid)
  447. {
  448. if (eap_is_wps_pbc_enrollee(&ssid->eap) ||
  449. eap_is_wps_pin_enrollee(&ssid->eap))
  450. return WPS_REQ_ENROLLEE;
  451. else
  452. return WPS_REQ_REGISTRAR;
  453. }
  454. static void wpas_clear_wps(struct wpa_supplicant *wpa_s)
  455. {
  456. int id;
  457. struct wpa_ssid *ssid, *remove_ssid = NULL;
  458. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  459. /* Remove any existing WPS network from configuration */
  460. ssid = wpa_s->conf->ssid;
  461. while (ssid) {
  462. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  463. if (ssid == wpa_s->current_ssid) {
  464. wpa_s->current_ssid = NULL;
  465. if (ssid != NULL)
  466. wpas_notify_network_changed(wpa_s);
  467. }
  468. id = ssid->id;
  469. remove_ssid = ssid;
  470. } else
  471. id = -1;
  472. ssid = ssid->next;
  473. if (id >= 0) {
  474. wpas_notify_network_removed(wpa_s, remove_ssid);
  475. wpa_config_remove_network(wpa_s->conf, id);
  476. }
  477. }
  478. }
  479. static void wpas_wps_timeout(void *eloop_ctx, void *timeout_ctx)
  480. {
  481. struct wpa_supplicant *wpa_s = eloop_ctx;
  482. wpa_printf(MSG_INFO, WPS_EVENT_TIMEOUT "Requested operation timed "
  483. "out");
  484. wpas_clear_wps(wpa_s);
  485. }
  486. static struct wpa_ssid * wpas_wps_add_network(struct wpa_supplicant *wpa_s,
  487. int registrar, const u8 *bssid)
  488. {
  489. struct wpa_ssid *ssid;
  490. ssid = wpa_config_add_network(wpa_s->conf);
  491. if (ssid == NULL)
  492. return NULL;
  493. wpas_notify_network_added(wpa_s, ssid);
  494. wpa_config_set_network_defaults(ssid);
  495. if (wpa_config_set(ssid, "key_mgmt", "WPS", 0) < 0 ||
  496. wpa_config_set(ssid, "eap", "WSC", 0) < 0 ||
  497. wpa_config_set(ssid, "identity", registrar ?
  498. "\"" WSC_ID_REGISTRAR "\"" :
  499. "\"" WSC_ID_ENROLLEE "\"", 0) < 0) {
  500. wpas_notify_network_removed(wpa_s, ssid);
  501. wpa_config_remove_network(wpa_s->conf, ssid->id);
  502. return NULL;
  503. }
  504. if (bssid) {
  505. struct wpa_bss *bss;
  506. int count = 0;
  507. os_memcpy(ssid->bssid, bssid, ETH_ALEN);
  508. ssid->bssid_set = 1;
  509. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  510. if (os_memcmp(bssid, bss->bssid, ETH_ALEN) != 0)
  511. continue;
  512. os_free(ssid->ssid);
  513. ssid->ssid = os_malloc(bss->ssid_len);
  514. if (ssid->ssid == NULL)
  515. break;
  516. os_memcpy(ssid->ssid, bss->ssid, bss->ssid_len);
  517. ssid->ssid_len = bss->ssid_len;
  518. wpa_hexdump_ascii(MSG_DEBUG, "WPS: Picked SSID from "
  519. "scan results",
  520. ssid->ssid, ssid->ssid_len);
  521. count++;
  522. }
  523. if (count > 1) {
  524. wpa_printf(MSG_DEBUG, "WPS: More than one SSID found "
  525. "for the AP; use wildcard");
  526. os_free(ssid->ssid);
  527. ssid->ssid = NULL;
  528. ssid->ssid_len = 0;
  529. }
  530. }
  531. return ssid;
  532. }
  533. static void wpas_wps_reassoc(struct wpa_supplicant *wpa_s,
  534. struct wpa_ssid *selected)
  535. {
  536. struct wpa_ssid *ssid;
  537. /* Mark all other networks disabled and trigger reassociation */
  538. ssid = wpa_s->conf->ssid;
  539. while (ssid) {
  540. int was_disabled = ssid->disabled;
  541. ssid->disabled = ssid != selected;
  542. if (was_disabled != ssid->disabled)
  543. wpas_notify_network_enabled_changed(wpa_s, ssid);
  544. ssid = ssid->next;
  545. }
  546. wpa_s->disconnected = 0;
  547. wpa_s->reassociate = 1;
  548. wpa_s->scan_runs = 0;
  549. wpa_s->wps_success = 0;
  550. wpa_s->blacklist_cleared = 0;
  551. wpa_supplicant_req_scan(wpa_s, 0, 0);
  552. }
  553. int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid)
  554. {
  555. struct wpa_ssid *ssid;
  556. wpas_clear_wps(wpa_s);
  557. ssid = wpas_wps_add_network(wpa_s, 0, bssid);
  558. if (ssid == NULL)
  559. return -1;
  560. wpa_config_set(ssid, "phase1", "\"pbc=1\"", 0);
  561. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  562. wpa_s, NULL);
  563. wpas_wps_reassoc(wpa_s, ssid);
  564. return 0;
  565. }
  566. int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
  567. const char *pin)
  568. {
  569. struct wpa_ssid *ssid;
  570. char val[128];
  571. unsigned int rpin = 0;
  572. wpas_clear_wps(wpa_s);
  573. ssid = wpas_wps_add_network(wpa_s, 0, bssid);
  574. if (ssid == NULL)
  575. return -1;
  576. if (pin)
  577. os_snprintf(val, sizeof(val), "\"pin=%s\"", pin);
  578. else {
  579. rpin = wps_generate_pin();
  580. os_snprintf(val, sizeof(val), "\"pin=%08d\"", rpin);
  581. }
  582. wpa_config_set(ssid, "phase1", val, 0);
  583. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  584. wpa_s, NULL);
  585. wpas_wps_reassoc(wpa_s, ssid);
  586. return rpin;
  587. }
  588. #ifdef CONFIG_WPS_OOB
  589. int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type,
  590. char *path, char *method, char *name)
  591. {
  592. struct wps_context *wps = wpa_s->wps;
  593. struct oob_device_data *oob_dev;
  594. oob_dev = wps_get_oob_device(device_type);
  595. if (oob_dev == NULL)
  596. return -1;
  597. oob_dev->device_path = path;
  598. oob_dev->device_name = name;
  599. wps->oob_conf.oob_method = wps_get_oob_method(method);
  600. if (wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E) {
  601. /*
  602. * Use pre-configured DH keys in order to be able to write the
  603. * key hash into the OOB file.
  604. */
  605. wpabuf_free(wps->dh_pubkey);
  606. wpabuf_free(wps->dh_privkey);
  607. wps->dh_privkey = NULL;
  608. wps->dh_pubkey = NULL;
  609. dh5_free(wps->dh_ctx);
  610. wps->dh_ctx = dh5_init(&wps->dh_privkey, &wps->dh_pubkey);
  611. wps->dh_pubkey = wpabuf_zeropad(wps->dh_pubkey, 192);
  612. if (wps->dh_ctx == NULL || wps->dh_pubkey == NULL) {
  613. wpa_printf(MSG_ERROR, "WPS: Failed to initialize "
  614. "Diffie-Hellman handshake");
  615. return -1;
  616. }
  617. }
  618. if (wps->oob_conf.oob_method == OOB_METHOD_CRED)
  619. wpas_clear_wps(wpa_s);
  620. if (wps_process_oob(wps, oob_dev, 0) < 0)
  621. return -1;
  622. if ((wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E ||
  623. wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) &&
  624. wpas_wps_start_pin(wpa_s, NULL,
  625. wpabuf_head(wps->oob_conf.dev_password)) < 0)
  626. return -1;
  627. return 0;
  628. }
  629. #endif /* CONFIG_WPS_OOB */
  630. int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
  631. const char *pin, struct wps_new_ap_settings *settings)
  632. {
  633. struct wpa_ssid *ssid;
  634. char val[200];
  635. char *pos, *end;
  636. int res;
  637. if (!pin)
  638. return -1;
  639. wpas_clear_wps(wpa_s);
  640. ssid = wpas_wps_add_network(wpa_s, 1, bssid);
  641. if (ssid == NULL)
  642. return -1;
  643. pos = val;
  644. end = pos + sizeof(val);
  645. res = os_snprintf(pos, end - pos, "\"pin=%s", pin);
  646. if (res < 0 || res >= end - pos)
  647. return -1;
  648. pos += res;
  649. if (settings) {
  650. res = os_snprintf(pos, end - pos, " new_ssid=%s new_auth=%s "
  651. "new_encr=%s new_key=%s",
  652. settings->ssid_hex, settings->auth,
  653. settings->encr, settings->key_hex);
  654. if (res < 0 || res >= end - pos)
  655. return -1;
  656. pos += res;
  657. }
  658. res = os_snprintf(pos, end - pos, "\"");
  659. if (res < 0 || res >= end - pos)
  660. return -1;
  661. wpa_config_set(ssid, "phase1", val, 0);
  662. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  663. wpa_s, NULL);
  664. wpas_wps_reassoc(wpa_s, ssid);
  665. return 0;
  666. }
  667. static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
  668. size_t psk_len)
  669. {
  670. wpa_printf(MSG_DEBUG, "WPS: Received new WPA/WPA2-PSK from WPS for "
  671. "STA " MACSTR, MAC2STR(mac_addr));
  672. wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
  673. /* TODO */
  674. return 0;
  675. }
  676. static void wpas_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
  677. const struct wps_device_data *dev)
  678. {
  679. char uuid[40], txt[400];
  680. int len;
  681. char devtype[WPS_DEV_TYPE_BUFSIZE];
  682. if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
  683. return;
  684. wpa_printf(MSG_DEBUG, "WPS: PIN needed for UUID-E %s", uuid);
  685. len = os_snprintf(txt, sizeof(txt), "WPS-EVENT-PIN-NEEDED %s " MACSTR
  686. " [%s|%s|%s|%s|%s|%s]",
  687. uuid, MAC2STR(dev->mac_addr), dev->device_name,
  688. dev->manufacturer, dev->model_name,
  689. dev->model_number, dev->serial_number,
  690. wps_dev_type_bin2str(dev->pri_dev_type, devtype,
  691. sizeof(devtype)));
  692. if (len > 0 && len < (int) sizeof(txt))
  693. wpa_printf(MSG_INFO, "%s", txt);
  694. }
  695. static void wpas_wps_set_sel_reg_cb(void *ctx, int sel_reg, u16 dev_passwd_id,
  696. u16 sel_reg_config_methods)
  697. {
  698. #ifdef CONFIG_WPS_ER
  699. struct wpa_supplicant *wpa_s = ctx;
  700. if (wpa_s->wps_er == NULL)
  701. return;
  702. wps_er_set_sel_reg(wpa_s->wps_er, sel_reg, dev_passwd_id,
  703. sel_reg_config_methods);
  704. #endif /* CONFIG_WPS_ER */
  705. }
  706. int wpas_wps_init(struct wpa_supplicant *wpa_s)
  707. {
  708. struct wps_context *wps;
  709. struct wps_registrar_config rcfg;
  710. wps = os_zalloc(sizeof(*wps));
  711. if (wps == NULL)
  712. return -1;
  713. wps->cred_cb = wpa_supplicant_wps_cred;
  714. wps->event_cb = wpa_supplicant_wps_event;
  715. wps->cb_ctx = wpa_s;
  716. wps->dev.device_name = wpa_s->conf->device_name;
  717. wps->dev.manufacturer = wpa_s->conf->manufacturer;
  718. wps->dev.model_name = wpa_s->conf->model_name;
  719. wps->dev.model_number = wpa_s->conf->model_number;
  720. wps->dev.serial_number = wpa_s->conf->serial_number;
  721. wps->config_methods =
  722. wps_config_methods_str2bin(wpa_s->conf->config_methods);
  723. if (wpa_s->conf->device_type &&
  724. wps_dev_type_str2bin(wpa_s->conf->device_type,
  725. wps->dev.pri_dev_type) < 0) {
  726. wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
  727. os_free(wps);
  728. return -1;
  729. }
  730. wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
  731. wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ; /* TODO: config */
  732. os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
  733. if (is_nil_uuid(wpa_s->conf->uuid)) {
  734. uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid);
  735. wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC address",
  736. wps->uuid, WPS_UUID_LEN);
  737. } else
  738. os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
  739. wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
  740. wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
  741. os_memset(&rcfg, 0, sizeof(rcfg));
  742. rcfg.new_psk_cb = wpas_wps_new_psk_cb;
  743. rcfg.pin_needed_cb = wpas_wps_pin_needed_cb;
  744. rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb;
  745. rcfg.cb_ctx = wpa_s;
  746. wps->registrar = wps_registrar_init(wps, &rcfg);
  747. if (wps->registrar == NULL) {
  748. wpa_printf(MSG_DEBUG, "Failed to initialize WPS Registrar");
  749. os_free(wps);
  750. return -1;
  751. }
  752. wpa_s->wps = wps;
  753. return 0;
  754. }
  755. void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
  756. {
  757. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  758. if (wpa_s->wps == NULL)
  759. return;
  760. #ifdef CONFIG_WPS_ER
  761. wps_er_deinit(wpa_s->wps_er, NULL, NULL);
  762. wpa_s->wps_er = NULL;
  763. #endif /* CONFIG_WPS_ER */
  764. wps_registrar_deinit(wpa_s->wps->registrar);
  765. wpabuf_free(wpa_s->wps->dh_pubkey);
  766. wpabuf_free(wpa_s->wps->dh_privkey);
  767. wpabuf_free(wpa_s->wps->oob_conf.pubkey_hash);
  768. wpabuf_free(wpa_s->wps->oob_conf.dev_password);
  769. os_free(wpa_s->wps->network_key);
  770. os_free(wpa_s->wps);
  771. wpa_s->wps = NULL;
  772. }
  773. int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
  774. struct wpa_ssid *ssid, struct wpa_scan_res *bss)
  775. {
  776. struct wpabuf *wps_ie;
  777. if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
  778. return -1;
  779. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  780. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  781. if (!wps_ie) {
  782. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  783. return 0;
  784. }
  785. if (!wps_is_selected_pbc_registrar(wps_ie)) {
  786. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  787. "without active PBC Registrar");
  788. wpabuf_free(wps_ie);
  789. return 0;
  790. }
  791. /* TODO: overlap detection */
  792. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  793. "(Active PBC)");
  794. wpabuf_free(wps_ie);
  795. return 1;
  796. }
  797. if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  798. if (!wps_ie) {
  799. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  800. return 0;
  801. }
  802. /*
  803. * Start with WPS APs that advertise active PIN Registrar and
  804. * allow any WPS AP after third scan since some APs do not set
  805. * Selected Registrar attribute properly when using external
  806. * Registrar.
  807. */
  808. if (!wps_is_selected_pin_registrar(wps_ie)) {
  809. if (wpa_s->scan_runs < WPS_PIN_SCAN_IGNORE_SEL_REG) {
  810. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  811. "without active PIN Registrar");
  812. wpabuf_free(wps_ie);
  813. return 0;
  814. }
  815. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  816. } else {
  817. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  818. "(Active PIN)");
  819. }
  820. wpabuf_free(wps_ie);
  821. return 1;
  822. }
  823. if (wps_ie) {
  824. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  825. wpabuf_free(wps_ie);
  826. return 1;
  827. }
  828. return -1;
  829. }
  830. int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
  831. struct wpa_ssid *ssid,
  832. struct wpa_scan_res *bss)
  833. {
  834. struct wpabuf *wps_ie = NULL;
  835. int ret = 0;
  836. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  837. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  838. if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) {
  839. /* allow wildcard SSID for WPS PBC */
  840. ret = 1;
  841. }
  842. } else if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  843. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  844. if (wps_ie &&
  845. (wps_is_selected_pin_registrar(wps_ie) ||
  846. wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) {
  847. /* allow wildcard SSID for WPS PIN */
  848. ret = 1;
  849. }
  850. }
  851. if (!ret && ssid->bssid_set &&
  852. os_memcmp(ssid->bssid, bss->bssid, ETH_ALEN) == 0) {
  853. /* allow wildcard SSID due to hardcoded BSSID match */
  854. ret = 1;
  855. }
  856. wpabuf_free(wps_ie);
  857. return ret;
  858. }
  859. int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
  860. struct wpa_bss *selected, struct wpa_ssid *ssid)
  861. {
  862. const u8 *sel_uuid, *uuid;
  863. struct wpabuf *wps_ie;
  864. int ret = 0;
  865. struct wpa_bss *bss;
  866. if (!eap_is_wps_pbc_enrollee(&ssid->eap))
  867. return 0;
  868. /* Make sure that only one AP is in active PBC mode */
  869. wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE);
  870. if (wps_ie)
  871. sel_uuid = wps_get_uuid_e(wps_ie);
  872. else
  873. sel_uuid = NULL;
  874. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  875. struct wpabuf *ie;
  876. if (bss == selected)
  877. continue;
  878. ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  879. if (!ie)
  880. continue;
  881. if (!wps_is_selected_pbc_registrar(ie)) {
  882. wpabuf_free(ie);
  883. continue;
  884. }
  885. uuid = wps_get_uuid_e(ie);
  886. if (sel_uuid == NULL || uuid == NULL ||
  887. os_memcmp(sel_uuid, uuid, 16) != 0) {
  888. ret = 1; /* PBC overlap */
  889. wpabuf_free(ie);
  890. break;
  891. }
  892. /* TODO: verify that this is reasonable dual-band situation */
  893. wpabuf_free(ie);
  894. }
  895. wpabuf_free(wps_ie);
  896. return ret;
  897. }
  898. void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
  899. {
  900. struct wpa_bss *bss;
  901. if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED)
  902. return;
  903. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  904. struct wpabuf *ie;
  905. ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  906. if (!ie)
  907. continue;
  908. if (wps_is_selected_pbc_registrar(ie))
  909. wpa_msg_ctrl(wpa_s, MSG_INFO,
  910. WPS_EVENT_AP_AVAILABLE_PBC);
  911. else if (wps_is_selected_pin_registrar(ie))
  912. wpa_msg_ctrl(wpa_s, MSG_INFO,
  913. WPS_EVENT_AP_AVAILABLE_PIN);
  914. else
  915. wpa_msg_ctrl(wpa_s, MSG_INFO,
  916. WPS_EVENT_AP_AVAILABLE);
  917. wpabuf_free(ie);
  918. break;
  919. }
  920. }
  921. int wpas_wps_searching(struct wpa_supplicant *wpa_s)
  922. {
  923. struct wpa_ssid *ssid;
  924. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  925. if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !ssid->disabled)
  926. return 1;
  927. }
  928. return 0;
  929. }
  930. int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  931. char *end)
  932. {
  933. struct wpabuf *wps_ie;
  934. int ret;
  935. wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA);
  936. if (wps_ie == NULL)
  937. return 0;
  938. ret = wps_attr_text(wps_ie, buf, end);
  939. wpabuf_free(wps_ie);
  940. return ret;
  941. }
  942. int wpas_wps_er_start(struct wpa_supplicant *wpa_s)
  943. {
  944. #ifdef CONFIG_WPS_ER
  945. if (wpa_s->wps_er) {
  946. wps_er_refresh(wpa_s->wps_er);
  947. return 0;
  948. }
  949. wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname);
  950. if (wpa_s->wps_er == NULL)
  951. return -1;
  952. return 0;
  953. #else /* CONFIG_WPS_ER */
  954. return 0;
  955. #endif /* CONFIG_WPS_ER */
  956. }
  957. int wpas_wps_er_stop(struct wpa_supplicant *wpa_s)
  958. {
  959. #ifdef CONFIG_WPS_ER
  960. wps_er_deinit(wpa_s->wps_er, NULL, NULL);
  961. wpa_s->wps_er = NULL;
  962. #endif /* CONFIG_WPS_ER */
  963. return 0;
  964. }
  965. #ifdef CONFIG_WPS_ER
  966. int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const char *uuid,
  967. const char *pin)
  968. {
  969. u8 u[UUID_LEN];
  970. int any = 0;
  971. if (os_strcmp(uuid, "any") == 0)
  972. any = 1;
  973. else if (uuid_str2bin(uuid, u))
  974. return -1;
  975. return wps_registrar_add_pin(wpa_s->wps->registrar, any ? NULL : u,
  976. (const u8 *) pin, os_strlen(pin), 300);
  977. }
  978. int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid)
  979. {
  980. u8 u[UUID_LEN];
  981. if (uuid_str2bin(uuid, u))
  982. return -1;
  983. return wps_er_pbc(wpa_s->wps_er, u);
  984. }
  985. int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
  986. const char *pin)
  987. {
  988. u8 u[UUID_LEN];
  989. if (uuid_str2bin(uuid, u))
  990. return -1;
  991. return wps_er_learn(wpa_s->wps_er, u, (const u8 *) pin,
  992. os_strlen(pin));
  993. }
  994. static void wpas_wps_terminate_cb(void *ctx)
  995. {
  996. wpa_printf(MSG_DEBUG, "WPS ER: Terminated");
  997. eloop_terminate();
  998. }
  999. #endif /* CONFIG_WPS_ER */
  1000. int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s)
  1001. {
  1002. #ifdef CONFIG_WPS_ER
  1003. if (wpa_s->wps_er) {
  1004. wps_er_deinit(wpa_s->wps_er, wpas_wps_terminate_cb, wpa_s);
  1005. wpa_s->wps_er = NULL;
  1006. return 1;
  1007. }
  1008. #endif /* CONFIG_WPS_ER */
  1009. return 0;
  1010. }