gas_query_ap.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714
  1. /*
  2. * Generic advertisement service (GAS) query (hostapd)
  3. * Copyright (c) 2009, Atheros Communications
  4. * Copyright (c) 2011-2017, 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 "utils/list.h"
  14. #include "common/ieee802_11_defs.h"
  15. #include "common/gas.h"
  16. #include "common/wpa_ctrl.h"
  17. #include "hostapd.h"
  18. #include "sta_info.h"
  19. #include "ap_drv_ops.h"
  20. #include "gas_query_ap.h"
  21. /** GAS query timeout in seconds */
  22. #define GAS_QUERY_TIMEOUT_PERIOD 2
  23. /* GAS query wait-time / duration in ms */
  24. #define GAS_QUERY_WAIT_TIME_INITIAL 1000
  25. #define GAS_QUERY_WAIT_TIME_COMEBACK 150
  26. /**
  27. * struct gas_query_pending - Pending GAS query
  28. */
  29. struct gas_query_pending {
  30. struct dl_list list;
  31. struct gas_query_ap *gas;
  32. u8 addr[ETH_ALEN];
  33. u8 dialog_token;
  34. u8 next_frag_id;
  35. unsigned int wait_comeback:1;
  36. unsigned int offchannel_tx_started:1;
  37. unsigned int retry:1;
  38. int freq;
  39. u16 status_code;
  40. struct wpabuf *req;
  41. struct wpabuf *adv_proto;
  42. struct wpabuf *resp;
  43. struct os_reltime last_oper;
  44. void (*cb)(void *ctx, const u8 *dst, u8 dialog_token,
  45. enum gas_query_ap_result result,
  46. const struct wpabuf *adv_proto,
  47. const struct wpabuf *resp, u16 status_code);
  48. void *ctx;
  49. u8 sa[ETH_ALEN];
  50. };
  51. /**
  52. * struct gas_query_ap - Internal GAS query data
  53. */
  54. struct gas_query_ap {
  55. struct hostapd_data *hapd;
  56. void *msg_ctx;
  57. struct dl_list pending; /* struct gas_query_pending */
  58. struct gas_query_pending *current;
  59. };
  60. static void gas_query_tx_comeback_timeout(void *eloop_data, void *user_ctx);
  61. static void gas_query_timeout(void *eloop_data, void *user_ctx);
  62. static void gas_query_rx_comeback_timeout(void *eloop_data, void *user_ctx);
  63. static void gas_query_tx_initial_req(struct gas_query_ap *gas,
  64. struct gas_query_pending *query);
  65. static int gas_query_new_dialog_token(struct gas_query_ap *gas, const u8 *dst);
  66. static int ms_from_time(struct os_reltime *last)
  67. {
  68. struct os_reltime now, res;
  69. os_get_reltime(&now);
  70. os_reltime_sub(&now, last, &res);
  71. return res.sec * 1000 + res.usec / 1000;
  72. }
  73. /**
  74. * gas_query_ap_init - Initialize GAS query component
  75. * @hapd: Pointer to hostapd data
  76. * Returns: Pointer to GAS query data or %NULL on failure
  77. */
  78. struct gas_query_ap * gas_query_ap_init(struct hostapd_data *hapd,
  79. void *msg_ctx)
  80. {
  81. struct gas_query_ap *gas;
  82. gas = os_zalloc(sizeof(*gas));
  83. if (!gas)
  84. return NULL;
  85. gas->hapd = hapd;
  86. gas->msg_ctx = msg_ctx;
  87. dl_list_init(&gas->pending);
  88. return gas;
  89. }
  90. static const char * gas_result_txt(enum gas_query_ap_result result)
  91. {
  92. switch (result) {
  93. case GAS_QUERY_AP_SUCCESS:
  94. return "SUCCESS";
  95. case GAS_QUERY_AP_FAILURE:
  96. return "FAILURE";
  97. case GAS_QUERY_AP_TIMEOUT:
  98. return "TIMEOUT";
  99. case GAS_QUERY_AP_PEER_ERROR:
  100. return "PEER_ERROR";
  101. case GAS_QUERY_AP_INTERNAL_ERROR:
  102. return "INTERNAL_ERROR";
  103. case GAS_QUERY_AP_DELETED_AT_DEINIT:
  104. return "DELETED_AT_DEINIT";
  105. }
  106. return "N/A";
  107. }
  108. static void gas_query_free(struct gas_query_pending *query, int del_list)
  109. {
  110. if (del_list)
  111. dl_list_del(&query->list);
  112. wpabuf_free(query->req);
  113. wpabuf_free(query->adv_proto);
  114. wpabuf_free(query->resp);
  115. os_free(query);
  116. }
  117. static void gas_query_done(struct gas_query_ap *gas,
  118. struct gas_query_pending *query,
  119. enum gas_query_ap_result result)
  120. {
  121. wpa_msg(gas->msg_ctx, MSG_INFO, GAS_QUERY_DONE "addr=" MACSTR
  122. " dialog_token=%u freq=%d status_code=%u result=%s",
  123. MAC2STR(query->addr), query->dialog_token, query->freq,
  124. query->status_code, gas_result_txt(result));
  125. if (gas->current == query)
  126. gas->current = NULL;
  127. eloop_cancel_timeout(gas_query_tx_comeback_timeout, gas, query);
  128. eloop_cancel_timeout(gas_query_timeout, gas, query);
  129. eloop_cancel_timeout(gas_query_rx_comeback_timeout, gas, query);
  130. dl_list_del(&query->list);
  131. query->cb(query->ctx, query->addr, query->dialog_token, result,
  132. query->adv_proto, query->resp, query->status_code);
  133. gas_query_free(query, 0);
  134. }
  135. /**
  136. * gas_query_ap_deinit - Deinitialize GAS query component
  137. * @gas: GAS query data from gas_query_init()
  138. */
  139. void gas_query_ap_deinit(struct gas_query_ap *gas)
  140. {
  141. struct gas_query_pending *query, *next;
  142. if (gas == NULL)
  143. return;
  144. dl_list_for_each_safe(query, next, &gas->pending,
  145. struct gas_query_pending, list)
  146. gas_query_done(gas, query, GAS_QUERY_AP_DELETED_AT_DEINIT);
  147. os_free(gas);
  148. }
  149. static struct gas_query_pending *
  150. gas_query_get_pending(struct gas_query_ap *gas, const u8 *addr, u8 dialog_token)
  151. {
  152. struct gas_query_pending *q;
  153. dl_list_for_each(q, &gas->pending, struct gas_query_pending, list) {
  154. if (os_memcmp(q->addr, addr, ETH_ALEN) == 0 &&
  155. q->dialog_token == dialog_token)
  156. return q;
  157. }
  158. return NULL;
  159. }
  160. static int gas_query_append(struct gas_query_pending *query, const u8 *data,
  161. size_t len)
  162. {
  163. if (wpabuf_resize(&query->resp, len) < 0) {
  164. wpa_printf(MSG_DEBUG, "GAS: No memory to store the response");
  165. return -1;
  166. }
  167. wpabuf_put_data(query->resp, data, len);
  168. return 0;
  169. }
  170. void gas_query_ap_tx_status(struct gas_query_ap *gas, const u8 *dst,
  171. const u8 *data, size_t data_len, int ok)
  172. {
  173. struct gas_query_pending *query;
  174. int dur;
  175. if (!gas || !gas->current) {
  176. wpa_printf(MSG_DEBUG, "GAS: Unexpected TX status: dst=" MACSTR
  177. " ok=%d - no query in progress", MAC2STR(dst), ok);
  178. return;
  179. }
  180. query = gas->current;
  181. dur = ms_from_time(&query->last_oper);
  182. wpa_printf(MSG_DEBUG, "GAS: TX status: dst=" MACSTR
  183. " ok=%d query=%p dialog_token=%u dur=%d ms",
  184. MAC2STR(dst), ok, query, query->dialog_token, dur);
  185. if (os_memcmp(dst, query->addr, ETH_ALEN) != 0) {
  186. wpa_printf(MSG_DEBUG, "GAS: TX status for unexpected destination");
  187. return;
  188. }
  189. os_get_reltime(&query->last_oper);
  190. eloop_cancel_timeout(gas_query_timeout, gas, query);
  191. if (!ok) {
  192. wpa_printf(MSG_DEBUG, "GAS: No ACK to GAS request");
  193. eloop_register_timeout(0, 250000, gas_query_timeout,
  194. gas, query);
  195. } else {
  196. eloop_register_timeout(GAS_QUERY_TIMEOUT_PERIOD, 0,
  197. gas_query_timeout, gas, query);
  198. }
  199. if (query->wait_comeback && !query->retry) {
  200. eloop_cancel_timeout(gas_query_rx_comeback_timeout,
  201. gas, query);
  202. eloop_register_timeout(
  203. 0, (GAS_QUERY_WAIT_TIME_COMEBACK + 10) * 1000,
  204. gas_query_rx_comeback_timeout, gas, query);
  205. }
  206. }
  207. static int pmf_in_use(struct hostapd_data *hapd, const u8 *addr)
  208. {
  209. struct sta_info *sta;
  210. sta = ap_get_sta(hapd, addr);
  211. return sta && (sta->flags & WLAN_STA_MFP);
  212. }
  213. static int gas_query_tx(struct gas_query_ap *gas,
  214. struct gas_query_pending *query,
  215. struct wpabuf *req, unsigned int wait_time)
  216. {
  217. int res, prot = pmf_in_use(gas->hapd, query->addr);
  218. wpa_printf(MSG_DEBUG, "GAS: Send action frame to " MACSTR " len=%u "
  219. "freq=%d prot=%d using src addr " MACSTR,
  220. MAC2STR(query->addr), (unsigned int) wpabuf_len(req),
  221. query->freq, prot, MAC2STR(query->sa));
  222. if (prot) {
  223. u8 *categ = wpabuf_mhead_u8(req);
  224. *categ = WLAN_ACTION_PROTECTED_DUAL;
  225. }
  226. os_get_reltime(&query->last_oper);
  227. res = hostapd_drv_send_action(gas->hapd, query->freq, wait_time,
  228. query->addr, wpabuf_head(req),
  229. wpabuf_len(req));
  230. return res;
  231. }
  232. static void gas_query_tx_comeback_req(struct gas_query_ap *gas,
  233. struct gas_query_pending *query)
  234. {
  235. struct wpabuf *req;
  236. unsigned int wait_time;
  237. req = gas_build_comeback_req(query->dialog_token);
  238. if (req == NULL) {
  239. gas_query_done(gas, query, GAS_QUERY_AP_INTERNAL_ERROR);
  240. return;
  241. }
  242. wait_time = (query->retry || !query->offchannel_tx_started) ?
  243. GAS_QUERY_WAIT_TIME_INITIAL : GAS_QUERY_WAIT_TIME_COMEBACK;
  244. if (gas_query_tx(gas, query, req, wait_time) < 0) {
  245. wpa_printf(MSG_DEBUG, "GAS: Failed to send Action frame to "
  246. MACSTR, MAC2STR(query->addr));
  247. gas_query_done(gas, query, GAS_QUERY_AP_INTERNAL_ERROR);
  248. }
  249. wpabuf_free(req);
  250. }
  251. static void gas_query_rx_comeback_timeout(void *eloop_data, void *user_ctx)
  252. {
  253. struct gas_query_ap *gas = eloop_data;
  254. struct gas_query_pending *query = user_ctx;
  255. int dialog_token;
  256. wpa_printf(MSG_DEBUG,
  257. "GAS: No response to comeback request received (retry=%u)",
  258. query->retry);
  259. if (gas->current != query || query->retry)
  260. return;
  261. dialog_token = gas_query_new_dialog_token(gas, query->addr);
  262. if (dialog_token < 0)
  263. return;
  264. wpa_printf(MSG_DEBUG,
  265. "GAS: Retry GAS query due to comeback response timeout");
  266. query->retry = 1;
  267. query->dialog_token = dialog_token;
  268. *(wpabuf_mhead_u8(query->req) + 2) = dialog_token;
  269. query->wait_comeback = 0;
  270. query->next_frag_id = 0;
  271. wpabuf_free(query->adv_proto);
  272. query->adv_proto = NULL;
  273. eloop_cancel_timeout(gas_query_tx_comeback_timeout, gas, query);
  274. eloop_cancel_timeout(gas_query_timeout, gas, query);
  275. gas_query_tx_initial_req(gas, query);
  276. }
  277. static void gas_query_tx_comeback_timeout(void *eloop_data, void *user_ctx)
  278. {
  279. struct gas_query_ap *gas = eloop_data;
  280. struct gas_query_pending *query = user_ctx;
  281. wpa_printf(MSG_DEBUG, "GAS: Comeback timeout for request to " MACSTR,
  282. MAC2STR(query->addr));
  283. gas_query_tx_comeback_req(gas, query);
  284. }
  285. static void gas_query_tx_comeback_req_delay(struct gas_query_ap *gas,
  286. struct gas_query_pending *query,
  287. u16 comeback_delay)
  288. {
  289. unsigned int secs, usecs;
  290. secs = (comeback_delay * 1024) / 1000000;
  291. usecs = comeback_delay * 1024 - secs * 1000000;
  292. wpa_printf(MSG_DEBUG, "GAS: Send comeback request to " MACSTR
  293. " in %u secs %u usecs", MAC2STR(query->addr), secs, usecs);
  294. eloop_cancel_timeout(gas_query_tx_comeback_timeout, gas, query);
  295. eloop_register_timeout(secs, usecs, gas_query_tx_comeback_timeout,
  296. gas, query);
  297. }
  298. static void gas_query_rx_initial(struct gas_query_ap *gas,
  299. struct gas_query_pending *query,
  300. const u8 *adv_proto, const u8 *resp,
  301. size_t len, u16 comeback_delay)
  302. {
  303. wpa_printf(MSG_DEBUG, "GAS: Received initial response from "
  304. MACSTR " (dialog_token=%u comeback_delay=%u)",
  305. MAC2STR(query->addr), query->dialog_token, comeback_delay);
  306. query->adv_proto = wpabuf_alloc_copy(adv_proto, 2 + adv_proto[1]);
  307. if (query->adv_proto == NULL) {
  308. gas_query_done(gas, query, GAS_QUERY_AP_INTERNAL_ERROR);
  309. return;
  310. }
  311. if (comeback_delay) {
  312. eloop_cancel_timeout(gas_query_timeout, gas, query);
  313. query->wait_comeback = 1;
  314. gas_query_tx_comeback_req_delay(gas, query, comeback_delay);
  315. return;
  316. }
  317. /* Query was completed without comeback mechanism */
  318. if (gas_query_append(query, resp, len) < 0) {
  319. gas_query_done(gas, query, GAS_QUERY_AP_INTERNAL_ERROR);
  320. return;
  321. }
  322. gas_query_done(gas, query, GAS_QUERY_AP_SUCCESS);
  323. }
  324. static void gas_query_rx_comeback(struct gas_query_ap *gas,
  325. struct gas_query_pending *query,
  326. const u8 *adv_proto, const u8 *resp,
  327. size_t len, u8 frag_id, u8 more_frags,
  328. u16 comeback_delay)
  329. {
  330. wpa_printf(MSG_DEBUG, "GAS: Received comeback response from "
  331. MACSTR " (dialog_token=%u frag_id=%u more_frags=%u "
  332. "comeback_delay=%u)",
  333. MAC2STR(query->addr), query->dialog_token, frag_id,
  334. more_frags, comeback_delay);
  335. eloop_cancel_timeout(gas_query_rx_comeback_timeout, gas, query);
  336. if ((size_t) 2 + adv_proto[1] != wpabuf_len(query->adv_proto) ||
  337. os_memcmp(adv_proto, wpabuf_head(query->adv_proto),
  338. wpabuf_len(query->adv_proto)) != 0) {
  339. wpa_printf(MSG_DEBUG, "GAS: Advertisement Protocol changed "
  340. "between initial and comeback response from "
  341. MACSTR, MAC2STR(query->addr));
  342. gas_query_done(gas, query, GAS_QUERY_AP_PEER_ERROR);
  343. return;
  344. }
  345. if (comeback_delay) {
  346. if (frag_id) {
  347. wpa_printf(MSG_DEBUG, "GAS: Invalid comeback response "
  348. "with non-zero frag_id and comeback_delay "
  349. "from " MACSTR, MAC2STR(query->addr));
  350. gas_query_done(gas, query, GAS_QUERY_AP_PEER_ERROR);
  351. return;
  352. }
  353. gas_query_tx_comeback_req_delay(gas, query, comeback_delay);
  354. return;
  355. }
  356. if (frag_id != query->next_frag_id) {
  357. wpa_printf(MSG_DEBUG, "GAS: Unexpected frag_id in response "
  358. "from " MACSTR, MAC2STR(query->addr));
  359. if (frag_id + 1 == query->next_frag_id) {
  360. wpa_printf(MSG_DEBUG, "GAS: Drop frame as possible "
  361. "retry of previous fragment");
  362. return;
  363. }
  364. gas_query_done(gas, query, GAS_QUERY_AP_PEER_ERROR);
  365. return;
  366. }
  367. query->next_frag_id++;
  368. if (gas_query_append(query, resp, len) < 0) {
  369. gas_query_done(gas, query, GAS_QUERY_AP_INTERNAL_ERROR);
  370. return;
  371. }
  372. if (more_frags) {
  373. gas_query_tx_comeback_req(gas, query);
  374. return;
  375. }
  376. gas_query_done(gas, query, GAS_QUERY_AP_SUCCESS);
  377. }
  378. /**
  379. * gas_query_ap_rx - Indicate reception of a Public Action or Protected Dual
  380. * frame
  381. * @gas: GAS query data from gas_query_init()
  382. * @sa: Source MAC address of the Action frame
  383. * @categ: Category of the Action frame
  384. * @data: Payload of the Action frame
  385. * @len: Length of @data
  386. * @freq: Frequency (in MHz) on which the frame was received
  387. * Returns: 0 if the Public Action frame was a GAS frame or -1 if not
  388. */
  389. int gas_query_ap_rx(struct gas_query_ap *gas, const u8 *sa, u8 categ,
  390. const u8 *data, size_t len, int freq)
  391. {
  392. struct gas_query_pending *query;
  393. u8 action, dialog_token, frag_id = 0, more_frags = 0;
  394. u16 comeback_delay, resp_len;
  395. const u8 *pos, *adv_proto;
  396. int prot, pmf;
  397. unsigned int left;
  398. if (!gas || len < 4)
  399. return -1;
  400. pos = data;
  401. action = *pos++;
  402. dialog_token = *pos++;
  403. if (action != WLAN_PA_GAS_INITIAL_RESP &&
  404. action != WLAN_PA_GAS_COMEBACK_RESP)
  405. return -1; /* Not a GAS response */
  406. prot = categ == WLAN_ACTION_PROTECTED_DUAL;
  407. pmf = pmf_in_use(gas->hapd, sa);
  408. if (prot && !pmf) {
  409. wpa_printf(MSG_DEBUG, "GAS: Drop unexpected protected GAS frame when PMF is disabled");
  410. return 0;
  411. }
  412. if (!prot && pmf) {
  413. wpa_printf(MSG_DEBUG, "GAS: Drop unexpected unprotected GAS frame when PMF is enabled");
  414. return 0;
  415. }
  416. query = gas_query_get_pending(gas, sa, dialog_token);
  417. if (query == NULL) {
  418. wpa_printf(MSG_DEBUG, "GAS: No pending query found for " MACSTR
  419. " dialog token %u", MAC2STR(sa), dialog_token);
  420. return -1;
  421. }
  422. wpa_printf(MSG_DEBUG, "GAS: Response in %d ms from " MACSTR,
  423. ms_from_time(&query->last_oper), MAC2STR(sa));
  424. if (query->wait_comeback && action == WLAN_PA_GAS_INITIAL_RESP) {
  425. wpa_printf(MSG_DEBUG, "GAS: Unexpected initial response from "
  426. MACSTR " dialog token %u when waiting for comeback "
  427. "response", MAC2STR(sa), dialog_token);
  428. return 0;
  429. }
  430. if (!query->wait_comeback && action == WLAN_PA_GAS_COMEBACK_RESP) {
  431. wpa_printf(MSG_DEBUG, "GAS: Unexpected comeback response from "
  432. MACSTR " dialog token %u when waiting for initial "
  433. "response", MAC2STR(sa), dialog_token);
  434. return 0;
  435. }
  436. query->status_code = WPA_GET_LE16(pos);
  437. pos += 2;
  438. if (query->status_code == WLAN_STATUS_QUERY_RESP_OUTSTANDING &&
  439. action == WLAN_PA_GAS_COMEBACK_RESP) {
  440. wpa_printf(MSG_DEBUG, "GAS: Allow non-zero status for outstanding comeback response");
  441. } else if (query->status_code != WLAN_STATUS_SUCCESS) {
  442. wpa_printf(MSG_DEBUG, "GAS: Query to " MACSTR " dialog token "
  443. "%u failed - status code %u",
  444. MAC2STR(sa), dialog_token, query->status_code);
  445. gas_query_done(gas, query, GAS_QUERY_AP_FAILURE);
  446. return 0;
  447. }
  448. if (action == WLAN_PA_GAS_COMEBACK_RESP) {
  449. if (pos + 1 > data + len)
  450. return 0;
  451. frag_id = *pos & 0x7f;
  452. more_frags = (*pos & 0x80) >> 7;
  453. pos++;
  454. }
  455. /* Comeback Delay */
  456. if (pos + 2 > data + len)
  457. return 0;
  458. comeback_delay = WPA_GET_LE16(pos);
  459. pos += 2;
  460. /* Advertisement Protocol element */
  461. if (pos + 2 > data + len || pos + 2 + pos[1] > data + len) {
  462. wpa_printf(MSG_DEBUG, "GAS: No room for Advertisement "
  463. "Protocol element in the response from " MACSTR,
  464. MAC2STR(sa));
  465. return 0;
  466. }
  467. if (*pos != WLAN_EID_ADV_PROTO) {
  468. wpa_printf(MSG_DEBUG, "GAS: Unexpected Advertisement "
  469. "Protocol element ID %u in response from " MACSTR,
  470. *pos, MAC2STR(sa));
  471. return 0;
  472. }
  473. adv_proto = pos;
  474. pos += 2 + pos[1];
  475. /* Query Response Length */
  476. if (pos + 2 > data + len) {
  477. wpa_printf(MSG_DEBUG, "GAS: No room for GAS Response Length");
  478. return 0;
  479. }
  480. resp_len = WPA_GET_LE16(pos);
  481. pos += 2;
  482. left = data + len - pos;
  483. if (resp_len > left) {
  484. wpa_printf(MSG_DEBUG, "GAS: Truncated Query Response in "
  485. "response from " MACSTR, MAC2STR(sa));
  486. return 0;
  487. }
  488. if (resp_len < left) {
  489. wpa_printf(MSG_DEBUG, "GAS: Ignore %u octets of extra data "
  490. "after Query Response from " MACSTR,
  491. left - resp_len, MAC2STR(sa));
  492. }
  493. if (action == WLAN_PA_GAS_COMEBACK_RESP)
  494. gas_query_rx_comeback(gas, query, adv_proto, pos, resp_len,
  495. frag_id, more_frags, comeback_delay);
  496. else
  497. gas_query_rx_initial(gas, query, adv_proto, pos, resp_len,
  498. comeback_delay);
  499. return 0;
  500. }
  501. static void gas_query_timeout(void *eloop_data, void *user_ctx)
  502. {
  503. struct gas_query_ap *gas = eloop_data;
  504. struct gas_query_pending *query = user_ctx;
  505. wpa_printf(MSG_DEBUG, "GAS: No response received for query to " MACSTR
  506. " dialog token %u",
  507. MAC2STR(query->addr), query->dialog_token);
  508. gas_query_done(gas, query, GAS_QUERY_AP_TIMEOUT);
  509. }
  510. static int gas_query_dialog_token_available(struct gas_query_ap *gas,
  511. const u8 *dst, u8 dialog_token)
  512. {
  513. struct gas_query_pending *q;
  514. dl_list_for_each(q, &gas->pending, struct gas_query_pending, list) {
  515. if (os_memcmp(dst, q->addr, ETH_ALEN) == 0 &&
  516. dialog_token == q->dialog_token)
  517. return 0;
  518. }
  519. return 1;
  520. }
  521. static void gas_query_tx_initial_req(struct gas_query_ap *gas,
  522. struct gas_query_pending *query)
  523. {
  524. if (gas_query_tx(gas, query, query->req,
  525. GAS_QUERY_WAIT_TIME_INITIAL) < 0) {
  526. wpa_printf(MSG_DEBUG, "GAS: Failed to send Action frame to "
  527. MACSTR, MAC2STR(query->addr));
  528. gas_query_done(gas, query, GAS_QUERY_AP_INTERNAL_ERROR);
  529. return;
  530. }
  531. gas->current = query;
  532. wpa_printf(MSG_DEBUG, "GAS: Starting query timeout for dialog token %u",
  533. query->dialog_token);
  534. eloop_register_timeout(GAS_QUERY_TIMEOUT_PERIOD, 0,
  535. gas_query_timeout, gas, query);
  536. }
  537. static int gas_query_new_dialog_token(struct gas_query_ap *gas, const u8 *dst)
  538. {
  539. static int next_start = 0;
  540. int dialog_token;
  541. for (dialog_token = 0; dialog_token < 256; dialog_token++) {
  542. if (gas_query_dialog_token_available(
  543. gas, dst, (next_start + dialog_token) % 256))
  544. break;
  545. }
  546. if (dialog_token == 256)
  547. return -1; /* Too many pending queries */
  548. dialog_token = (next_start + dialog_token) % 256;
  549. next_start = (dialog_token + 1) % 256;
  550. return dialog_token;
  551. }
  552. /**
  553. * gas_query_ap_req - Request a GAS query
  554. * @gas: GAS query data from gas_query_init()
  555. * @dst: Destination MAC address for the query
  556. * @freq: Frequency (in MHz) for the channel on which to send the query
  557. * @req: GAS query payload (to be freed by gas_query module in case of success
  558. * return)
  559. * @cb: Callback function for reporting GAS query result and response
  560. * @ctx: Context pointer to use with the @cb call
  561. * Returns: dialog token (>= 0) on success or -1 on failure
  562. */
  563. int gas_query_ap_req(struct gas_query_ap *gas, const u8 *dst, int freq,
  564. struct wpabuf *req,
  565. void (*cb)(void *ctx, const u8 *dst, u8 dialog_token,
  566. enum gas_query_ap_result result,
  567. const struct wpabuf *adv_proto,
  568. const struct wpabuf *resp, u16 status_code),
  569. void *ctx)
  570. {
  571. struct gas_query_pending *query;
  572. int dialog_token;
  573. if (!gas || wpabuf_len(req) < 3)
  574. return -1;
  575. dialog_token = gas_query_new_dialog_token(gas, dst);
  576. if (dialog_token < 0)
  577. return -1;
  578. query = os_zalloc(sizeof(*query));
  579. if (query == NULL)
  580. return -1;
  581. query->gas = gas;
  582. os_memcpy(query->addr, dst, ETH_ALEN);
  583. query->dialog_token = dialog_token;
  584. query->freq = freq;
  585. query->cb = cb;
  586. query->ctx = ctx;
  587. query->req = req;
  588. dl_list_add(&gas->pending, &query->list);
  589. *(wpabuf_mhead_u8(req) + 2) = dialog_token;
  590. wpa_msg(gas->msg_ctx, MSG_INFO, GAS_QUERY_START "addr=" MACSTR
  591. " dialog_token=%u freq=%d",
  592. MAC2STR(query->addr), query->dialog_token, query->freq);
  593. gas_query_tx_initial_req(gas, query);
  594. return dialog_token;
  595. }