wps_supplicant.c 34 KB

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