driver_i.h 14 KB

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