dpp_supplicant.c 65 KB

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