gas_query.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. /*
  2. * Generic advertisement service (GAS) query
  3. * Copyright (c) 2009, Atheros Communications
  4. * Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
  5. * Copyright (c) 2011-2014, Jouni Malinen <j@w1.fi>
  6. *
  7. * This software may be distributed under the terms of the BSD license.
  8. * See README for more details.
  9. */
  10. #include "includes.h"
  11. #include "common.h"
  12. #include "utils/eloop.h"
  13. #include "common/ieee802_11_defs.h"
  14. #include "common/gas.h"
  15. #include "common/wpa_ctrl.h"
  16. #include "wpa_supplicant_i.h"
  17. #include "driver_i.h"
  18. #include "offchannel.h"
  19. #include "gas_query.h"
  20. /** GAS query timeout in seconds */
  21. #define GAS_QUERY_TIMEOUT_PERIOD 2
  22. /**
  23. * struct gas_query_pending - Pending GAS query
  24. */
  25. struct gas_query_pending {
  26. struct dl_list list;
  27. struct gas_query *gas;
  28. u8 addr[ETH_ALEN];
  29. u8 dialog_token;
  30. u8 next_frag_id;
  31. unsigned int wait_comeback:1;
  32. unsigned int offchannel_tx_started:1;
  33. int freq;
  34. u16 status_code;
  35. struct wpabuf *req;
  36. struct wpabuf *adv_proto;
  37. struct wpabuf *resp;
  38. void (*cb)(void *ctx, const u8 *dst, u8 dialog_token,
  39. enum gas_query_result result,
  40. const struct wpabuf *adv_proto,
  41. const struct wpabuf *resp, u16 status_code);
  42. void *ctx;
  43. };
  44. /**
  45. * struct gas_query - Internal GAS query data
  46. */
  47. struct gas_query {
  48. struct wpa_supplicant *wpa_s;
  49. struct dl_list pending; /* struct gas_query_pending */
  50. struct gas_query_pending *current;
  51. struct wpa_radio_work *work;
  52. };
  53. static void gas_query_tx_comeback_timeout(void *eloop_data, void *user_ctx);
  54. static void gas_query_timeout(void *eloop_data, void *user_ctx);
  55. /**
  56. * gas_query_init - Initialize GAS query component
  57. * @wpa_s: Pointer to wpa_supplicant data
  58. * Returns: Pointer to GAS query data or %NULL on failure
  59. */
  60. struct gas_query * gas_query_init(struct wpa_supplicant *wpa_s)
  61. {
  62. struct gas_query *gas;
  63. gas = os_zalloc(sizeof(*gas));
  64. if (gas == NULL)
  65. return NULL;
  66. gas->wpa_s = wpa_s;
  67. dl_list_init(&gas->pending);
  68. return gas;
  69. }
  70. static const char * gas_result_txt(enum gas_query_result result)
  71. {
  72. switch (result) {
  73. case GAS_QUERY_SUCCESS:
  74. return "SUCCESS";
  75. case GAS_QUERY_FAILURE:
  76. return "FAILURE";
  77. case GAS_QUERY_TIMEOUT:
  78. return "TIMEOUT";
  79. case GAS_QUERY_PEER_ERROR:
  80. return "PEER_ERROR";
  81. case GAS_QUERY_INTERNAL_ERROR:
  82. return "INTERNAL_ERROR";
  83. case GAS_QUERY_CANCELLED:
  84. return "CANCELLED";
  85. case GAS_QUERY_DELETED_AT_DEINIT:
  86. return "DELETED_AT_DEINIT";
  87. }
  88. return "N/A";
  89. }
  90. static void gas_query_free(struct gas_query_pending *query, int del_list)
  91. {
  92. struct gas_query *gas = query->gas;
  93. if (del_list)
  94. dl_list_del(&query->list);
  95. if (gas->work && gas->work->ctx == query) {
  96. radio_work_done(gas->work);
  97. gas->work = NULL;
  98. }
  99. wpabuf_free(query->req);
  100. wpabuf_free(query->adv_proto);
  101. wpabuf_free(query->resp);
  102. os_free(query);
  103. }
  104. static void gas_query_done(struct gas_query *gas,
  105. struct gas_query_pending *query,
  106. enum gas_query_result result)
  107. {
  108. wpa_msg(gas->wpa_s, MSG_INFO, GAS_QUERY_DONE "addr=" MACSTR
  109. " dialog_token=%u freq=%d status_code=%u result=%s",
  110. MAC2STR(query->addr), query->dialog_token, query->freq,
  111. query->status_code, gas_result_txt(result));
  112. if (gas->current == query)
  113. gas->current = NULL;
  114. if (query->offchannel_tx_started)
  115. offchannel_send_action_done(gas->wpa_s);
  116. eloop_cancel_timeout(gas_query_tx_comeback_timeout, gas, query);
  117. eloop_cancel_timeout(gas_query_timeout, gas, query);
  118. dl_list_del(&query->list);
  119. query->cb(query->ctx, query->addr, query->dialog_token, result,
  120. query->adv_proto, query->resp, query->status_code);
  121. gas_query_free(query, 0);
  122. }
  123. /**
  124. * gas_query_deinit - Deinitialize GAS query component
  125. * @gas: GAS query data from gas_query_init()
  126. */
  127. void gas_query_deinit(struct gas_query *gas)
  128. {
  129. struct gas_query_pending *query, *next;
  130. if (gas == NULL)
  131. return;
  132. dl_list_for_each_safe(query, next, &gas->pending,
  133. struct gas_query_pending, list)
  134. gas_query_done(gas, query, GAS_QUERY_DELETED_AT_DEINIT);
  135. os_free(gas);
  136. }
  137. static struct gas_query_pending *
  138. gas_query_get_pending(struct gas_query *gas, const u8 *addr, u8 dialog_token)
  139. {
  140. struct gas_query_pending *q;
  141. dl_list_for_each(q, &gas->pending, struct gas_query_pending, list) {
  142. if (os_memcmp(q->addr, addr, ETH_ALEN) == 0 &&
  143. q->dialog_token == dialog_token)
  144. return q;
  145. }
  146. return NULL;
  147. }
  148. static int gas_query_append(struct gas_query_pending *query, const u8 *data,
  149. size_t len)
  150. {
  151. if (wpabuf_resize(&query->resp, len) < 0) {
  152. wpa_printf(MSG_DEBUG, "GAS: No memory to store the response");
  153. return -1;
  154. }
  155. wpabuf_put_data(query->resp, data, len);
  156. return 0;
  157. }
  158. static void gas_query_tx_status(struct wpa_supplicant *wpa_s,
  159. unsigned int freq, const u8 *dst,
  160. const u8 *src, const u8 *bssid,
  161. const u8 *data, size_t data_len,
  162. enum offchannel_send_action_result result)
  163. {
  164. struct gas_query_pending *query;
  165. struct gas_query *gas = wpa_s->gas;
  166. if (gas->current == NULL) {
  167. wpa_printf(MSG_DEBUG, "GAS: Unexpected TX status: freq=%u dst="
  168. MACSTR " result=%d - no query in progress",
  169. freq, MAC2STR(dst), result);
  170. return;
  171. }
  172. query = gas->current;
  173. wpa_printf(MSG_DEBUG, "GAS: TX status: freq=%u dst=" MACSTR
  174. " result=%d query=%p dialog_token=%u",
  175. freq, MAC2STR(dst), result, query, query->dialog_token);
  176. if (os_memcmp(dst, query->addr, ETH_ALEN) != 0) {
  177. wpa_printf(MSG_DEBUG, "GAS: TX status for unexpected destination");
  178. return;
  179. }
  180. if (result == OFFCHANNEL_SEND_ACTION_SUCCESS) {
  181. eloop_cancel_timeout(gas_query_timeout, gas, query);
  182. eloop_register_timeout(GAS_QUERY_TIMEOUT_PERIOD, 0,
  183. gas_query_timeout, gas, query);
  184. }
  185. if (result == OFFCHANNEL_SEND_ACTION_FAILED) {
  186. eloop_cancel_timeout(gas_query_timeout, gas, query);
  187. eloop_register_timeout(0, 0, gas_query_timeout, gas, query);
  188. }
  189. }
  190. static int gas_query_tx(struct gas_query *gas, struct gas_query_pending *query,
  191. struct wpabuf *req)
  192. {
  193. int res;
  194. wpa_printf(MSG_DEBUG, "GAS: Send action frame to " MACSTR " len=%u "
  195. "freq=%d", MAC2STR(query->addr),
  196. (unsigned int) wpabuf_len(req), query->freq);
  197. res = offchannel_send_action(gas->wpa_s, query->freq, query->addr,
  198. gas->wpa_s->own_addr, query->addr,
  199. wpabuf_head(req), wpabuf_len(req), 1000,
  200. gas_query_tx_status, 0);
  201. if (res == 0)
  202. query->offchannel_tx_started = 1;
  203. return res;
  204. }
  205. static void gas_query_tx_comeback_req(struct gas_query *gas,
  206. struct gas_query_pending *query)
  207. {
  208. struct wpabuf *req;
  209. req = gas_build_comeback_req(query->dialog_token);
  210. if (req == NULL) {
  211. gas_query_done(gas, query, GAS_QUERY_INTERNAL_ERROR);
  212. return;
  213. }
  214. if (gas_query_tx(gas, query, req) < 0) {
  215. wpa_printf(MSG_DEBUG, "GAS: Failed to send Action frame to "
  216. MACSTR, MAC2STR(query->addr));
  217. gas_query_done(gas, query, GAS_QUERY_INTERNAL_ERROR);
  218. }
  219. wpabuf_free(req);
  220. }
  221. static void gas_query_tx_comeback_timeout(void *eloop_data, void *user_ctx)
  222. {
  223. struct gas_query *gas = eloop_data;
  224. struct gas_query_pending *query = user_ctx;
  225. wpa_printf(MSG_DEBUG, "GAS: Comeback timeout for request to " MACSTR,
  226. MAC2STR(query->addr));
  227. gas_query_tx_comeback_req(gas, query);
  228. }
  229. static void gas_query_tx_comeback_req_delay(struct gas_query *gas,
  230. struct gas_query_pending *query,
  231. u16 comeback_delay)
  232. {
  233. unsigned int secs, usecs;
  234. secs = (comeback_delay * 1024) / 1000000;
  235. usecs = comeback_delay * 1024 - secs * 1000000;
  236. wpa_printf(MSG_DEBUG, "GAS: Send comeback request to " MACSTR
  237. " in %u secs %u usecs", MAC2STR(query->addr), secs, usecs);
  238. eloop_cancel_timeout(gas_query_tx_comeback_timeout, gas, query);
  239. eloop_register_timeout(secs, usecs, gas_query_tx_comeback_timeout,
  240. gas, query);
  241. }
  242. static void gas_query_rx_initial(struct gas_query *gas,
  243. struct gas_query_pending *query,
  244. const u8 *adv_proto, const u8 *resp,
  245. size_t len, u16 comeback_delay)
  246. {
  247. wpa_printf(MSG_DEBUG, "GAS: Received initial response from "
  248. MACSTR " (dialog_token=%u comeback_delay=%u)",
  249. MAC2STR(query->addr), query->dialog_token, comeback_delay);
  250. query->adv_proto = wpabuf_alloc_copy(adv_proto, 2 + adv_proto[1]);
  251. if (query->adv_proto == NULL) {
  252. gas_query_done(gas, query, GAS_QUERY_INTERNAL_ERROR);
  253. return;
  254. }
  255. if (comeback_delay) {
  256. query->wait_comeback = 1;
  257. gas_query_tx_comeback_req_delay(gas, query, comeback_delay);
  258. return;
  259. }
  260. /* Query was completed without comeback mechanism */
  261. if (gas_query_append(query, resp, len) < 0) {
  262. gas_query_done(gas, query, GAS_QUERY_INTERNAL_ERROR);
  263. return;
  264. }
  265. gas_query_done(gas, query, GAS_QUERY_SUCCESS);
  266. }
  267. static void gas_query_rx_comeback(struct gas_query *gas,
  268. struct gas_query_pending *query,
  269. const u8 *adv_proto, const u8 *resp,
  270. size_t len, u8 frag_id, u8 more_frags,
  271. u16 comeback_delay)
  272. {
  273. wpa_printf(MSG_DEBUG, "GAS: Received comeback response from "
  274. MACSTR " (dialog_token=%u frag_id=%u more_frags=%u "
  275. "comeback_delay=%u)",
  276. MAC2STR(query->addr), query->dialog_token, frag_id,
  277. more_frags, comeback_delay);
  278. if ((size_t) 2 + adv_proto[1] != wpabuf_len(query->adv_proto) ||
  279. os_memcmp(adv_proto, wpabuf_head(query->adv_proto),
  280. wpabuf_len(query->adv_proto)) != 0) {
  281. wpa_printf(MSG_DEBUG, "GAS: Advertisement Protocol changed "
  282. "between initial and comeback response from "
  283. MACSTR, MAC2STR(query->addr));
  284. gas_query_done(gas, query, GAS_QUERY_PEER_ERROR);
  285. return;
  286. }
  287. if (comeback_delay) {
  288. if (frag_id) {
  289. wpa_printf(MSG_DEBUG, "GAS: Invalid comeback response "
  290. "with non-zero frag_id and comeback_delay "
  291. "from " MACSTR, MAC2STR(query->addr));
  292. gas_query_done(gas, query, GAS_QUERY_PEER_ERROR);
  293. return;
  294. }
  295. gas_query_tx_comeback_req_delay(gas, query, comeback_delay);
  296. return;
  297. }
  298. if (frag_id != query->next_frag_id) {
  299. wpa_printf(MSG_DEBUG, "GAS: Unexpected frag_id in response "
  300. "from " MACSTR, MAC2STR(query->addr));
  301. if (frag_id + 1 == query->next_frag_id) {
  302. wpa_printf(MSG_DEBUG, "GAS: Drop frame as possible "
  303. "retry of previous fragment");
  304. return;
  305. }
  306. gas_query_done(gas, query, GAS_QUERY_PEER_ERROR);
  307. return;
  308. }
  309. query->next_frag_id++;
  310. if (gas_query_append(query, resp, len) < 0) {
  311. gas_query_done(gas, query, GAS_QUERY_INTERNAL_ERROR);
  312. return;
  313. }
  314. if (more_frags) {
  315. gas_query_tx_comeback_req(gas, query);
  316. return;
  317. }
  318. gas_query_done(gas, query, GAS_QUERY_SUCCESS);
  319. }
  320. /**
  321. * gas_query_rx - Indicate reception of a Public Action frame
  322. * @gas: GAS query data from gas_query_init()
  323. * @da: Destination MAC address of the Action frame
  324. * @sa: Source MAC address of the Action frame
  325. * @bssid: BSSID of the Action frame
  326. * @data: Payload of the Action frame
  327. * @len: Length of @data
  328. * @freq: Frequency (in MHz) on which the frame was received
  329. * Returns: 0 if the Public Action frame was a GAS frame or -1 if not
  330. */
  331. int gas_query_rx(struct gas_query *gas, const u8 *da, const u8 *sa,
  332. const u8 *bssid, const u8 *data, size_t len, int freq)
  333. {
  334. struct gas_query_pending *query;
  335. u8 action, dialog_token, frag_id = 0, more_frags = 0;
  336. u16 comeback_delay, resp_len;
  337. const u8 *pos, *adv_proto;
  338. if (gas == NULL || len < 4)
  339. return -1;
  340. pos = data;
  341. action = *pos++;
  342. dialog_token = *pos++;
  343. if (action != WLAN_PA_GAS_INITIAL_RESP &&
  344. action != WLAN_PA_GAS_COMEBACK_RESP)
  345. return -1; /* Not a GAS response */
  346. query = gas_query_get_pending(gas, sa, dialog_token);
  347. if (query == NULL) {
  348. wpa_printf(MSG_DEBUG, "GAS: No pending query found for " MACSTR
  349. " dialog token %u", MAC2STR(sa), dialog_token);
  350. return -1;
  351. }
  352. if (query->wait_comeback && action == WLAN_PA_GAS_INITIAL_RESP) {
  353. wpa_printf(MSG_DEBUG, "GAS: Unexpected initial response from "
  354. MACSTR " dialog token %u when waiting for comeback "
  355. "response", MAC2STR(sa), dialog_token);
  356. return 0;
  357. }
  358. if (!query->wait_comeback && action == WLAN_PA_GAS_COMEBACK_RESP) {
  359. wpa_printf(MSG_DEBUG, "GAS: Unexpected comeback response from "
  360. MACSTR " dialog token %u when waiting for initial "
  361. "response", MAC2STR(sa), dialog_token);
  362. return 0;
  363. }
  364. query->status_code = WPA_GET_LE16(pos);
  365. pos += 2;
  366. if (query->status_code != WLAN_STATUS_SUCCESS) {
  367. wpa_printf(MSG_DEBUG, "GAS: Query to " MACSTR " dialog token "
  368. "%u failed - status code %u",
  369. MAC2STR(sa), dialog_token, query->status_code);
  370. gas_query_done(gas, query, GAS_QUERY_FAILURE);
  371. return 0;
  372. }
  373. if (action == WLAN_PA_GAS_COMEBACK_RESP) {
  374. if (pos + 1 > data + len)
  375. return 0;
  376. frag_id = *pos & 0x7f;
  377. more_frags = (*pos & 0x80) >> 7;
  378. pos++;
  379. }
  380. /* Comeback Delay */
  381. if (pos + 2 > data + len)
  382. return 0;
  383. comeback_delay = WPA_GET_LE16(pos);
  384. pos += 2;
  385. /* Advertisement Protocol element */
  386. if (pos + 2 > data + len || pos + 2 + pos[1] > data + len) {
  387. wpa_printf(MSG_DEBUG, "GAS: No room for Advertisement "
  388. "Protocol element in the response from " MACSTR,
  389. MAC2STR(sa));
  390. return 0;
  391. }
  392. if (*pos != WLAN_EID_ADV_PROTO) {
  393. wpa_printf(MSG_DEBUG, "GAS: Unexpected Advertisement "
  394. "Protocol element ID %u in response from " MACSTR,
  395. *pos, MAC2STR(sa));
  396. return 0;
  397. }
  398. adv_proto = pos;
  399. pos += 2 + pos[1];
  400. /* Query Response Length */
  401. if (pos + 2 > data + len) {
  402. wpa_printf(MSG_DEBUG, "GAS: No room for GAS Response Length");
  403. return 0;
  404. }
  405. resp_len = WPA_GET_LE16(pos);
  406. pos += 2;
  407. if (pos + resp_len > data + len) {
  408. wpa_printf(MSG_DEBUG, "GAS: Truncated Query Response in "
  409. "response from " MACSTR, MAC2STR(sa));
  410. return 0;
  411. }
  412. if (pos + resp_len < data + len) {
  413. wpa_printf(MSG_DEBUG, "GAS: Ignore %u octets of extra data "
  414. "after Query Response from " MACSTR,
  415. (unsigned int) (data + len - pos - resp_len),
  416. MAC2STR(sa));
  417. }
  418. if (action == WLAN_PA_GAS_COMEBACK_RESP)
  419. gas_query_rx_comeback(gas, query, adv_proto, pos, resp_len,
  420. frag_id, more_frags, comeback_delay);
  421. else
  422. gas_query_rx_initial(gas, query, adv_proto, pos, resp_len,
  423. comeback_delay);
  424. return 0;
  425. }
  426. static void gas_query_timeout(void *eloop_data, void *user_ctx)
  427. {
  428. struct gas_query *gas = eloop_data;
  429. struct gas_query_pending *query = user_ctx;
  430. wpa_printf(MSG_DEBUG, "GAS: No response received for query to " MACSTR
  431. " dialog token %u",
  432. MAC2STR(query->addr), query->dialog_token);
  433. gas_query_done(gas, query, GAS_QUERY_TIMEOUT);
  434. }
  435. static int gas_query_dialog_token_available(struct gas_query *gas,
  436. const u8 *dst, u8 dialog_token)
  437. {
  438. struct gas_query_pending *q;
  439. dl_list_for_each(q, &gas->pending, struct gas_query_pending, list) {
  440. if (os_memcmp(dst, q->addr, ETH_ALEN) == 0 &&
  441. dialog_token == q->dialog_token)
  442. return 0;
  443. }
  444. return 1;
  445. }
  446. static void gas_query_start_cb(struct wpa_radio_work *work, int deinit)
  447. {
  448. struct gas_query_pending *query = work->ctx;
  449. struct gas_query *gas = query->gas;
  450. if (deinit) {
  451. gas_query_free(query, 1);
  452. return;
  453. }
  454. gas->work = work;
  455. if (gas_query_tx(gas, query, query->req) < 0) {
  456. wpa_printf(MSG_DEBUG, "GAS: Failed to send Action frame to "
  457. MACSTR, MAC2STR(query->addr));
  458. gas_query_free(query, 1);
  459. return;
  460. }
  461. gas->current = query;
  462. wpa_printf(MSG_DEBUG, "GAS: Starting query timeout for dialog token %u",
  463. query->dialog_token);
  464. eloop_register_timeout(GAS_QUERY_TIMEOUT_PERIOD, 0,
  465. gas_query_timeout, gas, query);
  466. }
  467. /**
  468. * gas_query_req - Request a GAS query
  469. * @gas: GAS query data from gas_query_init()
  470. * @dst: Destination MAC address for the query
  471. * @freq: Frequency (in MHz) for the channel on which to send the query
  472. * @req: GAS query payload (to be freed by gas_query module in case of success
  473. * return)
  474. * @cb: Callback function for reporting GAS query result and response
  475. * @ctx: Context pointer to use with the @cb call
  476. * Returns: dialog token (>= 0) on success or -1 on failure
  477. */
  478. int gas_query_req(struct gas_query *gas, const u8 *dst, int freq,
  479. struct wpabuf *req,
  480. void (*cb)(void *ctx, const u8 *dst, u8 dialog_token,
  481. enum gas_query_result result,
  482. const struct wpabuf *adv_proto,
  483. const struct wpabuf *resp, u16 status_code),
  484. void *ctx)
  485. {
  486. struct gas_query_pending *query;
  487. int dialog_token;
  488. static int next_start = 0;
  489. if (wpabuf_len(req) < 3)
  490. return -1;
  491. for (dialog_token = 0; dialog_token < 256; dialog_token++) {
  492. if (gas_query_dialog_token_available(
  493. gas, dst, (next_start + dialog_token) % 256))
  494. break;
  495. }
  496. if (dialog_token == 256)
  497. return -1; /* Too many pending queries */
  498. dialog_token = (next_start + dialog_token) % 256;
  499. next_start = (dialog_token + 1) % 256;
  500. query = os_zalloc(sizeof(*query));
  501. if (query == NULL)
  502. return -1;
  503. query->gas = gas;
  504. os_memcpy(query->addr, dst, ETH_ALEN);
  505. query->dialog_token = dialog_token;
  506. query->freq = freq;
  507. query->cb = cb;
  508. query->ctx = ctx;
  509. query->req = req;
  510. dl_list_add(&gas->pending, &query->list);
  511. *(wpabuf_mhead_u8(req) + 2) = dialog_token;
  512. wpa_msg(gas->wpa_s, MSG_INFO, GAS_QUERY_START "addr=" MACSTR
  513. " dialog_token=%u freq=%d",
  514. MAC2STR(query->addr), query->dialog_token, query->freq);
  515. if (radio_add_work(gas->wpa_s, freq, "gas-query", 0, gas_query_start_cb,
  516. query) < 0) {
  517. gas_query_free(query, 1);
  518. return -1;
  519. }
  520. return dialog_token;
  521. }
  522. /**
  523. * gas_query_cancel - Cancel a pending GAS query
  524. * @gas: GAS query data from gas_query_init()
  525. * @dst: Destination MAC address for the query
  526. * @dialog_token: Dialog token from gas_query_req()
  527. */
  528. void gas_query_cancel(struct gas_query *gas, const u8 *dst, u8 dialog_token)
  529. {
  530. struct gas_query_pending *query;
  531. query = gas_query_get_pending(gas, dst, dialog_token);
  532. if (query)
  533. gas_query_done(gas, query, GAS_QUERY_CANCELLED);
  534. }