gas_query.c 22 KB

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