wps_supplicant.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365
  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. if (wpa_s->wps_fragment_size)
  590. ssid->eap.fragment_size = wpa_s->wps_fragment_size;
  591. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  592. wpa_s, NULL);
  593. wpas_wps_reassoc(wpa_s, ssid);
  594. return 0;
  595. }
  596. int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
  597. const char *pin)
  598. {
  599. struct wpa_ssid *ssid;
  600. char val[128];
  601. unsigned int rpin = 0;
  602. wpas_clear_wps(wpa_s);
  603. ssid = wpas_wps_add_network(wpa_s, 0, bssid);
  604. if (ssid == NULL)
  605. return -1;
  606. if (pin)
  607. os_snprintf(val, sizeof(val), "\"pin=%s\"", pin);
  608. else {
  609. rpin = wps_generate_pin();
  610. os_snprintf(val, sizeof(val), "\"pin=%08d\"", rpin);
  611. }
  612. wpa_config_set(ssid, "phase1", val, 0);
  613. if (wpa_s->wps_fragment_size)
  614. ssid->eap.fragment_size = wpa_s->wps_fragment_size;
  615. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  616. wpa_s, NULL);
  617. wpas_wps_reassoc(wpa_s, ssid);
  618. return rpin;
  619. }
  620. #ifdef CONFIG_WPS_OOB
  621. int wpas_wps_start_oob(struct wpa_supplicant *wpa_s, char *device_type,
  622. char *path, char *method, char *name)
  623. {
  624. struct wps_context *wps = wpa_s->wps;
  625. struct oob_device_data *oob_dev;
  626. oob_dev = wps_get_oob_device(device_type);
  627. if (oob_dev == NULL)
  628. return -1;
  629. oob_dev->device_path = path;
  630. oob_dev->device_name = name;
  631. wps->oob_conf.oob_method = wps_get_oob_method(method);
  632. if (wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E) {
  633. /*
  634. * Use pre-configured DH keys in order to be able to write the
  635. * key hash into the OOB file.
  636. */
  637. wpabuf_free(wps->dh_pubkey);
  638. wpabuf_free(wps->dh_privkey);
  639. wps->dh_privkey = NULL;
  640. wps->dh_pubkey = NULL;
  641. dh5_free(wps->dh_ctx);
  642. wps->dh_ctx = dh5_init(&wps->dh_privkey, &wps->dh_pubkey);
  643. wps->dh_pubkey = wpabuf_zeropad(wps->dh_pubkey, 192);
  644. if (wps->dh_ctx == NULL || wps->dh_pubkey == NULL) {
  645. wpa_printf(MSG_ERROR, "WPS: Failed to initialize "
  646. "Diffie-Hellman handshake");
  647. return -1;
  648. }
  649. }
  650. if (wps->oob_conf.oob_method == OOB_METHOD_CRED)
  651. wpas_clear_wps(wpa_s);
  652. if (wps_process_oob(wps, oob_dev, 0) < 0)
  653. return -1;
  654. if ((wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_E ||
  655. wps->oob_conf.oob_method == OOB_METHOD_DEV_PWD_R) &&
  656. wpas_wps_start_pin(wpa_s, NULL,
  657. wpabuf_head(wps->oob_conf.dev_password)) < 0)
  658. return -1;
  659. return 0;
  660. }
  661. #endif /* CONFIG_WPS_OOB */
  662. int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
  663. const char *pin, struct wps_new_ap_settings *settings)
  664. {
  665. struct wpa_ssid *ssid;
  666. char val[200];
  667. char *pos, *end;
  668. int res;
  669. if (!pin)
  670. return -1;
  671. wpas_clear_wps(wpa_s);
  672. ssid = wpas_wps_add_network(wpa_s, 1, bssid);
  673. if (ssid == NULL)
  674. return -1;
  675. pos = val;
  676. end = pos + sizeof(val);
  677. res = os_snprintf(pos, end - pos, "\"pin=%s", pin);
  678. if (res < 0 || res >= end - pos)
  679. return -1;
  680. pos += res;
  681. if (settings) {
  682. res = os_snprintf(pos, end - pos, " new_ssid=%s new_auth=%s "
  683. "new_encr=%s new_key=%s",
  684. settings->ssid_hex, settings->auth,
  685. settings->encr, settings->key_hex);
  686. if (res < 0 || res >= end - pos)
  687. return -1;
  688. pos += res;
  689. }
  690. res = os_snprintf(pos, end - pos, "\"");
  691. if (res < 0 || res >= end - pos)
  692. return -1;
  693. wpa_config_set(ssid, "phase1", val, 0);
  694. if (wpa_s->wps_fragment_size)
  695. ssid->eap.fragment_size = wpa_s->wps_fragment_size;
  696. eloop_register_timeout(WPS_PBC_WALK_TIME, 0, wpas_wps_timeout,
  697. wpa_s, NULL);
  698. wpas_wps_reassoc(wpa_s, ssid);
  699. return 0;
  700. }
  701. static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
  702. size_t psk_len)
  703. {
  704. wpa_printf(MSG_DEBUG, "WPS: Received new WPA/WPA2-PSK from WPS for "
  705. "STA " MACSTR, MAC2STR(mac_addr));
  706. wpa_hexdump_key(MSG_DEBUG, "Per-device PSK", psk, psk_len);
  707. /* TODO */
  708. return 0;
  709. }
  710. static void wpas_wps_pin_needed_cb(void *ctx, const u8 *uuid_e,
  711. const struct wps_device_data *dev)
  712. {
  713. char uuid[40], txt[400];
  714. int len;
  715. char devtype[WPS_DEV_TYPE_BUFSIZE];
  716. if (uuid_bin2str(uuid_e, uuid, sizeof(uuid)))
  717. return;
  718. wpa_printf(MSG_DEBUG, "WPS: PIN needed for UUID-E %s", uuid);
  719. len = os_snprintf(txt, sizeof(txt), "WPS-EVENT-PIN-NEEDED %s " MACSTR
  720. " [%s|%s|%s|%s|%s|%s]",
  721. uuid, MAC2STR(dev->mac_addr), dev->device_name,
  722. dev->manufacturer, dev->model_name,
  723. dev->model_number, dev->serial_number,
  724. wps_dev_type_bin2str(dev->pri_dev_type, devtype,
  725. sizeof(devtype)));
  726. if (len > 0 && len < (int) sizeof(txt))
  727. wpa_printf(MSG_INFO, "%s", txt);
  728. }
  729. static void wpas_wps_set_sel_reg_cb(void *ctx, int sel_reg, u16 dev_passwd_id,
  730. u16 sel_reg_config_methods)
  731. {
  732. #ifdef CONFIG_WPS_ER
  733. struct wpa_supplicant *wpa_s = ctx;
  734. if (wpa_s->wps_er == NULL)
  735. return;
  736. wpa_printf(MSG_DEBUG, "WPS ER: SetSelectedRegistrar - sel_reg=%d "
  737. "dev_password_id=%u sel_reg_config_methods=0x%x",
  738. sel_reg, dev_passwd_id, sel_reg_config_methods);
  739. wps_er_set_sel_reg(wpa_s->wps_er, sel_reg, dev_passwd_id,
  740. sel_reg_config_methods);
  741. #endif /* CONFIG_WPS_ER */
  742. }
  743. int wpas_wps_init(struct wpa_supplicant *wpa_s)
  744. {
  745. struct wps_context *wps;
  746. struct wps_registrar_config rcfg;
  747. wps = os_zalloc(sizeof(*wps));
  748. if (wps == NULL)
  749. return -1;
  750. wps->cred_cb = wpa_supplicant_wps_cred;
  751. wps->event_cb = wpa_supplicant_wps_event;
  752. wps->cb_ctx = wpa_s;
  753. wps->dev.device_name = wpa_s->conf->device_name;
  754. wps->dev.manufacturer = wpa_s->conf->manufacturer;
  755. wps->dev.model_name = wpa_s->conf->model_name;
  756. wps->dev.model_number = wpa_s->conf->model_number;
  757. wps->dev.serial_number = wpa_s->conf->serial_number;
  758. wps->config_methods =
  759. wps_config_methods_str2bin(wpa_s->conf->config_methods);
  760. if ((wps->config_methods & (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
  761. (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
  762. wpa_printf(MSG_ERROR, "WPS: Both Label and Display config "
  763. "methods are not allowed at the same time");
  764. os_free(wps);
  765. return -1;
  766. }
  767. if (wpa_s->conf->device_type &&
  768. wps_dev_type_str2bin(wpa_s->conf->device_type,
  769. wps->dev.pri_dev_type) < 0) {
  770. wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
  771. os_free(wps);
  772. return -1;
  773. }
  774. wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
  775. wps->dev.rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ; /* TODO: config */
  776. os_memcpy(wps->dev.mac_addr, wpa_s->own_addr, ETH_ALEN);
  777. if (is_nil_uuid(wpa_s->conf->uuid)) {
  778. uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid);
  779. wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC address",
  780. wps->uuid, WPS_UUID_LEN);
  781. } else
  782. os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
  783. wps->auth_types = WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK;
  784. wps->encr_types = WPS_ENCR_AES | WPS_ENCR_TKIP;
  785. os_memset(&rcfg, 0, sizeof(rcfg));
  786. rcfg.new_psk_cb = wpas_wps_new_psk_cb;
  787. rcfg.pin_needed_cb = wpas_wps_pin_needed_cb;
  788. rcfg.set_sel_reg_cb = wpas_wps_set_sel_reg_cb;
  789. rcfg.cb_ctx = wpa_s;
  790. wps->registrar = wps_registrar_init(wps, &rcfg);
  791. if (wps->registrar == NULL) {
  792. wpa_printf(MSG_DEBUG, "Failed to initialize WPS Registrar");
  793. os_free(wps);
  794. return -1;
  795. }
  796. wpa_s->wps = wps;
  797. return 0;
  798. }
  799. void wpas_wps_deinit(struct wpa_supplicant *wpa_s)
  800. {
  801. eloop_cancel_timeout(wpas_wps_timeout, wpa_s, NULL);
  802. if (wpa_s->wps == NULL)
  803. return;
  804. #ifdef CONFIG_WPS_ER
  805. wps_er_deinit(wpa_s->wps_er, NULL, NULL);
  806. wpa_s->wps_er = NULL;
  807. #endif /* CONFIG_WPS_ER */
  808. wps_registrar_deinit(wpa_s->wps->registrar);
  809. wpabuf_free(wpa_s->wps->dh_pubkey);
  810. wpabuf_free(wpa_s->wps->dh_privkey);
  811. wpabuf_free(wpa_s->wps->oob_conf.pubkey_hash);
  812. wpabuf_free(wpa_s->wps->oob_conf.dev_password);
  813. os_free(wpa_s->wps->network_key);
  814. os_free(wpa_s->wps);
  815. wpa_s->wps = NULL;
  816. }
  817. int wpas_wps_ssid_bss_match(struct wpa_supplicant *wpa_s,
  818. struct wpa_ssid *ssid, struct wpa_scan_res *bss)
  819. {
  820. struct wpabuf *wps_ie;
  821. if (!(ssid->key_mgmt & WPA_KEY_MGMT_WPS))
  822. return -1;
  823. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  824. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  825. if (!wps_ie) {
  826. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  827. return 0;
  828. }
  829. if (!wps_is_selected_pbc_registrar(wps_ie)) {
  830. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  831. "without active PBC Registrar");
  832. wpabuf_free(wps_ie);
  833. return 0;
  834. }
  835. /* TODO: overlap detection */
  836. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  837. "(Active PBC)");
  838. wpabuf_free(wps_ie);
  839. return 1;
  840. }
  841. if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  842. if (!wps_ie) {
  843. wpa_printf(MSG_DEBUG, " skip - non-WPS AP");
  844. return 0;
  845. }
  846. /*
  847. * Start with WPS APs that advertise our address as an
  848. * authorized MAC (v2.0) or active PIN Registrar (v1.0) and
  849. * allow any WPS AP after couple of scans since some APs do not
  850. * set Selected Registrar attribute properly when using
  851. * external Registrar.
  852. */
  853. if (!wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1)) {
  854. if (wpa_s->scan_runs < WPS_PIN_SCAN_IGNORE_SEL_REG) {
  855. wpa_printf(MSG_DEBUG, " skip - WPS AP "
  856. "without active PIN Registrar");
  857. wpabuf_free(wps_ie);
  858. return 0;
  859. }
  860. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  861. } else {
  862. wpa_printf(MSG_DEBUG, " selected based on WPS IE "
  863. "(Authorized MAC or Active PIN)");
  864. }
  865. wpabuf_free(wps_ie);
  866. return 1;
  867. }
  868. if (wps_ie) {
  869. wpa_printf(MSG_DEBUG, " selected based on WPS IE");
  870. wpabuf_free(wps_ie);
  871. return 1;
  872. }
  873. return -1;
  874. }
  875. int wpas_wps_ssid_wildcard_ok(struct wpa_supplicant *wpa_s,
  876. struct wpa_ssid *ssid,
  877. struct wpa_scan_res *bss)
  878. {
  879. struct wpabuf *wps_ie = NULL;
  880. int ret = 0;
  881. if (eap_is_wps_pbc_enrollee(&ssid->eap)) {
  882. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  883. if (wps_ie && wps_is_selected_pbc_registrar(wps_ie)) {
  884. /* allow wildcard SSID for WPS PBC */
  885. ret = 1;
  886. }
  887. } else if (eap_is_wps_pin_enrollee(&ssid->eap)) {
  888. wps_ie = wpa_scan_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  889. if (wps_ie &&
  890. (wps_is_addr_authorized(wps_ie, wpa_s->own_addr, 1) ||
  891. wpa_s->scan_runs >= WPS_PIN_SCAN_IGNORE_SEL_REG)) {
  892. /* allow wildcard SSID for WPS PIN */
  893. ret = 1;
  894. }
  895. }
  896. if (!ret && ssid->bssid_set &&
  897. os_memcmp(ssid->bssid, bss->bssid, ETH_ALEN) == 0) {
  898. /* allow wildcard SSID due to hardcoded BSSID match */
  899. ret = 1;
  900. }
  901. #ifdef CONFIG_WPS_STRICT
  902. if (wps_ie) {
  903. if (wps_validate_beacon_probe_resp(wps_ie, bss->beacon_ie_len >
  904. 0) < 0)
  905. ret = 0;
  906. if (bss->beacon_ie_len) {
  907. struct wpabuf *bcn_wps;
  908. bcn_wps = wpa_scan_get_vendor_ie_multi_beacon(
  909. bss, WPS_IE_VENDOR_TYPE);
  910. if (bcn_wps == NULL) {
  911. wpa_printf(MSG_DEBUG, "WPS: Mandatory WPS IE "
  912. "missing from AP Beacon");
  913. ret = 0;
  914. } else {
  915. if (wps_validate_beacon(wps_ie) < 0)
  916. ret = 0;
  917. wpabuf_free(bcn_wps);
  918. }
  919. }
  920. }
  921. #endif /* CONFIG_WPS_STRICT */
  922. wpabuf_free(wps_ie);
  923. return ret;
  924. }
  925. int wpas_wps_scan_pbc_overlap(struct wpa_supplicant *wpa_s,
  926. struct wpa_bss *selected, struct wpa_ssid *ssid)
  927. {
  928. const u8 *sel_uuid, *uuid;
  929. struct wpabuf *wps_ie;
  930. int ret = 0;
  931. struct wpa_bss *bss;
  932. if (!eap_is_wps_pbc_enrollee(&ssid->eap))
  933. return 0;
  934. /* Make sure that only one AP is in active PBC mode */
  935. wps_ie = wpa_bss_get_vendor_ie_multi(selected, WPS_IE_VENDOR_TYPE);
  936. if (wps_ie)
  937. sel_uuid = wps_get_uuid_e(wps_ie);
  938. else
  939. sel_uuid = NULL;
  940. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  941. struct wpabuf *ie;
  942. if (bss == selected)
  943. continue;
  944. ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  945. if (!ie)
  946. continue;
  947. if (!wps_is_selected_pbc_registrar(ie)) {
  948. wpabuf_free(ie);
  949. continue;
  950. }
  951. uuid = wps_get_uuid_e(ie);
  952. if (sel_uuid == NULL || uuid == NULL ||
  953. os_memcmp(sel_uuid, uuid, 16) != 0) {
  954. ret = 1; /* PBC overlap */
  955. wpabuf_free(ie);
  956. break;
  957. }
  958. /* TODO: verify that this is reasonable dual-band situation */
  959. wpabuf_free(ie);
  960. }
  961. wpabuf_free(wps_ie);
  962. return ret;
  963. }
  964. void wpas_wps_notify_scan_results(struct wpa_supplicant *wpa_s)
  965. {
  966. struct wpa_bss *bss;
  967. if (wpa_s->disconnected || wpa_s->wpa_state >= WPA_ASSOCIATED)
  968. return;
  969. dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
  970. struct wpabuf *ie;
  971. ie = wpa_bss_get_vendor_ie_multi(bss, WPS_IE_VENDOR_TYPE);
  972. if (!ie)
  973. continue;
  974. if (wps_is_selected_pbc_registrar(ie))
  975. wpa_msg_ctrl(wpa_s, MSG_INFO,
  976. WPS_EVENT_AP_AVAILABLE_PBC);
  977. else if (wps_is_addr_authorized(ie, wpa_s->own_addr, 0))
  978. wpa_msg_ctrl(wpa_s, MSG_INFO,
  979. WPS_EVENT_AP_AVAILABLE_AUTH);
  980. else if (wps_is_selected_pin_registrar(ie))
  981. wpa_msg_ctrl(wpa_s, MSG_INFO,
  982. WPS_EVENT_AP_AVAILABLE_PIN);
  983. else
  984. wpa_msg_ctrl(wpa_s, MSG_INFO,
  985. WPS_EVENT_AP_AVAILABLE);
  986. wpabuf_free(ie);
  987. break;
  988. }
  989. }
  990. int wpas_wps_searching(struct wpa_supplicant *wpa_s)
  991. {
  992. struct wpa_ssid *ssid;
  993. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  994. if ((ssid->key_mgmt & WPA_KEY_MGMT_WPS) && !ssid->disabled)
  995. return 1;
  996. }
  997. return 0;
  998. }
  999. int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
  1000. char *end)
  1001. {
  1002. struct wpabuf *wps_ie;
  1003. int ret;
  1004. wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len, WPS_DEV_OUI_WFA);
  1005. if (wps_ie == NULL)
  1006. return 0;
  1007. ret = wps_attr_text(wps_ie, buf, end);
  1008. wpabuf_free(wps_ie);
  1009. return ret;
  1010. }
  1011. int wpas_wps_er_start(struct wpa_supplicant *wpa_s, const char *filter)
  1012. {
  1013. #ifdef CONFIG_WPS_ER
  1014. if (wpa_s->wps_er) {
  1015. wps_er_refresh(wpa_s->wps_er);
  1016. return 0;
  1017. }
  1018. wpa_s->wps_er = wps_er_init(wpa_s->wps, wpa_s->ifname, filter);
  1019. if (wpa_s->wps_er == NULL)
  1020. return -1;
  1021. return 0;
  1022. #else /* CONFIG_WPS_ER */
  1023. return 0;
  1024. #endif /* CONFIG_WPS_ER */
  1025. }
  1026. int wpas_wps_er_stop(struct wpa_supplicant *wpa_s)
  1027. {
  1028. #ifdef CONFIG_WPS_ER
  1029. wps_er_deinit(wpa_s->wps_er, NULL, NULL);
  1030. wpa_s->wps_er = NULL;
  1031. #endif /* CONFIG_WPS_ER */
  1032. return 0;
  1033. }
  1034. #ifdef CONFIG_WPS_ER
  1035. int wpas_wps_er_add_pin(struct wpa_supplicant *wpa_s, const u8 *addr,
  1036. const char *uuid, const char *pin)
  1037. {
  1038. u8 u[UUID_LEN];
  1039. int any = 0;
  1040. if (os_strcmp(uuid, "any") == 0)
  1041. any = 1;
  1042. else if (uuid_str2bin(uuid, u))
  1043. return -1;
  1044. return wps_registrar_add_pin(wpa_s->wps->registrar, addr,
  1045. any ? NULL : u,
  1046. (const u8 *) pin, os_strlen(pin), 300);
  1047. }
  1048. int wpas_wps_er_pbc(struct wpa_supplicant *wpa_s, const char *uuid)
  1049. {
  1050. u8 u[UUID_LEN];
  1051. if (uuid_str2bin(uuid, u))
  1052. return -1;
  1053. return wps_er_pbc(wpa_s->wps_er, u);
  1054. }
  1055. int wpas_wps_er_learn(struct wpa_supplicant *wpa_s, const char *uuid,
  1056. const char *pin)
  1057. {
  1058. u8 u[UUID_LEN];
  1059. if (uuid_str2bin(uuid, u))
  1060. return -1;
  1061. return wps_er_learn(wpa_s->wps_er, u, (const u8 *) pin,
  1062. os_strlen(pin));
  1063. }
  1064. int wpas_wps_er_config(struct wpa_supplicant *wpa_s, const char *uuid,
  1065. const char *pin, struct wps_new_ap_settings *settings)
  1066. {
  1067. u8 u[UUID_LEN];
  1068. struct wps_credential cred;
  1069. size_t len;
  1070. if (uuid_str2bin(uuid, u))
  1071. return -1;
  1072. if (settings->ssid_hex == NULL || settings->auth == NULL ||
  1073. settings->encr == NULL || settings->key_hex == NULL)
  1074. return -1;
  1075. os_memset(&cred, 0, sizeof(cred));
  1076. len = os_strlen(settings->ssid_hex);
  1077. if ((len & 1) || len > 2 * sizeof(cred.ssid) ||
  1078. hexstr2bin(settings->ssid_hex, cred.ssid, len / 2))
  1079. return -1;
  1080. cred.ssid_len = len / 2;
  1081. len = os_strlen(settings->key_hex);
  1082. if ((len & 1) || len > 2 * sizeof(cred.key) ||
  1083. hexstr2bin(settings->key_hex, cred.key, len / 2))
  1084. return -1;
  1085. cred.key_len = len / 2;
  1086. if (os_strcmp(settings->auth, "OPEN") == 0)
  1087. cred.auth_type = WPS_AUTH_OPEN;
  1088. else if (os_strcmp(settings->auth, "WPAPSK") == 0)
  1089. cred.auth_type = WPS_AUTH_WPAPSK;
  1090. else if (os_strcmp(settings->auth, "WPA2PSK") == 0)
  1091. cred.auth_type = WPS_AUTH_WPA2PSK;
  1092. else
  1093. return -1;
  1094. if (os_strcmp(settings->encr, "NONE") == 0)
  1095. cred.encr_type = WPS_ENCR_NONE;
  1096. else if (os_strcmp(settings->encr, "WEP") == 0)
  1097. cred.encr_type = WPS_ENCR_WEP;
  1098. else if (os_strcmp(settings->encr, "TKIP") == 0)
  1099. cred.encr_type = WPS_ENCR_TKIP;
  1100. else if (os_strcmp(settings->encr, "CCMP") == 0)
  1101. cred.encr_type = WPS_ENCR_AES;
  1102. else
  1103. return -1;
  1104. return wps_er_config(wpa_s->wps_er, u, (const u8 *) pin,
  1105. os_strlen(pin), &cred);
  1106. }
  1107. static void wpas_wps_terminate_cb(void *ctx)
  1108. {
  1109. wpa_printf(MSG_DEBUG, "WPS ER: Terminated");
  1110. eloop_terminate();
  1111. }
  1112. #endif /* CONFIG_WPS_ER */
  1113. int wpas_wps_terminate_pending(struct wpa_supplicant *wpa_s)
  1114. {
  1115. #ifdef CONFIG_WPS_ER
  1116. if (wpa_s->wps_er) {
  1117. wps_er_deinit(wpa_s->wps_er, wpas_wps_terminate_cb, wpa_s);
  1118. wpa_s->wps_er = NULL;
  1119. return 1;
  1120. }
  1121. #endif /* CONFIG_WPS_ER */
  1122. return 0;
  1123. }
  1124. int wpas_wps_in_progress(struct wpa_supplicant *wpa_s)
  1125. {
  1126. struct wpa_ssid *ssid;
  1127. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1128. if (!ssid->disabled && ssid->key_mgmt == WPA_KEY_MGMT_WPS)
  1129. return 1;
  1130. }
  1131. return 0;
  1132. }
  1133. void wpas_wps_update_config(struct wpa_supplicant *wpa_s)
  1134. {
  1135. struct wps_context *wps = wpa_s->wps;
  1136. if (wps == NULL)
  1137. return;
  1138. if (wpa_s->conf->changed_parameters & CFG_CHANGED_CONFIG_METHODS) {
  1139. wps->config_methods = wps_config_methods_str2bin(
  1140. wpa_s->conf->config_methods);
  1141. if ((wps->config_methods &
  1142. (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) ==
  1143. (WPS_CONFIG_DISPLAY | WPS_CONFIG_LABEL)) {
  1144. wpa_printf(MSG_ERROR, "WPS: Both Label and Display "
  1145. "config methods are not allowed at the "
  1146. "same time");
  1147. wps->config_methods &= ~WPS_CONFIG_LABEL;
  1148. }
  1149. }
  1150. if (wpa_s->conf->changed_parameters & CFG_CHANGED_DEVICE_TYPE) {
  1151. if (wpa_s->conf->device_type &&
  1152. wps_dev_type_str2bin(wpa_s->conf->device_type,
  1153. wps->dev.pri_dev_type) < 0)
  1154. wpa_printf(MSG_ERROR, "WPS: Invalid device_type");
  1155. }
  1156. if (wpa_s->conf->changed_parameters & CFG_CHANGED_OS_VERSION)
  1157. wps->dev.os_version = WPA_GET_BE32(wpa_s->conf->os_version);
  1158. if (wpa_s->conf->changed_parameters & CFG_CHANGED_UUID) {
  1159. if (is_nil_uuid(wpa_s->conf->uuid)) {
  1160. uuid_gen_mac_addr(wpa_s->own_addr, wps->uuid);
  1161. wpa_hexdump(MSG_DEBUG, "WPS: UUID based on MAC "
  1162. "address", wps->uuid, WPS_UUID_LEN);
  1163. } else
  1164. os_memcpy(wps->uuid, wpa_s->conf->uuid, WPS_UUID_LEN);
  1165. }
  1166. }