1b6cd5e84e78aab610023225e9fbdd3fd82f4c12
[wpasupplicant] / hostapd / driver_i.h
1 /*
2  * hostapd - internal driver interface wrappers
3  * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
4  * Copyright (c) 2007-2008, Intel Corporation
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * Alternatively, this software may be distributed under the terms of BSD
11  * license.
12  *
13  * See README and COPYING for more details.
14  */
15
16 #ifndef DRIVER_I_H
17 #define DRIVER_I_H
18
19 #include "drivers/driver.h"
20 #include "config.h"
21
22 static inline void *
23 hostapd_driver_init(struct hostapd_data *hapd, const u8 *bssid)
24 {
25         struct wpa_init_params params;
26         void *ret;
27         size_t i;
28
29         if (hapd->driver == NULL || hapd->driver->hapd_init == NULL)
30                 return NULL;
31
32         os_memset(&params, 0, sizeof(params));
33         params.bssid = bssid;
34         params.ifname = hapd->conf->iface;
35         params.ssid = (const u8 *) hapd->conf->ssid.ssid;
36         params.ssid_len = hapd->conf->ssid.ssid_len;
37         params.test_socket = hapd->conf->test_socket;
38         params.use_pae_group_addr = hapd->conf->use_pae_group_addr;
39
40         params.num_bridge = hapd->iface->num_bss;
41         params.bridge = os_zalloc(hapd->iface->num_bss * sizeof(char *));
42         if (params.bridge == NULL)
43                 return NULL;
44         for (i = 0; i < hapd->iface->num_bss; i++) {
45                 struct hostapd_data *bss = hapd->iface->bss[i];
46                 if (bss->conf->bridge[0])
47                         params.bridge[i] = bss->conf->bridge;
48         }
49         ret = hapd->driver->hapd_init(hapd, &params);
50         os_free(params.bridge);
51
52         return ret;
53 }
54
55 static inline void
56 hostapd_driver_deinit(struct hostapd_data *hapd)
57 {
58         if (hapd->driver == NULL || hapd->driver->hapd_deinit == NULL)
59                 return;
60         hapd->driver->hapd_deinit(hapd->drv_priv);
61 }
62
63 static inline int
64 hostapd_set_ieee8021x(const char *ifname, struct hostapd_data *hapd,
65                       int enabled)
66 {
67         if (hapd->driver == NULL || hapd->driver->set_ieee8021x == NULL)
68                 return 0;
69         return hapd->driver->set_ieee8021x(ifname, hapd->drv_priv, enabled);
70 }
71
72 static inline int
73 hostapd_set_privacy(struct hostapd_data *hapd, int enabled)
74 {
75         if (hapd->driver == NULL || hapd->driver->set_privacy == NULL)
76                 return 0;
77         return hapd->driver->set_privacy(hapd->conf->iface, hapd->drv_priv,
78                                          enabled);
79 }
80
81 static inline int
82 hostapd_set_key(const char *ifname, struct hostapd_data *hapd,
83                 wpa_alg alg, const u8 *addr, int key_idx,
84                 int set_tx, const u8 *seq, size_t seq_len,
85                 const u8 *key, size_t key_len)
86 {
87         if (hapd->driver == NULL || hapd->driver->hapd_set_key == NULL)
88                 return 0;
89         return hapd->driver->hapd_set_key(ifname, hapd->drv_priv, alg, addr,
90                                           key_idx, set_tx, seq, seq_len, key,
91                                           key_len);
92 }
93
94 static inline int
95 hostapd_get_seqnum(const char *ifname, struct hostapd_data *hapd,
96                    const u8 *addr, int idx, u8 *seq)
97 {
98         if (hapd->driver == NULL || hapd->driver->get_seqnum == NULL)
99                 return 0;
100         return hapd->driver->get_seqnum(ifname, hapd->drv_priv, addr, idx,
101                                         seq);
102 }
103
104 static inline int
105 hostapd_get_seqnum_igtk(const char *ifname, struct hostapd_data *hapd,
106                         const u8 *addr, int idx, u8 *seq)
107 {
108         if (hapd->driver == NULL || hapd->driver->get_seqnum_igtk == NULL)
109                 return -1;
110         return hapd->driver->get_seqnum_igtk(ifname, hapd->drv_priv, addr, idx,
111                                              seq);
112 }
113
114 static inline int
115 hostapd_flush(struct hostapd_data *hapd)
116 {
117         if (hapd->driver == NULL || hapd->driver->flush == NULL)
118                 return 0;
119         return hapd->driver->flush(hapd->drv_priv);
120 }
121
122 static inline int
123 hostapd_set_generic_elem(struct hostapd_data *hapd, const u8 *elem,
124                          size_t elem_len)
125 {
126         if (hapd->driver == NULL || hapd->driver->set_generic_elem == NULL)
127                 return 0;
128         return hapd->driver->set_generic_elem(hapd->conf->iface,
129                                               hapd->drv_priv, elem, elem_len);
130 }
131
132 static inline int
133 hostapd_read_sta_data(struct hostapd_data *hapd,
134                       struct hostap_sta_driver_data *data, const u8 *addr)
135 {
136         if (hapd->driver == NULL || hapd->driver->read_sta_data == NULL)
137                 return -1;
138         return hapd->driver->read_sta_data(hapd->drv_priv, data, addr);
139 }
140
141 static inline int
142 hostapd_send_eapol(struct hostapd_data *hapd, const u8 *addr, const u8 *data,
143                    size_t data_len, int encrypt)
144 {
145         if (hapd->driver == NULL || hapd->driver->hapd_send_eapol == NULL)
146                 return 0;
147         return hapd->driver->hapd_send_eapol(hapd->drv_priv, addr, data,
148                                              data_len, encrypt,
149                                              hapd->own_addr);
150 }
151
152 static inline int
153 hostapd_sta_deauth(struct hostapd_data *hapd, const u8 *addr, int reason)
154 {
155         if (hapd->driver == NULL || hapd->driver->sta_deauth == NULL)
156                 return 0;
157         return hapd->driver->sta_deauth(hapd->drv_priv, addr, reason);
158 }
159
160 static inline int
161 hostapd_sta_disassoc(struct hostapd_data *hapd, const u8 *addr, int reason)
162 {
163         if (hapd->driver == NULL || hapd->driver->sta_disassoc == NULL)
164                 return 0;
165         return hapd->driver->sta_disassoc(hapd->drv_priv, addr, reason);
166 }
167
168 static inline int
169 hostapd_sta_remove(struct hostapd_data *hapd, const u8 *addr)
170 {
171         if (hapd->driver == NULL || hapd->driver->sta_remove == NULL)
172                 return 0;
173         return hapd->driver->sta_remove(hapd->drv_priv, addr);
174 }
175
176 static inline int
177 hostapd_get_ssid(struct hostapd_data *hapd, u8 *buf, size_t len)
178 {
179         if (hapd->driver == NULL || hapd->driver->hapd_get_ssid == NULL)
180                 return 0;
181         return hapd->driver->hapd_get_ssid(hapd->conf->iface, hapd->drv_priv,
182                                            buf, len);
183 }
184
185 static inline int
186 hostapd_set_ssid(struct hostapd_data *hapd, const u8 *buf, size_t len)
187 {
188         if (hapd->driver == NULL || hapd->driver->hapd_set_ssid == NULL)
189                 return 0;
190         return hapd->driver->hapd_set_ssid(hapd->conf->iface, hapd->drv_priv,
191                                            buf, len);
192 }
193
194 static inline int
195 hostapd_send_mgmt_frame(struct hostapd_data *hapd, const void *msg, size_t len)
196 {
197         if (hapd->driver == NULL || hapd->driver->send_mlme == NULL)
198                 return 0;
199         return hapd->driver->send_mlme(hapd->drv_priv, msg, len);
200 }
201
202 static inline int
203 hostapd_set_countermeasures(struct hostapd_data *hapd, int enabled)
204 {
205         if (hapd->driver == NULL ||
206             hapd->driver->hapd_set_countermeasures == NULL)
207                 return 0;
208         return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled);
209 }
210
211 static inline int
212 hostapd_sta_add(const char *ifname, struct hostapd_data *hapd, const u8 *addr,
213                 u16 aid, u16 capability, const u8 *supp_rates,
214                 size_t supp_rates_len, int flags, u16 listen_interval,
215                 const struct ht_cap_ie *ht_capabilities)
216 {
217         struct hostapd_sta_add_params params;
218
219         if (hapd->driver == NULL)
220                 return 0;
221         if (hapd->driver->sta_add == NULL)
222                 return 0;
223
224         os_memset(&params, 0, sizeof(params));
225         params.addr = addr;
226         params.aid = aid;
227         params.capability = capability;
228         params.supp_rates = supp_rates;
229         params.supp_rates_len = supp_rates_len;
230         params.flags = flags;
231         params.listen_interval = listen_interval;
232         params.ht_capabilities = ht_capabilities;
233         return hapd->driver->sta_add(ifname, hapd->drv_priv, &params);
234 }
235
236 static inline int
237 hostapd_get_inact_sec(struct hostapd_data *hapd, const u8 *addr)
238 {
239         if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL)
240                 return 0;
241         return hapd->driver->get_inact_sec(hapd->drv_priv, addr);
242 }
243
244 static inline int
245 hostapd_set_freq(struct hostapd_data *hapd, int mode, int freq, int channel,
246                  int ht_enabled, int sec_channel_offset)
247 {
248         struct hostapd_freq_params data;
249         if (hapd->driver == NULL)
250                 return 0;
251         if (hapd->driver->set_freq == NULL)
252                 return 0;
253         os_memset(&data, 0, sizeof(data));
254         data.mode = mode;
255         data.freq = freq;
256         data.channel = channel;
257         data.ht_enabled = ht_enabled;
258         data.sec_channel_offset = sec_channel_offset;
259         return hapd->driver->set_freq(hapd->drv_priv, &data);
260 }
261
262 static inline int
263 hostapd_set_rts(struct hostapd_data *hapd, int rts)
264 {
265         if (hapd->driver == NULL || hapd->driver->set_rts == NULL)
266                 return 0;
267         return hapd->driver->set_rts(hapd->drv_priv, rts);
268 }
269
270 static inline int
271 hostapd_set_frag(struct hostapd_data *hapd, int frag)
272 {
273         if (hapd->driver == NULL || hapd->driver->set_frag == NULL)
274                 return 0;
275         return hapd->driver->set_frag(hapd->drv_priv, frag);
276 }
277
278 static inline int
279 hostapd_set_retry(struct hostapd_data *hapd, int short_retry, int long_retry)
280 {
281         if (hapd->driver == NULL || hapd->driver->set_retry == NULL)
282                 return 0;
283         return hapd->driver->set_retry(hapd->drv_priv, short_retry,
284                                        long_retry);
285 }
286
287 static inline int
288 hostapd_sta_set_flags(struct hostapd_data *hapd, u8 *addr,
289                       int total_flags, int flags_or, int flags_and)
290 {
291         if (hapd->driver == NULL || hapd->driver->sta_set_flags == NULL)
292                 return 0;
293         return hapd->driver->sta_set_flags(hapd->drv_priv, addr, total_flags,
294                                            flags_or, flags_and);
295 }
296
297 static inline int
298 hostapd_set_rate_sets(struct hostapd_data *hapd, int *supp_rates,
299                       int *basic_rates, int mode)
300 {
301         if (hapd->driver == NULL || hapd->driver->set_rate_sets == NULL)
302                 return 0;
303         return hapd->driver->set_rate_sets(hapd->drv_priv, supp_rates,
304                                            basic_rates, mode);
305 }
306
307 static inline int
308 hostapd_set_country(struct hostapd_data *hapd, const char *country)
309 {
310         if (hapd->driver == NULL ||
311             hapd->driver->set_country == NULL)
312                 return 0;
313         return hapd->driver->set_country(hapd->drv_priv, country);
314 }
315
316 static inline int
317 hostapd_set_ieee80211d(struct hostapd_data *hapd, int enabled)
318 {
319         if (hapd->driver == NULL ||
320             hapd->driver->set_ieee80211d == NULL)
321                 return 0;
322         return hapd->driver->set_ieee80211d(hapd->drv_priv, enabled);
323 }
324
325 static inline int
326 hostapd_sta_clear_stats(struct hostapd_data *hapd, const u8 *addr)
327 {
328         if (hapd->driver == NULL || hapd->driver->sta_clear_stats == NULL)
329                 return 0;
330         return hapd->driver->sta_clear_stats(hapd->drv_priv, addr);
331 }
332
333 static inline int
334 hostapd_set_beacon(const char *ifname, struct hostapd_data *hapd,
335                    const u8 *head, size_t head_len,
336                    const u8 *tail, size_t tail_len, int dtim_period)
337 {
338         if (hapd->driver == NULL || hapd->driver->hapd_set_beacon == NULL)
339                 return 0;
340         return hapd->driver->hapd_set_beacon(ifname, hapd->drv_priv,
341                                              head, head_len,
342                                              tail, tail_len, dtim_period);
343 }
344
345 static inline int
346 hostapd_set_internal_bridge(struct hostapd_data *hapd, int value)
347 {
348         if (hapd->driver == NULL || hapd->driver->set_internal_bridge == NULL)
349                 return 0;
350         return hapd->driver->set_internal_bridge(hapd->drv_priv, value);
351 }
352
353 static inline int
354 hostapd_set_beacon_int(struct hostapd_data *hapd, int value)
355 {
356         if (hapd->driver == NULL || hapd->driver->set_beacon_int == NULL)
357                 return 0;
358         return hapd->driver->set_beacon_int(hapd->drv_priv, value);
359 }
360
361 static inline int
362 hostapd_set_broadcast_ssid(struct hostapd_data *hapd, int value)
363 {
364         if (hapd->driver == NULL || hapd->driver->set_broadcast_ssid == NULL)
365                 return 0;
366         return hapd->driver->set_broadcast_ssid(hapd->drv_priv, value);
367 }
368
369 static inline int
370 hostapd_set_cts_protect(struct hostapd_data *hapd, int value)
371 {
372         if (hapd->driver == NULL || hapd->driver->set_cts_protect == NULL)
373                 return 0;
374         return hapd->driver->set_cts_protect(hapd->drv_priv, value);
375 }
376
377 static inline int
378 hostapd_set_preamble(struct hostapd_data *hapd, int value)
379 {
380         if (hapd->driver == NULL || hapd->driver->set_preamble == NULL)
381                 return 0;
382         return hapd->driver->set_preamble(hapd->drv_priv, value);
383 }
384
385 static inline int
386 hostapd_set_short_slot_time(struct hostapd_data *hapd, int value)
387 {
388         if (hapd->driver == NULL || hapd->driver->set_short_slot_time == NULL)
389                 return 0;
390         return hapd->driver->set_short_slot_time(hapd->drv_priv, value);
391 }
392
393 static inline int
394 hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs,
395                             int cw_min, int cw_max, int burst_time)
396 {
397         if (hapd->driver == NULL || hapd->driver->set_tx_queue_params == NULL)
398                 return 0;
399         return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,
400                                                  cw_min, cw_max, burst_time);
401 }
402
403 static inline int
404 hostapd_bss_add(struct hostapd_data *hapd, const char *ifname, const u8 *bssid)
405 {
406         if (hapd->driver == NULL || hapd->driver->bss_add == NULL)
407                 return 0;
408         return hapd->driver->bss_add(hapd->drv_priv, ifname, bssid);
409 }
410
411 static inline int
412 hostapd_bss_remove(struct hostapd_data *hapd, const char *ifname)
413 {
414         if (hapd->driver == NULL || hapd->driver->bss_remove == NULL)
415                 return 0;
416         return hapd->driver->bss_remove(hapd->drv_priv, ifname);
417 }
418
419 static inline int
420 hostapd_valid_bss_mask(struct hostapd_data *hapd, const u8 *addr,
421                        const u8 *mask)
422 {
423         if (hapd->driver == NULL || hapd->driver->valid_bss_mask == NULL)
424                 return 1;
425         return hapd->driver->valid_bss_mask(hapd->drv_priv, addr, mask);
426 }
427
428 static inline int
429 hostapd_if_add(struct hostapd_data *hapd, enum hostapd_driver_if_type type,
430                char *ifname, const u8 *addr)
431 {
432         if (hapd->driver == NULL || hapd->driver->if_add == NULL)
433                 return -1;
434         return hapd->driver->if_add(hapd->conf->iface, hapd->drv_priv, type,
435                                     ifname, addr);
436 }
437
438 static inline int
439 hostapd_if_update(struct hostapd_data *hapd, enum hostapd_driver_if_type type,
440                   char *ifname, const u8 *addr)
441 {
442         if (hapd->driver == NULL || hapd->driver->if_update == NULL)
443                 return -1;
444         return hapd->driver->if_update(hapd->drv_priv, type, ifname, addr);
445 }
446
447 static inline int
448 hostapd_if_remove(struct hostapd_data *hapd, enum hostapd_driver_if_type type,
449                   char *ifname, const u8 *addr)
450 {
451         if (hapd->driver == NULL || hapd->driver->if_remove == NULL)
452                 return -1;
453         return hapd->driver->if_remove(hapd->drv_priv, type, ifname, addr);
454 }
455
456 static inline int
457 hostapd_passive_scan(struct hostapd_data *hapd, int now, int our_mode_only,
458                      int interval, int _listen, int *channel,
459                      int *last_rx)
460 {
461         if (hapd->driver == NULL || hapd->driver->passive_scan == NULL)
462                 return -1;
463         return hapd->driver->passive_scan(hapd->drv_priv, now, our_mode_only,
464                                           interval, _listen, channel, last_rx);
465 }
466
467 static inline struct hostapd_hw_modes *
468 hostapd_get_hw_feature_data(struct hostapd_data *hapd, u16 *num_modes,
469                             u16 *flags)
470 {
471         if (hapd->driver == NULL ||
472             hapd->driver->get_hw_feature_data == NULL)
473                 return NULL;
474         return hapd->driver->get_hw_feature_data(hapd->drv_priv, num_modes,
475                                                  flags);
476 }
477
478 static inline int
479 hostapd_set_sta_vlan(const char *ifname, struct hostapd_data *hapd,
480                      const u8 *addr, int vlan_id)
481 {
482         if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL)
483                 return 0;
484         return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname, vlan_id);
485 }
486
487 static inline int
488 hostapd_driver_commit(struct hostapd_data *hapd)
489 {
490         if (hapd->driver == NULL || hapd->driver->commit == NULL)
491                 return 0;
492         return hapd->driver->commit(hapd->drv_priv);
493 }
494
495 static inline int
496 hostapd_set_radius_acl_auth(struct hostapd_data *hapd, const u8 *mac,
497                             int accepted, u32 session_timeout)
498 {
499         if (hapd->driver == NULL || hapd->driver->set_radius_acl_auth == NULL)
500                 return 0;
501         return hapd->driver->set_radius_acl_auth(hapd->drv_priv, mac, accepted,
502                                                  session_timeout);
503 }
504
505 static inline int
506 hostapd_set_radius_acl_expire(struct hostapd_data *hapd, const u8 *mac)
507 {
508         if (hapd->driver == NULL ||
509             hapd->driver->set_radius_acl_expire == NULL)
510                 return 0;
511         return hapd->driver->set_radius_acl_expire(hapd->drv_priv, mac);
512 }
513
514 #ifdef CONFIG_IEEE80211N
515 static inline int
516 hostapd_set_ht_params(const char *ifname, struct hostapd_data *hapd,
517                       const u8 *ht_capab, size_t ht_capab_len,
518                       const u8 *ht_oper, size_t ht_oper_len)
519 {
520         if (hapd->driver == NULL || hapd->driver->set_ht_params == NULL ||
521             ht_capab == NULL || ht_oper == NULL)
522                 return 0;
523         return hapd->driver->set_ht_params(
524                 ifname, hapd->drv_priv, ht_capab, ht_capab_len,
525                 ht_oper, ht_oper_len);
526 }
527 #endif /* CONFIG_IEEE80211N */
528
529 static inline int
530 hostapd_drv_none(struct hostapd_data *hapd)
531 {
532         return hapd->driver && os_strcmp(hapd->driver->name, "none") == 0;
533 }
534
535 static inline int
536 hostapd_set_wps_beacon_ie(struct hostapd_data *hapd, const u8 *ie, size_t len)
537 {
538         if (hapd->driver == NULL || hapd->driver->set_wps_beacon_ie == NULL)
539                 return 0;
540         return hapd->driver->set_wps_beacon_ie(hapd->conf->iface,
541                                                hapd->drv_priv, ie, len);
542 }
543
544 static inline int
545 hostapd_set_wps_probe_resp_ie(struct hostapd_data *hapd, const u8 *ie,
546                               size_t len)
547 {
548         if (hapd->driver == NULL ||
549             hapd->driver->set_wps_probe_resp_ie == NULL)
550                 return 0;
551         return hapd->driver->set_wps_probe_resp_ie(hapd->conf->iface,
552                                                    hapd->drv_priv, ie, len);
553 }
554
555 static inline int hostapd_driver_set_mode(struct hostapd_data *hapd, int mode)
556 {
557         if (hapd->driver == NULL || hapd->driver->set_mode == NULL)
558                 return 0;
559         return hapd->driver->set_mode(hapd->drv_priv, mode);
560 }
561
562 static inline int hostapd_driver_scan(struct hostapd_data *hapd,
563                                       struct wpa_driver_scan_params *params)
564 {
565         if (hapd->driver && hapd->driver->scan2)
566                 return hapd->driver->scan2(hapd->drv_priv, params);
567         return -1;
568 }
569
570 static inline struct wpa_scan_results * hostapd_driver_get_scan_results(
571         struct hostapd_data *hapd)
572 {
573         if (hapd->driver && hapd->driver->get_scan_results2)
574                 return hapd->driver->get_scan_results2(hapd->drv_priv);
575         return NULL;
576 }
577
578 #endif /* DRIVER_I_H */