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