dpp_supplicant.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163
  1. /*
  2. * wpa_supplicant - DPP
  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/gas_server.h"
  14. #include "rsn_supp/wpa.h"
  15. #include "rsn_supp/pmksa_cache.h"
  16. #include "wpa_supplicant_i.h"
  17. #include "config.h"
  18. #include "driver_i.h"
  19. #include "offchannel.h"
  20. #include "gas_query.h"
  21. #include "bss.h"
  22. #include "scan.h"
  23. #include "notify.h"
  24. #include "dpp_supplicant.h"
  25. static int wpas_dpp_listen_start(struct wpa_supplicant *wpa_s,
  26. unsigned int freq);
  27. static void wpas_dpp_reply_wait_timeout(void *eloop_ctx, void *timeout_ctx);
  28. static void wpas_dpp_auth_success(struct wpa_supplicant *wpa_s, int initiator);
  29. static void wpas_dpp_tx_status(struct wpa_supplicant *wpa_s,
  30. unsigned int freq, const u8 *dst,
  31. const u8 *src, const u8 *bssid,
  32. const u8 *data, size_t data_len,
  33. enum offchannel_send_action_result result);
  34. static const u8 broadcast[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  35. /* Use a hardcoded Transaction ID 1 in Peer Discovery frames since there is only
  36. * a single transaction in progress at any point in time. */
  37. static const u8 TRANSACTION_ID = 1;
  38. static struct dpp_configurator *
  39. dpp_configurator_get_id(struct wpa_supplicant *wpa_s, unsigned int id)
  40. {
  41. struct dpp_configurator *conf;
  42. dl_list_for_each(conf, &wpa_s->dpp_configurator,
  43. struct dpp_configurator, list) {
  44. if (conf->id == id)
  45. return conf;
  46. }
  47. return NULL;
  48. }
  49. static unsigned int wpas_dpp_next_id(struct wpa_supplicant *wpa_s)
  50. {
  51. struct dpp_bootstrap_info *bi;
  52. unsigned int max_id = 0;
  53. dl_list_for_each(bi, &wpa_s->dpp_bootstrap, struct dpp_bootstrap_info,
  54. list) {
  55. if (bi->id > max_id)
  56. max_id = bi->id;
  57. }
  58. return max_id + 1;
  59. }
  60. /**
  61. * wpas_dpp_qr_code - Parse and add DPP bootstrapping info from a QR Code
  62. * @wpa_s: Pointer to wpa_supplicant data
  63. * @cmd: DPP URI read from a QR Code
  64. * Returns: Identifier of the stored info or -1 on failure
  65. */
  66. int wpas_dpp_qr_code(struct wpa_supplicant *wpa_s, const char *cmd)
  67. {
  68. struct dpp_bootstrap_info *bi;
  69. struct dpp_authentication *auth = wpa_s->dpp_auth;
  70. bi = dpp_parse_qr_code(cmd);
  71. if (!bi)
  72. return -1;
  73. bi->id = wpas_dpp_next_id(wpa_s);
  74. dl_list_add(&wpa_s->dpp_bootstrap, &bi->list);
  75. if (auth && auth->response_pending &&
  76. dpp_notify_new_qr_code(auth, bi) == 1) {
  77. wpa_printf(MSG_DEBUG,
  78. "DPP: Sending out pending authentication response");
  79. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  80. " freq=%u type=%d",
  81. MAC2STR(auth->peer_mac_addr), auth->curr_freq,
  82. DPP_PA_AUTHENTICATION_RESP);
  83. offchannel_send_action(wpa_s, auth->curr_freq,
  84. auth->peer_mac_addr, wpa_s->own_addr,
  85. broadcast,
  86. wpabuf_head(auth->resp_msg),
  87. wpabuf_len(auth->resp_msg),
  88. 500, wpas_dpp_tx_status, 0);
  89. }
  90. return bi->id;
  91. }
  92. static char * get_param(const char *cmd, const char *param)
  93. {
  94. const char *pos, *end;
  95. char *val;
  96. size_t len;
  97. pos = os_strstr(cmd, param);
  98. if (!pos)
  99. return NULL;
  100. pos += os_strlen(param);
  101. end = os_strchr(pos, ' ');
  102. if (end)
  103. len = end - pos;
  104. else
  105. len = os_strlen(pos);
  106. val = os_malloc(len + 1);
  107. if (!val)
  108. return NULL;
  109. os_memcpy(val, pos, len);
  110. val[len] = '\0';
  111. return val;
  112. }
  113. int wpas_dpp_bootstrap_gen(struct wpa_supplicant *wpa_s, const char *cmd)
  114. {
  115. char *chan = NULL, *mac = NULL, *info = NULL, *pk = NULL, *curve = NULL;
  116. char *key = NULL;
  117. u8 *privkey = NULL;
  118. size_t privkey_len = 0;
  119. size_t len;
  120. int ret = -1;
  121. struct dpp_bootstrap_info *bi;
  122. bi = os_zalloc(sizeof(*bi));
  123. if (!bi)
  124. goto fail;
  125. if (os_strstr(cmd, "type=qrcode"))
  126. bi->type = DPP_BOOTSTRAP_QR_CODE;
  127. else if (os_strstr(cmd, "type=pkex"))
  128. bi->type = DPP_BOOTSTRAP_PKEX;
  129. else
  130. goto fail;
  131. chan = get_param(cmd, " chan=");
  132. mac = get_param(cmd, " mac=");
  133. info = get_param(cmd, " info=");
  134. curve = get_param(cmd, " curve=");
  135. key = get_param(cmd, " key=");
  136. if (key) {
  137. privkey_len = os_strlen(key) / 2;
  138. privkey = os_malloc(privkey_len);
  139. if (!privkey ||
  140. hexstr2bin(key, privkey, privkey_len) < 0)
  141. goto fail;
  142. }
  143. pk = dpp_keygen(bi, curve, privkey, privkey_len);
  144. if (!pk)
  145. goto fail;
  146. len = 4; /* "DPP:" */
  147. if (chan) {
  148. if (dpp_parse_uri_chan_list(bi, chan) < 0)
  149. goto fail;
  150. len += 3 + os_strlen(chan); /* C:...; */
  151. }
  152. if (mac) {
  153. if (dpp_parse_uri_mac(bi, mac) < 0)
  154. goto fail;
  155. len += 3 + os_strlen(mac); /* M:...; */
  156. }
  157. if (info) {
  158. if (dpp_parse_uri_info(bi, info) < 0)
  159. goto fail;
  160. len += 3 + os_strlen(info); /* I:...; */
  161. }
  162. len += 4 + os_strlen(pk);
  163. bi->uri = os_malloc(len + 1);
  164. if (!bi->uri)
  165. goto fail;
  166. os_snprintf(bi->uri, len + 1, "DPP:%s%s%s%s%s%s%s%s%sK:%s;;",
  167. chan ? "C:" : "", chan ? chan : "", chan ? ";" : "",
  168. mac ? "M:" : "", mac ? mac : "", mac ? ";" : "",
  169. info ? "I:" : "", info ? info : "", info ? ";" : "",
  170. pk);
  171. bi->id = wpas_dpp_next_id(wpa_s);
  172. dl_list_add(&wpa_s->dpp_bootstrap, &bi->list);
  173. ret = bi->id;
  174. bi = NULL;
  175. fail:
  176. os_free(curve);
  177. os_free(pk);
  178. os_free(chan);
  179. os_free(mac);
  180. os_free(info);
  181. str_clear_free(key);
  182. bin_clear_free(privkey, privkey_len);
  183. dpp_bootstrap_info_free(bi);
  184. return ret;
  185. }
  186. static struct dpp_bootstrap_info *
  187. dpp_bootstrap_get_id(struct wpa_supplicant *wpa_s, unsigned int id)
  188. {
  189. struct dpp_bootstrap_info *bi;
  190. dl_list_for_each(bi, &wpa_s->dpp_bootstrap, struct dpp_bootstrap_info,
  191. list) {
  192. if (bi->id == id)
  193. return bi;
  194. }
  195. return NULL;
  196. }
  197. static int dpp_bootstrap_del(struct wpa_supplicant *wpa_s, unsigned int id)
  198. {
  199. struct dpp_bootstrap_info *bi, *tmp;
  200. int found = 0;
  201. dl_list_for_each_safe(bi, tmp, &wpa_s->dpp_bootstrap,
  202. struct dpp_bootstrap_info, list) {
  203. if (id && bi->id != id)
  204. continue;
  205. found = 1;
  206. dl_list_del(&bi->list);
  207. dpp_bootstrap_info_free(bi);
  208. }
  209. if (id == 0)
  210. return 0; /* flush succeeds regardless of entries found */
  211. return found ? 0 : -1;
  212. }
  213. int wpas_dpp_bootstrap_remove(struct wpa_supplicant *wpa_s, const char *id)
  214. {
  215. unsigned int id_val;
  216. if (os_strcmp(id, "*") == 0) {
  217. id_val = 0;
  218. } else {
  219. id_val = atoi(id);
  220. if (id_val == 0)
  221. return -1;
  222. }
  223. return dpp_bootstrap_del(wpa_s, id_val);
  224. }
  225. const char * wpas_dpp_bootstrap_get_uri(struct wpa_supplicant *wpa_s,
  226. unsigned int id)
  227. {
  228. struct dpp_bootstrap_info *bi;
  229. bi = dpp_bootstrap_get_id(wpa_s, id);
  230. if (!bi)
  231. return NULL;
  232. return bi->uri;
  233. }
  234. int wpas_dpp_bootstrap_info(struct wpa_supplicant *wpa_s, int id,
  235. char *reply, int reply_size)
  236. {
  237. struct dpp_bootstrap_info *bi;
  238. bi = dpp_bootstrap_get_id(wpa_s, id);
  239. if (!bi)
  240. return -1;
  241. return os_snprintf(reply, reply_size, "type=%s\n"
  242. "mac_addr=" MACSTR "\n"
  243. "info=%s\n"
  244. "num_freq=%u\n"
  245. "curve=%s\n",
  246. dpp_bootstrap_type_txt(bi->type),
  247. MAC2STR(bi->mac_addr),
  248. bi->info ? bi->info : "",
  249. bi->num_freq,
  250. bi->curve->name);
  251. }
  252. static void wpas_dpp_tx_status(struct wpa_supplicant *wpa_s,
  253. unsigned int freq, const u8 *dst,
  254. const u8 *src, const u8 *bssid,
  255. const u8 *data, size_t data_len,
  256. enum offchannel_send_action_result result)
  257. {
  258. const char *res_txt;
  259. res_txt = result == OFFCHANNEL_SEND_ACTION_SUCCESS ? "SUCCESS" :
  260. (result == OFFCHANNEL_SEND_ACTION_NO_ACK ? "no-ACK" :
  261. "FAILED");
  262. wpa_printf(MSG_DEBUG, "DPP: TX status: freq=%u dst=" MACSTR
  263. " result=%s", freq, MAC2STR(dst), res_txt);
  264. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR
  265. " freq=%u result=%s", MAC2STR(dst), freq, res_txt);
  266. if (!wpa_s->dpp_auth) {
  267. wpa_printf(MSG_DEBUG,
  268. "DPP: Ignore TX status since there is no ongoing authentication exchange");
  269. return;
  270. }
  271. if (wpa_s->dpp_auth->remove_on_tx_status) {
  272. wpa_printf(MSG_DEBUG,
  273. "DPP: Terminate authentication exchange due to an earlier error");
  274. eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
  275. offchannel_send_action_done(wpa_s);
  276. dpp_auth_deinit(wpa_s->dpp_auth);
  277. wpa_s->dpp_auth = NULL;
  278. return;
  279. }
  280. if (wpa_s->dpp_auth_ok_on_ack)
  281. wpas_dpp_auth_success(wpa_s, 1);
  282. if (!is_broadcast_ether_addr(dst) &&
  283. result != OFFCHANNEL_SEND_ACTION_SUCCESS) {
  284. wpa_printf(MSG_DEBUG,
  285. "DPP: Unicast DPP Action frame was not ACKed");
  286. /* TODO: In case of DPP Authentication Request frame, move to
  287. * the next channel immediately */
  288. }
  289. if (!wpa_s->dpp_auth_ok_on_ack && wpa_s->dpp_auth->neg_freq > 0 &&
  290. wpa_s->dpp_auth->curr_freq != wpa_s->dpp_auth->neg_freq) {
  291. wpa_printf(MSG_DEBUG,
  292. "DPP: Move from curr_freq %u MHz to neg_freq %u MHz for response",
  293. wpa_s->dpp_auth->curr_freq,
  294. wpa_s->dpp_auth->neg_freq);
  295. offchannel_send_action_done(wpa_s);
  296. wpas_dpp_listen_start(wpa_s, wpa_s->dpp_auth->neg_freq);
  297. }
  298. }
  299. static void wpas_dpp_reply_wait_timeout(void *eloop_ctx, void *timeout_ctx)
  300. {
  301. struct wpa_supplicant *wpa_s = eloop_ctx;
  302. unsigned int freq;
  303. if (!wpa_s->dpp_auth)
  304. return;
  305. freq = wpa_s->dpp_auth->curr_freq;
  306. if (wpa_s->dpp_auth->neg_freq > 0)
  307. freq = wpa_s->dpp_auth->neg_freq;
  308. wpa_printf(MSG_DEBUG, "DPP: Continue reply wait on channel %u MHz",
  309. freq);
  310. wpas_dpp_listen_start(wpa_s, freq);
  311. }
  312. static void wpas_dpp_set_testing_options(struct wpa_supplicant *wpa_s,
  313. struct dpp_authentication *auth)
  314. {
  315. #ifdef CONFIG_TESTING_OPTIONS
  316. if (wpa_s->dpp_config_obj_override)
  317. auth->config_obj_override =
  318. os_strdup(wpa_s->dpp_config_obj_override);
  319. if (wpa_s->dpp_discovery_override)
  320. auth->discovery_override =
  321. os_strdup(wpa_s->dpp_discovery_override);
  322. if (wpa_s->dpp_groups_override)
  323. auth->groups_override =
  324. os_strdup(wpa_s->dpp_groups_override);
  325. auth->ignore_netaccesskey_mismatch =
  326. wpa_s->dpp_ignore_netaccesskey_mismatch;
  327. #endif /* CONFIG_TESTING_OPTIONS */
  328. }
  329. static void wpas_dpp_set_configurator(struct wpa_supplicant *wpa_s,
  330. struct dpp_authentication *auth,
  331. const char *cmd)
  332. {
  333. const char *pos, *end;
  334. struct dpp_configuration *conf_sta = NULL, *conf_ap = NULL;
  335. struct dpp_configurator *conf = NULL;
  336. u8 ssid[32] = { "test" };
  337. size_t ssid_len = 4;
  338. char pass[64] = { };
  339. size_t pass_len = 0;
  340. u8 psk[PMK_LEN];
  341. int psk_set = 0;
  342. if (!cmd)
  343. return;
  344. wpa_printf(MSG_DEBUG, "DPP: Set configurator parameters: %s", cmd);
  345. pos = os_strstr(cmd, " ssid=");
  346. if (pos) {
  347. pos += 6;
  348. end = os_strchr(pos, ' ');
  349. ssid_len = end ? (size_t) (end - pos) : os_strlen(pos);
  350. ssid_len /= 2;
  351. if (ssid_len > sizeof(ssid) ||
  352. hexstr2bin(pos, ssid, ssid_len) < 0)
  353. goto fail;
  354. }
  355. pos = os_strstr(cmd, " pass=");
  356. if (pos) {
  357. pos += 6;
  358. end = os_strchr(pos, ' ');
  359. pass_len = end ? (size_t) (end - pos) : os_strlen(pos);
  360. pass_len /= 2;
  361. if (pass_len > sizeof(pass) - 1 || pass_len < 8 ||
  362. hexstr2bin(pos, (u8 *) pass, pass_len) < 0)
  363. goto fail;
  364. }
  365. pos = os_strstr(cmd, " psk=");
  366. if (pos) {
  367. pos += 5;
  368. if (hexstr2bin(pos, psk, PMK_LEN) < 0)
  369. goto fail;
  370. psk_set = 1;
  371. }
  372. if (os_strstr(cmd, " conf=sta-")) {
  373. conf_sta = os_zalloc(sizeof(struct dpp_configuration));
  374. if (!conf_sta)
  375. goto fail;
  376. os_memcpy(conf_sta->ssid, ssid, ssid_len);
  377. conf_sta->ssid_len = ssid_len;
  378. if (os_strstr(cmd, " conf=sta-psk")) {
  379. conf_sta->dpp = 0;
  380. if (psk_set) {
  381. os_memcpy(conf_sta->psk, psk, PMK_LEN);
  382. } else {
  383. conf_sta->passphrase = os_strdup(pass);
  384. if (!conf_sta->passphrase)
  385. goto fail;
  386. }
  387. } else if (os_strstr(cmd, " conf=sta-dpp")) {
  388. conf_sta->dpp = 1;
  389. } else {
  390. goto fail;
  391. }
  392. }
  393. if (os_strstr(cmd, " conf=ap-")) {
  394. conf_ap = os_zalloc(sizeof(struct dpp_configuration));
  395. if (!conf_ap)
  396. goto fail;
  397. os_memcpy(conf_ap->ssid, ssid, ssid_len);
  398. conf_ap->ssid_len = ssid_len;
  399. if (os_strstr(cmd, " conf=ap-psk")) {
  400. conf_ap->dpp = 0;
  401. if (psk_set) {
  402. os_memcpy(conf_ap->psk, psk, PMK_LEN);
  403. } else {
  404. conf_ap->passphrase = os_strdup(pass);
  405. if (!conf_ap->passphrase)
  406. goto fail;
  407. }
  408. } else if (os_strstr(cmd, " conf=ap-dpp")) {
  409. conf_ap->dpp = 1;
  410. } else {
  411. goto fail;
  412. }
  413. }
  414. pos = os_strstr(cmd, " expiry=");
  415. if (pos) {
  416. long int val;
  417. pos += 8;
  418. val = strtol(pos, NULL, 0);
  419. if (val <= 0)
  420. goto fail;
  421. if (conf_sta)
  422. conf_sta->netaccesskey_expiry = val;
  423. if (conf_ap)
  424. conf_ap->netaccesskey_expiry = val;
  425. }
  426. pos = os_strstr(cmd, " configurator=");
  427. if (pos) {
  428. pos += 14;
  429. conf = dpp_configurator_get_id(wpa_s, atoi(pos));
  430. if (!conf) {
  431. wpa_printf(MSG_INFO,
  432. "DPP: Could not find the specified configurator");
  433. goto fail;
  434. }
  435. }
  436. auth->conf_sta = conf_sta;
  437. auth->conf_ap = conf_ap;
  438. auth->conf = conf;
  439. return;
  440. fail:
  441. wpa_printf(MSG_DEBUG, "DPP: Failed to set configurator parameters");
  442. dpp_configuration_free(conf_sta);
  443. dpp_configuration_free(conf_ap);
  444. }
  445. int wpas_dpp_auth_init(struct wpa_supplicant *wpa_s, const char *cmd)
  446. {
  447. const char *pos;
  448. struct dpp_bootstrap_info *peer_bi, *own_bi = NULL;
  449. const u8 *dst;
  450. int res;
  451. int configurator = 1;
  452. unsigned int wait_time;
  453. unsigned int neg_freq = 0;
  454. wpa_s->dpp_gas_client = 0;
  455. pos = os_strstr(cmd, " peer=");
  456. if (!pos)
  457. return -1;
  458. pos += 6;
  459. peer_bi = dpp_bootstrap_get_id(wpa_s, atoi(pos));
  460. if (!peer_bi) {
  461. wpa_printf(MSG_INFO,
  462. "DPP: Could not find bootstrapping info for the identified peer");
  463. return -1;
  464. }
  465. pos = os_strstr(cmd, " own=");
  466. if (pos) {
  467. pos += 5;
  468. own_bi = dpp_bootstrap_get_id(wpa_s, atoi(pos));
  469. if (!own_bi) {
  470. wpa_printf(MSG_INFO,
  471. "DPP: Could not find bootstrapping info for the identified local entry");
  472. return -1;
  473. }
  474. if (peer_bi->curve != own_bi->curve) {
  475. wpa_printf(MSG_INFO,
  476. "DPP: Mismatching curves in bootstrapping info (peer=%s own=%s)",
  477. peer_bi->curve->name, own_bi->curve->name);
  478. return -1;
  479. }
  480. }
  481. pos = os_strstr(cmd, " role=");
  482. if (pos) {
  483. pos += 6;
  484. if (os_strncmp(pos, "configurator", 12) == 0)
  485. configurator = 1;
  486. else if (os_strncmp(pos, "enrollee", 8) == 0)
  487. configurator = 0;
  488. else
  489. goto fail;
  490. }
  491. pos = os_strstr(cmd, " netrole=");
  492. if (pos) {
  493. pos += 9;
  494. wpa_s->dpp_netrole_ap = os_strncmp(pos, "ap", 2) == 0;
  495. }
  496. pos = os_strstr(cmd, " neg_freq=");
  497. if (pos)
  498. neg_freq = atoi(pos + 10);
  499. if (wpa_s->dpp_auth) {
  500. eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
  501. offchannel_send_action_done(wpa_s);
  502. dpp_auth_deinit(wpa_s->dpp_auth);
  503. }
  504. wpa_s->dpp_auth = dpp_auth_init(wpa_s, peer_bi, own_bi, configurator,
  505. neg_freq);
  506. if (!wpa_s->dpp_auth)
  507. goto fail;
  508. wpas_dpp_set_testing_options(wpa_s, wpa_s->dpp_auth);
  509. wpas_dpp_set_configurator(wpa_s, wpa_s->dpp_auth, cmd);
  510. /* TODO: Support iteration over all frequencies and filtering of
  511. * frequencies based on locally enabled channels that allow initiation
  512. * of transmission. */
  513. if (peer_bi->num_freq > 0)
  514. wpa_s->dpp_auth->curr_freq = peer_bi->freq[0];
  515. else
  516. wpa_s->dpp_auth->curr_freq = 2412;
  517. wpa_s->dpp_auth->neg_freq = neg_freq;
  518. if (is_zero_ether_addr(peer_bi->mac_addr)) {
  519. dst = broadcast;
  520. } else {
  521. dst = peer_bi->mac_addr;
  522. os_memcpy(wpa_s->dpp_auth->peer_mac_addr, peer_bi->mac_addr,
  523. ETH_ALEN);
  524. }
  525. wpa_s->dpp_auth_ok_on_ack = 0;
  526. eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
  527. wait_time = wpa_s->max_remain_on_chan;
  528. if (wait_time > 2000)
  529. wait_time = 2000;
  530. eloop_register_timeout(wait_time / 1000, (wait_time % 1000) * 1000,
  531. wpas_dpp_reply_wait_timeout,
  532. wpa_s, NULL);
  533. if (neg_freq > 0 && wpa_s->dpp_auth->curr_freq != neg_freq) {
  534. wpa_printf(MSG_DEBUG,
  535. "DPP: Initiate on curr_freq %u MHz and move to neg_freq %u MHz for response",
  536. wpa_s->dpp_auth->curr_freq,
  537. wpa_s->dpp_auth->neg_freq);
  538. }
  539. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
  540. MAC2STR(dst), wpa_s->dpp_auth->curr_freq,
  541. DPP_PA_AUTHENTICATION_REQ);
  542. res = offchannel_send_action(wpa_s, wpa_s->dpp_auth->curr_freq,
  543. dst, wpa_s->own_addr, broadcast,
  544. wpabuf_head(wpa_s->dpp_auth->req_msg),
  545. wpabuf_len(wpa_s->dpp_auth->req_msg),
  546. wait_time, wpas_dpp_tx_status, 0);
  547. return res;
  548. fail:
  549. return -1;
  550. }
  551. struct wpas_dpp_listen_work {
  552. unsigned int freq;
  553. unsigned int duration;
  554. struct wpabuf *probe_resp_ie;
  555. };
  556. static void wpas_dpp_listen_work_free(struct wpas_dpp_listen_work *lwork)
  557. {
  558. if (!lwork)
  559. return;
  560. os_free(lwork);
  561. }
  562. static void wpas_dpp_listen_work_done(struct wpa_supplicant *wpa_s)
  563. {
  564. struct wpas_dpp_listen_work *lwork;
  565. if (!wpa_s->dpp_listen_work)
  566. return;
  567. lwork = wpa_s->dpp_listen_work->ctx;
  568. wpas_dpp_listen_work_free(lwork);
  569. radio_work_done(wpa_s->dpp_listen_work);
  570. wpa_s->dpp_listen_work = NULL;
  571. }
  572. static void dpp_start_listen_cb(struct wpa_radio_work *work, int deinit)
  573. {
  574. struct wpa_supplicant *wpa_s = work->wpa_s;
  575. struct wpas_dpp_listen_work *lwork = work->ctx;
  576. if (deinit) {
  577. if (work->started) {
  578. wpa_s->dpp_listen_work = NULL;
  579. wpas_dpp_listen_stop(wpa_s);
  580. }
  581. wpas_dpp_listen_work_free(lwork);
  582. return;
  583. }
  584. wpa_s->dpp_listen_work = work;
  585. wpa_s->dpp_pending_listen_freq = lwork->freq;
  586. if (wpa_drv_remain_on_channel(wpa_s, lwork->freq,
  587. wpa_s->max_remain_on_chan) < 0) {
  588. wpa_printf(MSG_DEBUG,
  589. "DPP: Failed to request the driver to remain on channel (%u MHz) for listen",
  590. lwork->freq);
  591. wpas_dpp_listen_work_done(wpa_s);
  592. wpa_s->dpp_pending_listen_freq = 0;
  593. return;
  594. }
  595. wpa_s->off_channel_freq = 0;
  596. wpa_s->roc_waiting_drv_freq = lwork->freq;
  597. }
  598. static int wpas_dpp_listen_start(struct wpa_supplicant *wpa_s,
  599. unsigned int freq)
  600. {
  601. struct wpas_dpp_listen_work *lwork;
  602. if (wpa_s->dpp_listen_work) {
  603. wpa_printf(MSG_DEBUG,
  604. "DPP: Reject start_listen since dpp_listen_work already exists");
  605. return -1;
  606. }
  607. if (wpa_s->dpp_listen_freq)
  608. wpas_dpp_listen_stop(wpa_s);
  609. wpa_s->dpp_listen_freq = freq;
  610. lwork = os_zalloc(sizeof(*lwork));
  611. if (!lwork)
  612. return -1;
  613. lwork->freq = freq;
  614. if (radio_add_work(wpa_s, freq, "dpp-listen", 0, dpp_start_listen_cb,
  615. lwork) < 0) {
  616. wpas_dpp_listen_work_free(lwork);
  617. return -1;
  618. }
  619. return 0;
  620. }
  621. int wpas_dpp_listen(struct wpa_supplicant *wpa_s, const char *cmd)
  622. {
  623. int freq;
  624. freq = atoi(cmd);
  625. if (freq <= 0)
  626. return -1;
  627. if (os_strstr(cmd, " role=configurator"))
  628. wpa_s->dpp_allowed_roles = DPP_CAPAB_CONFIGURATOR;
  629. else if (os_strstr(cmd, " role=enrollee"))
  630. wpa_s->dpp_allowed_roles = DPP_CAPAB_ENROLLEE;
  631. else
  632. wpa_s->dpp_allowed_roles = DPP_CAPAB_CONFIGURATOR |
  633. DPP_CAPAB_ENROLLEE;
  634. wpa_s->dpp_qr_mutual = os_strstr(cmd, " qr=mutual") != NULL;
  635. wpa_s->dpp_netrole_ap = os_strstr(cmd, " netrole=ap") != NULL;
  636. if (wpa_s->dpp_listen_freq == (unsigned int) freq) {
  637. wpa_printf(MSG_DEBUG, "DPP: Already listening on %u MHz",
  638. freq);
  639. return 0;
  640. }
  641. return wpas_dpp_listen_start(wpa_s, freq);
  642. }
  643. void wpas_dpp_listen_stop(struct wpa_supplicant *wpa_s)
  644. {
  645. if (!wpa_s->dpp_listen_freq)
  646. return;
  647. wpa_printf(MSG_DEBUG, "DPP: Stop listen on %u MHz",
  648. wpa_s->dpp_listen_freq);
  649. wpa_drv_cancel_remain_on_channel(wpa_s);
  650. wpa_s->dpp_listen_freq = 0;
  651. wpas_dpp_listen_work_done(wpa_s);
  652. }
  653. void wpas_dpp_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  654. unsigned int freq)
  655. {
  656. if (!wpa_s->dpp_listen_freq && !wpa_s->dpp_pending_listen_freq)
  657. return;
  658. wpa_printf(MSG_DEBUG,
  659. "DPP: remain-on-channel callback (off_channel_freq=%u dpp_pending_listen_freq=%d roc_waiting_drv_freq=%d freq=%u)",
  660. wpa_s->off_channel_freq, wpa_s->dpp_pending_listen_freq,
  661. wpa_s->roc_waiting_drv_freq, freq);
  662. if (wpa_s->off_channel_freq &&
  663. wpa_s->off_channel_freq == wpa_s->dpp_pending_listen_freq) {
  664. wpa_printf(MSG_DEBUG, "DPP: Listen on %u MHz started", freq);
  665. wpa_s->dpp_pending_listen_freq = 0;
  666. } else {
  667. wpa_printf(MSG_DEBUG,
  668. "DPP: Ignore remain-on-channel callback (off_channel_freq=%u dpp_pending_listen_freq=%d freq=%u)",
  669. wpa_s->off_channel_freq,
  670. wpa_s->dpp_pending_listen_freq, freq);
  671. }
  672. }
  673. void wpas_dpp_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
  674. unsigned int freq)
  675. {
  676. wpas_dpp_listen_work_done(wpa_s);
  677. if (wpa_s->dpp_auth && !wpa_s->dpp_gas_client) {
  678. /* Continue listen with a new remain-on-channel */
  679. wpa_printf(MSG_DEBUG,
  680. "DPP: Continue wait on %u MHz for the ongoing DPP provisioning session",
  681. wpa_s->dpp_auth->curr_freq);
  682. wpas_dpp_listen_start(wpa_s, wpa_s->dpp_auth->curr_freq);
  683. return;
  684. }
  685. if (wpa_s->dpp_listen_freq) {
  686. /* Continue listen with a new remain-on-channel */
  687. wpas_dpp_listen_start(wpa_s, wpa_s->dpp_listen_freq);
  688. }
  689. }
  690. static void wpas_dpp_rx_auth_req(struct wpa_supplicant *wpa_s, const u8 *src,
  691. const u8 *hdr, const u8 *buf, size_t len,
  692. unsigned int freq)
  693. {
  694. const u8 *r_bootstrap, *i_bootstrap;
  695. u16 r_bootstrap_len, i_bootstrap_len;
  696. struct dpp_bootstrap_info *bi, *own_bi = NULL, *peer_bi = NULL;
  697. wpa_printf(MSG_DEBUG, "DPP: Authentication Request from " MACSTR,
  698. MAC2STR(src));
  699. r_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_R_BOOTSTRAP_KEY_HASH,
  700. &r_bootstrap_len);
  701. if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) {
  702. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
  703. "Missing or invalid required Responder Bootstrapping Key Hash attribute");
  704. return;
  705. }
  706. wpa_hexdump(MSG_MSGDUMP, "DPP: Responder Bootstrapping Key Hash",
  707. r_bootstrap, r_bootstrap_len);
  708. i_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_I_BOOTSTRAP_KEY_HASH,
  709. &i_bootstrap_len);
  710. if (!i_bootstrap || i_bootstrap_len != SHA256_MAC_LEN) {
  711. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
  712. "Missing or invalid required Initiator Bootstrapping Key Hash attribute");
  713. return;
  714. }
  715. wpa_hexdump(MSG_MSGDUMP, "DPP: Initiator Bootstrapping Key Hash",
  716. i_bootstrap, i_bootstrap_len);
  717. /* Try to find own and peer bootstrapping key matches based on the
  718. * received hash values */
  719. dl_list_for_each(bi, &wpa_s->dpp_bootstrap, struct dpp_bootstrap_info,
  720. list) {
  721. if (!own_bi && bi->own &&
  722. os_memcmp(bi->pubkey_hash, r_bootstrap,
  723. SHA256_MAC_LEN) == 0) {
  724. wpa_printf(MSG_DEBUG,
  725. "DPP: Found matching own bootstrapping information");
  726. own_bi = bi;
  727. }
  728. if (!peer_bi && !bi->own &&
  729. os_memcmp(bi->pubkey_hash, i_bootstrap,
  730. SHA256_MAC_LEN) == 0) {
  731. wpa_printf(MSG_DEBUG,
  732. "DPP: Found matching peer bootstrapping information");
  733. peer_bi = bi;
  734. }
  735. if (own_bi && peer_bi)
  736. break;
  737. }
  738. if (!own_bi) {
  739. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
  740. "No matching own bootstrapping key found - ignore message");
  741. return;
  742. }
  743. if (wpa_s->dpp_auth) {
  744. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
  745. "Already in DPP authentication exchange - ignore new one");
  746. return;
  747. }
  748. wpa_s->dpp_gas_client = 0;
  749. wpa_s->dpp_auth_ok_on_ack = 0;
  750. wpa_s->dpp_auth = dpp_auth_req_rx(wpa_s, wpa_s->dpp_allowed_roles,
  751. wpa_s->dpp_qr_mutual,
  752. peer_bi, own_bi, freq, hdr, buf, len);
  753. if (!wpa_s->dpp_auth) {
  754. wpa_printf(MSG_DEBUG, "DPP: No response generated");
  755. return;
  756. }
  757. wpas_dpp_set_testing_options(wpa_s, wpa_s->dpp_auth);
  758. wpas_dpp_set_configurator(wpa_s, wpa_s->dpp_auth,
  759. wpa_s->dpp_configurator_params);
  760. os_memcpy(wpa_s->dpp_auth->peer_mac_addr, src, ETH_ALEN);
  761. if (wpa_s->dpp_listen_freq &&
  762. wpa_s->dpp_listen_freq != wpa_s->dpp_auth->curr_freq) {
  763. wpa_printf(MSG_DEBUG,
  764. "DPP: Stop listen on %u MHz to allow response on the request %u MHz",
  765. wpa_s->dpp_listen_freq, wpa_s->dpp_auth->curr_freq);
  766. wpas_dpp_listen_stop(wpa_s);
  767. }
  768. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
  769. MAC2STR(src), wpa_s->dpp_auth->curr_freq,
  770. DPP_PA_AUTHENTICATION_RESP);
  771. offchannel_send_action(wpa_s, wpa_s->dpp_auth->curr_freq,
  772. src, wpa_s->own_addr, broadcast,
  773. wpabuf_head(wpa_s->dpp_auth->resp_msg),
  774. wpabuf_len(wpa_s->dpp_auth->resp_msg),
  775. 500, wpas_dpp_tx_status, 0);
  776. }
  777. static void wpas_dpp_start_gas_server(struct wpa_supplicant *wpa_s)
  778. {
  779. /* TODO: stop wait and start ROC */
  780. }
  781. static struct wpa_ssid * wpas_dpp_add_network(struct wpa_supplicant *wpa_s,
  782. struct dpp_authentication *auth)
  783. {
  784. struct wpa_ssid *ssid;
  785. ssid = wpa_config_add_network(wpa_s->conf);
  786. if (!ssid)
  787. return NULL;
  788. wpas_notify_network_added(wpa_s, ssid);
  789. wpa_config_set_network_defaults(ssid);
  790. ssid->disabled = 1;
  791. ssid->ssid = os_malloc(auth->ssid_len);
  792. if (!ssid->ssid)
  793. goto fail;
  794. os_memcpy(ssid->ssid, auth->ssid, auth->ssid_len);
  795. ssid->ssid_len = auth->ssid_len;
  796. if (auth->connector) {
  797. ssid->key_mgmt = WPA_KEY_MGMT_DPP;
  798. ssid->ieee80211w = 1;
  799. ssid->dpp_connector = os_strdup(auth->connector);
  800. if (!ssid->dpp_connector)
  801. goto fail;
  802. }
  803. if (auth->c_sign_key) {
  804. ssid->dpp_csign = os_malloc(wpabuf_len(auth->c_sign_key));
  805. if (!ssid->dpp_csign)
  806. goto fail;
  807. os_memcpy(ssid->dpp_csign, wpabuf_head(auth->c_sign_key),
  808. wpabuf_len(auth->c_sign_key));
  809. ssid->dpp_csign_len = wpabuf_len(auth->c_sign_key);
  810. }
  811. if (auth->net_access_key) {
  812. ssid->dpp_netaccesskey =
  813. os_malloc(wpabuf_len(auth->net_access_key));
  814. if (!ssid->dpp_netaccesskey)
  815. goto fail;
  816. os_memcpy(ssid->dpp_netaccesskey,
  817. wpabuf_head(auth->net_access_key),
  818. wpabuf_len(auth->net_access_key));
  819. ssid->dpp_netaccesskey_len = wpabuf_len(auth->net_access_key);
  820. ssid->dpp_netaccesskey_expiry = auth->net_access_key_expiry;
  821. }
  822. if (!auth->connector) {
  823. ssid->key_mgmt = WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_PSK_SHA256;
  824. ssid->ieee80211w = 1;
  825. if (auth->passphrase[0]) {
  826. if (wpa_config_set_quoted(ssid, "psk",
  827. auth->passphrase) < 0)
  828. goto fail;
  829. wpa_config_update_psk(ssid);
  830. ssid->export_keys = 1;
  831. } else {
  832. ssid->psk_set = auth->psk_set;
  833. os_memcpy(ssid->psk, auth->psk, PMK_LEN);
  834. }
  835. }
  836. return ssid;
  837. fail:
  838. wpas_notify_network_removed(wpa_s, ssid);
  839. wpa_config_remove_network(wpa_s->conf, ssid->id);
  840. return NULL;
  841. }
  842. static void wpas_dpp_process_config(struct wpa_supplicant *wpa_s,
  843. struct dpp_authentication *auth)
  844. {
  845. struct wpa_ssid *ssid;
  846. if (wpa_s->conf->dpp_config_processing < 1)
  847. return;
  848. ssid = wpas_dpp_add_network(wpa_s, auth);
  849. if (!ssid)
  850. return;
  851. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_NETWORK_ID "%d", ssid->id);
  852. if (wpa_s->conf->dpp_config_processing < 2)
  853. return;
  854. wpa_printf(MSG_DEBUG, "DPP: Trying to connect to the new network");
  855. ssid->disabled = 0;
  856. wpa_s->disconnected = 0;
  857. wpa_s->reassociate = 1;
  858. wpa_s->scan_runs = 0;
  859. wpa_s->normal_scans = 0;
  860. wpa_supplicant_cancel_sched_scan(wpa_s);
  861. wpa_supplicant_req_scan(wpa_s, 0, 0);
  862. }
  863. static void wpas_dpp_handle_config_obj(struct wpa_supplicant *wpa_s,
  864. struct dpp_authentication *auth)
  865. {
  866. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_RECEIVED);
  867. if (auth->ssid_len)
  868. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONFOBJ_SSID "%s",
  869. wpa_ssid_txt(auth->ssid, auth->ssid_len));
  870. if (auth->connector) {
  871. /* TODO: Save the Connector and consider using a command
  872. * to fetch the value instead of sending an event with
  873. * it. The Connector could end up being larger than what
  874. * most clients are ready to receive as an event
  875. * message. */
  876. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONNECTOR "%s",
  877. auth->connector);
  878. }
  879. if (auth->c_sign_key) {
  880. char *hex;
  881. size_t hexlen;
  882. hexlen = 2 * wpabuf_len(auth->c_sign_key) + 1;
  883. hex = os_malloc(hexlen);
  884. if (hex) {
  885. wpa_snprintf_hex(hex, hexlen,
  886. wpabuf_head(auth->c_sign_key),
  887. wpabuf_len(auth->c_sign_key));
  888. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_C_SIGN_KEY "%s",
  889. hex);
  890. os_free(hex);
  891. }
  892. }
  893. if (auth->net_access_key) {
  894. char *hex;
  895. size_t hexlen;
  896. hexlen = 2 * wpabuf_len(auth->net_access_key) + 1;
  897. hex = os_malloc(hexlen);
  898. if (hex) {
  899. wpa_snprintf_hex(hex, hexlen,
  900. wpabuf_head(auth->net_access_key),
  901. wpabuf_len(auth->net_access_key));
  902. if (auth->net_access_key_expiry)
  903. wpa_msg(wpa_s, MSG_INFO,
  904. DPP_EVENT_NET_ACCESS_KEY "%s %lu", hex,
  905. (long unsigned)
  906. auth->net_access_key_expiry);
  907. else
  908. wpa_msg(wpa_s, MSG_INFO,
  909. DPP_EVENT_NET_ACCESS_KEY "%s", hex);
  910. os_free(hex);
  911. }
  912. }
  913. wpas_dpp_process_config(wpa_s, auth);
  914. }
  915. static void wpas_dpp_gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
  916. enum gas_query_result result,
  917. const struct wpabuf *adv_proto,
  918. const struct wpabuf *resp, u16 status_code)
  919. {
  920. struct wpa_supplicant *wpa_s = ctx;
  921. const u8 *pos;
  922. struct dpp_authentication *auth = wpa_s->dpp_auth;
  923. if (!auth || !auth->auth_success) {
  924. wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
  925. return;
  926. }
  927. if (!resp || status_code != WLAN_STATUS_SUCCESS) {
  928. wpa_printf(MSG_DEBUG, "DPP: GAS query did not succeed");
  929. goto fail;
  930. }
  931. wpa_hexdump_buf(MSG_DEBUG, "DPP: Configuration Response adv_proto",
  932. adv_proto);
  933. wpa_hexdump_buf(MSG_DEBUG, "DPP: Configuration Response (GAS response)",
  934. resp);
  935. if (wpabuf_len(adv_proto) != 10 ||
  936. !(pos = wpabuf_head(adv_proto)) ||
  937. pos[0] != WLAN_EID_ADV_PROTO ||
  938. pos[1] != 8 ||
  939. pos[3] != WLAN_EID_VENDOR_SPECIFIC ||
  940. pos[4] != 5 ||
  941. WPA_GET_BE24(&pos[5]) != OUI_WFA ||
  942. pos[8] != 0x1a ||
  943. pos[9] != 1) {
  944. wpa_printf(MSG_DEBUG,
  945. "DPP: Not a DPP Advertisement Protocol ID");
  946. goto fail;
  947. }
  948. if (dpp_conf_resp_rx(auth, resp) < 0) {
  949. wpa_printf(MSG_DEBUG, "DPP: Configuration attempt failed");
  950. goto fail;
  951. }
  952. wpas_dpp_handle_config_obj(wpa_s, auth);
  953. dpp_auth_deinit(wpa_s->dpp_auth);
  954. wpa_s->dpp_auth = NULL;
  955. return;
  956. fail:
  957. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_FAILED);
  958. dpp_auth_deinit(wpa_s->dpp_auth);
  959. wpa_s->dpp_auth = NULL;
  960. }
  961. static void wpas_dpp_start_gas_client(struct wpa_supplicant *wpa_s)
  962. {
  963. struct dpp_authentication *auth = wpa_s->dpp_auth;
  964. struct wpabuf *buf, *conf_req;
  965. char json[100];
  966. int res;
  967. wpa_s->dpp_gas_client = 1;
  968. os_snprintf(json, sizeof(json),
  969. "{\"name\":\"Test\","
  970. "\"wi-fi_tech\":\"infra\","
  971. "\"netRole\":\"%s\"}",
  972. wpa_s->dpp_netrole_ap ? "ap" : "sta");
  973. wpa_printf(MSG_DEBUG, "DPP: GAS Config Attributes: %s", json);
  974. offchannel_send_action_done(wpa_s);
  975. wpas_dpp_listen_stop(wpa_s);
  976. conf_req = dpp_build_conf_req(auth, json);
  977. if (!conf_req) {
  978. wpa_printf(MSG_DEBUG,
  979. "DPP: No configuration request data available");
  980. return;
  981. }
  982. buf = gas_build_initial_req(0, 10 + 2 + wpabuf_len(conf_req));
  983. if (!buf) {
  984. wpabuf_free(conf_req);
  985. return;
  986. }
  987. /* Advertisement Protocol IE */
  988. wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
  989. wpabuf_put_u8(buf, 8); /* Length */
  990. wpabuf_put_u8(buf, 0x7f);
  991. wpabuf_put_u8(buf, WLAN_EID_VENDOR_SPECIFIC);
  992. wpabuf_put_u8(buf, 5);
  993. wpabuf_put_be24(buf, OUI_WFA);
  994. wpabuf_put_u8(buf, DPP_OUI_TYPE);
  995. wpabuf_put_u8(buf, 0x01);
  996. /* GAS Query */
  997. wpabuf_put_le16(buf, wpabuf_len(conf_req));
  998. wpabuf_put_buf(buf, conf_req);
  999. wpabuf_free(conf_req);
  1000. wpa_printf(MSG_DEBUG, "DPP: GAS request to " MACSTR " (freq %u MHz)",
  1001. MAC2STR(auth->peer_mac_addr), auth->curr_freq);
  1002. res = gas_query_req(wpa_s->gas, auth->peer_mac_addr, auth->curr_freq,
  1003. buf, wpas_dpp_gas_resp_cb, wpa_s);
  1004. if (res < 0) {
  1005. wpa_msg(wpa_s, MSG_DEBUG, "GAS: Failed to send Query Request");
  1006. wpabuf_free(buf);
  1007. } else {
  1008. wpa_printf(MSG_DEBUG,
  1009. "DPP: GAS query started with dialog token %u", res);
  1010. }
  1011. }
  1012. static void wpas_dpp_auth_success(struct wpa_supplicant *wpa_s, int initiator)
  1013. {
  1014. wpa_printf(MSG_DEBUG, "DPP: Authentication succeeded");
  1015. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_AUTH_SUCCESS "init=%d", initiator);
  1016. if (wpa_s->dpp_auth->configurator)
  1017. wpas_dpp_start_gas_server(wpa_s);
  1018. else
  1019. wpas_dpp_start_gas_client(wpa_s);
  1020. }
  1021. static void wpas_dpp_rx_auth_resp(struct wpa_supplicant *wpa_s, const u8 *src,
  1022. const u8 *hdr, const u8 *buf, size_t len,
  1023. unsigned int freq)
  1024. {
  1025. struct dpp_authentication *auth = wpa_s->dpp_auth;
  1026. struct wpabuf *msg;
  1027. wpa_printf(MSG_DEBUG, "DPP: Authentication Response from " MACSTR
  1028. " (freq %u MHz)", MAC2STR(src), freq);
  1029. if (!auth) {
  1030. wpa_printf(MSG_DEBUG,
  1031. "DPP: No DPP Authentication in progress - drop");
  1032. return;
  1033. }
  1034. if (!is_zero_ether_addr(auth->peer_mac_addr) &&
  1035. os_memcmp(src, auth->peer_mac_addr, ETH_ALEN) != 0) {
  1036. wpa_printf(MSG_DEBUG, "DPP: MAC address mismatch (expected "
  1037. MACSTR ") - drop", MAC2STR(auth->peer_mac_addr));
  1038. return;
  1039. }
  1040. eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
  1041. if (auth->curr_freq != freq && auth->neg_freq == freq) {
  1042. wpa_printf(MSG_DEBUG,
  1043. "DPP: Responder accepted request for different negotiation channel");
  1044. auth->curr_freq = freq;
  1045. }
  1046. msg = dpp_auth_resp_rx(auth, hdr, buf, len);
  1047. if (!msg) {
  1048. if (auth->auth_resp_status == DPP_STATUS_RESPONSE_PENDING) {
  1049. wpa_printf(MSG_DEBUG,
  1050. "DPP: Start wait for full response");
  1051. offchannel_send_action_done(wpa_s);
  1052. wpas_dpp_listen_start(wpa_s, auth->curr_freq);
  1053. return;
  1054. }
  1055. wpa_printf(MSG_DEBUG, "DPP: No confirm generated");
  1056. return;
  1057. }
  1058. os_memcpy(auth->peer_mac_addr, src, ETH_ALEN);
  1059. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
  1060. MAC2STR(src), auth->curr_freq, DPP_PA_AUTHENTICATION_CONF);
  1061. offchannel_send_action(wpa_s, auth->curr_freq,
  1062. src, wpa_s->own_addr, broadcast,
  1063. wpabuf_head(msg), wpabuf_len(msg),
  1064. 500, wpas_dpp_tx_status, 0);
  1065. wpabuf_free(msg);
  1066. wpa_s->dpp_auth_ok_on_ack = 1;
  1067. }
  1068. static void wpas_dpp_rx_auth_conf(struct wpa_supplicant *wpa_s, const u8 *src,
  1069. const u8 *hdr, const u8 *buf, size_t len)
  1070. {
  1071. struct dpp_authentication *auth = wpa_s->dpp_auth;
  1072. wpa_printf(MSG_DEBUG, "DPP: Authentication Confirmation from " MACSTR,
  1073. MAC2STR(src));
  1074. if (!auth) {
  1075. wpa_printf(MSG_DEBUG,
  1076. "DPP: No DPP Authentication in progress - drop");
  1077. return;
  1078. }
  1079. if (os_memcmp(src, auth->peer_mac_addr, ETH_ALEN) != 0) {
  1080. wpa_printf(MSG_DEBUG, "DPP: MAC address mismatch (expected "
  1081. MACSTR ") - drop", MAC2STR(auth->peer_mac_addr));
  1082. return;
  1083. }
  1084. if (dpp_auth_conf_rx(auth, hdr, buf, len) < 0) {
  1085. wpa_printf(MSG_DEBUG, "DPP: Authentication failed");
  1086. return;
  1087. }
  1088. wpas_dpp_auth_success(wpa_s, 0);
  1089. }
  1090. static void wpas_dpp_rx_peer_disc_resp(struct wpa_supplicant *wpa_s,
  1091. const u8 *src,
  1092. const u8 *buf, size_t len)
  1093. {
  1094. struct wpa_ssid *ssid;
  1095. const u8 *connector, *trans_id, *status;
  1096. u16 connector_len, trans_id_len, status_len;
  1097. struct dpp_introduction intro;
  1098. struct rsn_pmksa_cache_entry *entry;
  1099. struct os_time now;
  1100. struct os_reltime rnow;
  1101. os_time_t expiry;
  1102. unsigned int seconds;
  1103. enum dpp_status_error res;
  1104. wpa_printf(MSG_DEBUG, "DPP: Peer Discovery Response from " MACSTR,
  1105. MAC2STR(src));
  1106. if (is_zero_ether_addr(wpa_s->dpp_intro_bssid) ||
  1107. os_memcmp(src, wpa_s->dpp_intro_bssid, ETH_ALEN) != 0) {
  1108. wpa_printf(MSG_DEBUG, "DPP: Not waiting for response from "
  1109. MACSTR " - drop", MAC2STR(src));
  1110. return;
  1111. }
  1112. offchannel_send_action_done(wpa_s);
  1113. for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
  1114. if (ssid == wpa_s->dpp_intro_network)
  1115. break;
  1116. }
  1117. if (!ssid || !ssid->dpp_connector || !ssid->dpp_netaccesskey ||
  1118. !ssid->dpp_csign) {
  1119. wpa_printf(MSG_DEBUG,
  1120. "DPP: Profile not found for network introduction");
  1121. return;
  1122. }
  1123. trans_id = dpp_get_attr(buf, len, DPP_ATTR_TRANSACTION_ID,
  1124. &trans_id_len);
  1125. if (!trans_id || trans_id_len != 1) {
  1126. wpa_printf(MSG_DEBUG,
  1127. "DPP: Peer did not include Transaction ID");
  1128. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
  1129. " fail=missing_transaction_id", MAC2STR(src));
  1130. goto fail;
  1131. }
  1132. if (trans_id[0] != TRANSACTION_ID) {
  1133. wpa_printf(MSG_DEBUG,
  1134. "DPP: Ignore frame with unexpected Transaction ID %u",
  1135. trans_id[0]);
  1136. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
  1137. " fail=transaction_id_mismatch", MAC2STR(src));
  1138. goto fail;
  1139. }
  1140. status = dpp_get_attr(buf, len, DPP_ATTR_STATUS, &status_len);
  1141. if (!status || status_len != 1) {
  1142. wpa_printf(MSG_DEBUG, "DPP: Peer did not include Status");
  1143. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
  1144. " fail=missing_status", MAC2STR(src));
  1145. goto fail;
  1146. }
  1147. if (status[0] != DPP_STATUS_OK) {
  1148. wpa_printf(MSG_DEBUG,
  1149. "DPP: Peer rejected network introduction: Status %u",
  1150. status[0]);
  1151. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
  1152. " status=%u", MAC2STR(src), status[0]);
  1153. goto fail;
  1154. }
  1155. connector = dpp_get_attr(buf, len, DPP_ATTR_CONNECTOR, &connector_len);
  1156. if (!connector) {
  1157. wpa_printf(MSG_DEBUG,
  1158. "DPP: Peer did not include its Connector");
  1159. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
  1160. " fail=missing_connector", MAC2STR(src));
  1161. goto fail;
  1162. }
  1163. res = dpp_peer_intro(&intro, ssid->dpp_connector,
  1164. ssid->dpp_netaccesskey,
  1165. ssid->dpp_netaccesskey_len,
  1166. ssid->dpp_csign,
  1167. ssid->dpp_csign_len,
  1168. connector, connector_len, &expiry);
  1169. if (res != DPP_STATUS_OK) {
  1170. wpa_printf(MSG_INFO,
  1171. "DPP: Network Introduction protocol resulted in failure");
  1172. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
  1173. " fail=peer_connector_validation_failed", MAC2STR(src));
  1174. goto fail;
  1175. }
  1176. entry = os_zalloc(sizeof(*entry));
  1177. if (!entry)
  1178. goto fail;
  1179. os_memcpy(entry->aa, src, ETH_ALEN);
  1180. os_memcpy(entry->pmkid, intro.pmkid, PMKID_LEN);
  1181. os_memcpy(entry->pmk, intro.pmk, intro.pmk_len);
  1182. entry->pmk_len = intro.pmk_len;
  1183. entry->akmp = WPA_KEY_MGMT_DPP;
  1184. if (expiry) {
  1185. os_get_time(&now);
  1186. seconds = expiry - now.sec;
  1187. } else {
  1188. seconds = 86400 * 7;
  1189. }
  1190. os_get_reltime(&rnow);
  1191. entry->expiration = rnow.sec + seconds;
  1192. entry->reauth_time = rnow.sec + seconds;
  1193. entry->network_ctx = ssid;
  1194. wpa_sm_pmksa_cache_add_entry(wpa_s->wpa, entry);
  1195. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
  1196. " status=%u", MAC2STR(src), status[0]);
  1197. wpa_printf(MSG_DEBUG,
  1198. "DPP: Try connection again after successful network introduction");
  1199. if (wpa_supplicant_fast_associate(wpa_s) != 1) {
  1200. wpa_supplicant_cancel_sched_scan(wpa_s);
  1201. wpa_supplicant_req_scan(wpa_s, 0, 0);
  1202. }
  1203. fail:
  1204. os_memset(&intro, 0, sizeof(intro));
  1205. }
  1206. static void
  1207. wpas_dpp_tx_pkex_status(struct wpa_supplicant *wpa_s,
  1208. unsigned int freq, const u8 *dst,
  1209. const u8 *src, const u8 *bssid,
  1210. const u8 *data, size_t data_len,
  1211. enum offchannel_send_action_result result)
  1212. {
  1213. const char *res_txt;
  1214. res_txt = result == OFFCHANNEL_SEND_ACTION_SUCCESS ? "SUCCESS" :
  1215. (result == OFFCHANNEL_SEND_ACTION_NO_ACK ? "no-ACK" :
  1216. "FAILED");
  1217. wpa_printf(MSG_DEBUG, "DPP: TX status: freq=%u dst=" MACSTR
  1218. " result=%s (PKEX)",
  1219. freq, MAC2STR(dst), res_txt);
  1220. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR
  1221. " freq=%u result=%s", MAC2STR(dst), freq, res_txt);
  1222. /* TODO: Time out wait for response more quickly in error cases? */
  1223. if (!wpa_s->dpp_pkex) {
  1224. wpa_printf(MSG_DEBUG,
  1225. "DPP: Ignore TX status since there is no ongoing PKEX exchange");
  1226. return;
  1227. }
  1228. if (wpa_s->dpp_pkex->failed) {
  1229. wpa_printf(MSG_DEBUG,
  1230. "DPP: Terminate PKEX exchange due to an earlier error");
  1231. if (wpa_s->dpp_pkex->t > wpa_s->dpp_pkex->own_bi->pkex_t)
  1232. wpa_s->dpp_pkex->own_bi->pkex_t = wpa_s->dpp_pkex->t;
  1233. dpp_pkex_free(wpa_s->dpp_pkex);
  1234. wpa_s->dpp_pkex = NULL;
  1235. }
  1236. }
  1237. static void
  1238. wpas_dpp_rx_pkex_exchange_req(struct wpa_supplicant *wpa_s, const u8 *src,
  1239. const u8 *buf, size_t len, unsigned int freq)
  1240. {
  1241. struct wpabuf *msg;
  1242. unsigned int wait_time;
  1243. wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Request from " MACSTR,
  1244. MAC2STR(src));
  1245. /* TODO: Support multiple PKEX codes by iterating over all the enabled
  1246. * values here */
  1247. if (!wpa_s->dpp_pkex_code || !wpa_s->dpp_pkex_bi) {
  1248. wpa_printf(MSG_DEBUG,
  1249. "DPP: No PKEX code configured - ignore request");
  1250. return;
  1251. }
  1252. if (wpa_s->dpp_pkex) {
  1253. /* TODO: Support parallel operations */
  1254. wpa_printf(MSG_DEBUG,
  1255. "DPP: Already in PKEX session - ignore new request");
  1256. return;
  1257. }
  1258. wpa_s->dpp_pkex = dpp_pkex_rx_exchange_req(wpa_s, wpa_s->dpp_pkex_bi,
  1259. wpa_s->own_addr, src,
  1260. wpa_s->dpp_pkex_identifier,
  1261. wpa_s->dpp_pkex_code,
  1262. buf, len);
  1263. if (!wpa_s->dpp_pkex) {
  1264. wpa_printf(MSG_DEBUG,
  1265. "DPP: Failed to process the request - ignore it");
  1266. return;
  1267. }
  1268. msg = wpa_s->dpp_pkex->exchange_resp;
  1269. wait_time = wpa_s->max_remain_on_chan;
  1270. if (wait_time > 2000)
  1271. wait_time = 2000;
  1272. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
  1273. MAC2STR(src), freq, DPP_PA_PKEX_EXCHANGE_RESP);
  1274. offchannel_send_action(wpa_s, freq, src, wpa_s->own_addr,
  1275. broadcast,
  1276. wpabuf_head(msg), wpabuf_len(msg),
  1277. wait_time, wpas_dpp_tx_pkex_status, 0);
  1278. }
  1279. static void
  1280. wpas_dpp_rx_pkex_exchange_resp(struct wpa_supplicant *wpa_s, const u8 *src,
  1281. const u8 *buf, size_t len, unsigned int freq)
  1282. {
  1283. struct wpabuf *msg;
  1284. unsigned int wait_time;
  1285. wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Response from " MACSTR,
  1286. MAC2STR(src));
  1287. /* TODO: Support multiple PKEX codes by iterating over all the enabled
  1288. * values here */
  1289. if (!wpa_s->dpp_pkex || !wpa_s->dpp_pkex->initiator ||
  1290. wpa_s->dpp_pkex->exchange_done) {
  1291. wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
  1292. return;
  1293. }
  1294. os_memcpy(wpa_s->dpp_pkex->peer_mac, src, ETH_ALEN);
  1295. msg = dpp_pkex_rx_exchange_resp(wpa_s->dpp_pkex, buf, len);
  1296. if (!msg) {
  1297. wpa_printf(MSG_DEBUG, "DPP: Failed to process the response");
  1298. return;
  1299. }
  1300. wpa_printf(MSG_DEBUG, "DPP: Send PKEX Commit-Reveal Request to " MACSTR,
  1301. MAC2STR(src));
  1302. wait_time = wpa_s->max_remain_on_chan;
  1303. if (wait_time > 2000)
  1304. wait_time = 2000;
  1305. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
  1306. MAC2STR(src), freq, DPP_PA_PKEX_COMMIT_REVEAL_REQ);
  1307. offchannel_send_action(wpa_s, freq, src, wpa_s->own_addr,
  1308. broadcast,
  1309. wpabuf_head(msg), wpabuf_len(msg),
  1310. wait_time, wpas_dpp_tx_pkex_status, 0);
  1311. wpabuf_free(msg);
  1312. }
  1313. static void
  1314. wpas_dpp_rx_pkex_commit_reveal_req(struct wpa_supplicant *wpa_s, const u8 *src,
  1315. const u8 *hdr, const u8 *buf, size_t len,
  1316. unsigned int freq)
  1317. {
  1318. struct wpabuf *msg;
  1319. unsigned int wait_time;
  1320. struct dpp_pkex *pkex = wpa_s->dpp_pkex;
  1321. struct dpp_bootstrap_info *bi;
  1322. wpa_printf(MSG_DEBUG, "DPP: PKEX Commit-Reveal Request from " MACSTR,
  1323. MAC2STR(src));
  1324. if (!pkex || pkex->initiator || !pkex->exchange_done) {
  1325. wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
  1326. return;
  1327. }
  1328. msg = dpp_pkex_rx_commit_reveal_req(pkex, hdr, buf, len);
  1329. if (!msg) {
  1330. wpa_printf(MSG_DEBUG, "DPP: Failed to process the request");
  1331. if (pkex->failed) {
  1332. wpa_printf(MSG_DEBUG, "DPP: Terminate PKEX exchange");
  1333. if (pkex->t > pkex->own_bi->pkex_t)
  1334. pkex->own_bi->pkex_t = pkex->t;
  1335. dpp_pkex_free(wpa_s->dpp_pkex);
  1336. wpa_s->dpp_pkex = NULL;
  1337. }
  1338. return;
  1339. }
  1340. wpa_printf(MSG_DEBUG, "DPP: Send PKEX Commit-Reveal Response to "
  1341. MACSTR, MAC2STR(src));
  1342. wait_time = wpa_s->max_remain_on_chan;
  1343. if (wait_time > 2000)
  1344. wait_time = 2000;
  1345. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
  1346. MAC2STR(src), freq, DPP_PA_PKEX_COMMIT_REVEAL_RESP);
  1347. offchannel_send_action(wpa_s, freq, src, wpa_s->own_addr,
  1348. broadcast,
  1349. wpabuf_head(msg), wpabuf_len(msg),
  1350. wait_time, wpas_dpp_tx_pkex_status, 0);
  1351. wpabuf_free(msg);
  1352. bi = os_zalloc(sizeof(*bi));
  1353. if (!bi)
  1354. return;
  1355. bi->id = wpas_dpp_next_id(wpa_s);
  1356. bi->type = DPP_BOOTSTRAP_PKEX;
  1357. os_memcpy(bi->mac_addr, src, ETH_ALEN);
  1358. bi->num_freq = 1;
  1359. bi->freq[0] = freq;
  1360. bi->curve = pkex->own_bi->curve;
  1361. bi->pubkey = pkex->peer_bootstrap_key;
  1362. pkex->peer_bootstrap_key = NULL;
  1363. dpp_pkex_free(pkex);
  1364. wpa_s->dpp_pkex = NULL;
  1365. if (dpp_bootstrap_key_hash(bi) < 0) {
  1366. dpp_bootstrap_info_free(bi);
  1367. return;
  1368. }
  1369. dl_list_add(&wpa_s->dpp_bootstrap, &bi->list);
  1370. }
  1371. static void
  1372. wpas_dpp_rx_pkex_commit_reveal_resp(struct wpa_supplicant *wpa_s, const u8 *src,
  1373. const u8 *hdr, const u8 *buf, size_t len,
  1374. unsigned int freq)
  1375. {
  1376. int res;
  1377. struct dpp_bootstrap_info *bi, *own_bi;
  1378. struct dpp_pkex *pkex = wpa_s->dpp_pkex;
  1379. char cmd[500];
  1380. wpa_printf(MSG_DEBUG, "DPP: PKEX Commit-Reveal Response from " MACSTR,
  1381. MAC2STR(src));
  1382. if (!pkex || !pkex->initiator || !pkex->exchange_done) {
  1383. wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
  1384. return;
  1385. }
  1386. res = dpp_pkex_rx_commit_reveal_resp(pkex, hdr, buf, len);
  1387. if (res < 0) {
  1388. wpa_printf(MSG_DEBUG, "DPP: Failed to process the response");
  1389. return;
  1390. }
  1391. own_bi = pkex->own_bi;
  1392. bi = os_zalloc(sizeof(*bi));
  1393. if (!bi)
  1394. return;
  1395. bi->id = wpas_dpp_next_id(wpa_s);
  1396. bi->type = DPP_BOOTSTRAP_PKEX;
  1397. os_memcpy(bi->mac_addr, src, ETH_ALEN);
  1398. bi->num_freq = 1;
  1399. bi->freq[0] = freq;
  1400. bi->curve = own_bi->curve;
  1401. bi->pubkey = pkex->peer_bootstrap_key;
  1402. pkex->peer_bootstrap_key = NULL;
  1403. dpp_pkex_free(pkex);
  1404. wpa_s->dpp_pkex = NULL;
  1405. if (dpp_bootstrap_key_hash(bi) < 0) {
  1406. dpp_bootstrap_info_free(bi);
  1407. return;
  1408. }
  1409. dl_list_add(&wpa_s->dpp_bootstrap, &bi->list);
  1410. os_snprintf(cmd, sizeof(cmd), " peer=%u %s",
  1411. bi->id,
  1412. wpa_s->dpp_pkex_auth_cmd ? wpa_s->dpp_pkex_auth_cmd : "");
  1413. wpa_printf(MSG_DEBUG,
  1414. "DPP: Start authentication after PKEX with parameters: %s",
  1415. cmd);
  1416. if (wpas_dpp_auth_init(wpa_s, cmd) < 0) {
  1417. wpa_printf(MSG_DEBUG,
  1418. "DPP: Authentication initialization failed");
  1419. return;
  1420. }
  1421. }
  1422. void wpas_dpp_rx_action(struct wpa_supplicant *wpa_s, const u8 *src,
  1423. const u8 *buf, size_t len, unsigned int freq)
  1424. {
  1425. u8 crypto_suite;
  1426. enum dpp_public_action_frame_type type;
  1427. const u8 *hdr;
  1428. unsigned int pkex_t;
  1429. if (len < DPP_HDR_LEN)
  1430. return;
  1431. if (WPA_GET_BE24(buf) != OUI_WFA || buf[3] != DPP_OUI_TYPE)
  1432. return;
  1433. hdr = buf;
  1434. buf += 4;
  1435. len -= 4;
  1436. crypto_suite = *buf++;
  1437. type = *buf++;
  1438. len -= 2;
  1439. wpa_printf(MSG_DEBUG,
  1440. "DPP: Received DPP Public Action frame crypto suite %u type %d from "
  1441. MACSTR " freq=%u",
  1442. crypto_suite, type, MAC2STR(src), freq);
  1443. if (crypto_suite != 1) {
  1444. wpa_printf(MSG_DEBUG, "DPP: Unsupported crypto suite %u",
  1445. crypto_suite);
  1446. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_RX "src=" MACSTR
  1447. " freq=%u type=%d ignore=unsupported-crypto-suite",
  1448. MAC2STR(src), freq, type);
  1449. return;
  1450. }
  1451. wpa_hexdump(MSG_MSGDUMP, "DPP: Received message attributes", buf, len);
  1452. if (dpp_check_attrs(buf, len) < 0) {
  1453. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_RX "src=" MACSTR
  1454. " freq=%u type=%d ignore=invalid-attributes",
  1455. MAC2STR(src), freq, type);
  1456. return;
  1457. }
  1458. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_RX "src=" MACSTR " freq=%u type=%d",
  1459. MAC2STR(src), freq, type);
  1460. switch (type) {
  1461. case DPP_PA_AUTHENTICATION_REQ:
  1462. wpas_dpp_rx_auth_req(wpa_s, src, hdr, buf, len, freq);
  1463. break;
  1464. case DPP_PA_AUTHENTICATION_RESP:
  1465. wpas_dpp_rx_auth_resp(wpa_s, src, hdr, buf, len, freq);
  1466. break;
  1467. case DPP_PA_AUTHENTICATION_CONF:
  1468. wpas_dpp_rx_auth_conf(wpa_s, src, hdr, buf, len);
  1469. break;
  1470. case DPP_PA_PEER_DISCOVERY_RESP:
  1471. wpas_dpp_rx_peer_disc_resp(wpa_s, src, buf, len);
  1472. break;
  1473. case DPP_PA_PKEX_EXCHANGE_REQ:
  1474. wpas_dpp_rx_pkex_exchange_req(wpa_s, src, buf, len, freq);
  1475. break;
  1476. case DPP_PA_PKEX_EXCHANGE_RESP:
  1477. wpas_dpp_rx_pkex_exchange_resp(wpa_s, src, buf, len, freq);
  1478. break;
  1479. case DPP_PA_PKEX_COMMIT_REVEAL_REQ:
  1480. wpas_dpp_rx_pkex_commit_reveal_req(wpa_s, src, hdr, buf, len,
  1481. freq);
  1482. break;
  1483. case DPP_PA_PKEX_COMMIT_REVEAL_RESP:
  1484. wpas_dpp_rx_pkex_commit_reveal_resp(wpa_s, src, hdr, buf, len,
  1485. freq);
  1486. break;
  1487. default:
  1488. wpa_printf(MSG_DEBUG,
  1489. "DPP: Ignored unsupported frame subtype %d", type);
  1490. break;
  1491. }
  1492. if (wpa_s->dpp_pkex)
  1493. pkex_t = wpa_s->dpp_pkex->t;
  1494. else if (wpa_s->dpp_pkex_bi)
  1495. pkex_t = wpa_s->dpp_pkex_bi->pkex_t;
  1496. else
  1497. pkex_t = 0;
  1498. if (pkex_t >= PKEX_COUNTER_T_LIMIT) {
  1499. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_PKEX_T_LIMIT "id=0");
  1500. wpas_dpp_pkex_remove(wpa_s, "*");
  1501. }
  1502. }
  1503. static struct wpabuf *
  1504. wpas_dpp_gas_req_handler(void *ctx, const u8 *sa, const u8 *query,
  1505. size_t query_len)
  1506. {
  1507. struct wpa_supplicant *wpa_s = ctx;
  1508. struct dpp_authentication *auth = wpa_s->dpp_auth;
  1509. struct wpabuf *resp;
  1510. wpa_printf(MSG_DEBUG, "DPP: GAS request from " MACSTR,
  1511. MAC2STR(sa));
  1512. if (!auth || !auth->auth_success ||
  1513. os_memcmp(sa, auth->peer_mac_addr, ETH_ALEN) != 0) {
  1514. wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
  1515. return NULL;
  1516. }
  1517. wpa_hexdump(MSG_DEBUG,
  1518. "DPP: Received Configuration Request (GAS Query Request)",
  1519. query, query_len);
  1520. resp = dpp_conf_req_rx(auth, query, query_len);
  1521. if (!resp)
  1522. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_FAILED);
  1523. return resp;
  1524. }
  1525. static void
  1526. wpas_dpp_gas_status_handler(void *ctx, struct wpabuf *resp, int ok)
  1527. {
  1528. struct wpa_supplicant *wpa_s = ctx;
  1529. struct dpp_authentication *auth = wpa_s->dpp_auth;
  1530. if (!auth) {
  1531. wpabuf_free(resp);
  1532. return;
  1533. }
  1534. wpa_printf(MSG_DEBUG, "DPP: Configuration exchange completed (ok=%d)",
  1535. ok);
  1536. eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
  1537. offchannel_send_action_done(wpa_s);
  1538. wpas_dpp_listen_stop(wpa_s);
  1539. if (ok)
  1540. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_SENT);
  1541. else
  1542. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_FAILED);
  1543. dpp_auth_deinit(wpa_s->dpp_auth);
  1544. wpa_s->dpp_auth = NULL;
  1545. wpabuf_free(resp);
  1546. }
  1547. static unsigned int wpas_dpp_next_configurator_id(struct wpa_supplicant *wpa_s)
  1548. {
  1549. struct dpp_configurator *conf;
  1550. unsigned int max_id = 0;
  1551. dl_list_for_each(conf, &wpa_s->dpp_configurator,
  1552. struct dpp_configurator, list) {
  1553. if (conf->id > max_id)
  1554. max_id = conf->id;
  1555. }
  1556. return max_id + 1;
  1557. }
  1558. int wpas_dpp_configurator_add(struct wpa_supplicant *wpa_s, const char *cmd)
  1559. {
  1560. char *curve = NULL;
  1561. char *key = NULL;
  1562. u8 *privkey = NULL;
  1563. size_t privkey_len = 0;
  1564. int ret = -1;
  1565. struct dpp_configurator *conf = NULL;
  1566. curve = get_param(cmd, " curve=");
  1567. key = get_param(cmd, " key=");
  1568. if (key) {
  1569. privkey_len = os_strlen(key) / 2;
  1570. privkey = os_malloc(privkey_len);
  1571. if (!privkey ||
  1572. hexstr2bin(key, privkey, privkey_len) < 0)
  1573. goto fail;
  1574. }
  1575. conf = dpp_keygen_configurator(curve, privkey, privkey_len);
  1576. if (!conf)
  1577. goto fail;
  1578. conf->id = wpas_dpp_next_configurator_id(wpa_s);
  1579. dl_list_add(&wpa_s->dpp_configurator, &conf->list);
  1580. ret = conf->id;
  1581. conf = NULL;
  1582. fail:
  1583. os_free(curve);
  1584. str_clear_free(key);
  1585. bin_clear_free(privkey, privkey_len);
  1586. dpp_configurator_free(conf);
  1587. return ret;
  1588. }
  1589. static int dpp_configurator_del(struct wpa_supplicant *wpa_s, unsigned int id)
  1590. {
  1591. struct dpp_configurator *conf, *tmp;
  1592. int found = 0;
  1593. dl_list_for_each_safe(conf, tmp, &wpa_s->dpp_configurator,
  1594. struct dpp_configurator, list) {
  1595. if (id && conf->id != id)
  1596. continue;
  1597. found = 1;
  1598. dl_list_del(&conf->list);
  1599. dpp_configurator_free(conf);
  1600. }
  1601. if (id == 0)
  1602. return 0; /* flush succeeds regardless of entries found */
  1603. return found ? 0 : -1;
  1604. }
  1605. int wpas_dpp_configurator_remove(struct wpa_supplicant *wpa_s, const char *id)
  1606. {
  1607. unsigned int id_val;
  1608. if (os_strcmp(id, "*") == 0) {
  1609. id_val = 0;
  1610. } else {
  1611. id_val = atoi(id);
  1612. if (id_val == 0)
  1613. return -1;
  1614. }
  1615. return dpp_configurator_del(wpa_s, id_val);
  1616. }
  1617. int wpas_dpp_configurator_sign(struct wpa_supplicant *wpa_s, const char *cmd)
  1618. {
  1619. struct dpp_authentication *auth;
  1620. int ret = -1;
  1621. char *curve = NULL;
  1622. auth = os_zalloc(sizeof(*auth));
  1623. if (!auth)
  1624. return -1;
  1625. curve = get_param(cmd, " curve=");
  1626. wpas_dpp_set_configurator(wpa_s, auth, cmd);
  1627. if (dpp_configurator_own_config(auth, curve) == 0) {
  1628. wpas_dpp_handle_config_obj(wpa_s, auth);
  1629. ret = 0;
  1630. }
  1631. dpp_auth_deinit(auth);
  1632. os_free(curve);
  1633. return ret;
  1634. }
  1635. static void
  1636. wpas_dpp_tx_introduction_status(struct wpa_supplicant *wpa_s,
  1637. unsigned int freq, const u8 *dst,
  1638. const u8 *src, const u8 *bssid,
  1639. const u8 *data, size_t data_len,
  1640. enum offchannel_send_action_result result)
  1641. {
  1642. const char *res_txt;
  1643. res_txt = result == OFFCHANNEL_SEND_ACTION_SUCCESS ? "SUCCESS" :
  1644. (result == OFFCHANNEL_SEND_ACTION_NO_ACK ? "no-ACK" :
  1645. "FAILED");
  1646. wpa_printf(MSG_DEBUG, "DPP: TX status: freq=%u dst=" MACSTR
  1647. " result=%s (DPP Peer Discovery Request)",
  1648. freq, MAC2STR(dst), res_txt);
  1649. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR
  1650. " freq=%u result=%s", MAC2STR(dst), freq, res_txt);
  1651. /* TODO: Time out wait for response more quickly in error cases? */
  1652. }
  1653. int wpas_dpp_check_connect(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
  1654. struct wpa_bss *bss)
  1655. {
  1656. struct os_time now;
  1657. struct wpabuf *msg;
  1658. unsigned int wait_time;
  1659. if (!(ssid->key_mgmt & WPA_KEY_MGMT_DPP) || !bss)
  1660. return 0; /* Not using DPP AKM - continue */
  1661. if (wpa_sm_pmksa_exists(wpa_s->wpa, bss->bssid, ssid))
  1662. return 0; /* PMKSA exists for DPP AKM - continue */
  1663. if (!ssid->dpp_connector || !ssid->dpp_netaccesskey ||
  1664. !ssid->dpp_csign) {
  1665. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_MISSING_CONNECTOR
  1666. "missing %s",
  1667. !ssid->dpp_connector ? "Connector" :
  1668. (!ssid->dpp_netaccesskey ? "netAccessKey" :
  1669. "C-sign-key"));
  1670. return -1;
  1671. }
  1672. os_get_time(&now);
  1673. if (ssid->dpp_netaccesskey_expiry &&
  1674. ssid->dpp_netaccesskey_expiry < now.sec) {
  1675. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_MISSING_CONNECTOR
  1676. "netAccessKey expired");
  1677. return -1;
  1678. }
  1679. wpa_printf(MSG_DEBUG,
  1680. "DPP: Starting network introduction protocol to derive PMKSA for "
  1681. MACSTR, MAC2STR(bss->bssid));
  1682. msg = dpp_alloc_msg(DPP_PA_PEER_DISCOVERY_REQ,
  1683. 5 + 4 + os_strlen(ssid->dpp_connector));
  1684. if (!msg)
  1685. return -1;
  1686. /* Transaction ID */
  1687. wpabuf_put_le16(msg, DPP_ATTR_TRANSACTION_ID);
  1688. wpabuf_put_le16(msg, 1);
  1689. wpabuf_put_u8(msg, TRANSACTION_ID);
  1690. /* DPP Connector */
  1691. wpabuf_put_le16(msg, DPP_ATTR_CONNECTOR);
  1692. wpabuf_put_le16(msg, os_strlen(ssid->dpp_connector));
  1693. wpabuf_put_str(msg, ssid->dpp_connector);
  1694. /* TODO: Timeout on AP response */
  1695. wait_time = wpa_s->max_remain_on_chan;
  1696. if (wait_time > 2000)
  1697. wait_time = 2000;
  1698. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
  1699. MAC2STR(bss->bssid), bss->freq, DPP_PA_PEER_DISCOVERY_REQ);
  1700. offchannel_send_action(wpa_s, bss->freq, bss->bssid, wpa_s->own_addr,
  1701. broadcast,
  1702. wpabuf_head(msg), wpabuf_len(msg),
  1703. wait_time, wpas_dpp_tx_introduction_status, 0);
  1704. wpabuf_free(msg);
  1705. /* Request this connection attempt to terminate - new one will be
  1706. * started when network introduction protocol completes */
  1707. os_memcpy(wpa_s->dpp_intro_bssid, bss->bssid, ETH_ALEN);
  1708. wpa_s->dpp_intro_network = ssid;
  1709. return 1;
  1710. }
  1711. int wpas_dpp_pkex_add(struct wpa_supplicant *wpa_s, const char *cmd)
  1712. {
  1713. struct dpp_bootstrap_info *own_bi;
  1714. const char *pos, *end;
  1715. unsigned int wait_time;
  1716. pos = os_strstr(cmd, " own=");
  1717. if (!pos)
  1718. return -1;
  1719. pos += 5;
  1720. own_bi = dpp_bootstrap_get_id(wpa_s, atoi(pos));
  1721. if (!own_bi) {
  1722. wpa_printf(MSG_DEBUG,
  1723. "DPP: Identified bootstrap info not found");
  1724. return -1;
  1725. }
  1726. if (own_bi->type != DPP_BOOTSTRAP_PKEX) {
  1727. wpa_printf(MSG_DEBUG,
  1728. "DPP: Identified bootstrap info not for PKEX");
  1729. return -1;
  1730. }
  1731. wpa_s->dpp_pkex_bi = own_bi;
  1732. own_bi->pkex_t = 0; /* clear pending errors on new code */
  1733. os_free(wpa_s->dpp_pkex_identifier);
  1734. wpa_s->dpp_pkex_identifier = NULL;
  1735. pos = os_strstr(cmd, " identifier=");
  1736. if (pos) {
  1737. pos += 12;
  1738. end = os_strchr(pos, ' ');
  1739. if (!end)
  1740. return -1;
  1741. wpa_s->dpp_pkex_identifier = os_malloc(end - pos + 1);
  1742. if (!wpa_s->dpp_pkex_identifier)
  1743. return -1;
  1744. os_memcpy(wpa_s->dpp_pkex_identifier, pos, end - pos);
  1745. wpa_s->dpp_pkex_identifier[end - pos] = '\0';
  1746. }
  1747. pos = os_strstr(cmd, " code=");
  1748. if (!pos)
  1749. return -1;
  1750. os_free(wpa_s->dpp_pkex_code);
  1751. wpa_s->dpp_pkex_code = os_strdup(pos + 6);
  1752. if (!wpa_s->dpp_pkex_code)
  1753. return -1;
  1754. if (os_strstr(cmd, " init=1")) {
  1755. struct wpabuf *msg;
  1756. wpa_printf(MSG_DEBUG, "DPP: Initiating PKEX");
  1757. dpp_pkex_free(wpa_s->dpp_pkex);
  1758. wpa_s->dpp_pkex = dpp_pkex_init(wpa_s, own_bi, wpa_s->own_addr,
  1759. wpa_s->dpp_pkex_identifier,
  1760. wpa_s->dpp_pkex_code);
  1761. if (!wpa_s->dpp_pkex)
  1762. return -1;
  1763. msg = wpa_s->dpp_pkex->exchange_req;
  1764. wait_time = wpa_s->max_remain_on_chan;
  1765. if (wait_time > 2000)
  1766. wait_time = 2000;
  1767. /* TODO: Which channel to use? */
  1768. wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
  1769. " freq=%u type=%d",
  1770. MAC2STR(broadcast), 2437, DPP_PA_PKEX_EXCHANGE_REQ);
  1771. offchannel_send_action(wpa_s, 2437, broadcast, wpa_s->own_addr,
  1772. broadcast,
  1773. wpabuf_head(msg), wpabuf_len(msg),
  1774. wait_time, wpas_dpp_tx_pkex_status, 0);
  1775. }
  1776. /* TODO: Support multiple PKEX info entries */
  1777. os_free(wpa_s->dpp_pkex_auth_cmd);
  1778. wpa_s->dpp_pkex_auth_cmd = os_strdup(cmd);
  1779. return 1;
  1780. }
  1781. int wpas_dpp_pkex_remove(struct wpa_supplicant *wpa_s, const char *id)
  1782. {
  1783. unsigned int id_val;
  1784. if (os_strcmp(id, "*") == 0) {
  1785. id_val = 0;
  1786. } else {
  1787. id_val = atoi(id);
  1788. if (id_val == 0)
  1789. return -1;
  1790. }
  1791. if ((id_val != 0 && id_val != 1) || !wpa_s->dpp_pkex_code)
  1792. return -1;
  1793. /* TODO: Support multiple PKEX entries */
  1794. os_free(wpa_s->dpp_pkex_code);
  1795. wpa_s->dpp_pkex_code = NULL;
  1796. os_free(wpa_s->dpp_pkex_identifier);
  1797. wpa_s->dpp_pkex_identifier = NULL;
  1798. os_free(wpa_s->dpp_pkex_auth_cmd);
  1799. wpa_s->dpp_pkex_auth_cmd = NULL;
  1800. wpa_s->dpp_pkex_bi = NULL;
  1801. /* TODO: Remove dpp_pkex only if it is for the identified PKEX code */
  1802. dpp_pkex_free(wpa_s->dpp_pkex);
  1803. wpa_s->dpp_pkex = NULL;
  1804. return 0;
  1805. }
  1806. int wpas_dpp_init(struct wpa_supplicant *wpa_s)
  1807. {
  1808. u8 adv_proto_id[7];
  1809. adv_proto_id[0] = WLAN_EID_VENDOR_SPECIFIC;
  1810. adv_proto_id[1] = 5;
  1811. WPA_PUT_BE24(&adv_proto_id[2], OUI_WFA);
  1812. adv_proto_id[5] = DPP_OUI_TYPE;
  1813. adv_proto_id[6] = 0x01;
  1814. if (gas_server_register(wpa_s->gas_server, adv_proto_id,
  1815. sizeof(adv_proto_id), wpas_dpp_gas_req_handler,
  1816. wpas_dpp_gas_status_handler, wpa_s) < 0)
  1817. return -1;
  1818. dl_list_init(&wpa_s->dpp_bootstrap);
  1819. dl_list_init(&wpa_s->dpp_configurator);
  1820. wpa_s->dpp_init_done = 1;
  1821. return 0;
  1822. }
  1823. void wpas_dpp_deinit(struct wpa_supplicant *wpa_s)
  1824. {
  1825. #ifdef CONFIG_TESTING_OPTIONS
  1826. os_free(wpa_s->dpp_config_obj_override);
  1827. wpa_s->dpp_config_obj_override = NULL;
  1828. os_free(wpa_s->dpp_discovery_override);
  1829. wpa_s->dpp_discovery_override = NULL;
  1830. os_free(wpa_s->dpp_groups_override);
  1831. wpa_s->dpp_groups_override = NULL;
  1832. wpa_s->dpp_ignore_netaccesskey_mismatch = 0;
  1833. #endif /* CONFIG_TESTING_OPTIONS */
  1834. if (!wpa_s->dpp_init_done)
  1835. return;
  1836. eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
  1837. offchannel_send_action_done(wpa_s);
  1838. wpas_dpp_listen_stop(wpa_s);
  1839. dpp_bootstrap_del(wpa_s, 0);
  1840. dpp_configurator_del(wpa_s, 0);
  1841. dpp_auth_deinit(wpa_s->dpp_auth);
  1842. wpa_s->dpp_auth = NULL;
  1843. wpas_dpp_pkex_remove(wpa_s, "*");
  1844. wpa_s->dpp_pkex = NULL;
  1845. os_memset(wpa_s->dpp_intro_bssid, 0, ETH_ALEN);
  1846. os_free(wpa_s->dpp_configurator_params);
  1847. wpa_s->dpp_configurator_params = NULL;
  1848. }