gas_query.c 16 KB

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