driver_i.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. /*
  2. * hostapd - internal driver interface wrappers
  3. * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef DRIVER_I_H
  15. #define DRIVER_I_H
  16. #include "drivers/driver.h"
  17. #include "ap/config.h"
  18. static inline void *
  19. hostapd_driver_init(struct hostapd_data *hapd, const u8 *bssid)
  20. {
  21. struct wpa_init_params params;
  22. void *ret;
  23. size_t i;
  24. if (hapd->driver == NULL || hapd->driver->hapd_init == NULL)
  25. return NULL;
  26. os_memset(&params, 0, sizeof(params));
  27. params.bssid = bssid;
  28. params.ifname = hapd->conf->iface;
  29. params.ssid = (const u8 *) hapd->conf->ssid.ssid;
  30. params.ssid_len = hapd->conf->ssid.ssid_len;
  31. params.test_socket = hapd->conf->test_socket;
  32. params.use_pae_group_addr = hapd->conf->use_pae_group_addr;
  33. params.num_bridge = hapd->iface->num_bss;
  34. params.bridge = os_zalloc(hapd->iface->num_bss * sizeof(char *));
  35. if (params.bridge == NULL)
  36. return NULL;
  37. for (i = 0; i < hapd->iface->num_bss; i++) {
  38. struct hostapd_data *bss = hapd->iface->bss[i];
  39. if (bss->conf->bridge[0])
  40. params.bridge[i] = bss->conf->bridge;
  41. }
  42. params.own_addr = hapd->own_addr;
  43. ret = hapd->driver->hapd_init(hapd, &params);
  44. os_free(params.bridge);
  45. return ret;
  46. }
  47. static inline void
  48. hostapd_driver_deinit(struct hostapd_data *hapd)
  49. {
  50. if (hapd->driver == NULL || hapd->driver->hapd_deinit == NULL)
  51. return;
  52. hapd->driver->hapd_deinit(hapd->drv_priv);
  53. }
  54. static inline int
  55. hostapd_set_ieee8021x(struct hostapd_data *hapd, struct wpa_bss_params *params)
  56. {
  57. if (hapd->driver == NULL || hapd->driver->set_ieee8021x == NULL)
  58. return 0;
  59. return hapd->driver->set_ieee8021x(hapd->drv_priv, params);
  60. }
  61. static inline int
  62. hostapd_set_privacy(struct hostapd_data *hapd, int enabled)
  63. {
  64. if (hapd->driver == NULL || hapd->driver->set_privacy == NULL)
  65. return 0;
  66. return hapd->driver->set_privacy(hapd->conf->iface, hapd->drv_priv,
  67. enabled);
  68. }
  69. static inline int
  70. hostapd_get_seqnum(const char *ifname, struct hostapd_data *hapd,
  71. const u8 *addr, int idx, u8 *seq)
  72. {
  73. if (hapd->driver == NULL || hapd->driver->get_seqnum == NULL)
  74. return 0;
  75. return hapd->driver->get_seqnum(ifname, hapd->drv_priv, addr, idx,
  76. seq);
  77. }
  78. static inline int
  79. hostapd_flush(struct hostapd_data *hapd)
  80. {
  81. if (hapd->driver == NULL || hapd->driver->flush == NULL)
  82. return 0;
  83. return hapd->driver->flush(hapd->drv_priv);
  84. }
  85. static inline int
  86. hostapd_set_generic_elem(struct hostapd_data *hapd, const u8 *elem,
  87. size_t elem_len)
  88. {
  89. if (hapd->driver == NULL || hapd->driver->set_generic_elem == NULL)
  90. return 0;
  91. return hapd->driver->set_generic_elem(hapd->conf->iface,
  92. hapd->drv_priv, elem, elem_len);
  93. }
  94. static inline int
  95. hostapd_get_ssid(struct hostapd_data *hapd, u8 *buf, size_t len)
  96. {
  97. if (hapd->driver == NULL || hapd->driver->hapd_get_ssid == NULL)
  98. return 0;
  99. return hapd->driver->hapd_get_ssid(hapd->conf->iface, hapd->drv_priv,
  100. buf, len);
  101. }
  102. static inline int
  103. hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len)
  104. {
  105. if (hapd->driver == NULL || hapd->driver->hapd_set_ssid == NULL)
  106. return 0;
  107. return hapd->driver->hapd_set_ssid(hapd->conf->iface, hapd->drv_priv,
  108. buf, len);
  109. }
  110. static inline int
  111. hostapd_set_freq(struct hostapd_data *hapd, int mode, int freq, int channel,
  112. int ht_enabled, int sec_channel_offset)
  113. {
  114. struct hostapd_freq_params data;
  115. if (hapd->driver == NULL)
  116. return 0;
  117. if (hapd->driver->set_freq == NULL)
  118. return 0;
  119. os_memset(&data, 0, sizeof(data));
  120. data.mode = mode;
  121. data.freq = freq;
  122. data.channel = channel;
  123. data.ht_enabled = ht_enabled;
  124. data.sec_channel_offset = sec_channel_offset;
  125. return hapd->driver->set_freq(hapd->drv_priv, &data);
  126. }
  127. static inline int
  128. hostapd_set_rts(struct hostapd_data *hapd, int rts)
  129. {
  130. if (hapd->driver == NULL || hapd->driver->set_rts == NULL)
  131. return 0;
  132. return hapd->driver->set_rts(hapd->drv_priv, rts);
  133. }
  134. static inline int
  135. hostapd_set_frag(struct hostapd_data *hapd, int frag)
  136. {
  137. if (hapd->driver == NULL || hapd->driver->set_frag == NULL)
  138. return 0;
  139. return hapd->driver->set_frag(hapd->drv_priv, frag);
  140. }
  141. static inline int
  142. hostapd_sta_set_flags(struct hostapd_data *hapd, u8 *addr,
  143. int total_flags, int flags_or, int flags_and)
  144. {
  145. if (hapd->driver == NULL || hapd->driver->sta_set_flags == NULL)
  146. return 0;
  147. return hapd->driver->sta_set_flags(hapd->drv_priv, addr, total_flags,
  148. flags_or, flags_and);
  149. }
  150. static inline int
  151. hostapd_set_rate_sets(struct hostapd_data *hapd, int *supp_rates,
  152. int *basic_rates, int mode)
  153. {
  154. if (hapd->driver == NULL || hapd->driver->set_rate_sets == NULL)
  155. return 0;
  156. return hapd->driver->set_rate_sets(hapd->drv_priv, supp_rates,
  157. basic_rates, mode);
  158. }
  159. static inline int
  160. hostapd_set_country(struct hostapd_data *hapd, const char *country)
  161. {
  162. if (hapd->driver == NULL ||
  163. hapd->driver->set_country == NULL)
  164. return 0;
  165. return hapd->driver->set_country(hapd->drv_priv, country);
  166. }
  167. static inline int
  168. hostapd_set_cts_protect(struct hostapd_data *hapd, int value)
  169. {
  170. if (hapd->driver == NULL || hapd->driver->set_cts_protect == NULL)
  171. return 0;
  172. return hapd->driver->set_cts_protect(hapd->drv_priv, value);
  173. }
  174. static inline int
  175. hostapd_set_preamble(struct hostapd_data *hapd, int value)
  176. {
  177. if (hapd->driver == NULL || hapd->driver->set_preamble == NULL)
  178. return 0;
  179. return hapd->driver->set_preamble(hapd->drv_priv, value);
  180. }
  181. static inline int
  182. hostapd_set_short_slot_time(struct hostapd_data *hapd, int value)
  183. {
  184. if (hapd->driver == NULL || hapd->driver->set_short_slot_time == NULL)
  185. return 0;
  186. return hapd->driver->set_short_slot_time(hapd->drv_priv, value);
  187. }
  188. static inline int
  189. hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs,
  190. int cw_min, int cw_max, int burst_time)
  191. {
  192. if (hapd->driver == NULL || hapd->driver->set_tx_queue_params == NULL)
  193. return 0;
  194. return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,
  195. cw_min, cw_max, burst_time);
  196. }
  197. static inline int
  198. hostapd_valid_bss_mask(struct hostapd_data *hapd, const u8 *addr,
  199. const u8 *mask)
  200. {
  201. if (hapd->driver == NULL || hapd->driver->valid_bss_mask == NULL)
  202. return 1;
  203. return hapd->driver->valid_bss_mask(hapd->drv_priv, addr, mask);
  204. }
  205. static inline int
  206. hostapd_if_add(struct hostapd_data *hapd, enum wpa_driver_if_type type,
  207. const char *ifname, const u8 *addr, void *bss_ctx)
  208. {
  209. if (hapd->driver == NULL || hapd->driver->if_add == NULL)
  210. return -1;
  211. return hapd->driver->if_add(hapd->conf->iface, hapd->drv_priv, type,
  212. ifname, addr, bss_ctx);
  213. }
  214. static inline int
  215. hostapd_if_remove(struct hostapd_data *hapd, enum wpa_driver_if_type type,
  216. const char *ifname)
  217. {
  218. if (hapd->driver == NULL || hapd->driver->if_remove == NULL)
  219. return -1;
  220. return hapd->driver->if_remove(hapd->drv_priv, type, ifname);
  221. }
  222. static inline struct hostapd_hw_modes *
  223. hostapd_get_hw_feature_data(struct hostapd_data *hapd, u16 *num_modes,
  224. u16 *flags)
  225. {
  226. if (hapd->driver == NULL ||
  227. hapd->driver->get_hw_feature_data == NULL)
  228. return NULL;
  229. return hapd->driver->get_hw_feature_data(hapd->drv_priv, num_modes,
  230. flags);
  231. }
  232. static inline int
  233. hostapd_driver_commit(struct hostapd_data *hapd)
  234. {
  235. if (hapd->driver == NULL || hapd->driver->commit == NULL)
  236. return 0;
  237. return hapd->driver->commit(hapd->drv_priv);
  238. }
  239. static inline int
  240. hostapd_set_ht_params(const char *ifname, struct hostapd_data *hapd,
  241. const u8 *ht_capab, size_t ht_capab_len,
  242. const u8 *ht_oper, size_t ht_oper_len)
  243. {
  244. if (hapd->driver == NULL || hapd->driver->set_ht_params == NULL ||
  245. ht_capab == NULL || ht_oper == NULL)
  246. return 0;
  247. return hapd->driver->set_ht_params(
  248. ifname, hapd->drv_priv, ht_capab, ht_capab_len,
  249. ht_oper, ht_oper_len);
  250. }
  251. static inline int
  252. hostapd_drv_none(struct hostapd_data *hapd)
  253. {
  254. return hapd->driver && os_strcmp(hapd->driver->name, "none") == 0;
  255. }
  256. static inline int hostapd_driver_scan(struct hostapd_data *hapd,
  257. struct wpa_driver_scan_params *params)
  258. {
  259. if (hapd->driver && hapd->driver->scan2)
  260. return hapd->driver->scan2(hapd->drv_priv, params);
  261. return -1;
  262. }
  263. static inline struct wpa_scan_results * hostapd_driver_get_scan_results(
  264. struct hostapd_data *hapd)
  265. {
  266. if (hapd->driver && hapd->driver->get_scan_results2)
  267. return hapd->driver->get_scan_results2(hapd->drv_priv);
  268. return NULL;
  269. }
  270. #endif /* DRIVER_I_H */