driver_i.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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 "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_set_key(const char *ifname, struct hostapd_data *hapd,
  71. wpa_alg alg, const u8 *addr, int key_idx,
  72. int set_tx, const u8 *seq, size_t seq_len,
  73. const u8 *key, size_t key_len)
  74. {
  75. if (hapd->driver == NULL || hapd->driver->set_key == NULL)
  76. return 0;
  77. return hapd->driver->set_key(ifname, hapd->drv_priv, alg, addr,
  78. key_idx, set_tx, seq, seq_len, key,
  79. key_len);
  80. }
  81. static inline int
  82. hostapd_get_seqnum(const char *ifname, struct hostapd_data *hapd,
  83. const u8 *addr, int idx, u8 *seq)
  84. {
  85. if (hapd->driver == NULL || hapd->driver->get_seqnum == NULL)
  86. return 0;
  87. return hapd->driver->get_seqnum(ifname, hapd->drv_priv, addr, idx,
  88. seq);
  89. }
  90. static inline int
  91. hostapd_flush(struct hostapd_data *hapd)
  92. {
  93. if (hapd->driver == NULL || hapd->driver->flush == NULL)
  94. return 0;
  95. return hapd->driver->flush(hapd->drv_priv);
  96. }
  97. static inline int
  98. hostapd_set_generic_elem(struct hostapd_data *hapd, const u8 *elem,
  99. size_t elem_len)
  100. {
  101. if (hapd->driver == NULL || hapd->driver->set_generic_elem == NULL)
  102. return 0;
  103. return hapd->driver->set_generic_elem(hapd->conf->iface,
  104. hapd->drv_priv, elem, elem_len);
  105. }
  106. static inline int
  107. hostapd_read_sta_data(struct hostapd_data *hapd,
  108. struct hostap_sta_driver_data *data, const u8 *addr)
  109. {
  110. if (hapd->driver == NULL || hapd->driver->read_sta_data == NULL)
  111. return -1;
  112. return hapd->driver->read_sta_data(hapd->drv_priv, data, addr);
  113. }
  114. static inline int
  115. hostapd_send_eapol(struct hostapd_data *hapd, const u8 *addr, const u8 *data,
  116. size_t data_len, int encrypt)
  117. {
  118. if (hapd->driver == NULL || hapd->driver->hapd_send_eapol == NULL)
  119. return 0;
  120. return hapd->driver->hapd_send_eapol(hapd->drv_priv, addr, data,
  121. data_len, encrypt,
  122. hapd->own_addr);
  123. }
  124. static inline int
  125. hostapd_sta_deauth(struct hostapd_data *hapd, const u8 *addr, int reason)
  126. {
  127. if (hapd->driver == NULL || hapd->driver->sta_deauth == NULL)
  128. return 0;
  129. return hapd->driver->sta_deauth(hapd->drv_priv, hapd->own_addr, addr,
  130. reason);
  131. }
  132. static inline int
  133. hostapd_sta_disassoc(struct hostapd_data *hapd, const u8 *addr, int reason)
  134. {
  135. if (hapd->driver == NULL || hapd->driver->sta_disassoc == NULL)
  136. return 0;
  137. return hapd->driver->sta_disassoc(hapd->drv_priv, hapd->own_addr, addr,
  138. reason);
  139. }
  140. static inline int
  141. hostapd_sta_remove(struct hostapd_data *hapd, const u8 *addr)
  142. {
  143. if (hapd->driver == NULL || hapd->driver->sta_remove == NULL)
  144. return 0;
  145. return hapd->driver->sta_remove(hapd->drv_priv, addr);
  146. }
  147. static inline int
  148. hostapd_get_ssid(struct hostapd_data *hapd, u8 *buf, size_t len)
  149. {
  150. if (hapd->driver == NULL || hapd->driver->hapd_get_ssid == NULL)
  151. return 0;
  152. return hapd->driver->hapd_get_ssid(hapd->conf->iface, hapd->drv_priv,
  153. buf, len);
  154. }
  155. static inline int
  156. hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len)
  157. {
  158. if (hapd->driver == NULL || hapd->driver->hapd_set_ssid == NULL)
  159. return 0;
  160. return hapd->driver->hapd_set_ssid(hapd->conf->iface, hapd->drv_priv,
  161. buf, len);
  162. }
  163. static inline int
  164. hostapd_send_mgmt_frame(struct hostapd_data *hapd, const void *msg, size_t len)
  165. {
  166. if (hapd->driver == NULL || hapd->driver->send_mlme == NULL)
  167. return 0;
  168. return hapd->driver->send_mlme(hapd->drv_priv, msg, len);
  169. }
  170. static inline int
  171. hostapd_set_countermeasures(struct hostapd_data *hapd, int enabled)
  172. {
  173. if (hapd->driver == NULL ||
  174. hapd->driver->hapd_set_countermeasures == NULL)
  175. return 0;
  176. return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled);
  177. }
  178. static inline int
  179. hostapd_sta_add(const char *ifname, struct hostapd_data *hapd, const u8 *addr,
  180. u16 aid, u16 capability, const u8 *supp_rates,
  181. size_t supp_rates_len, int flags, u16 listen_interval,
  182. const struct ieee80211_ht_capabilities *ht_capabilities)
  183. {
  184. struct hostapd_sta_add_params params;
  185. if (hapd->driver == NULL)
  186. return 0;
  187. if (hapd->driver->sta_add == NULL)
  188. return 0;
  189. os_memset(&params, 0, sizeof(params));
  190. params.addr = addr;
  191. params.aid = aid;
  192. params.capability = capability;
  193. params.supp_rates = supp_rates;
  194. params.supp_rates_len = supp_rates_len;
  195. params.flags = flags;
  196. params.listen_interval = listen_interval;
  197. params.ht_capabilities = ht_capabilities;
  198. return hapd->driver->sta_add(ifname, hapd->drv_priv, &params);
  199. }
  200. static inline int
  201. hostapd_get_inact_sec(struct hostapd_data *hapd, const u8 *addr)
  202. {
  203. if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL)
  204. return 0;
  205. return hapd->driver->get_inact_sec(hapd->drv_priv, addr);
  206. }
  207. static inline int
  208. hostapd_set_freq(struct hostapd_data *hapd, int mode, int freq, int channel,
  209. int ht_enabled, int sec_channel_offset)
  210. {
  211. struct hostapd_freq_params data;
  212. if (hapd->driver == NULL)
  213. return 0;
  214. if (hapd->driver->set_freq == NULL)
  215. return 0;
  216. os_memset(&data, 0, sizeof(data));
  217. data.mode = mode;
  218. data.freq = freq;
  219. data.channel = channel;
  220. data.ht_enabled = ht_enabled;
  221. data.sec_channel_offset = sec_channel_offset;
  222. return hapd->driver->set_freq(hapd->drv_priv, &data);
  223. }
  224. static inline int
  225. hostapd_set_rts(struct hostapd_data *hapd, int rts)
  226. {
  227. if (hapd->driver == NULL || hapd->driver->set_rts == NULL)
  228. return 0;
  229. return hapd->driver->set_rts(hapd->drv_priv, rts);
  230. }
  231. static inline int
  232. hostapd_set_frag(struct hostapd_data *hapd, int frag)
  233. {
  234. if (hapd->driver == NULL || hapd->driver->set_frag == NULL)
  235. return 0;
  236. return hapd->driver->set_frag(hapd->drv_priv, frag);
  237. }
  238. static inline int
  239. hostapd_sta_set_flags(struct hostapd_data *hapd, u8 *addr,
  240. int total_flags, int flags_or, int flags_and)
  241. {
  242. if (hapd->driver == NULL || hapd->driver->sta_set_flags == NULL)
  243. return 0;
  244. return hapd->driver->sta_set_flags(hapd->drv_priv, addr, total_flags,
  245. flags_or, flags_and);
  246. }
  247. static inline int
  248. hostapd_set_rate_sets(struct hostapd_data *hapd, int *supp_rates,
  249. int *basic_rates, int mode)
  250. {
  251. if (hapd->driver == NULL || hapd->driver->set_rate_sets == NULL)
  252. return 0;
  253. return hapd->driver->set_rate_sets(hapd->drv_priv, supp_rates,
  254. basic_rates, mode);
  255. }
  256. static inline int
  257. hostapd_set_country(struct hostapd_data *hapd, const char *country)
  258. {
  259. if (hapd->driver == NULL ||
  260. hapd->driver->set_country == NULL)
  261. return 0;
  262. return hapd->driver->set_country(hapd->drv_priv, country);
  263. }
  264. static inline int
  265. hostapd_sta_clear_stats(struct hostapd_data *hapd, const u8 *addr)
  266. {
  267. if (hapd->driver == NULL || hapd->driver->sta_clear_stats == NULL)
  268. return 0;
  269. return hapd->driver->sta_clear_stats(hapd->drv_priv, addr);
  270. }
  271. static inline int
  272. hostapd_set_beacon(const char *ifname, struct hostapd_data *hapd,
  273. const u8 *head, size_t head_len,
  274. const u8 *tail, size_t tail_len, int dtim_period,
  275. int beacon_int)
  276. {
  277. if (hapd->driver == NULL || hapd->driver->set_beacon == NULL)
  278. return 0;
  279. return hapd->driver->set_beacon(ifname, hapd->drv_priv,
  280. head, head_len, tail, tail_len,
  281. dtim_period, beacon_int);
  282. }
  283. static inline int
  284. hostapd_set_cts_protect(struct hostapd_data *hapd, int value)
  285. {
  286. if (hapd->driver == NULL || hapd->driver->set_cts_protect == NULL)
  287. return 0;
  288. return hapd->driver->set_cts_protect(hapd->drv_priv, value);
  289. }
  290. static inline int
  291. hostapd_set_preamble(struct hostapd_data *hapd, int value)
  292. {
  293. if (hapd->driver == NULL || hapd->driver->set_preamble == NULL)
  294. return 0;
  295. return hapd->driver->set_preamble(hapd->drv_priv, value);
  296. }
  297. static inline int
  298. hostapd_set_short_slot_time(struct hostapd_data *hapd, int value)
  299. {
  300. if (hapd->driver == NULL || hapd->driver->set_short_slot_time == NULL)
  301. return 0;
  302. return hapd->driver->set_short_slot_time(hapd->drv_priv, value);
  303. }
  304. static inline int
  305. hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs,
  306. int cw_min, int cw_max, int burst_time)
  307. {
  308. if (hapd->driver == NULL || hapd->driver->set_tx_queue_params == NULL)
  309. return 0;
  310. return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,
  311. cw_min, cw_max, burst_time);
  312. }
  313. static inline int
  314. hostapd_valid_bss_mask(struct hostapd_data *hapd, const u8 *addr,
  315. const u8 *mask)
  316. {
  317. if (hapd->driver == NULL || hapd->driver->valid_bss_mask == NULL)
  318. return 1;
  319. return hapd->driver->valid_bss_mask(hapd->drv_priv, addr, mask);
  320. }
  321. static inline int
  322. hostapd_if_add(struct hostapd_data *hapd, enum wpa_driver_if_type type,
  323. const char *ifname, const u8 *addr)
  324. {
  325. if (hapd->driver == NULL || hapd->driver->if_add == NULL)
  326. return -1;
  327. return hapd->driver->if_add(hapd->conf->iface, hapd->drv_priv, type,
  328. ifname, addr);
  329. }
  330. static inline int
  331. hostapd_if_remove(struct hostapd_data *hapd, enum wpa_driver_if_type type,
  332. const char *ifname)
  333. {
  334. if (hapd->driver == NULL || hapd->driver->if_remove == NULL)
  335. return -1;
  336. return hapd->driver->if_remove(hapd->drv_priv, type, ifname);
  337. }
  338. static inline struct hostapd_hw_modes *
  339. hostapd_get_hw_feature_data(struct hostapd_data *hapd, u16 *num_modes,
  340. u16 *flags)
  341. {
  342. if (hapd->driver == NULL ||
  343. hapd->driver->get_hw_feature_data == NULL)
  344. return NULL;
  345. return hapd->driver->get_hw_feature_data(hapd->drv_priv, num_modes,
  346. flags);
  347. }
  348. static inline int
  349. hostapd_set_sta_vlan(const char *ifname, struct hostapd_data *hapd,
  350. const u8 *addr, int vlan_id)
  351. {
  352. if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL)
  353. return 0;
  354. return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname, vlan_id);
  355. }
  356. static inline int
  357. hostapd_driver_commit(struct hostapd_data *hapd)
  358. {
  359. if (hapd->driver == NULL || hapd->driver->commit == NULL)
  360. return 0;
  361. return hapd->driver->commit(hapd->drv_priv);
  362. }
  363. static inline int
  364. hostapd_set_radius_acl_auth(struct hostapd_data *hapd, const u8 *mac,
  365. int accepted, u32 session_timeout)
  366. {
  367. if (hapd->driver == NULL || hapd->driver->set_radius_acl_auth == NULL)
  368. return 0;
  369. return hapd->driver->set_radius_acl_auth(hapd->drv_priv, mac, accepted,
  370. session_timeout);
  371. }
  372. static inline int
  373. hostapd_set_radius_acl_expire(struct hostapd_data *hapd, const u8 *mac)
  374. {
  375. if (hapd->driver == NULL ||
  376. hapd->driver->set_radius_acl_expire == NULL)
  377. return 0;
  378. return hapd->driver->set_radius_acl_expire(hapd->drv_priv, mac);
  379. }
  380. static inline int
  381. hostapd_set_ht_params(const char *ifname, struct hostapd_data *hapd,
  382. const u8 *ht_capab, size_t ht_capab_len,
  383. const u8 *ht_oper, size_t ht_oper_len)
  384. {
  385. if (hapd->driver == NULL || hapd->driver->set_ht_params == NULL ||
  386. ht_capab == NULL || ht_oper == NULL)
  387. return 0;
  388. return hapd->driver->set_ht_params(
  389. ifname, hapd->drv_priv, ht_capab, ht_capab_len,
  390. ht_oper, ht_oper_len);
  391. }
  392. static inline int
  393. hostapd_drv_none(struct hostapd_data *hapd)
  394. {
  395. return hapd->driver && os_strcmp(hapd->driver->name, "none") == 0;
  396. }
  397. static inline int
  398. hostapd_set_wps_beacon_ie(struct hostapd_data *hapd, const u8 *ie, size_t len)
  399. {
  400. if (hapd->driver == NULL || hapd->driver->set_wps_beacon_ie == NULL)
  401. return 0;
  402. return hapd->driver->set_wps_beacon_ie(hapd->conf->iface,
  403. hapd->drv_priv, ie, len);
  404. }
  405. static inline int
  406. hostapd_set_wps_probe_resp_ie(struct hostapd_data *hapd, const u8 *ie,
  407. size_t len)
  408. {
  409. if (hapd->driver == NULL ||
  410. hapd->driver->set_wps_probe_resp_ie == NULL)
  411. return 0;
  412. return hapd->driver->set_wps_probe_resp_ie(hapd->conf->iface,
  413. hapd->drv_priv, ie, len);
  414. }
  415. static inline int hostapd_driver_scan(struct hostapd_data *hapd,
  416. struct wpa_driver_scan_params *params)
  417. {
  418. if (hapd->driver && hapd->driver->scan2)
  419. return hapd->driver->scan2(hapd->drv_priv, params);
  420. return -1;
  421. }
  422. static inline struct wpa_scan_results * hostapd_driver_get_scan_results(
  423. struct hostapd_data *hapd)
  424. {
  425. if (hapd->driver && hapd->driver->get_scan_results2)
  426. return hapd->driver->get_scan_results2(hapd->drv_priv);
  427. return NULL;
  428. }
  429. #endif /* DRIVER_I_H */