wps_supplicant.c 37 KB

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