0e450db285
This extends hostapd Hotspot 2.0 implementation to allow operator icons to be made available. The existing hs20_icon parameter is used to define the icons and the new operator_icon parameter (zero or more entries) is used to specify which of the available icons are operator icons. The operator icons are advertised in the Operator Icon Metadata ANQP-element while the icon data can be fetched using the same mechanism (icon request/binary file) that was added for the OSU Providers icons. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
89 lines
3.2 KiB
C
89 lines
3.2 KiB
C
/*
|
|
* Generic advertisement service (GAS) server
|
|
* Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef GAS_SERV_H
|
|
#define GAS_SERV_H
|
|
|
|
/* First 16 ANQP InfoIDs can be included in the optimized bitmap */
|
|
#define ANQP_REQ_CAPABILITY_LIST \
|
|
(1 << (ANQP_CAPABILITY_LIST - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_VENUE_NAME \
|
|
(1 << (ANQP_VENUE_NAME - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_EMERGENCY_CALL_NUMBER \
|
|
(1 << (ANQP_EMERGENCY_CALL_NUMBER - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_NETWORK_AUTH_TYPE \
|
|
(1 << (ANQP_NETWORK_AUTH_TYPE - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_ROAMING_CONSORTIUM \
|
|
(1 << (ANQP_ROAMING_CONSORTIUM - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_IP_ADDR_TYPE_AVAILABILITY \
|
|
(1 << (ANQP_IP_ADDR_TYPE_AVAILABILITY - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_NAI_REALM \
|
|
(1 << (ANQP_NAI_REALM - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_3GPP_CELLULAR_NETWORK \
|
|
(1 << (ANQP_3GPP_CELLULAR_NETWORK - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_AP_GEOSPATIAL_LOCATION \
|
|
(1 << (ANQP_AP_GEOSPATIAL_LOCATION - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_AP_CIVIC_LOCATION \
|
|
(1 << (ANQP_AP_CIVIC_LOCATION - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_AP_LOCATION_PUBLIC_URI \
|
|
(1 << (ANQP_AP_LOCATION_PUBLIC_URI - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_DOMAIN_NAME \
|
|
(1 << (ANQP_DOMAIN_NAME - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_EMERGENCY_ALERT_URI \
|
|
(1 << (ANQP_EMERGENCY_ALERT_URI - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_TDLS_CAPABILITY \
|
|
(1 << (ANQP_TDLS_CAPABILITY - ANQP_QUERY_LIST))
|
|
#define ANQP_REQ_EMERGENCY_NAI \
|
|
(1 << (ANQP_EMERGENCY_NAI - ANQP_QUERY_LIST))
|
|
/*
|
|
* First 15 Hotspot 2.0 vendor specific ANQP-elements can be included in the
|
|
* optimized bitmap.
|
|
*/
|
|
#define ANQP_REQ_HS_CAPABILITY_LIST \
|
|
(0x10000 << HS20_STYPE_CAPABILITY_LIST)
|
|
#define ANQP_REQ_OPERATOR_FRIENDLY_NAME \
|
|
(0x10000 << HS20_STYPE_OPERATOR_FRIENDLY_NAME)
|
|
#define ANQP_REQ_WAN_METRICS \
|
|
(0x10000 << HS20_STYPE_WAN_METRICS)
|
|
#define ANQP_REQ_CONNECTION_CAPABILITY \
|
|
(0x10000 << HS20_STYPE_CONNECTION_CAPABILITY)
|
|
#define ANQP_REQ_NAI_HOME_REALM \
|
|
(0x10000 << HS20_STYPE_NAI_HOME_REALM_QUERY)
|
|
#define ANQP_REQ_OPERATING_CLASS \
|
|
(0x10000 << HS20_STYPE_OPERATING_CLASS)
|
|
#define ANQP_REQ_OSU_PROVIDERS_LIST \
|
|
(0x10000 << HS20_STYPE_OSU_PROVIDERS_LIST)
|
|
#define ANQP_REQ_ICON_REQUEST \
|
|
(0x10000 << HS20_STYPE_ICON_REQUEST)
|
|
#define ANQP_REQ_OPERATOR_ICON_METADATA \
|
|
(0x10000 << HS20_STYPE_OPERATOR_ICON_METADATA)
|
|
/* The first MBO ANQP-element can be included in the optimized bitmap. */
|
|
#define ANQP_REQ_MBO_CELL_DATA_CONN_PREF \
|
|
(BIT(29) << MBO_ANQP_SUBTYPE_CELL_CONN_PREF)
|
|
|
|
struct gas_dialog_info {
|
|
u8 valid;
|
|
struct wpabuf *sd_resp; /* Fragmented response */
|
|
u8 dialog_token;
|
|
size_t sd_resp_pos; /* Offset in sd_resp */
|
|
u8 sd_frag_id;
|
|
int prot; /* whether Protected Dual of Public Action frame is used */
|
|
int dpp; /* whether this is a DPP Config Response */
|
|
};
|
|
|
|
struct hostapd_data;
|
|
|
|
struct gas_dialog_info *
|
|
gas_serv_dialog_find(struct hostapd_data *hapd, const u8 *addr,
|
|
u8 dialog_token);
|
|
void gas_serv_dialog_clear(struct gas_dialog_info *dialog);
|
|
|
|
int gas_serv_init(struct hostapd_data *hapd);
|
|
void gas_serv_deinit(struct hostapd_data *hapd);
|
|
|
|
#endif /* GAS_SERV_H */
|