dpp_supplicant.c 61 KB

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