gas_serv.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Generic advertisement service (GAS) server
  3. * Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef GAS_SERV_H
  9. #define GAS_SERV_H
  10. /* First 16 ANQP InfoIDs can be included in the optimized bitmap */
  11. #define ANQP_REQ_CAPABILITY_LIST \
  12. (1 << (ANQP_CAPABILITY_LIST - ANQP_QUERY_LIST))
  13. #define ANQP_REQ_VENUE_NAME \
  14. (1 << (ANQP_VENUE_NAME - ANQP_QUERY_LIST))
  15. #define ANQP_REQ_EMERGENCY_CALL_NUMBER \
  16. (1 << (ANQP_EMERGENCY_CALL_NUMBER - ANQP_QUERY_LIST))
  17. #define ANQP_REQ_NETWORK_AUTH_TYPE \
  18. (1 << (ANQP_NETWORK_AUTH_TYPE - ANQP_QUERY_LIST))
  19. #define ANQP_REQ_ROAMING_CONSORTIUM \
  20. (1 << (ANQP_ROAMING_CONSORTIUM - ANQP_QUERY_LIST))
  21. #define ANQP_REQ_IP_ADDR_TYPE_AVAILABILITY \
  22. (1 << (ANQP_IP_ADDR_TYPE_AVAILABILITY - ANQP_QUERY_LIST))
  23. #define ANQP_REQ_NAI_REALM \
  24. (1 << (ANQP_NAI_REALM - ANQP_QUERY_LIST))
  25. #define ANQP_REQ_3GPP_CELLULAR_NETWORK \
  26. (1 << (ANQP_3GPP_CELLULAR_NETWORK - ANQP_QUERY_LIST))
  27. #define ANQP_REQ_AP_GEOSPATIAL_LOCATION \
  28. (1 << (ANQP_AP_GEOSPATIAL_LOCATION - ANQP_QUERY_LIST))
  29. #define ANQP_REQ_AP_CIVIC_LOCATION \
  30. (1 << (ANQP_AP_CIVIC_LOCATION - ANQP_QUERY_LIST))
  31. #define ANQP_REQ_AP_LOCATION_PUBLIC_URI \
  32. (1 << (ANQP_AP_LOCATION_PUBLIC_URI - ANQP_QUERY_LIST))
  33. #define ANQP_REQ_DOMAIN_NAME \
  34. (1 << (ANQP_DOMAIN_NAME - ANQP_QUERY_LIST))
  35. #define ANQP_REQ_EMERGENCY_ALERT_URI \
  36. (1 << (ANQP_EMERGENCY_ALERT_URI - ANQP_QUERY_LIST))
  37. #define ANQP_REQ_TDLS_CAPABILITY \
  38. (1 << (ANQP_TDLS_CAPABILITY - ANQP_QUERY_LIST))
  39. #define ANQP_REQ_EMERGENCY_NAI \
  40. (1 << (ANQP_EMERGENCY_NAI - ANQP_QUERY_LIST))
  41. /*
  42. * First 16 Hotspot 2.0 vendor specific ANQP-elements can be included in the
  43. * optimized bitmap.
  44. */
  45. #define ANQP_REQ_HS_CAPABILITY_LIST \
  46. (0x10000 << HS20_STYPE_CAPABILITY_LIST)
  47. #define ANQP_REQ_OPERATOR_FRIENDLY_NAME \
  48. (0x10000 << HS20_STYPE_OPERATOR_FRIENDLY_NAME)
  49. #define ANQP_REQ_WAN_METRICS \
  50. (0x10000 << HS20_STYPE_WAN_METRICS)
  51. #define ANQP_REQ_CONNECTION_CAPABILITY \
  52. (0x10000 << HS20_STYPE_CONNECTION_CAPABILITY)
  53. #define ANQP_REQ_NAI_HOME_REALM \
  54. (0x10000 << HS20_STYPE_NAI_HOME_REALM_QUERY)
  55. #define ANQP_REQ_OPERATING_CLASS \
  56. (0x10000 << HS20_STYPE_OPERATING_CLASS)
  57. #define ANQP_REQ_OSU_PROVIDERS_LIST \
  58. (0x10000 << HS20_STYPE_OSU_PROVIDERS_LIST)
  59. #define ANQP_REQ_ICON_REQUEST \
  60. (0x10000 << HS20_STYPE_ICON_REQUEST)
  61. struct gas_dialog_info {
  62. u8 valid;
  63. struct wpabuf *sd_resp; /* Fragmented response */
  64. u8 dialog_token;
  65. size_t sd_resp_pos; /* Offset in sd_resp */
  66. u8 sd_frag_id;
  67. int prot; /* whether Protected Dual of Public Action frame is used */
  68. };
  69. struct hostapd_data;
  70. struct gas_dialog_info *
  71. gas_serv_dialog_find(struct hostapd_data *hapd, const u8 *addr,
  72. u8 dialog_token);
  73. void gas_serv_dialog_clear(struct gas_dialog_info *dialog);
  74. int gas_serv_init(struct hostapd_data *hapd);
  75. void gas_serv_deinit(struct hostapd_data *hapd);
  76. #endif /* GAS_SERV_H */