wps_supplicant.c 42 KB

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