123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870 |
- /*
- * Generic advertisement service (GAS) server
- * Copyright (c) 2011-2012, Qualcomm Atheros, Inc.
- *
- * This software may be distributed under the terms of the BSD license.
- * See README for more details.
- */
- #include "includes.h"
- #include "common.h"
- #include "common/ieee802_11_defs.h"
- #include "common/gas.h"
- #include "utils/eloop.h"
- #include "hostapd.h"
- #include "ap_config.h"
- #include "ap_drv_ops.h"
- #include "sta_info.h"
- #include "gas_serv.h"
- static struct gas_dialog_info *
- gas_dialog_create(struct hostapd_data *hapd, const u8 *addr, u8 dialog_token)
- {
- struct sta_info *sta;
- struct gas_dialog_info *dia = NULL;
- int i, j;
- sta = ap_get_sta(hapd, addr);
- if (!sta) {
- /*
- * We need a STA entry to be able to maintain state for
- * the GAS query.
- */
- wpa_printf(MSG_DEBUG, "ANQP: Add a temporary STA entry for "
- "GAS query");
- sta = ap_sta_add(hapd, addr);
- if (!sta) {
- wpa_printf(MSG_DEBUG, "Failed to add STA " MACSTR
- " for GAS query", MAC2STR(addr));
- return NULL;
- }
- sta->flags |= WLAN_STA_GAS;
- /*
- * The default inactivity is 300 seconds. We don't need
- * it to be that long.
- */
- ap_sta_session_timeout(hapd, sta, 5);
- }
- if (sta->gas_dialog == NULL) {
- sta->gas_dialog = os_zalloc(GAS_DIALOG_MAX *
- sizeof(struct gas_dialog_info));
- if (sta->gas_dialog == NULL)
- return NULL;
- }
- for (i = sta->gas_dialog_next, j = 0; j < GAS_DIALOG_MAX; i++, j++) {
- if (i == GAS_DIALOG_MAX)
- i = 0;
- if (sta->gas_dialog[i].valid)
- continue;
- dia = &sta->gas_dialog[i];
- dia->valid = 1;
- dia->index = i;
- dia->dialog_token = dialog_token;
- sta->gas_dialog_next = (++i == GAS_DIALOG_MAX) ? 0 : i;
- return dia;
- }
- wpa_msg(hapd->msg_ctx, MSG_ERROR, "ANQP: Could not create dialog for "
- MACSTR " dialog_token %u. Consider increasing "
- "GAS_DIALOG_MAX.", MAC2STR(addr), dialog_token);
- return NULL;
- }
- struct gas_dialog_info *
- gas_serv_dialog_find(struct hostapd_data *hapd, const u8 *addr,
- u8 dialog_token)
- {
- struct sta_info *sta;
- int i;
- sta = ap_get_sta(hapd, addr);
- if (!sta) {
- wpa_printf(MSG_DEBUG, "ANQP: could not find STA " MACSTR,
- MAC2STR(addr));
- return NULL;
- }
- for (i = 0; sta->gas_dialog && i < GAS_DIALOG_MAX; i++) {
- if (sta->gas_dialog[i].dialog_token != dialog_token ||
- !sta->gas_dialog[i].valid)
- continue;
- return &sta->gas_dialog[i];
- }
- wpa_printf(MSG_DEBUG, "ANQP: Could not find dialog for "
- MACSTR " dialog_token %u", MAC2STR(addr), dialog_token);
- return NULL;
- }
- void gas_serv_dialog_clear(struct gas_dialog_info *dia)
- {
- wpabuf_free(dia->sd_resp);
- os_memset(dia, 0, sizeof(*dia));
- }
- static void gas_serv_free_dialogs(struct hostapd_data *hapd,
- const u8 *sta_addr)
- {
- struct sta_info *sta;
- int i;
- sta = ap_get_sta(hapd, sta_addr);
- if (sta == NULL || sta->gas_dialog == NULL)
- return;
- for (i = 0; i < GAS_DIALOG_MAX; i++) {
- if (sta->gas_dialog[i].valid)
- return;
- }
- os_free(sta->gas_dialog);
- sta->gas_dialog = NULL;
- }
- static void anqp_add_hs_capab_list(struct hostapd_data *hapd,
- struct wpabuf *buf)
- {
- u8 *len;
- len = gas_anqp_add_element(buf, ANQP_VENDOR_SPECIFIC);
- wpabuf_put_be24(buf, OUI_WFA);
- wpabuf_put_u8(buf, HS20_ANQP_OUI_TYPE);
- wpabuf_put_u8(buf, HS20_STYPE_CAPABILITY_LIST);
- wpabuf_put_u8(buf, 0); /* Reserved */
- wpabuf_put_u8(buf, HS20_STYPE_CAPABILITY_LIST);
- if (hapd->conf->hs20_operating_class)
- wpabuf_put_u8(buf, HS20_STYPE_OPERATING_CLASS);
- gas_anqp_set_element_len(buf, len);
- }
- static void anqp_add_capab_list(struct hostapd_data *hapd,
- struct wpabuf *buf)
- {
- u8 *len;
- len = gas_anqp_add_element(buf, ANQP_CAPABILITY_LIST);
- wpabuf_put_le16(buf, ANQP_CAPABILITY_LIST);
- if (hapd->conf->venue_name)
- wpabuf_put_le16(buf, ANQP_VENUE_NAME);
- if (hapd->conf->network_auth_type)
- wpabuf_put_le16(buf, ANQP_NETWORK_AUTH_TYPE);
- if (hapd->conf->roaming_consortium)
- wpabuf_put_le16(buf, ANQP_ROAMING_CONSORTIUM);
- if (hapd->conf->ipaddr_type_configured)
- wpabuf_put_le16(buf, ANQP_IP_ADDR_TYPE_AVAILABILITY);
- if (hapd->conf->anqp_3gpp_cell_net)
- wpabuf_put_le16(buf, ANQP_3GPP_CELLULAR_NETWORK);
- if (hapd->conf->domain_name)
- wpabuf_put_le16(buf, ANQP_DOMAIN_NAME);
- anqp_add_hs_capab_list(hapd, buf);
- gas_anqp_set_element_len(buf, len);
- }
- static void anqp_add_venue_name(struct hostapd_data *hapd, struct wpabuf *buf)
- {
- if (hapd->conf->venue_name) {
- u8 *len;
- unsigned int i;
- len = gas_anqp_add_element(buf, ANQP_VENUE_NAME);
- wpabuf_put_u8(buf, hapd->conf->venue_group);
- wpabuf_put_u8(buf, hapd->conf->venue_type);
- for (i = 0; i < hapd->conf->venue_name_count; i++) {
- struct hostapd_venue_name *vn;
- vn = &hapd->conf->venue_name[i];
- wpabuf_put_u8(buf, 3 + vn->name_len);
- wpabuf_put_data(buf, vn->lang, 3);
- wpabuf_put_data(buf, vn->name, vn->name_len);
- }
- gas_anqp_set_element_len(buf, len);
- }
- }
- static void anqp_add_network_auth_type(struct hostapd_data *hapd,
- struct wpabuf *buf)
- {
- if (hapd->conf->network_auth_type) {
- wpabuf_put_le16(buf, ANQP_NETWORK_AUTH_TYPE);
- wpabuf_put_le16(buf, hapd->conf->network_auth_type_len);
- wpabuf_put_data(buf, hapd->conf->network_auth_type,
- hapd->conf->network_auth_type_len);
- }
- }
- static void anqp_add_roaming_consortium(struct hostapd_data *hapd,
- struct wpabuf *buf)
- {
- unsigned int i;
- u8 *len;
- len = gas_anqp_add_element(buf, ANQP_ROAMING_CONSORTIUM);
- for (i = 0; i < hapd->conf->roaming_consortium_count; i++) {
- struct hostapd_roaming_consortium *rc;
- rc = &hapd->conf->roaming_consortium[i];
- wpabuf_put_u8(buf, rc->len);
- wpabuf_put_data(buf, rc->oi, rc->len);
- }
- gas_anqp_set_element_len(buf, len);
- }
- static void anqp_add_ip_addr_type_availability(struct hostapd_data *hapd,
- struct wpabuf *buf)
- {
- if (hapd->conf->ipaddr_type_configured) {
- wpabuf_put_le16(buf, ANQP_IP_ADDR_TYPE_AVAILABILITY);
- wpabuf_put_le16(buf, 1);
- wpabuf_put_u8(buf, hapd->conf->ipaddr_type_availability);
- }
- }
- static void anqp_add_3gpp_cellular_network(struct hostapd_data *hapd,
- struct wpabuf *buf)
- {
- if (hapd->conf->anqp_3gpp_cell_net) {
- wpabuf_put_le16(buf, ANQP_3GPP_CELLULAR_NETWORK);
- wpabuf_put_le16(buf,
- hapd->conf->anqp_3gpp_cell_net_len);
- wpabuf_put_data(buf, hapd->conf->anqp_3gpp_cell_net,
- hapd->conf->anqp_3gpp_cell_net_len);
- }
- }
- static void anqp_add_domain_name(struct hostapd_data *hapd, struct wpabuf *buf)
- {
- if (hapd->conf->domain_name) {
- wpabuf_put_le16(buf, ANQP_DOMAIN_NAME);
- wpabuf_put_le16(buf, hapd->conf->domain_name_len);
- wpabuf_put_data(buf, hapd->conf->domain_name,
- hapd->conf->domain_name_len);
- }
- }
- static void anqp_add_operating_class(struct hostapd_data *hapd,
- struct wpabuf *buf)
- {
- if (hapd->conf->hs20_operating_class) {
- u8 *len = gas_anqp_add_element(buf, ANQP_VENDOR_SPECIFIC);
- wpabuf_put_be24(buf, OUI_WFA);
- wpabuf_put_u8(buf, HS20_ANQP_OUI_TYPE);
- wpabuf_put_u8(buf, HS20_STYPE_OPERATING_CLASS);
- wpabuf_put_u8(buf, 0); /* Reserved */
- wpabuf_put_data(buf, hapd->conf->hs20_operating_class,
- hapd->conf->hs20_operating_class_len);
- gas_anqp_set_element_len(buf, len);
- }
- }
- static struct wpabuf *
- gas_serv_build_gas_resp_payload(struct hostapd_data *hapd,
- unsigned int request,
- struct gas_dialog_info *di)
- {
- struct wpabuf *buf;
- buf = wpabuf_alloc(1400);
- if (buf == NULL)
- return NULL;
- if (request & ANQP_REQ_CAPABILITY_LIST)
- anqp_add_capab_list(hapd, buf);
- if (request & ANQP_REQ_VENUE_NAME)
- anqp_add_venue_name(hapd, buf);
- if (request & ANQP_REQ_NETWORK_AUTH_TYPE)
- anqp_add_network_auth_type(hapd, buf);
- if (request & ANQP_REQ_ROAMING_CONSORTIUM)
- anqp_add_roaming_consortium(hapd, buf);
- if (request & ANQP_REQ_IP_ADDR_TYPE_AVAILABILITY)
- anqp_add_ip_addr_type_availability(hapd, buf);
- if (request & ANQP_REQ_3GPP_CELLULAR_NETWORK)
- anqp_add_3gpp_cellular_network(hapd, buf);
- if (request & ANQP_REQ_DOMAIN_NAME)
- anqp_add_domain_name(hapd, buf);
- if (request & ANQP_REQ_HS_CAPABILITY_LIST)
- anqp_add_hs_capab_list(hapd, buf);
- if (request & ANQP_REQ_OPERATING_CLASS)
- anqp_add_operating_class(hapd, buf);
- return buf;
- }
- static void gas_serv_clear_cached_ies(void *eloop_data, void *user_ctx)
- {
- struct gas_dialog_info *dia = eloop_data;
- wpa_printf(MSG_DEBUG, "GAS: Timeout triggered, clearing dialog for "
- "dialog token %d", dia->dialog_token);
- gas_serv_dialog_clear(dia);
- }
- struct anqp_query_info {
- unsigned int request;
- unsigned int remote_request;
- const void *param;
- u32 param_arg;
- u16 remote_delay;
- };
- static void set_anqp_req(unsigned int bit, const char *name, int local,
- unsigned int remote, u16 remote_delay,
- struct anqp_query_info *qi)
- {
- qi->request |= bit;
- if (local) {
- wpa_printf(MSG_DEBUG, "ANQP: %s (local)", name);
- } else if (bit & remote) {
- wpa_printf(MSG_DEBUG, "ANQP: %s (remote)", name);
- qi->remote_request |= bit;
- if (remote_delay > qi->remote_delay)
- qi->remote_delay = remote_delay;
- } else {
- wpa_printf(MSG_DEBUG, "ANQP: %s not available", name);
- }
- }
- static void rx_anqp_query_list_id(struct hostapd_data *hapd, u16 info_id,
- struct anqp_query_info *qi)
- {
- switch (info_id) {
- case ANQP_CAPABILITY_LIST:
- set_anqp_req(ANQP_REQ_CAPABILITY_LIST, "Capability List", 1, 0,
- 0, qi);
- break;
- case ANQP_VENUE_NAME:
- set_anqp_req(ANQP_REQ_VENUE_NAME, "Venue Name",
- hapd->conf->venue_name != NULL, 0, 0, qi);
- break;
- case ANQP_NETWORK_AUTH_TYPE:
- set_anqp_req(ANQP_REQ_NETWORK_AUTH_TYPE, "Network Auth Type",
- hapd->conf->network_auth_type != NULL,
- 0, 0, qi);
- break;
- case ANQP_ROAMING_CONSORTIUM:
- set_anqp_req(ANQP_REQ_ROAMING_CONSORTIUM, "Roaming Consortium",
- hapd->conf->roaming_consortium != NULL, 0, 0, qi);
- break;
- case ANQP_IP_ADDR_TYPE_AVAILABILITY:
- set_anqp_req(ANQP_REQ_IP_ADDR_TYPE_AVAILABILITY,
- "IP Addr Type Availability",
- hapd->conf->ipaddr_type_configured,
- 0, 0, qi);
- break;
- case ANQP_3GPP_CELLULAR_NETWORK:
- set_anqp_req(ANQP_REQ_3GPP_CELLULAR_NETWORK,
- "3GPP Cellular Network",
- hapd->conf->anqp_3gpp_cell_net != NULL,
- 0, 0, qi);
- break;
- case ANQP_DOMAIN_NAME:
- set_anqp_req(ANQP_REQ_DOMAIN_NAME, "Domain Name",
- hapd->conf->domain_name != NULL,
- 0, 0, qi);
- break;
- default:
- wpa_printf(MSG_DEBUG, "ANQP: Unsupported Info Id %u",
- info_id);
- break;
- }
- }
- static void rx_anqp_query_list(struct hostapd_data *hapd,
- const u8 *pos, const u8 *end,
- struct anqp_query_info *qi)
- {
- wpa_printf(MSG_DEBUG, "ANQP: %u Info IDs requested in Query list",
- (unsigned int) (end - pos) / 2);
- while (pos + 2 <= end) {
- rx_anqp_query_list_id(hapd, WPA_GET_LE16(pos), qi);
- pos += 2;
- }
- }
- static void rx_anqp_hs_query_list(struct hostapd_data *hapd, u8 subtype,
- struct anqp_query_info *qi)
- {
- switch (subtype) {
- case HS20_STYPE_CAPABILITY_LIST:
- set_anqp_req(ANQP_REQ_HS_CAPABILITY_LIST, "HS Capability List",
- 1, 0, 0, qi);
- break;
- case HS20_STYPE_OPERATING_CLASS:
- set_anqp_req(ANQP_REQ_OPERATING_CLASS, "Operating Class",
- hapd->conf->hs20_operating_class != NULL,
- 0, 0, qi);
- break;
- default:
- wpa_printf(MSG_DEBUG, "ANQP: Unsupported HS 2.0 subtype %u",
- subtype);
- break;
- }
- }
- static void rx_anqp_vendor_specific(struct hostapd_data *hapd,
- const u8 *pos, const u8 *end,
- struct anqp_query_info *qi)
- {
- u32 oui;
- u8 subtype;
- if (pos + 4 > end) {
- wpa_printf(MSG_DEBUG, "ANQP: Too short vendor specific ANQP "
- "Query element");
- return;
- }
- oui = WPA_GET_BE24(pos);
- pos += 3;
- if (oui != OUI_WFA) {
- wpa_printf(MSG_DEBUG, "ANQP: Unsupported vendor OUI %06x",
- oui);
- return;
- }
- if (*pos != HS20_ANQP_OUI_TYPE) {
- wpa_printf(MSG_DEBUG, "ANQP: Unsupported WFA vendor type %u",
- *pos);
- return;
- }
- pos++;
- if (pos + 1 >= end)
- return;
- subtype = *pos++;
- pos++; /* Reserved */
- switch (subtype) {
- case HS20_STYPE_QUERY_LIST:
- wpa_printf(MSG_DEBUG, "ANQP: HS 2.0 Query List");
- while (pos < end) {
- rx_anqp_hs_query_list(hapd, *pos, qi);
- pos++;
- }
- break;
- default:
- wpa_printf(MSG_DEBUG, "ANQP: Unsupported HS 2.0 query subtype "
- "%u", subtype);
- break;
- }
- }
- static void gas_serv_req_local_processing(struct hostapd_data *hapd,
- const u8 *sa, u8 dialog_token,
- struct anqp_query_info *qi)
- {
- struct wpabuf *buf, *tx_buf;
- buf = gas_serv_build_gas_resp_payload(hapd, qi->request, NULL);
- wpa_hexdump_buf(MSG_MSGDUMP, "ANQP: Locally generated ANQP responses",
- buf);
- if (!buf)
- return;
- if (wpabuf_len(buf) > hapd->gas_frag_limit ||
- hapd->conf->gas_comeback_delay) {
- struct gas_dialog_info *di;
- u16 comeback_delay = 1;
- if (hapd->conf->gas_comeback_delay) {
- /* Testing - allow overriding of the delay value */
- comeback_delay = hapd->conf->gas_comeback_delay;
- }
- wpa_printf(MSG_DEBUG, "ANQP: Too long response to fit in "
- "initial response - use GAS comeback");
- di = gas_dialog_create(hapd, sa, dialog_token);
- if (!di) {
- wpa_printf(MSG_INFO, "ANQP: Could not create dialog "
- "for " MACSTR " (dialog token %u)",
- MAC2STR(sa), dialog_token);
- wpabuf_free(buf);
- return;
- }
- di->sd_resp = buf;
- di->sd_resp_pos = 0;
- tx_buf = gas_anqp_build_initial_resp_buf(
- dialog_token, WLAN_STATUS_SUCCESS, comeback_delay,
- NULL);
- } else {
- wpa_printf(MSG_DEBUG, "ANQP: Initial response (no comeback)");
- tx_buf = gas_anqp_build_initial_resp_buf(
- dialog_token, WLAN_STATUS_SUCCESS, 0, buf);
- wpabuf_free(buf);
- }
- if (!tx_buf)
- return;
- hostapd_drv_send_action(hapd, hapd->iface->freq, 0, sa,
- wpabuf_head(tx_buf), wpabuf_len(tx_buf));
- wpabuf_free(tx_buf);
- }
- static void gas_serv_rx_gas_initial_req(struct hostapd_data *hapd,
- const u8 *sa,
- const u8 *data, size_t len)
- {
- const u8 *pos = data;
- const u8 *end = data + len;
- const u8 *next;
- u8 dialog_token;
- u16 slen;
- struct anqp_query_info qi;
- const u8 *adv_proto;
- if (len < 1 + 2)
- return;
- os_memset(&qi, 0, sizeof(qi));
- dialog_token = *pos++;
- wpa_msg(hapd->msg_ctx, MSG_DEBUG,
- "GAS: GAS Initial Request from " MACSTR " (dialog token %u) ",
- MAC2STR(sa), dialog_token);
- if (*pos != WLAN_EID_ADV_PROTO) {
- wpa_msg(hapd->msg_ctx, MSG_DEBUG,
- "GAS: Unexpected IE in GAS Initial Request: %u", *pos);
- return;
- }
- adv_proto = pos++;
- slen = *pos++;
- next = pos + slen;
- if (next > end || slen < 2) {
- wpa_msg(hapd->msg_ctx, MSG_DEBUG,
- "GAS: Invalid IE in GAS Initial Request");
- return;
- }
- pos++; /* skip QueryRespLenLimit and PAME-BI */
- if (*pos != ACCESS_NETWORK_QUERY_PROTOCOL) {
- struct wpabuf *buf;
- wpa_msg(hapd->msg_ctx, MSG_DEBUG,
- "GAS: Unsupported GAS advertisement protocol id %u",
- *pos);
- if (sa[0] & 0x01)
- return; /* Invalid source address - drop silently */
- buf = gas_build_initial_resp(
- dialog_token, WLAN_STATUS_GAS_ADV_PROTO_NOT_SUPPORTED,
- 0, 2 + slen + 2);
- if (buf == NULL)
- return;
- wpabuf_put_data(buf, adv_proto, 2 + slen);
- wpabuf_put_le16(buf, 0); /* Query Response Length */
- hostapd_drv_send_action(hapd, hapd->iface->freq, 0, sa,
- wpabuf_head(buf), wpabuf_len(buf));
- wpabuf_free(buf);
- return;
- }
- pos = next;
- /* Query Request */
- if (pos + 2 > end)
- return;
- slen = WPA_GET_LE16(pos);
- pos += 2;
- if (pos + slen > end)
- return;
- end = pos + slen;
- /* ANQP Query Request */
- while (pos < end) {
- u16 info_id, elen;
- if (pos + 4 > end)
- return;
- info_id = WPA_GET_LE16(pos);
- pos += 2;
- elen = WPA_GET_LE16(pos);
- pos += 2;
- if (pos + elen > end) {
- wpa_printf(MSG_DEBUG, "ANQP: Invalid Query Request");
- return;
- }
- switch (info_id) {
- case ANQP_QUERY_LIST:
- rx_anqp_query_list(hapd, pos, pos + elen, &qi);
- break;
- case ANQP_VENDOR_SPECIFIC:
- rx_anqp_vendor_specific(hapd, pos, pos + elen, &qi);
- break;
- default:
- wpa_printf(MSG_DEBUG, "ANQP: Unsupported Query "
- "Request element %u", info_id);
- break;
- }
- pos += elen;
- }
- gas_serv_req_local_processing(hapd, sa, dialog_token, &qi);
- }
- void gas_serv_tx_gas_response(struct hostapd_data *hapd, const u8 *dst,
- struct gas_dialog_info *dialog)
- {
- struct wpabuf *buf, *tx_buf;
- u8 dialog_token = dialog->dialog_token;
- size_t frag_len;
- if (dialog->sd_resp == NULL) {
- buf = gas_serv_build_gas_resp_payload(hapd,
- dialog->all_requested,
- dialog);
- wpa_hexdump_buf(MSG_MSGDUMP, "ANQP: Generated ANQP responses",
- buf);
- if (!buf)
- goto tx_gas_response_done;
- dialog->sd_resp = buf;
- dialog->sd_resp_pos = 0;
- }
- frag_len = wpabuf_len(dialog->sd_resp) - dialog->sd_resp_pos;
- if (frag_len > hapd->gas_frag_limit || dialog->comeback_delay ||
- hapd->conf->gas_comeback_delay) {
- u16 comeback_delay_tus = dialog->comeback_delay +
- GAS_SERV_COMEBACK_DELAY_FUDGE;
- u32 comeback_delay_secs, comeback_delay_usecs;
- if (hapd->conf->gas_comeback_delay) {
- /* Testing - allow overriding of the delay value */
- comeback_delay_tus = hapd->conf->gas_comeback_delay;
- }
- wpa_printf(MSG_DEBUG, "GAS: Response frag_len %u (frag limit "
- "%u) and comeback delay %u, "
- "requesting comebacks", (unsigned int) frag_len,
- (unsigned int) hapd->gas_frag_limit,
- dialog->comeback_delay);
- tx_buf = gas_anqp_build_initial_resp_buf(dialog_token,
- WLAN_STATUS_SUCCESS,
- comeback_delay_tus,
- NULL);
- if (tx_buf) {
- wpa_msg(hapd->msg_ctx, MSG_DEBUG,
- "GAS: Tx GAS Initial Resp (comeback = 10TU)");
- hostapd_drv_send_action(hapd, hapd->iface->freq, 0,
- dst,
- wpabuf_head(tx_buf),
- wpabuf_len(tx_buf));
- }
- wpabuf_free(tx_buf);
- /* start a timer of 1.5 * comeback-delay */
- comeback_delay_tus = comeback_delay_tus +
- (comeback_delay_tus / 2);
- comeback_delay_secs = (comeback_delay_tus * 1024) / 1000000;
- comeback_delay_usecs = (comeback_delay_tus * 1024) -
- (comeback_delay_secs * 1000000);
- eloop_register_timeout(comeback_delay_secs,
- comeback_delay_usecs,
- gas_serv_clear_cached_ies, dialog,
- NULL);
- goto tx_gas_response_done;
- }
- buf = wpabuf_alloc_copy(wpabuf_head_u8(dialog->sd_resp) +
- dialog->sd_resp_pos, frag_len);
- if (buf == NULL) {
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: Buffer allocation "
- "failed");
- goto tx_gas_response_done;
- }
- tx_buf = gas_anqp_build_initial_resp_buf(dialog_token,
- WLAN_STATUS_SUCCESS, 0, buf);
- wpabuf_free(buf);
- if (tx_buf == NULL)
- goto tx_gas_response_done;
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: Tx GAS Initial "
- "Response (frag_id %d frag_len %d)",
- dialog->sd_frag_id, (int) frag_len);
- dialog->sd_frag_id++;
- hostapd_drv_send_action(hapd, hapd->iface->freq, 0, dst,
- wpabuf_head(tx_buf), wpabuf_len(tx_buf));
- wpabuf_free(tx_buf);
- tx_gas_response_done:
- gas_serv_clear_cached_ies(dialog, NULL);
- }
- static void gas_serv_rx_gas_comeback_req(struct hostapd_data *hapd,
- const u8 *sa,
- const u8 *data, size_t len)
- {
- struct gas_dialog_info *dialog;
- struct wpabuf *buf, *tx_buf;
- u8 dialog_token;
- size_t frag_len;
- int more = 0;
- wpa_hexdump(MSG_DEBUG, "GAS: RX GAS Comeback Request", data, len);
- if (len < 1)
- return;
- dialog_token = *data;
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: Dialog Token: %u",
- dialog_token);
- dialog = gas_serv_dialog_find(hapd, sa, dialog_token);
- if (!dialog) {
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: No pending SD "
- "response fragment for " MACSTR " dialog token %u",
- MAC2STR(sa), dialog_token);
- if (sa[0] & 0x01)
- return; /* Invalid source address - drop silently */
- tx_buf = gas_anqp_build_comeback_resp_buf(
- dialog_token, WLAN_STATUS_NO_OUTSTANDING_GAS_REQ, 0, 0,
- 0, NULL);
- if (tx_buf == NULL)
- return;
- goto send_resp;
- }
- if (dialog->sd_resp == NULL) {
- wpa_printf(MSG_DEBUG, "GAS: Remote request 0x%x received 0x%x",
- dialog->requested, dialog->received);
- if ((dialog->requested & dialog->received) !=
- dialog->requested) {
- wpa_printf(MSG_DEBUG, "GAS: Did not receive response "
- "from remote processing");
- gas_serv_dialog_clear(dialog);
- tx_buf = gas_anqp_build_comeback_resp_buf(
- dialog_token,
- WLAN_STATUS_GAS_RESP_NOT_RECEIVED, 0, 0, 0,
- NULL);
- if (tx_buf == NULL)
- return;
- goto send_resp;
- }
- buf = gas_serv_build_gas_resp_payload(hapd,
- dialog->all_requested,
- dialog);
- wpa_hexdump_buf(MSG_MSGDUMP, "ANQP: Generated ANQP responses",
- buf);
- if (!buf)
- goto rx_gas_comeback_req_done;
- dialog->sd_resp = buf;
- dialog->sd_resp_pos = 0;
- }
- frag_len = wpabuf_len(dialog->sd_resp) - dialog->sd_resp_pos;
- if (frag_len > hapd->gas_frag_limit) {
- frag_len = hapd->gas_frag_limit;
- more = 1;
- }
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: resp frag_len %u",
- (unsigned int) frag_len);
- buf = wpabuf_alloc_copy(wpabuf_head_u8(dialog->sd_resp) +
- dialog->sd_resp_pos, frag_len);
- if (buf == NULL) {
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: Failed to allocate "
- "buffer");
- goto rx_gas_comeback_req_done;
- }
- tx_buf = gas_anqp_build_comeback_resp_buf(dialog_token,
- WLAN_STATUS_SUCCESS,
- dialog->sd_frag_id,
- more, 0, buf);
- wpabuf_free(buf);
- if (tx_buf == NULL)
- goto rx_gas_comeback_req_done;
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: Tx GAS Comeback Response "
- "(frag_id %d more=%d frag_len=%d)",
- dialog->sd_frag_id, more, (int) frag_len);
- dialog->sd_frag_id++;
- dialog->sd_resp_pos += frag_len;
- if (more) {
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: %d more bytes remain "
- "to be sent",
- (int) (wpabuf_len(dialog->sd_resp) -
- dialog->sd_resp_pos));
- } else {
- wpa_msg(hapd->msg_ctx, MSG_DEBUG, "GAS: All fragments of "
- "SD response sent");
- gas_serv_dialog_clear(dialog);
- gas_serv_free_dialogs(hapd, sa);
- }
- send_resp:
- hostapd_drv_send_action(hapd, hapd->iface->freq, 0, sa,
- wpabuf_head(tx_buf), wpabuf_len(tx_buf));
- wpabuf_free(tx_buf);
- return;
- rx_gas_comeback_req_done:
- gas_serv_clear_cached_ies(dialog, NULL);
- }
- static void gas_serv_rx_public_action(void *ctx, const u8 *buf, size_t len,
- int freq)
- {
- struct hostapd_data *hapd = ctx;
- const struct ieee80211_mgmt *mgmt;
- size_t hdr_len;
- const u8 *sa, *data;
- mgmt = (const struct ieee80211_mgmt *) buf;
- hdr_len = (const u8 *) &mgmt->u.action.u.vs_public_action.action - buf;
- if (hdr_len > len)
- return;
- if (mgmt->u.action.category != WLAN_ACTION_PUBLIC)
- return;
- sa = mgmt->sa;
- len -= hdr_len;
- data = &mgmt->u.action.u.public_action.action;
- switch (data[0]) {
- case WLAN_PA_GAS_INITIAL_REQ:
- gas_serv_rx_gas_initial_req(hapd, sa, data + 1, len - 1);
- break;
- case WLAN_PA_GAS_COMEBACK_REQ:
- gas_serv_rx_gas_comeback_req(hapd, sa, data + 1, len - 1);
- break;
- }
- }
- int gas_serv_init(struct hostapd_data *hapd)
- {
- hapd->public_action_cb = gas_serv_rx_public_action;
- hapd->public_action_cb_ctx = hapd;
- hapd->gas_frag_limit = 1400;
- if (hapd->conf->gas_frag_limit > 0)
- hapd->gas_frag_limit = hapd->conf->gas_frag_limit;
- return 0;
- }
- void gas_serv_deinit(struct hostapd_data *hapd)
- {
- }
|