ap_drv_ops.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /*
  2. * hostapd - Driver operations
  3. * Copyright (c) 2009-2014, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef AP_DRV_OPS
  9. #define AP_DRV_OPS
  10. enum wpa_driver_if_type;
  11. struct wpa_bss_params;
  12. struct wpa_driver_scan_params;
  13. struct ieee80211_ht_capabilities;
  14. struct ieee80211_vht_capabilities;
  15. struct hostapd_freq_params;
  16. u32 hostapd_sta_flags_to_drv(u32 flags);
  17. int hostapd_build_ap_extra_ies(struct hostapd_data *hapd,
  18. struct wpabuf **beacon,
  19. struct wpabuf **proberesp,
  20. struct wpabuf **assocresp);
  21. void hostapd_free_ap_extra_ies(struct hostapd_data *hapd, struct wpabuf *beacon,
  22. struct wpabuf *proberesp,
  23. struct wpabuf *assocresp);
  24. int hostapd_reset_ap_wps_ie(struct hostapd_data *hapd);
  25. int hostapd_set_ap_wps_ie(struct hostapd_data *hapd);
  26. int hostapd_set_authorized(struct hostapd_data *hapd,
  27. struct sta_info *sta, int authorized);
  28. int hostapd_set_sta_flags(struct hostapd_data *hapd, struct sta_info *sta);
  29. int hostapd_set_drv_ieee8021x(struct hostapd_data *hapd, const char *ifname,
  30. int enabled);
  31. int hostapd_vlan_if_add(struct hostapd_data *hapd, const char *ifname);
  32. int hostapd_vlan_if_remove(struct hostapd_data *hapd, const char *ifname);
  33. int hostapd_set_wds_sta(struct hostapd_data *hapd, char *ifname_wds,
  34. const u8 *addr, int aid, int val);
  35. int hostapd_sta_add(struct hostapd_data *hapd,
  36. const u8 *addr, u16 aid, u16 capability,
  37. const u8 *supp_rates, size_t supp_rates_len,
  38. u16 listen_interval,
  39. const struct ieee80211_ht_capabilities *ht_capab,
  40. const struct ieee80211_vht_capabilities *vht_capab,
  41. u32 flags, u8 qosinfo, u8 vht_opmode);
  42. int hostapd_set_privacy(struct hostapd_data *hapd, int enabled);
  43. int hostapd_set_generic_elem(struct hostapd_data *hapd, const u8 *elem,
  44. size_t elem_len);
  45. int hostapd_get_ssid(struct hostapd_data *hapd, u8 *buf, size_t len);
  46. int hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len);
  47. int hostapd_if_add(struct hostapd_data *hapd, enum wpa_driver_if_type type,
  48. const char *ifname, const u8 *addr, void *bss_ctx,
  49. void **drv_priv, char *force_ifname, u8 *if_addr,
  50. const char *bridge, int use_existing);
  51. int hostapd_if_remove(struct hostapd_data *hapd, enum wpa_driver_if_type type,
  52. const char *ifname);
  53. int hostapd_set_ieee8021x(struct hostapd_data *hapd,
  54. struct wpa_bss_params *params);
  55. int hostapd_get_seqnum(const char *ifname, struct hostapd_data *hapd,
  56. const u8 *addr, int idx, u8 *seq);
  57. int hostapd_flush(struct hostapd_data *hapd);
  58. int hostapd_set_freq(struct hostapd_data *hapd, enum hostapd_hw_mode mode,
  59. int freq, int channel, int ht_enabled, int vht_enabled,
  60. int sec_channel_offset, int vht_oper_chwidth,
  61. int center_segment0, int center_segment1);
  62. int hostapd_set_rts(struct hostapd_data *hapd, int rts);
  63. int hostapd_set_frag(struct hostapd_data *hapd, int frag);
  64. int hostapd_sta_set_flags(struct hostapd_data *hapd, u8 *addr,
  65. int total_flags, int flags_or, int flags_and);
  66. int hostapd_set_country(struct hostapd_data *hapd, const char *country);
  67. int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs,
  68. int cw_min, int cw_max, int burst_time);
  69. struct hostapd_hw_modes *
  70. hostapd_get_hw_feature_data(struct hostapd_data *hapd, u16 *num_modes,
  71. u16 *flags);
  72. int hostapd_driver_commit(struct hostapd_data *hapd);
  73. int hostapd_drv_none(struct hostapd_data *hapd);
  74. int hostapd_driver_scan(struct hostapd_data *hapd,
  75. struct wpa_driver_scan_params *params);
  76. struct wpa_scan_results * hostapd_driver_get_scan_results(
  77. struct hostapd_data *hapd);
  78. int hostapd_driver_set_noa(struct hostapd_data *hapd, u8 count, int start,
  79. int duration);
  80. int hostapd_drv_set_key(const char *ifname,
  81. struct hostapd_data *hapd,
  82. enum wpa_alg alg, const u8 *addr,
  83. int key_idx, int set_tx,
  84. const u8 *seq, size_t seq_len,
  85. const u8 *key, size_t key_len);
  86. int hostapd_drv_send_mlme(struct hostapd_data *hapd,
  87. const void *msg, size_t len, int noack);
  88. int hostapd_drv_sta_deauth(struct hostapd_data *hapd,
  89. const u8 *addr, int reason);
  90. int hostapd_drv_sta_disassoc(struct hostapd_data *hapd,
  91. const u8 *addr, int reason);
  92. int hostapd_drv_send_action(struct hostapd_data *hapd, unsigned int freq,
  93. unsigned int wait, const u8 *dst, const u8 *data,
  94. size_t len);
  95. int hostapd_add_sta_node(struct hostapd_data *hapd, const u8 *addr,
  96. u16 auth_alg);
  97. int hostapd_sta_auth(struct hostapd_data *hapd, const u8 *addr,
  98. u16 seq, u16 status, const u8 *ie, size_t len);
  99. int hostapd_sta_assoc(struct hostapd_data *hapd, const u8 *addr,
  100. int reassoc, u16 status, const u8 *ie, size_t len);
  101. int hostapd_add_tspec(struct hostapd_data *hapd, const u8 *addr,
  102. u8 *tspec_ie, size_t tspec_ielen);
  103. int hostapd_start_dfs_cac(struct hostapd_iface *iface,
  104. enum hostapd_hw_mode mode, int freq,
  105. int channel, int ht_enabled, int vht_enabled,
  106. int sec_channel_offset, int vht_oper_chwidth,
  107. int center_segment0, int center_segment1);
  108. int hostapd_drv_do_acs(struct hostapd_data *hapd);
  109. #include "drivers/driver.h"
  110. int hostapd_drv_wnm_oper(struct hostapd_data *hapd,
  111. enum wnm_oper oper, const u8 *peer,
  112. u8 *buf, u16 *buf_len);
  113. int hostapd_drv_set_qos_map(struct hostapd_data *hapd, const u8 *qos_map_set,
  114. u8 qos_map_set_len);
  115. static inline int hostapd_drv_set_countermeasures(struct hostapd_data *hapd,
  116. int enabled)
  117. {
  118. if (hapd->driver == NULL ||
  119. hapd->driver->hapd_set_countermeasures == NULL)
  120. return 0;
  121. return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled);
  122. }
  123. static inline int hostapd_drv_set_sta_vlan(const char *ifname,
  124. struct hostapd_data *hapd,
  125. const u8 *addr, int vlan_id)
  126. {
  127. if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL)
  128. return 0;
  129. return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname,
  130. vlan_id);
  131. }
  132. static inline int hostapd_drv_get_inact_sec(struct hostapd_data *hapd,
  133. const u8 *addr)
  134. {
  135. if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL)
  136. return 0;
  137. return hapd->driver->get_inact_sec(hapd->drv_priv, addr);
  138. }
  139. static inline int hostapd_drv_sta_remove(struct hostapd_data *hapd,
  140. const u8 *addr)
  141. {
  142. if (hapd->driver == NULL || hapd->driver->sta_remove == NULL)
  143. return 0;
  144. return hapd->driver->sta_remove(hapd->drv_priv, addr);
  145. }
  146. static inline int hostapd_drv_hapd_send_eapol(struct hostapd_data *hapd,
  147. const u8 *addr, const u8 *data,
  148. size_t data_len, int encrypt,
  149. u32 flags)
  150. {
  151. if (hapd->driver == NULL || hapd->driver->hapd_send_eapol == NULL)
  152. return 0;
  153. return hapd->driver->hapd_send_eapol(hapd->drv_priv, addr, data,
  154. data_len, encrypt,
  155. hapd->own_addr, flags);
  156. }
  157. static inline int hostapd_drv_read_sta_data(
  158. struct hostapd_data *hapd, struct hostap_sta_driver_data *data,
  159. const u8 *addr)
  160. {
  161. if (hapd->driver == NULL || hapd->driver->read_sta_data == NULL)
  162. return -1;
  163. return hapd->driver->read_sta_data(hapd->drv_priv, data, addr);
  164. }
  165. static inline int hostapd_drv_sta_clear_stats(struct hostapd_data *hapd,
  166. const u8 *addr)
  167. {
  168. if (hapd->driver == NULL || hapd->driver->sta_clear_stats == NULL)
  169. return 0;
  170. return hapd->driver->sta_clear_stats(hapd->drv_priv, addr);
  171. }
  172. static inline int hostapd_drv_set_acl(struct hostapd_data *hapd,
  173. struct hostapd_acl_params *params)
  174. {
  175. if (hapd->driver == NULL || hapd->driver->set_acl == NULL)
  176. return 0;
  177. return hapd->driver->set_acl(hapd->drv_priv, params);
  178. }
  179. static inline int hostapd_drv_set_ap(struct hostapd_data *hapd,
  180. struct wpa_driver_ap_params *params)
  181. {
  182. if (hapd->driver == NULL || hapd->driver->set_ap == NULL)
  183. return 0;
  184. return hapd->driver->set_ap(hapd->drv_priv, params);
  185. }
  186. static inline int hostapd_drv_set_radius_acl_auth(struct hostapd_data *hapd,
  187. const u8 *mac, int accepted,
  188. u32 session_timeout)
  189. {
  190. if (hapd->driver == NULL || hapd->driver->set_radius_acl_auth == NULL)
  191. return 0;
  192. return hapd->driver->set_radius_acl_auth(hapd->drv_priv, mac, accepted,
  193. session_timeout);
  194. }
  195. static inline int hostapd_drv_set_radius_acl_expire(struct hostapd_data *hapd,
  196. const u8 *mac)
  197. {
  198. if (hapd->driver == NULL ||
  199. hapd->driver->set_radius_acl_expire == NULL)
  200. return 0;
  201. return hapd->driver->set_radius_acl_expire(hapd->drv_priv, mac);
  202. }
  203. static inline int hostapd_drv_set_authmode(struct hostapd_data *hapd,
  204. int auth_algs)
  205. {
  206. if (hapd->driver == NULL || hapd->driver->set_authmode == NULL)
  207. return 0;
  208. return hapd->driver->set_authmode(hapd->drv_priv, auth_algs);
  209. }
  210. static inline void hostapd_drv_poll_client(struct hostapd_data *hapd,
  211. const u8 *own_addr, const u8 *addr,
  212. int qos)
  213. {
  214. if (hapd->driver == NULL || hapd->driver->poll_client == NULL)
  215. return;
  216. hapd->driver->poll_client(hapd->drv_priv, own_addr, addr, qos);
  217. }
  218. static inline int hostapd_drv_get_survey(struct hostapd_data *hapd,
  219. unsigned int freq)
  220. {
  221. if (hapd->driver == NULL)
  222. return -1;
  223. if (!hapd->driver->get_survey)
  224. return -1;
  225. return hapd->driver->get_survey(hapd->drv_priv, freq);
  226. }
  227. static inline int hostapd_get_country(struct hostapd_data *hapd, char *alpha2)
  228. {
  229. if (hapd->driver == NULL || hapd->driver->get_country == NULL)
  230. return -1;
  231. return hapd->driver->get_country(hapd->drv_priv, alpha2);
  232. }
  233. static inline const char * hostapd_drv_get_radio_name(struct hostapd_data *hapd)
  234. {
  235. if (hapd->driver == NULL || hapd->drv_priv == NULL ||
  236. hapd->driver->get_radio_name == NULL)
  237. return NULL;
  238. return hapd->driver->get_radio_name(hapd->drv_priv);
  239. }
  240. static inline int hostapd_drv_switch_channel(struct hostapd_data *hapd,
  241. struct csa_settings *settings)
  242. {
  243. if (hapd->driver == NULL || hapd->driver->switch_channel == NULL)
  244. return -ENOTSUP;
  245. return hapd->driver->switch_channel(hapd->drv_priv, settings);
  246. }
  247. static inline int hostapd_drv_status(struct hostapd_data *hapd, char *buf,
  248. size_t buflen)
  249. {
  250. if (hapd->driver == NULL || hapd->driver->status == NULL)
  251. return -1;
  252. return hapd->driver->status(hapd->drv_priv, buf, buflen);
  253. }
  254. static inline int hostapd_drv_br_add_ip_neigh(struct hostapd_data *hapd,
  255. int version, const u8 *ipaddr,
  256. int prefixlen, const u8 *addr)
  257. {
  258. if (hapd->driver == NULL || hapd->drv_priv == NULL ||
  259. hapd->driver->br_add_ip_neigh == NULL)
  260. return -1;
  261. return hapd->driver->br_add_ip_neigh(hapd->drv_priv, version, ipaddr,
  262. prefixlen, addr);
  263. }
  264. static inline int hostapd_drv_br_delete_ip_neigh(struct hostapd_data *hapd,
  265. u8 version, const u8 *ipaddr)
  266. {
  267. if (hapd->driver == NULL || hapd->drv_priv == NULL ||
  268. hapd->driver->br_delete_ip_neigh == NULL)
  269. return -1;
  270. return hapd->driver->br_delete_ip_neigh(hapd->drv_priv, version,
  271. ipaddr);
  272. }
  273. static inline int hostapd_drv_br_port_set_attr(struct hostapd_data *hapd,
  274. enum drv_br_port_attr attr,
  275. unsigned int val)
  276. {
  277. if (hapd->driver == NULL || hapd->drv_priv == NULL ||
  278. hapd->driver->br_port_set_attr == NULL)
  279. return -1;
  280. return hapd->driver->br_port_set_attr(hapd->drv_priv, attr, val);
  281. }
  282. static inline int hostapd_drv_br_set_net_param(struct hostapd_data *hapd,
  283. enum drv_br_net_param param,
  284. unsigned int val)
  285. {
  286. if (hapd->driver == NULL || hapd->drv_priv == NULL ||
  287. hapd->driver->br_set_net_param == NULL)
  288. return -1;
  289. return hapd->driver->br_set_net_param(hapd->drv_priv, param, val);
  290. }
  291. static inline int hostapd_drv_vendor_cmd(struct hostapd_data *hapd,
  292. int vendor_id, int subcmd,
  293. const u8 *data, size_t data_len,
  294. struct wpabuf *buf)
  295. {
  296. if (hapd->driver == NULL || hapd->driver->vendor_cmd == NULL)
  297. return -1;
  298. return hapd->driver->vendor_cmd(hapd->drv_priv, vendor_id, subcmd, data,
  299. data_len, buf);
  300. }
  301. static inline int hostapd_drv_stop_ap(struct hostapd_data *hapd)
  302. {
  303. if (hapd->driver == NULL || hapd->driver->stop_ap == NULL)
  304. return 0;
  305. return hapd->driver->stop_ap(hapd->drv_priv);
  306. }
  307. #endif /* AP_DRV_OPS */