wps_supplicant.c 37 KB

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