dpp_hostapd.c 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631
  1. /*
  2. * hostapd / DPP integration
  3. * Copyright (c) 2017, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "utils/eloop.h"
  11. #include "common/dpp.h"
  12. #include "common/gas.h"
  13. #include "common/wpa_ctrl.h"
  14. #include "hostapd.h"
  15. #include "ap_drv_ops.h"
  16. #include "gas_query_ap.h"
  17. #include "wpa_auth.h"
  18. #include "dpp_hostapd.h"
  19. static void hostapd_dpp_auth_success(struct hostapd_data *hapd, int initiator);
  20. static const u8 broadcast[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  21. static struct dpp_configurator *
  22. hostapd_dpp_configurator_get_id(struct hostapd_data *hapd, unsigned int id)
  23. {
  24. struct dpp_configurator *conf;
  25. dl_list_for_each(conf, &hapd->dpp_configurator,
  26. struct dpp_configurator, list) {
  27. if (conf->id == id)
  28. return conf;
  29. }
  30. return NULL;
  31. }
  32. static unsigned int hapd_dpp_next_id(struct hostapd_data *hapd)
  33. {
  34. struct dpp_bootstrap_info *bi;
  35. unsigned int max_id = 0;
  36. dl_list_for_each(bi, &hapd->dpp_bootstrap, struct dpp_bootstrap_info,
  37. list) {
  38. if (bi->id > max_id)
  39. max_id = bi->id;
  40. }
  41. return max_id + 1;
  42. }
  43. /**
  44. * hostapd_dpp_qr_code - Parse and add DPP bootstrapping info from a QR Code
  45. * @hapd: Pointer to hostapd_data
  46. * @cmd: DPP URI read from a QR Code
  47. * Returns: Identifier of the stored info or -1 on failure
  48. */
  49. int hostapd_dpp_qr_code(struct hostapd_data *hapd, const char *cmd)
  50. {
  51. struct dpp_bootstrap_info *bi;
  52. struct dpp_authentication *auth = hapd->dpp_auth;
  53. bi = dpp_parse_qr_code(cmd);
  54. if (!bi)
  55. return -1;
  56. bi->id = hapd_dpp_next_id(hapd);
  57. dl_list_add(&hapd->dpp_bootstrap, &bi->list);
  58. if (auth && auth->response_pending &&
  59. dpp_notify_new_qr_code(auth, bi) == 1) {
  60. wpa_printf(MSG_DEBUG,
  61. "DPP: Sending out pending authentication response");
  62. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  63. " freq=%u type=%d",
  64. MAC2STR(auth->peer_mac_addr), auth->curr_freq,
  65. DPP_PA_AUTHENTICATION_RESP);
  66. hostapd_drv_send_action(hapd, auth->curr_freq, 0,
  67. auth->peer_mac_addr,
  68. wpabuf_head(hapd->dpp_auth->resp_msg),
  69. wpabuf_len(hapd->dpp_auth->resp_msg));
  70. }
  71. return bi->id;
  72. }
  73. static char * get_param(const char *cmd, const char *param)
  74. {
  75. const char *pos, *end;
  76. char *val;
  77. size_t len;
  78. pos = os_strstr(cmd, param);
  79. if (!pos)
  80. return NULL;
  81. pos += os_strlen(param);
  82. end = os_strchr(pos, ' ');
  83. if (end)
  84. len = end - pos;
  85. else
  86. len = os_strlen(pos);
  87. val = os_malloc(len + 1);
  88. if (!val)
  89. return NULL;
  90. os_memcpy(val, pos, len);
  91. val[len] = '\0';
  92. return val;
  93. }
  94. int hostapd_dpp_bootstrap_gen(struct hostapd_data *hapd, const char *cmd)
  95. {
  96. char *chan = NULL, *mac = NULL, *info = NULL, *pk = NULL, *curve = NULL;
  97. char *key = NULL;
  98. u8 *privkey = NULL;
  99. size_t privkey_len = 0;
  100. size_t len;
  101. int ret = -1;
  102. struct dpp_bootstrap_info *bi;
  103. bi = os_zalloc(sizeof(*bi));
  104. if (!bi)
  105. goto fail;
  106. if (os_strstr(cmd, "type=qrcode"))
  107. bi->type = DPP_BOOTSTRAP_QR_CODE;
  108. else if (os_strstr(cmd, "type=pkex"))
  109. bi->type = DPP_BOOTSTRAP_PKEX;
  110. else
  111. goto fail;
  112. chan = get_param(cmd, " chan=");
  113. mac = get_param(cmd, " mac=");
  114. info = get_param(cmd, " info=");
  115. curve = get_param(cmd, " curve=");
  116. key = get_param(cmd, " key=");
  117. if (key) {
  118. privkey_len = os_strlen(key) / 2;
  119. privkey = os_malloc(privkey_len);
  120. if (!privkey ||
  121. hexstr2bin(key, privkey, privkey_len) < 0)
  122. goto fail;
  123. }
  124. pk = dpp_keygen(bi, curve, privkey, privkey_len);
  125. if (!pk)
  126. goto fail;
  127. len = 4; /* "DPP:" */
  128. if (chan) {
  129. if (dpp_parse_uri_chan_list(bi, chan) < 0)
  130. goto fail;
  131. len += 3 + os_strlen(chan); /* C:...; */
  132. }
  133. if (mac) {
  134. if (dpp_parse_uri_mac(bi, mac) < 0)
  135. goto fail;
  136. len += 3 + os_strlen(mac); /* M:...; */
  137. }
  138. if (info) {
  139. if (dpp_parse_uri_info(bi, info) < 0)
  140. goto fail;
  141. len += 3 + os_strlen(info); /* I:...; */
  142. }
  143. len += 4 + os_strlen(pk);
  144. bi->uri = os_malloc(len + 1);
  145. if (!bi->uri)
  146. goto fail;
  147. os_snprintf(bi->uri, len + 1, "DPP:%s%s%s%s%s%s%s%s%sK:%s;;",
  148. chan ? "C:" : "", chan ? chan : "", chan ? ";" : "",
  149. mac ? "M:" : "", mac ? mac : "", mac ? ";" : "",
  150. info ? "I:" : "", info ? info : "", info ? ";" : "",
  151. pk);
  152. bi->id = hapd_dpp_next_id(hapd);
  153. dl_list_add(&hapd->dpp_bootstrap, &bi->list);
  154. ret = bi->id;
  155. bi = NULL;
  156. fail:
  157. os_free(curve);
  158. os_free(pk);
  159. os_free(chan);
  160. os_free(mac);
  161. os_free(info);
  162. str_clear_free(key);
  163. bin_clear_free(privkey, privkey_len);
  164. dpp_bootstrap_info_free(bi);
  165. return ret;
  166. }
  167. static struct dpp_bootstrap_info *
  168. dpp_bootstrap_get_id(struct hostapd_data *hapd, unsigned int id)
  169. {
  170. struct dpp_bootstrap_info *bi;
  171. dl_list_for_each(bi, &hapd->dpp_bootstrap, struct dpp_bootstrap_info,
  172. list) {
  173. if (bi->id == id)
  174. return bi;
  175. }
  176. return NULL;
  177. }
  178. static int dpp_bootstrap_del(struct hostapd_data *hapd, unsigned int id)
  179. {
  180. struct dpp_bootstrap_info *bi, *tmp;
  181. int found = 0;
  182. dl_list_for_each_safe(bi, tmp, &hapd->dpp_bootstrap,
  183. struct dpp_bootstrap_info, list) {
  184. if (id && bi->id != id)
  185. continue;
  186. found = 1;
  187. dl_list_del(&bi->list);
  188. dpp_bootstrap_info_free(bi);
  189. }
  190. if (id == 0)
  191. return 0; /* flush succeeds regardless of entries found */
  192. return found ? 0 : -1;
  193. }
  194. int hostapd_dpp_bootstrap_remove(struct hostapd_data *hapd, const char *id)
  195. {
  196. unsigned int id_val;
  197. if (os_strcmp(id, "*") == 0) {
  198. id_val = 0;
  199. } else {
  200. id_val = atoi(id);
  201. if (id_val == 0)
  202. return -1;
  203. }
  204. return dpp_bootstrap_del(hapd, id_val);
  205. }
  206. const char * hostapd_dpp_bootstrap_get_uri(struct hostapd_data *hapd,
  207. unsigned int id)
  208. {
  209. struct dpp_bootstrap_info *bi;
  210. bi = dpp_bootstrap_get_id(hapd, id);
  211. if (!bi)
  212. return NULL;
  213. return bi->uri;
  214. }
  215. int hostapd_dpp_bootstrap_info(struct hostapd_data *hapd, int id,
  216. char *reply, int reply_size)
  217. {
  218. struct dpp_bootstrap_info *bi;
  219. bi = dpp_bootstrap_get_id(hapd, id);
  220. if (!bi)
  221. return -1;
  222. return os_snprintf(reply, reply_size, "type=%s\n"
  223. "mac_addr=" MACSTR "\n"
  224. "info=%s\n"
  225. "num_freq=%u\n"
  226. "curve=%s\n",
  227. dpp_bootstrap_type_txt(bi->type),
  228. MAC2STR(bi->mac_addr),
  229. bi->info ? bi->info : "",
  230. bi->num_freq,
  231. bi->curve->name);
  232. }
  233. void hostapd_dpp_tx_status(struct hostapd_data *hapd, const u8 *dst,
  234. const u8 *data, size_t data_len, int ok)
  235. {
  236. wpa_printf(MSG_DEBUG, "DPP: TX status: dst=" MACSTR " ok=%d",
  237. MAC2STR(dst), ok);
  238. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR
  239. " result=%s", MAC2STR(dst), ok ? "SUCCESS" : "FAILED");
  240. if (!hapd->dpp_auth) {
  241. wpa_printf(MSG_DEBUG,
  242. "DPP: Ignore TX status since there is no ongoing authentication exchange");
  243. return;
  244. }
  245. if (hapd->dpp_auth->remove_on_tx_status) {
  246. wpa_printf(MSG_DEBUG,
  247. "DPP: Terminate authentication exchange due to an earlier error");
  248. dpp_auth_deinit(hapd->dpp_auth);
  249. hapd->dpp_auth = NULL;
  250. return;
  251. }
  252. if (hapd->dpp_auth_ok_on_ack)
  253. hostapd_dpp_auth_success(hapd, 1);
  254. }
  255. static void hostapd_dpp_set_testing_options(struct hostapd_data *hapd,
  256. struct dpp_authentication *auth)
  257. {
  258. #ifdef CONFIG_TESTING_OPTIONS
  259. if (hapd->dpp_config_obj_override)
  260. auth->config_obj_override =
  261. os_strdup(hapd->dpp_config_obj_override);
  262. if (hapd->dpp_discovery_override)
  263. auth->discovery_override =
  264. os_strdup(hapd->dpp_discovery_override);
  265. if (hapd->dpp_groups_override)
  266. auth->groups_override = os_strdup(hapd->dpp_groups_override);
  267. auth->ignore_netaccesskey_mismatch =
  268. hapd->dpp_ignore_netaccesskey_mismatch;
  269. #endif /* CONFIG_TESTING_OPTIONS */
  270. }
  271. static void hostapd_dpp_set_configurator(struct hostapd_data *hapd,
  272. struct dpp_authentication *auth,
  273. const char *cmd)
  274. {
  275. const char *pos, *end;
  276. struct dpp_configuration *conf_sta = NULL, *conf_ap = NULL;
  277. struct dpp_configurator *conf = NULL;
  278. u8 ssid[32] = { "test" };
  279. size_t ssid_len = 4;
  280. char pass[64] = { };
  281. size_t pass_len = 0;
  282. u8 psk[PMK_LEN];
  283. int psk_set = 0;
  284. if (!cmd)
  285. return;
  286. wpa_printf(MSG_DEBUG, "DPP: Set configurator parameters: %s", cmd);
  287. pos = os_strstr(cmd, " ssid=");
  288. if (pos) {
  289. pos += 6;
  290. end = os_strchr(pos, ' ');
  291. ssid_len = end ? (size_t) (end - pos) : os_strlen(pos);
  292. ssid_len /= 2;
  293. if (ssid_len > sizeof(ssid) ||
  294. hexstr2bin(pos, ssid, ssid_len) < 0)
  295. goto fail;
  296. }
  297. pos = os_strstr(cmd, " pass=");
  298. if (pos) {
  299. pos += 6;
  300. end = os_strchr(pos, ' ');
  301. pass_len = end ? (size_t) (end - pos) : os_strlen(pos);
  302. pass_len /= 2;
  303. if (pass_len > sizeof(pass) - 1 || pass_len < 8 ||
  304. hexstr2bin(pos, (u8 *) pass, pass_len) < 0)
  305. goto fail;
  306. }
  307. pos = os_strstr(cmd, " psk=");
  308. if (pos) {
  309. pos += 5;
  310. if (hexstr2bin(pos, psk, PMK_LEN) < 0)
  311. goto fail;
  312. psk_set = 1;
  313. }
  314. if (os_strstr(cmd, " conf=sta-")) {
  315. conf_sta = os_zalloc(sizeof(struct dpp_configuration));
  316. if (!conf_sta)
  317. goto fail;
  318. os_memcpy(conf_sta->ssid, ssid, ssid_len);
  319. conf_sta->ssid_len = ssid_len;
  320. if (os_strstr(cmd, " conf=sta-psk")) {
  321. conf_sta->dpp = 0;
  322. if (psk_set) {
  323. os_memcpy(conf_sta->psk, psk, PMK_LEN);
  324. } else {
  325. conf_sta->passphrase = os_strdup(pass);
  326. if (!conf_sta->passphrase)
  327. goto fail;
  328. }
  329. } else if (os_strstr(cmd, " conf=sta-dpp")) {
  330. conf_sta->dpp = 1;
  331. } else {
  332. goto fail;
  333. }
  334. }
  335. if (os_strstr(cmd, " conf=ap-")) {
  336. conf_ap = os_zalloc(sizeof(struct dpp_configuration));
  337. if (!conf_ap)
  338. goto fail;
  339. os_memcpy(conf_ap->ssid, ssid, ssid_len);
  340. conf_ap->ssid_len = ssid_len;
  341. if (os_strstr(cmd, " conf=ap-psk")) {
  342. conf_ap->dpp = 0;
  343. if (psk_set) {
  344. os_memcpy(conf_ap->psk, psk, PMK_LEN);
  345. } else {
  346. conf_ap->passphrase = os_strdup(pass);
  347. if (!conf_ap->passphrase)
  348. goto fail;
  349. }
  350. } else if (os_strstr(cmd, " conf=ap-dpp")) {
  351. conf_ap->dpp = 1;
  352. } else {
  353. goto fail;
  354. }
  355. }
  356. pos = os_strstr(cmd, " expiry=");
  357. if (pos) {
  358. long int val;
  359. pos += 8;
  360. val = strtol(pos, NULL, 0);
  361. if (val <= 0)
  362. goto fail;
  363. if (conf_sta)
  364. conf_sta->netaccesskey_expiry = val;
  365. if (conf_ap)
  366. conf_ap->netaccesskey_expiry = val;
  367. }
  368. pos = os_strstr(cmd, " configurator=");
  369. if (pos) {
  370. auth->configurator = 1;
  371. pos += 14;
  372. conf = hostapd_dpp_configurator_get_id(hapd, atoi(pos));
  373. if (!conf) {
  374. wpa_printf(MSG_INFO,
  375. "DPP: Could not find the specified configurator");
  376. goto fail;
  377. }
  378. }
  379. auth->conf_sta = conf_sta;
  380. auth->conf_ap = conf_ap;
  381. auth->conf = conf;
  382. return;
  383. fail:
  384. wpa_printf(MSG_DEBUG, "DPP: Failed to set configurator parameters");
  385. dpp_configuration_free(conf_sta);
  386. dpp_configuration_free(conf_ap);
  387. }
  388. int hostapd_dpp_auth_init(struct hostapd_data *hapd, const char *cmd)
  389. {
  390. const char *pos;
  391. struct dpp_bootstrap_info *peer_bi, *own_bi = NULL;
  392. const u8 *dst;
  393. int res;
  394. int configurator = 1;
  395. struct dpp_configuration *conf_sta = NULL, *conf_ap = NULL;
  396. pos = os_strstr(cmd, " peer=");
  397. if (!pos)
  398. return -1;
  399. pos += 6;
  400. peer_bi = dpp_bootstrap_get_id(hapd, atoi(pos));
  401. if (!peer_bi) {
  402. wpa_printf(MSG_INFO,
  403. "DPP: Could not find bootstrapping info for the identified peer");
  404. return -1;
  405. }
  406. pos = os_strstr(cmd, " own=");
  407. if (pos) {
  408. pos += 5;
  409. own_bi = dpp_bootstrap_get_id(hapd, atoi(pos));
  410. if (!own_bi) {
  411. wpa_printf(MSG_INFO,
  412. "DPP: Could not find bootstrapping info for the identified local entry");
  413. return -1;
  414. }
  415. if (peer_bi->curve != own_bi->curve) {
  416. wpa_printf(MSG_INFO,
  417. "DPP: Mismatching curves in bootstrapping info (peer=%s own=%s)",
  418. peer_bi->curve->name, own_bi->curve->name);
  419. return -1;
  420. }
  421. }
  422. pos = os_strstr(cmd, " role=");
  423. if (pos) {
  424. pos += 6;
  425. if (os_strncmp(pos, "configurator", 12) == 0)
  426. configurator = 1;
  427. else if (os_strncmp(pos, "enrollee", 8) == 0)
  428. configurator = 0;
  429. else
  430. goto fail;
  431. }
  432. if (hapd->dpp_auth)
  433. dpp_auth_deinit(hapd->dpp_auth);
  434. /* TODO: hw_modes */
  435. hapd->dpp_auth = dpp_auth_init(hapd->msg_ctx, peer_bi, own_bi,
  436. configurator, 0, NULL, 0);
  437. if (!hapd->dpp_auth)
  438. goto fail;
  439. hostapd_dpp_set_testing_options(hapd, hapd->dpp_auth);
  440. hostapd_dpp_set_configurator(hapd, hapd->dpp_auth, cmd);
  441. /* TODO: Support iteration over all frequencies and filtering of
  442. * frequencies based on locally enabled channels that allow initiation
  443. * of transmission. */
  444. if (is_zero_ether_addr(peer_bi->mac_addr)) {
  445. dst = broadcast;
  446. } else {
  447. dst = peer_bi->mac_addr;
  448. os_memcpy(hapd->dpp_auth->peer_mac_addr, peer_bi->mac_addr,
  449. ETH_ALEN);
  450. }
  451. hapd->dpp_auth_ok_on_ack = 0;
  452. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  453. " freq=%u type=%d",
  454. MAC2STR(dst), hapd->dpp_auth->curr_freq,
  455. DPP_PA_AUTHENTICATION_REQ);
  456. res = hostapd_drv_send_action(hapd, hapd->dpp_auth->curr_freq, 0,
  457. dst, wpabuf_head(hapd->dpp_auth->req_msg),
  458. wpabuf_len(hapd->dpp_auth->req_msg));
  459. return res;
  460. fail:
  461. dpp_configuration_free(conf_sta);
  462. dpp_configuration_free(conf_ap);
  463. return -1;
  464. }
  465. int hostapd_dpp_listen(struct hostapd_data *hapd, const char *cmd)
  466. {
  467. int freq;
  468. freq = atoi(cmd);
  469. if (freq <= 0)
  470. return -1;
  471. if (os_strstr(cmd, " role=configurator"))
  472. hapd->dpp_allowed_roles = DPP_CAPAB_CONFIGURATOR;
  473. else if (os_strstr(cmd, " role=enrollee"))
  474. hapd->dpp_allowed_roles = DPP_CAPAB_ENROLLEE;
  475. else
  476. hapd->dpp_allowed_roles = DPP_CAPAB_CONFIGURATOR |
  477. DPP_CAPAB_ENROLLEE;
  478. hapd->dpp_qr_mutual = os_strstr(cmd, " qr=mutual") != NULL;
  479. if (freq != hapd->iface->freq && hapd->iface->freq > 0) {
  480. /* TODO: Listen operation on non-operating channel */
  481. wpa_printf(MSG_INFO,
  482. "DPP: Listen operation on non-operating channel (%d MHz) is not yet supported (operating channel: %d MHz)",
  483. freq, hapd->iface->freq);
  484. return -1;
  485. }
  486. return 0;
  487. }
  488. void hostapd_dpp_listen_stop(struct hostapd_data *hapd)
  489. {
  490. /* TODO: Stop listen operation on non-operating channel */
  491. }
  492. static void hostapd_dpp_rx_auth_req(struct hostapd_data *hapd, const u8 *src,
  493. const u8 *hdr, const u8 *buf, size_t len,
  494. unsigned int freq)
  495. {
  496. const u8 *r_bootstrap, *i_bootstrap;
  497. u16 r_bootstrap_len, i_bootstrap_len;
  498. struct dpp_bootstrap_info *bi, *own_bi = NULL, *peer_bi = NULL;
  499. wpa_printf(MSG_DEBUG, "DPP: Authentication Request from " MACSTR,
  500. MAC2STR(src));
  501. r_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_R_BOOTSTRAP_KEY_HASH,
  502. &r_bootstrap_len);
  503. if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) {
  504. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
  505. "Missing or invalid required Responder Bootstrapping Key Hash attribute");
  506. return;
  507. }
  508. wpa_hexdump(MSG_MSGDUMP, "DPP: Responder Bootstrapping Key Hash",
  509. r_bootstrap, r_bootstrap_len);
  510. i_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_I_BOOTSTRAP_KEY_HASH,
  511. &i_bootstrap_len);
  512. if (!i_bootstrap || i_bootstrap_len != SHA256_MAC_LEN) {
  513. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
  514. "Missing or invalid required Initiator Bootstrapping Key Hash attribute");
  515. return;
  516. }
  517. wpa_hexdump(MSG_MSGDUMP, "DPP: Initiator Bootstrapping Key Hash",
  518. i_bootstrap, i_bootstrap_len);
  519. /* Try to find own and peer bootstrapping key matches based on the
  520. * received hash values */
  521. dl_list_for_each(bi, &hapd->dpp_bootstrap, struct dpp_bootstrap_info,
  522. list) {
  523. if (!own_bi && bi->own &&
  524. os_memcmp(bi->pubkey_hash, r_bootstrap,
  525. SHA256_MAC_LEN) == 0) {
  526. wpa_printf(MSG_DEBUG,
  527. "DPP: Found matching own bootstrapping information");
  528. own_bi = bi;
  529. }
  530. if (!peer_bi && !bi->own &&
  531. os_memcmp(bi->pubkey_hash, i_bootstrap,
  532. SHA256_MAC_LEN) == 0) {
  533. wpa_printf(MSG_DEBUG,
  534. "DPP: Found matching peer bootstrapping information");
  535. peer_bi = bi;
  536. }
  537. if (own_bi && peer_bi)
  538. break;
  539. }
  540. if (!own_bi) {
  541. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
  542. "No matching own bootstrapping key found - ignore message");
  543. return;
  544. }
  545. if (hapd->dpp_auth) {
  546. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_FAIL
  547. "Already in DPP authentication exchange - ignore new one");
  548. return;
  549. }
  550. hapd->dpp_auth_ok_on_ack = 0;
  551. hapd->dpp_auth = dpp_auth_req_rx(hapd->msg_ctx, hapd->dpp_allowed_roles,
  552. hapd->dpp_qr_mutual,
  553. peer_bi, own_bi, freq, hdr, buf, len);
  554. if (!hapd->dpp_auth) {
  555. wpa_printf(MSG_DEBUG, "DPP: No response generated");
  556. return;
  557. }
  558. hostapd_dpp_set_testing_options(hapd, hapd->dpp_auth);
  559. hostapd_dpp_set_configurator(hapd, hapd->dpp_auth,
  560. hapd->dpp_configurator_params);
  561. os_memcpy(hapd->dpp_auth->peer_mac_addr, src, ETH_ALEN);
  562. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  563. " freq=%u type=%d",
  564. MAC2STR(src), hapd->dpp_auth->curr_freq,
  565. DPP_PA_AUTHENTICATION_RESP);
  566. hostapd_drv_send_action(hapd, hapd->dpp_auth->curr_freq, 0,
  567. src, wpabuf_head(hapd->dpp_auth->resp_msg),
  568. wpabuf_len(hapd->dpp_auth->resp_msg));
  569. }
  570. static void hostapd_dpp_gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
  571. enum gas_query_ap_result result,
  572. const struct wpabuf *adv_proto,
  573. const struct wpabuf *resp, u16 status_code)
  574. {
  575. struct hostapd_data *hapd = ctx;
  576. const u8 *pos;
  577. struct dpp_authentication *auth = hapd->dpp_auth;
  578. if (!auth || !auth->auth_success) {
  579. wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
  580. return;
  581. }
  582. if (!resp || status_code != WLAN_STATUS_SUCCESS) {
  583. wpa_printf(MSG_DEBUG, "DPP: GAS query did not succeed");
  584. goto fail;
  585. }
  586. wpa_hexdump_buf(MSG_DEBUG, "DPP: Configuration Response adv_proto",
  587. adv_proto);
  588. wpa_hexdump_buf(MSG_DEBUG, "DPP: Configuration Response (GAS response)",
  589. resp);
  590. if (wpabuf_len(adv_proto) != 10 ||
  591. !(pos = wpabuf_head(adv_proto)) ||
  592. pos[0] != WLAN_EID_ADV_PROTO ||
  593. pos[1] != 8 ||
  594. pos[3] != WLAN_EID_VENDOR_SPECIFIC ||
  595. pos[4] != 5 ||
  596. WPA_GET_BE24(&pos[5]) != OUI_WFA ||
  597. pos[8] != 0x1a ||
  598. pos[9] != 1) {
  599. wpa_printf(MSG_DEBUG,
  600. "DPP: Not a DPP Advertisement Protocol ID");
  601. goto fail;
  602. }
  603. if (dpp_conf_resp_rx(auth, resp) < 0) {
  604. wpa_printf(MSG_DEBUG, "DPP: Configuration attempt failed");
  605. goto fail;
  606. }
  607. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_RECEIVED);
  608. if (auth->ssid_len)
  609. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONFOBJ_SSID "%s",
  610. wpa_ssid_txt(auth->ssid, auth->ssid_len));
  611. if (auth->connector) {
  612. /* TODO: Save the Connector and consider using a command
  613. * to fetch the value instead of sending an event with
  614. * it. The Connector could end up being larger than what
  615. * most clients are ready to receive as an event
  616. * message. */
  617. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONNECTOR "%s",
  618. auth->connector);
  619. } else if (auth->passphrase[0]) {
  620. char hex[64 * 2 + 1];
  621. wpa_snprintf_hex(hex, sizeof(hex),
  622. (const u8 *) auth->passphrase,
  623. os_strlen(auth->passphrase));
  624. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONFOBJ_PASS "%s",
  625. hex);
  626. } else if (auth->psk_set) {
  627. char hex[PMK_LEN * 2 + 1];
  628. wpa_snprintf_hex(hex, sizeof(hex), auth->psk, PMK_LEN);
  629. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONFOBJ_PSK "%s",
  630. hex);
  631. }
  632. if (auth->c_sign_key) {
  633. char *hex;
  634. size_t hexlen;
  635. hexlen = 2 * wpabuf_len(auth->c_sign_key) + 1;
  636. hex = os_malloc(hexlen);
  637. if (hex) {
  638. wpa_snprintf_hex(hex, hexlen,
  639. wpabuf_head(auth->c_sign_key),
  640. wpabuf_len(auth->c_sign_key));
  641. wpa_msg(hapd->msg_ctx, MSG_INFO,
  642. DPP_EVENT_C_SIGN_KEY "%s", hex);
  643. os_free(hex);
  644. }
  645. }
  646. if (auth->net_access_key) {
  647. char *hex;
  648. size_t hexlen;
  649. hexlen = 2 * wpabuf_len(auth->net_access_key) + 1;
  650. hex = os_malloc(hexlen);
  651. if (hex) {
  652. wpa_snprintf_hex(hex, hexlen,
  653. wpabuf_head(auth->net_access_key),
  654. wpabuf_len(auth->net_access_key));
  655. if (auth->net_access_key_expiry)
  656. wpa_msg(hapd->msg_ctx, MSG_INFO,
  657. DPP_EVENT_NET_ACCESS_KEY "%s %lu", hex,
  658. (unsigned long)
  659. auth->net_access_key_expiry);
  660. else
  661. wpa_msg(hapd->msg_ctx, MSG_INFO,
  662. DPP_EVENT_NET_ACCESS_KEY "%s", hex);
  663. os_free(hex);
  664. }
  665. }
  666. dpp_auth_deinit(hapd->dpp_auth);
  667. hapd->dpp_auth = NULL;
  668. return;
  669. fail:
  670. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_FAILED);
  671. dpp_auth_deinit(hapd->dpp_auth);
  672. hapd->dpp_auth = NULL;
  673. }
  674. static void hostapd_dpp_start_gas_client(struct hostapd_data *hapd)
  675. {
  676. struct dpp_authentication *auth = hapd->dpp_auth;
  677. struct wpabuf *buf, *conf_req;
  678. char json[100];
  679. int res;
  680. int netrole_ap = 1;
  681. os_snprintf(json, sizeof(json),
  682. "{\"name\":\"Test\","
  683. "\"wi-fi_tech\":\"infra\","
  684. "\"netRole\":\"%s\"}",
  685. netrole_ap ? "ap" : "sta");
  686. wpa_printf(MSG_DEBUG, "DPP: GAS Config Attributes: %s", json);
  687. conf_req = dpp_build_conf_req(auth, json);
  688. if (!conf_req) {
  689. wpa_printf(MSG_DEBUG,
  690. "DPP: No configuration request data available");
  691. return;
  692. }
  693. buf = gas_build_initial_req(0, 10 + 2 + wpabuf_len(conf_req));
  694. if (!buf) {
  695. wpabuf_free(conf_req);
  696. return;
  697. }
  698. /* Advertisement Protocol IE */
  699. wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
  700. wpabuf_put_u8(buf, 8); /* Length */
  701. wpabuf_put_u8(buf, 0x7f);
  702. wpabuf_put_u8(buf, WLAN_EID_VENDOR_SPECIFIC);
  703. wpabuf_put_u8(buf, 5);
  704. wpabuf_put_be24(buf, OUI_WFA);
  705. wpabuf_put_u8(buf, DPP_OUI_TYPE);
  706. wpabuf_put_u8(buf, 0x01);
  707. /* GAS Query */
  708. wpabuf_put_le16(buf, wpabuf_len(conf_req));
  709. wpabuf_put_buf(buf, conf_req);
  710. wpabuf_free(conf_req);
  711. wpa_printf(MSG_DEBUG, "DPP: GAS request to " MACSTR " (freq %u MHz)",
  712. MAC2STR(auth->peer_mac_addr), auth->curr_freq);
  713. res = gas_query_ap_req(hapd->gas, auth->peer_mac_addr, auth->curr_freq,
  714. buf, hostapd_dpp_gas_resp_cb, hapd);
  715. if (res < 0) {
  716. wpa_msg(hapd->msg_ctx, MSG_DEBUG,
  717. "GAS: Failed to send Query Request");
  718. wpabuf_free(buf);
  719. } else {
  720. wpa_printf(MSG_DEBUG,
  721. "DPP: GAS query started with dialog token %u", res);
  722. }
  723. }
  724. static void hostapd_dpp_auth_success(struct hostapd_data *hapd, int initiator)
  725. {
  726. wpa_printf(MSG_DEBUG, "DPP: Authentication succeeded");
  727. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_AUTH_SUCCESS "init=%d",
  728. initiator);
  729. if (!hapd->dpp_auth->configurator)
  730. hostapd_dpp_start_gas_client(hapd);
  731. }
  732. static void hostapd_dpp_rx_auth_resp(struct hostapd_data *hapd, const u8 *src,
  733. const u8 *hdr, const u8 *buf, size_t len)
  734. {
  735. struct dpp_authentication *auth = hapd->dpp_auth;
  736. struct wpabuf *msg;
  737. wpa_printf(MSG_DEBUG, "DPP: Authentication Response from " MACSTR,
  738. MAC2STR(src));
  739. if (!auth) {
  740. wpa_printf(MSG_DEBUG,
  741. "DPP: No DPP Authentication in progress - drop");
  742. return;
  743. }
  744. if (!is_zero_ether_addr(auth->peer_mac_addr) &&
  745. os_memcmp(src, auth->peer_mac_addr, ETH_ALEN) != 0) {
  746. wpa_printf(MSG_DEBUG, "DPP: MAC address mismatch (expected "
  747. MACSTR ") - drop", MAC2STR(auth->peer_mac_addr));
  748. return;
  749. }
  750. msg = dpp_auth_resp_rx(auth, hdr, buf, len);
  751. if (!msg) {
  752. if (auth->auth_resp_status == DPP_STATUS_RESPONSE_PENDING) {
  753. wpa_printf(MSG_DEBUG, "DPP: Wait for full response");
  754. return;
  755. }
  756. wpa_printf(MSG_DEBUG, "DPP: No confirm generated");
  757. return;
  758. }
  759. os_memcpy(auth->peer_mac_addr, src, ETH_ALEN);
  760. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  761. " freq=%u type=%d", MAC2STR(src), auth->curr_freq,
  762. DPP_PA_AUTHENTICATION_CONF);
  763. hostapd_drv_send_action(hapd, auth->curr_freq, 0, src,
  764. wpabuf_head(msg), wpabuf_len(msg));
  765. wpabuf_free(msg);
  766. hapd->dpp_auth_ok_on_ack = 1;
  767. }
  768. static void hostapd_dpp_rx_auth_conf(struct hostapd_data *hapd, const u8 *src,
  769. const u8 *hdr, const u8 *buf, size_t len)
  770. {
  771. struct dpp_authentication *auth = hapd->dpp_auth;
  772. wpa_printf(MSG_DEBUG, "DPP: Authentication Confirmation from " MACSTR,
  773. MAC2STR(src));
  774. if (!auth) {
  775. wpa_printf(MSG_DEBUG,
  776. "DPP: No DPP Authentication in progress - drop");
  777. return;
  778. }
  779. if (os_memcmp(src, auth->peer_mac_addr, ETH_ALEN) != 0) {
  780. wpa_printf(MSG_DEBUG, "DPP: MAC address mismatch (expected "
  781. MACSTR ") - drop", MAC2STR(auth->peer_mac_addr));
  782. return;
  783. }
  784. if (dpp_auth_conf_rx(auth, hdr, buf, len) < 0) {
  785. wpa_printf(MSG_DEBUG, "DPP: Authentication failed");
  786. return;
  787. }
  788. hostapd_dpp_auth_success(hapd, 0);
  789. }
  790. static void hostapd_dpp_send_peer_disc_resp(struct hostapd_data *hapd,
  791. const u8 *src, unsigned int freq,
  792. u8 trans_id,
  793. enum dpp_status_error status)
  794. {
  795. struct wpabuf *msg;
  796. msg = dpp_alloc_msg(DPP_PA_PEER_DISCOVERY_RESP,
  797. 5 + 5 + 4 + os_strlen(hapd->conf->dpp_connector));
  798. if (!msg)
  799. return;
  800. #ifdef CONFIG_TESTING_OPTIONS
  801. if (dpp_test == DPP_TEST_NO_TRANSACTION_ID_PEER_DISC_RESP) {
  802. wpa_printf(MSG_INFO, "DPP: TESTING - no Transaction ID");
  803. goto skip_trans_id;
  804. }
  805. #endif /* CONFIG_TESTING_OPTIONS */
  806. /* Transaction ID */
  807. wpabuf_put_le16(msg, DPP_ATTR_TRANSACTION_ID);
  808. wpabuf_put_le16(msg, 1);
  809. wpabuf_put_u8(msg, trans_id);
  810. #ifdef CONFIG_TESTING_OPTIONS
  811. skip_trans_id:
  812. if (dpp_test == DPP_TEST_NO_STATUS_PEER_DISC_RESP) {
  813. wpa_printf(MSG_INFO, "DPP: TESTING - no Status");
  814. goto skip_status;
  815. }
  816. #endif /* CONFIG_TESTING_OPTIONS */
  817. /* DPP Status */
  818. wpabuf_put_le16(msg, DPP_ATTR_STATUS);
  819. wpabuf_put_le16(msg, 1);
  820. wpabuf_put_u8(msg, status);
  821. #ifdef CONFIG_TESTING_OPTIONS
  822. skip_status:
  823. if (dpp_test == DPP_TEST_NO_CONNECTOR_PEER_DISC_RESP) {
  824. wpa_printf(MSG_INFO, "DPP: TESTING - no Connector");
  825. goto skip_connector;
  826. }
  827. #endif /* CONFIG_TESTING_OPTIONS */
  828. /* DPP Connector */
  829. if (status == DPP_STATUS_OK) {
  830. wpabuf_put_le16(msg, DPP_ATTR_CONNECTOR);
  831. wpabuf_put_le16(msg, os_strlen(hapd->conf->dpp_connector));
  832. wpabuf_put_str(msg, hapd->conf->dpp_connector);
  833. }
  834. #ifdef CONFIG_TESTING_OPTIONS
  835. skip_connector:
  836. #endif /* CONFIG_TESTING_OPTIONS */
  837. wpa_printf(MSG_DEBUG, "DPP: Send Peer Discovery Response to " MACSTR
  838. " status=%d", MAC2STR(src), status);
  839. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  840. " freq=%u type=%d status=%d", MAC2STR(src), freq,
  841. DPP_PA_PEER_DISCOVERY_RESP, status);
  842. hostapd_drv_send_action(hapd, freq, 0, src,
  843. wpabuf_head(msg), wpabuf_len(msg));
  844. wpabuf_free(msg);
  845. }
  846. static void hostapd_dpp_rx_peer_disc_req(struct hostapd_data *hapd,
  847. const u8 *src,
  848. const u8 *buf, size_t len,
  849. unsigned int freq)
  850. {
  851. const u8 *connector, *trans_id;
  852. u16 connector_len, trans_id_len;
  853. struct os_time now;
  854. struct dpp_introduction intro;
  855. os_time_t expire;
  856. int expiration;
  857. enum dpp_status_error res;
  858. wpa_printf(MSG_DEBUG, "DPP: Peer Discovery Request from " MACSTR,
  859. MAC2STR(src));
  860. if (!hapd->wpa_auth ||
  861. !(hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_DPP) ||
  862. !(hapd->conf->wpa & WPA_PROTO_RSN)) {
  863. wpa_printf(MSG_DEBUG, "DPP: DPP AKM not in use");
  864. return;
  865. }
  866. if (!hapd->conf->dpp_connector || !hapd->conf->dpp_netaccesskey ||
  867. !hapd->conf->dpp_csign) {
  868. wpa_printf(MSG_DEBUG, "DPP: No own Connector/keys set");
  869. return;
  870. }
  871. os_get_time(&now);
  872. if (hapd->conf->dpp_netaccesskey_expiry &&
  873. hapd->conf->dpp_netaccesskey_expiry < now.sec) {
  874. wpa_printf(MSG_INFO, "DPP: Own netAccessKey expired");
  875. return;
  876. }
  877. trans_id = dpp_get_attr(buf, len, DPP_ATTR_TRANSACTION_ID,
  878. &trans_id_len);
  879. if (!trans_id || trans_id_len != 1) {
  880. wpa_printf(MSG_DEBUG,
  881. "DPP: Peer did not include Transaction ID");
  882. return;
  883. }
  884. connector = dpp_get_attr(buf, len, DPP_ATTR_CONNECTOR, &connector_len);
  885. if (!connector) {
  886. wpa_printf(MSG_DEBUG,
  887. "DPP: Peer did not include its Connector");
  888. return;
  889. }
  890. res = dpp_peer_intro(&intro, hapd->conf->dpp_connector,
  891. wpabuf_head(hapd->conf->dpp_netaccesskey),
  892. wpabuf_len(hapd->conf->dpp_netaccesskey),
  893. wpabuf_head(hapd->conf->dpp_csign),
  894. wpabuf_len(hapd->conf->dpp_csign),
  895. connector, connector_len, &expire);
  896. if (res == 255) {
  897. wpa_printf(MSG_INFO,
  898. "DPP: Network Introduction protocol resulted in internal failure (peer "
  899. MACSTR ")", MAC2STR(src));
  900. return;
  901. }
  902. if (res != DPP_STATUS_OK) {
  903. wpa_printf(MSG_INFO,
  904. "DPP: Network Introduction protocol resulted in failure (peer "
  905. MACSTR " status %d)", MAC2STR(src), res);
  906. hostapd_dpp_send_peer_disc_resp(hapd, src, freq, trans_id[0],
  907. res);
  908. return;
  909. }
  910. if (!expire || hapd->conf->dpp_netaccesskey_expiry < expire)
  911. expire = hapd->conf->dpp_netaccesskey_expiry;
  912. if (expire)
  913. expiration = expire - now.sec;
  914. else
  915. expiration = 0;
  916. if (wpa_auth_pmksa_add2(hapd->wpa_auth, src, intro.pmk, intro.pmk_len,
  917. intro.pmkid, expiration,
  918. WPA_KEY_MGMT_DPP) < 0) {
  919. wpa_printf(MSG_ERROR, "DPP: Failed to add PMKSA cache entry");
  920. return;
  921. }
  922. hostapd_dpp_send_peer_disc_resp(hapd, src, freq, trans_id[0],
  923. DPP_STATUS_OK);
  924. }
  925. static void
  926. hostapd_dpp_rx_pkex_exchange_req(struct hostapd_data *hapd, const u8 *src,
  927. const u8 *buf, size_t len,
  928. unsigned int freq)
  929. {
  930. struct wpabuf *msg;
  931. wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Request from " MACSTR,
  932. MAC2STR(src));
  933. /* TODO: Support multiple PKEX codes by iterating over all the enabled
  934. * values here */
  935. if (!hapd->dpp_pkex_code || !hapd->dpp_pkex_bi) {
  936. wpa_printf(MSG_DEBUG,
  937. "DPP: No PKEX code configured - ignore request");
  938. return;
  939. }
  940. if (hapd->dpp_pkex) {
  941. /* TODO: Support parallel operations */
  942. wpa_printf(MSG_DEBUG,
  943. "DPP: Already in PKEX session - ignore new request");
  944. return;
  945. }
  946. hapd->dpp_pkex = dpp_pkex_rx_exchange_req(hapd->msg_ctx,
  947. hapd->dpp_pkex_bi,
  948. hapd->own_addr, src,
  949. hapd->dpp_pkex_identifier,
  950. hapd->dpp_pkex_code,
  951. buf, len);
  952. if (!hapd->dpp_pkex) {
  953. wpa_printf(MSG_DEBUG,
  954. "DPP: Failed to process the request - ignore it");
  955. return;
  956. }
  957. msg = hapd->dpp_pkex->exchange_resp;
  958. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  959. " freq=%u type=%d", MAC2STR(src), freq,
  960. DPP_PA_PKEX_EXCHANGE_RESP);
  961. hostapd_drv_send_action(hapd, freq, 0, src,
  962. wpabuf_head(msg), wpabuf_len(msg));
  963. if (hapd->dpp_pkex->failed) {
  964. wpa_printf(MSG_DEBUG,
  965. "DPP: Terminate PKEX exchange due to an earlier error");
  966. if (hapd->dpp_pkex->t > hapd->dpp_pkex->own_bi->pkex_t)
  967. hapd->dpp_pkex->own_bi->pkex_t = hapd->dpp_pkex->t;
  968. dpp_pkex_free(hapd->dpp_pkex);
  969. hapd->dpp_pkex = NULL;
  970. }
  971. }
  972. static void
  973. hostapd_dpp_rx_pkex_exchange_resp(struct hostapd_data *hapd, const u8 *src,
  974. const u8 *buf, size_t len, unsigned int freq)
  975. {
  976. struct wpabuf *msg;
  977. wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Response from " MACSTR,
  978. MAC2STR(src));
  979. /* TODO: Support multiple PKEX codes by iterating over all the enabled
  980. * values here */
  981. if (!hapd->dpp_pkex || !hapd->dpp_pkex->initiator ||
  982. hapd->dpp_pkex->exchange_done) {
  983. wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
  984. return;
  985. }
  986. os_memcpy(hapd->dpp_pkex->peer_mac, src, ETH_ALEN);
  987. msg = dpp_pkex_rx_exchange_resp(hapd->dpp_pkex, buf, len);
  988. if (!msg) {
  989. wpa_printf(MSG_DEBUG, "DPP: Failed to process the response");
  990. return;
  991. }
  992. wpa_printf(MSG_DEBUG, "DPP: Send PKEX Commit-Reveal Request to " MACSTR,
  993. MAC2STR(src));
  994. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  995. " freq=%u type=%d", MAC2STR(src), freq,
  996. DPP_PA_PKEX_COMMIT_REVEAL_REQ);
  997. hostapd_drv_send_action(hapd, freq, 0, src,
  998. wpabuf_head(msg), wpabuf_len(msg));
  999. wpabuf_free(msg);
  1000. }
  1001. static void
  1002. hostapd_dpp_rx_pkex_commit_reveal_req(struct hostapd_data *hapd, const u8 *src,
  1003. const u8 *hdr, const u8 *buf, size_t len,
  1004. unsigned int freq)
  1005. {
  1006. struct wpabuf *msg;
  1007. struct dpp_pkex *pkex = hapd->dpp_pkex;
  1008. struct dpp_bootstrap_info *bi;
  1009. wpa_printf(MSG_DEBUG, "DPP: PKEX Commit-Reveal Request from " MACSTR,
  1010. MAC2STR(src));
  1011. if (!pkex || pkex->initiator || !pkex->exchange_done) {
  1012. wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
  1013. return;
  1014. }
  1015. msg = dpp_pkex_rx_commit_reveal_req(pkex, hdr, buf, len);
  1016. if (!msg) {
  1017. wpa_printf(MSG_DEBUG, "DPP: Failed to process the request");
  1018. if (hapd->dpp_pkex->failed) {
  1019. wpa_printf(MSG_DEBUG, "DPP: Terminate PKEX exchange");
  1020. if (hapd->dpp_pkex->t > hapd->dpp_pkex->own_bi->pkex_t)
  1021. hapd->dpp_pkex->own_bi->pkex_t =
  1022. hapd->dpp_pkex->t;
  1023. dpp_pkex_free(hapd->dpp_pkex);
  1024. hapd->dpp_pkex = NULL;
  1025. }
  1026. return;
  1027. }
  1028. wpa_printf(MSG_DEBUG, "DPP: Send PKEX Commit-Reveal Response to "
  1029. MACSTR, MAC2STR(src));
  1030. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  1031. " freq=%u type=%d", MAC2STR(src), freq,
  1032. DPP_PA_PKEX_COMMIT_REVEAL_RESP);
  1033. hostapd_drv_send_action(hapd, freq, 0, src,
  1034. wpabuf_head(msg), wpabuf_len(msg));
  1035. wpabuf_free(msg);
  1036. bi = os_zalloc(sizeof(*bi));
  1037. if (!bi)
  1038. return;
  1039. bi->id = hapd_dpp_next_id(hapd);
  1040. bi->type = DPP_BOOTSTRAP_PKEX;
  1041. os_memcpy(bi->mac_addr, src, ETH_ALEN);
  1042. bi->num_freq = 1;
  1043. bi->freq[0] = freq;
  1044. bi->curve = pkex->own_bi->curve;
  1045. bi->pubkey = pkex->peer_bootstrap_key;
  1046. pkex->peer_bootstrap_key = NULL;
  1047. dpp_pkex_free(pkex);
  1048. hapd->dpp_pkex = NULL;
  1049. if (dpp_bootstrap_key_hash(bi) < 0) {
  1050. dpp_bootstrap_info_free(bi);
  1051. return;
  1052. }
  1053. dl_list_add(&hapd->dpp_bootstrap, &bi->list);
  1054. }
  1055. static void
  1056. hostapd_dpp_rx_pkex_commit_reveal_resp(struct hostapd_data *hapd, const u8 *src,
  1057. const u8 *hdr, const u8 *buf, size_t len,
  1058. unsigned int freq)
  1059. {
  1060. int res;
  1061. struct dpp_bootstrap_info *bi, *own_bi;
  1062. struct dpp_pkex *pkex = hapd->dpp_pkex;
  1063. char cmd[500];
  1064. wpa_printf(MSG_DEBUG, "DPP: PKEX Commit-Reveal Response from " MACSTR,
  1065. MAC2STR(src));
  1066. if (!pkex || !pkex->initiator || !pkex->exchange_done) {
  1067. wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
  1068. return;
  1069. }
  1070. res = dpp_pkex_rx_commit_reveal_resp(pkex, hdr, buf, len);
  1071. if (res < 0) {
  1072. wpa_printf(MSG_DEBUG, "DPP: Failed to process the response");
  1073. return;
  1074. }
  1075. own_bi = pkex->own_bi;
  1076. bi = os_zalloc(sizeof(*bi));
  1077. if (!bi)
  1078. return;
  1079. bi->id = hapd_dpp_next_id(hapd);
  1080. bi->type = DPP_BOOTSTRAP_PKEX;
  1081. os_memcpy(bi->mac_addr, src, ETH_ALEN);
  1082. bi->num_freq = 1;
  1083. bi->freq[0] = freq;
  1084. bi->curve = own_bi->curve;
  1085. bi->pubkey = pkex->peer_bootstrap_key;
  1086. pkex->peer_bootstrap_key = NULL;
  1087. dpp_pkex_free(pkex);
  1088. hapd->dpp_pkex = NULL;
  1089. if (dpp_bootstrap_key_hash(bi) < 0) {
  1090. dpp_bootstrap_info_free(bi);
  1091. return;
  1092. }
  1093. dl_list_add(&hapd->dpp_bootstrap, &bi->list);
  1094. os_snprintf(cmd, sizeof(cmd), " peer=%u %s",
  1095. bi->id,
  1096. hapd->dpp_pkex_auth_cmd ? hapd->dpp_pkex_auth_cmd : "");
  1097. wpa_printf(MSG_DEBUG,
  1098. "DPP: Start authentication after PKEX with parameters: %s",
  1099. cmd);
  1100. if (hostapd_dpp_auth_init(hapd, cmd) < 0) {
  1101. wpa_printf(MSG_DEBUG,
  1102. "DPP: Authentication initialization failed");
  1103. return;
  1104. }
  1105. }
  1106. void hostapd_dpp_rx_action(struct hostapd_data *hapd, const u8 *src,
  1107. const u8 *buf, size_t len, unsigned int freq)
  1108. {
  1109. u8 crypto_suite;
  1110. enum dpp_public_action_frame_type type;
  1111. const u8 *hdr;
  1112. unsigned int pkex_t;
  1113. if (len < DPP_HDR_LEN)
  1114. return;
  1115. if (WPA_GET_BE24(buf) != OUI_WFA || buf[3] != DPP_OUI_TYPE)
  1116. return;
  1117. hdr = buf;
  1118. buf += 4;
  1119. len -= 4;
  1120. crypto_suite = *buf++;
  1121. type = *buf++;
  1122. len -= 2;
  1123. wpa_printf(MSG_DEBUG,
  1124. "DPP: Received DPP Public Action frame crypto suite %u type %d from "
  1125. MACSTR " freq=%u",
  1126. crypto_suite, type, MAC2STR(src), freq);
  1127. if (crypto_suite != 1) {
  1128. wpa_printf(MSG_DEBUG, "DPP: Unsupported crypto suite %u",
  1129. crypto_suite);
  1130. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_RX "src=" MACSTR
  1131. " freq=%u type=%d ignore=unsupported-crypto-suite",
  1132. MAC2STR(src), freq, type);
  1133. return;
  1134. }
  1135. wpa_hexdump(MSG_MSGDUMP, "DPP: Received message attributes", buf, len);
  1136. if (dpp_check_attrs(buf, len) < 0) {
  1137. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_RX "src=" MACSTR
  1138. " freq=%u type=%d ignore=invalid-attributes",
  1139. MAC2STR(src), freq, type);
  1140. return;
  1141. }
  1142. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_RX "src=" MACSTR
  1143. " freq=%u type=%d", MAC2STR(src), freq, type);
  1144. switch (type) {
  1145. case DPP_PA_AUTHENTICATION_REQ:
  1146. hostapd_dpp_rx_auth_req(hapd, src, hdr, buf, len, freq);
  1147. break;
  1148. case DPP_PA_AUTHENTICATION_RESP:
  1149. hostapd_dpp_rx_auth_resp(hapd, src, hdr, buf, len);
  1150. break;
  1151. case DPP_PA_AUTHENTICATION_CONF:
  1152. hostapd_dpp_rx_auth_conf(hapd, src, hdr, buf, len);
  1153. break;
  1154. case DPP_PA_PEER_DISCOVERY_REQ:
  1155. hostapd_dpp_rx_peer_disc_req(hapd, src, buf, len, freq);
  1156. break;
  1157. case DPP_PA_PKEX_EXCHANGE_REQ:
  1158. hostapd_dpp_rx_pkex_exchange_req(hapd, src, buf, len, freq);
  1159. break;
  1160. case DPP_PA_PKEX_EXCHANGE_RESP:
  1161. hostapd_dpp_rx_pkex_exchange_resp(hapd, src, buf, len, freq);
  1162. break;
  1163. case DPP_PA_PKEX_COMMIT_REVEAL_REQ:
  1164. hostapd_dpp_rx_pkex_commit_reveal_req(hapd, src, hdr, buf, len,
  1165. freq);
  1166. break;
  1167. case DPP_PA_PKEX_COMMIT_REVEAL_RESP:
  1168. hostapd_dpp_rx_pkex_commit_reveal_resp(hapd, src, hdr, buf, len,
  1169. freq);
  1170. break;
  1171. default:
  1172. wpa_printf(MSG_DEBUG,
  1173. "DPP: Ignored unsupported frame subtype %d", type);
  1174. break;
  1175. }
  1176. if (hapd->dpp_pkex)
  1177. pkex_t = hapd->dpp_pkex->t;
  1178. else if (hapd->dpp_pkex_bi)
  1179. pkex_t = hapd->dpp_pkex_bi->pkex_t;
  1180. else
  1181. pkex_t = 0;
  1182. if (pkex_t >= PKEX_COUNTER_T_LIMIT) {
  1183. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_PKEX_T_LIMIT "id=0");
  1184. hostapd_dpp_pkex_remove(hapd, "*");
  1185. }
  1186. }
  1187. struct wpabuf *
  1188. hostapd_dpp_gas_req_handler(struct hostapd_data *hapd, const u8 *sa,
  1189. const u8 *query, size_t query_len)
  1190. {
  1191. struct dpp_authentication *auth = hapd->dpp_auth;
  1192. struct wpabuf *resp;
  1193. wpa_printf(MSG_DEBUG, "DPP: GAS request from " MACSTR, MAC2STR(sa));
  1194. if (!auth || !auth->auth_success ||
  1195. os_memcmp(sa, auth->peer_mac_addr, ETH_ALEN) != 0) {
  1196. wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
  1197. return NULL;
  1198. }
  1199. wpa_hexdump(MSG_DEBUG,
  1200. "DPP: Received Configuration Request (GAS Query Request)",
  1201. query, query_len);
  1202. resp = dpp_conf_req_rx(auth, query, query_len);
  1203. if (!resp)
  1204. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_CONF_FAILED);
  1205. return resp;
  1206. }
  1207. static unsigned int hostapd_dpp_next_configurator_id(struct hostapd_data *hapd)
  1208. {
  1209. struct dpp_configurator *conf;
  1210. unsigned int max_id = 0;
  1211. dl_list_for_each(conf, &hapd->dpp_configurator,
  1212. struct dpp_configurator, list) {
  1213. if (conf->id > max_id)
  1214. max_id = conf->id;
  1215. }
  1216. return max_id + 1;
  1217. }
  1218. int hostapd_dpp_configurator_add(struct hostapd_data *hapd, const char *cmd)
  1219. {
  1220. char *curve = NULL;
  1221. char *key = NULL;
  1222. u8 *privkey = NULL;
  1223. size_t privkey_len = 0;
  1224. int ret = -1;
  1225. struct dpp_configurator *conf = NULL;
  1226. curve = get_param(cmd, " curve=");
  1227. key = get_param(cmd, " key=");
  1228. if (key) {
  1229. privkey_len = os_strlen(key) / 2;
  1230. privkey = os_malloc(privkey_len);
  1231. if (!privkey ||
  1232. hexstr2bin(key, privkey, privkey_len) < 0)
  1233. goto fail;
  1234. }
  1235. conf = dpp_keygen_configurator(curve, privkey, privkey_len);
  1236. if (!conf)
  1237. goto fail;
  1238. conf->id = hostapd_dpp_next_configurator_id(hapd);
  1239. dl_list_add(&hapd->dpp_configurator, &conf->list);
  1240. ret = conf->id;
  1241. conf = NULL;
  1242. fail:
  1243. os_free(curve);
  1244. str_clear_free(key);
  1245. bin_clear_free(privkey, privkey_len);
  1246. dpp_configurator_free(conf);
  1247. return ret;
  1248. }
  1249. static int dpp_configurator_del(struct hostapd_data *hapd, unsigned int id)
  1250. {
  1251. struct dpp_configurator *conf, *tmp;
  1252. int found = 0;
  1253. dl_list_for_each_safe(conf, tmp, &hapd->dpp_configurator,
  1254. struct dpp_configurator, list) {
  1255. if (id && conf->id != id)
  1256. continue;
  1257. found = 1;
  1258. dl_list_del(&conf->list);
  1259. dpp_configurator_free(conf);
  1260. }
  1261. if (id == 0)
  1262. return 0; /* flush succeeds regardless of entries found */
  1263. return found ? 0 : -1;
  1264. }
  1265. int hostapd_dpp_configurator_remove(struct hostapd_data *hapd, const char *id)
  1266. {
  1267. unsigned int id_val;
  1268. if (os_strcmp(id, "*") == 0) {
  1269. id_val = 0;
  1270. } else {
  1271. id_val = atoi(id);
  1272. if (id_val == 0)
  1273. return -1;
  1274. }
  1275. return dpp_configurator_del(hapd, id_val);
  1276. }
  1277. int hostapd_dpp_pkex_add(struct hostapd_data *hapd, const char *cmd)
  1278. {
  1279. struct dpp_bootstrap_info *own_bi;
  1280. const char *pos, *end;
  1281. pos = os_strstr(cmd, " own=");
  1282. if (!pos)
  1283. return -1;
  1284. pos += 5;
  1285. own_bi = dpp_bootstrap_get_id(hapd, atoi(pos));
  1286. if (!own_bi) {
  1287. wpa_printf(MSG_DEBUG,
  1288. "DPP: Identified bootstrap info not found");
  1289. return -1;
  1290. }
  1291. if (own_bi->type != DPP_BOOTSTRAP_PKEX) {
  1292. wpa_printf(MSG_DEBUG,
  1293. "DPP: Identified bootstrap info not for PKEX");
  1294. return -1;
  1295. }
  1296. hapd->dpp_pkex_bi = own_bi;
  1297. own_bi->pkex_t = 0; /* clear pending errors on new code */
  1298. os_free(hapd->dpp_pkex_identifier);
  1299. hapd->dpp_pkex_identifier = NULL;
  1300. pos = os_strstr(cmd, " identifier=");
  1301. if (pos) {
  1302. pos += 12;
  1303. end = os_strchr(pos, ' ');
  1304. if (!end)
  1305. return -1;
  1306. hapd->dpp_pkex_identifier = os_malloc(end - pos + 1);
  1307. if (!hapd->dpp_pkex_identifier)
  1308. return -1;
  1309. os_memcpy(hapd->dpp_pkex_identifier, pos, end - pos);
  1310. hapd->dpp_pkex_identifier[end - pos] = '\0';
  1311. }
  1312. pos = os_strstr(cmd, " code=");
  1313. if (!pos)
  1314. return -1;
  1315. os_free(hapd->dpp_pkex_code);
  1316. hapd->dpp_pkex_code = os_strdup(pos + 6);
  1317. if (!hapd->dpp_pkex_code)
  1318. return -1;
  1319. if (os_strstr(cmd, " init=1")) {
  1320. struct wpabuf *msg;
  1321. wpa_printf(MSG_DEBUG, "DPP: Initiating PKEX");
  1322. dpp_pkex_free(hapd->dpp_pkex);
  1323. hapd->dpp_pkex = dpp_pkex_init(hapd->msg_ctx, own_bi,
  1324. hapd->own_addr,
  1325. hapd->dpp_pkex_identifier,
  1326. hapd->dpp_pkex_code);
  1327. if (!hapd->dpp_pkex)
  1328. return -1;
  1329. msg = hapd->dpp_pkex->exchange_req;
  1330. /* TODO: Which channel to use? */
  1331. wpa_msg(hapd->msg_ctx, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  1332. " freq=%u type=%d", MAC2STR(broadcast), 2437,
  1333. DPP_PA_PKEX_EXCHANGE_REQ);
  1334. hostapd_drv_send_action(hapd, 2437, 0, broadcast,
  1335. wpabuf_head(msg), wpabuf_len(msg));
  1336. }
  1337. /* TODO: Support multiple PKEX info entries */
  1338. os_free(hapd->dpp_pkex_auth_cmd);
  1339. hapd->dpp_pkex_auth_cmd = os_strdup(cmd);
  1340. return 1;
  1341. }
  1342. int hostapd_dpp_pkex_remove(struct hostapd_data *hapd, const char *id)
  1343. {
  1344. unsigned int id_val;
  1345. if (os_strcmp(id, "*") == 0) {
  1346. id_val = 0;
  1347. } else {
  1348. id_val = atoi(id);
  1349. if (id_val == 0)
  1350. return -1;
  1351. }
  1352. if ((id_val != 0 && id_val != 1) || !hapd->dpp_pkex_code)
  1353. return -1;
  1354. /* TODO: Support multiple PKEX entries */
  1355. os_free(hapd->dpp_pkex_code);
  1356. hapd->dpp_pkex_code = NULL;
  1357. os_free(hapd->dpp_pkex_identifier);
  1358. hapd->dpp_pkex_identifier = NULL;
  1359. os_free(hapd->dpp_pkex_auth_cmd);
  1360. hapd->dpp_pkex_auth_cmd = NULL;
  1361. hapd->dpp_pkex_bi = NULL;
  1362. /* TODO: Remove dpp_pkex only if it is for the identified PKEX code */
  1363. dpp_pkex_free(hapd->dpp_pkex);
  1364. hapd->dpp_pkex = NULL;
  1365. return 0;
  1366. }
  1367. int hostapd_dpp_init(struct hostapd_data *hapd)
  1368. {
  1369. dl_list_init(&hapd->dpp_bootstrap);
  1370. dl_list_init(&hapd->dpp_configurator);
  1371. hapd->dpp_allowed_roles = DPP_CAPAB_CONFIGURATOR | DPP_CAPAB_ENROLLEE;
  1372. hapd->dpp_init_done = 1;
  1373. return 0;
  1374. }
  1375. void hostapd_dpp_deinit(struct hostapd_data *hapd)
  1376. {
  1377. #ifdef CONFIG_TESTING_OPTIONS
  1378. os_free(hapd->dpp_config_obj_override);
  1379. hapd->dpp_config_obj_override = NULL;
  1380. os_free(hapd->dpp_discovery_override);
  1381. hapd->dpp_discovery_override = NULL;
  1382. os_free(hapd->dpp_groups_override);
  1383. hapd->dpp_groups_override = NULL;
  1384. hapd->dpp_ignore_netaccesskey_mismatch = 0;
  1385. #endif /* CONFIG_TESTING_OPTIONS */
  1386. if (!hapd->dpp_init_done)
  1387. return;
  1388. dpp_bootstrap_del(hapd, 0);
  1389. dpp_configurator_del(hapd, 0);
  1390. dpp_auth_deinit(hapd->dpp_auth);
  1391. hapd->dpp_auth = NULL;
  1392. hostapd_dpp_pkex_remove(hapd, "*");
  1393. hapd->dpp_pkex = NULL;
  1394. os_free(hapd->dpp_configurator_params);
  1395. hapd->dpp_configurator_params = NULL;
  1396. }