2008-02-27 20:34:43 -05:00
|
|
|
/*
|
|
|
|
* hostapd / Initialization and configuration
|
2009-12-24 13:41:30 -05:00
|
|
|
* Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
|
2008-02-27 20:34:43 -05:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
|
|
* license.
|
|
|
|
*
|
|
|
|
* See README and COPYING for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HOSTAPD_H
|
|
|
|
#define HOSTAPD_H
|
|
|
|
|
2009-12-24 13:41:30 -05:00
|
|
|
#include "common/defs.h"
|
|
|
|
|
2009-04-09 06:40:12 -04:00
|
|
|
struct wpa_driver_ops;
|
2008-02-27 20:34:43 -05:00
|
|
|
struct wpa_ctrl_dst;
|
|
|
|
struct radius_server_data;
|
2009-01-29 11:47:02 -05:00
|
|
|
struct upnp_wps_device_sm;
|
2009-12-19 12:07:31 -05:00
|
|
|
struct hapd_interfaces;
|
2009-12-24 09:15:22 -05:00
|
|
|
struct hostapd_data;
|
2009-12-24 13:41:30 -05:00
|
|
|
struct sta_info;
|
2009-12-24 15:24:57 -05:00
|
|
|
struct hostap_sta_driver_data;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
|
|
|
#ifdef CONFIG_FULL_DYNAMIC_VLAN
|
|
|
|
struct full_dynamic_vlan;
|
|
|
|
#endif /* CONFIG_FULL_DYNAMIC_VLAN */
|
|
|
|
|
2009-06-12 11:13:40 -04:00
|
|
|
struct hostapd_probereq_cb {
|
|
|
|
void (*cb)(void *ctx, const u8 *sa, const u8 *ie, size_t ie_len);
|
|
|
|
void *ctx;
|
|
|
|
};
|
|
|
|
|
2009-12-09 14:57:50 -05:00
|
|
|
#define HOSTAPD_RATE_BASIC 0x00000001
|
|
|
|
|
|
|
|
struct hostapd_rate_data {
|
|
|
|
int rate; /* rate in 100 kbps */
|
|
|
|
int flags; /* HOSTAPD_RATE_ flags */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-12-24 09:15:22 -05:00
|
|
|
struct hostapd_driver_ops {
|
|
|
|
int (*set_ap_wps_ie)(struct hostapd_data *hapd,
|
2009-12-24 12:46:06 -05:00
|
|
|
const struct wpabuf *beacon,
|
|
|
|
const struct wpabuf *probe);
|
2009-12-24 13:13:44 -05:00
|
|
|
int (*send_mgmt_frame)(struct hostapd_data *hapd, const void *msg,
|
|
|
|
size_t len);
|
2009-12-24 13:41:30 -05:00
|
|
|
int (*send_eapol)(struct hostapd_data *hapd, const u8 *addr,
|
|
|
|
const u8 *data, size_t data_len, int encrypt);
|
|
|
|
int (*set_authorized)(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
int authorized);
|
|
|
|
int (*set_key)(const char *ifname, struct hostapd_data *hapd,
|
|
|
|
wpa_alg alg, const u8 *addr, int key_idx,
|
|
|
|
int set_tx, const u8 *seq, size_t seq_len,
|
|
|
|
const u8 *key, size_t key_len);
|
2009-12-24 15:24:57 -05:00
|
|
|
int (*read_sta_data)(struct hostapd_data *hapd,
|
|
|
|
struct hostap_sta_driver_data *data,
|
|
|
|
const u8 *addr);
|
|
|
|
int (*sta_clear_stats)(struct hostapd_data *hapd, const u8 *addr);
|
2009-12-24 16:11:16 -05:00
|
|
|
int (*set_sta_flags)(struct hostapd_data *hapd, struct sta_info *sta);
|
2009-12-24 16:17:11 -05:00
|
|
|
int (*set_drv_ieee8021x)(struct hostapd_data *hapd, const char *ifname,
|
|
|
|
int enabled);
|
2009-12-24 16:49:19 -05:00
|
|
|
int (*set_radius_acl_auth)(struct hostapd_data *hapd,
|
|
|
|
const u8 *mac, int accepted,
|
|
|
|
u32 session_timeout);
|
|
|
|
int (*set_radius_acl_expire)(struct hostapd_data *hapd,
|
|
|
|
const u8 *mac);
|
2009-12-24 17:10:31 -05:00
|
|
|
int (*set_bss_params)(struct hostapd_data *hapd, int use_protection);
|
|
|
|
int (*set_beacon)(const char *ifname, struct hostapd_data *hapd,
|
|
|
|
const u8 *head, size_t head_len,
|
|
|
|
const u8 *tail, size_t tail_len, int dtim_period,
|
|
|
|
int beacon_int);
|
2009-12-24 09:15:22 -05:00
|
|
|
};
|
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
/**
|
|
|
|
* struct hostapd_data - hostapd per-BSS data structure
|
|
|
|
*/
|
|
|
|
struct hostapd_data {
|
|
|
|
struct hostapd_iface *iface;
|
|
|
|
struct hostapd_config *iconf;
|
|
|
|
struct hostapd_bss_config *conf;
|
|
|
|
int interface_added; /* virtual interface added for this BSS */
|
|
|
|
|
|
|
|
u8 own_addr[ETH_ALEN];
|
|
|
|
|
|
|
|
int num_sta; /* number of entries in sta_list */
|
|
|
|
struct sta_info *sta_list; /* STA info list head */
|
2009-03-25 09:54:25 -04:00
|
|
|
#define STA_HASH_SIZE 256
|
|
|
|
#define STA_HASH(sta) (sta[5])
|
2008-02-27 20:34:43 -05:00
|
|
|
struct sta_info *sta_hash[STA_HASH_SIZE];
|
|
|
|
|
2009-03-25 09:54:25 -04:00
|
|
|
/*
|
|
|
|
* Bitfield for indicating which AIDs are allocated. Only AID values
|
|
|
|
* 1-2007 are used and as such, the bit at index 0 corresponds to AID
|
|
|
|
* 1.
|
2008-02-27 20:34:43 -05:00
|
|
|
*/
|
2009-03-25 09:54:25 -04:00
|
|
|
#define AID_WORDS ((2008 + 31) / 32)
|
|
|
|
u32 sta_aid[AID_WORDS];
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2009-04-09 06:40:12 -04:00
|
|
|
const struct wpa_driver_ops *driver;
|
2008-02-27 20:34:43 -05:00
|
|
|
void *drv_priv;
|
2009-12-24 09:15:22 -05:00
|
|
|
struct hostapd_driver_ops drv;
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2009-12-24 16:42:13 -05:00
|
|
|
void (*new_assoc_sta_cb)(struct hostapd_data *hapd,
|
|
|
|
struct sta_info *sta, int reassoc);
|
|
|
|
|
2009-09-29 14:25:14 -04:00
|
|
|
void *msg_ctx; /* ctx for wpa_msg() calls */
|
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
struct radius_client_data *radius;
|
|
|
|
u32 acct_session_id_hi, acct_session_id_lo;
|
|
|
|
|
|
|
|
struct iapp_data *iapp;
|
|
|
|
|
|
|
|
struct hostapd_cached_radius_acl *acl_cache;
|
|
|
|
struct hostapd_acl_query_data *acl_queries;
|
|
|
|
|
|
|
|
struct wpa_authenticator *wpa_auth;
|
|
|
|
struct eapol_authenticator *eapol_auth;
|
|
|
|
|
|
|
|
struct rsn_preauth_interface *preauth_iface;
|
|
|
|
time_t michael_mic_failure;
|
|
|
|
int michael_mic_failures;
|
|
|
|
int tkip_countermeasures;
|
|
|
|
|
|
|
|
int ctrl_sock;
|
|
|
|
struct wpa_ctrl_dst *ctrl_dst;
|
|
|
|
|
|
|
|
void *ssl_ctx;
|
|
|
|
void *eap_sim_db_priv;
|
|
|
|
struct radius_server_data *radius_srv;
|
|
|
|
|
|
|
|
int parameter_set_count;
|
|
|
|
|
|
|
|
#ifdef CONFIG_FULL_DYNAMIC_VLAN
|
|
|
|
struct full_dynamic_vlan *full_dynamic_vlan;
|
|
|
|
#endif /* CONFIG_FULL_DYNAMIC_VLAN */
|
|
|
|
|
|
|
|
struct l2_packet_data *l2;
|
2008-11-23 12:34:26 -05:00
|
|
|
struct wps_context *wps;
|
|
|
|
|
|
|
|
#ifdef CONFIG_WPS
|
2009-12-24 12:46:06 -05:00
|
|
|
struct wpabuf *wps_beacon_ie;
|
|
|
|
struct wpabuf *wps_probe_resp_ie;
|
2009-01-23 14:57:43 -05:00
|
|
|
unsigned int ap_pin_failures;
|
2009-01-29 11:47:02 -05:00
|
|
|
struct upnp_wps_device_sm *wps_upnp;
|
2008-11-23 12:34:26 -05:00
|
|
|
#endif /* CONFIG_WPS */
|
2009-06-12 11:13:40 -04:00
|
|
|
|
|
|
|
struct hostapd_probereq_cb *probereq_cb;
|
|
|
|
size_t num_probereq_cb;
|
2008-02-27 20:34:43 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct hostapd_iface - hostapd per-interface data structure
|
|
|
|
*/
|
|
|
|
struct hostapd_iface {
|
2009-12-19 12:07:31 -05:00
|
|
|
struct hapd_interfaces *interfaces;
|
2009-03-27 11:13:54 -04:00
|
|
|
void *owner;
|
2009-12-24 14:05:40 -05:00
|
|
|
struct hostapd_config * (*config_read_cb)(const char *config_fname);
|
2008-02-27 20:34:43 -05:00
|
|
|
char *config_fname;
|
|
|
|
struct hostapd_config *conf;
|
|
|
|
|
|
|
|
size_t num_bss;
|
|
|
|
struct hostapd_data **bss;
|
|
|
|
|
|
|
|
int num_ap; /* number of entries in ap_list */
|
|
|
|
struct ap_info *ap_list; /* AP info list head */
|
|
|
|
struct ap_info *ap_hash[STA_HASH_SIZE];
|
|
|
|
struct ap_info *ap_iter_list;
|
|
|
|
|
|
|
|
struct hostapd_hw_modes *hw_features;
|
|
|
|
int num_hw_features;
|
|
|
|
struct hostapd_hw_modes *current_mode;
|
|
|
|
/* Rates that are currently used (i.e., filtered copy of
|
|
|
|
* current_mode->channels */
|
|
|
|
int num_rates;
|
|
|
|
struct hostapd_rate_data *current_rates;
|
|
|
|
|
|
|
|
u16 hw_flags;
|
|
|
|
|
|
|
|
/* Number of associated Non-ERP stations (i.e., stations using 802.11b
|
|
|
|
* in 802.11g BSS) */
|
|
|
|
int num_sta_non_erp;
|
|
|
|
|
|
|
|
/* Number of associated stations that do not support Short Slot Time */
|
|
|
|
int num_sta_no_short_slot_time;
|
|
|
|
|
|
|
|
/* Number of associated stations that do not support Short Preamble */
|
|
|
|
int num_sta_no_short_preamble;
|
|
|
|
|
|
|
|
int olbc; /* Overlapping Legacy BSS Condition */
|
|
|
|
|
2008-08-21 11:18:38 -04:00
|
|
|
/* Number of HT associated stations that do not support greenfield */
|
|
|
|
int num_sta_ht_no_gf;
|
|
|
|
|
|
|
|
/* Number of associated non-HT stations */
|
|
|
|
int num_sta_no_ht;
|
|
|
|
|
|
|
|
/* Number of HT associated stations 20 MHz */
|
|
|
|
int num_sta_ht_20mhz;
|
|
|
|
|
|
|
|
/* Overlapping BSS information */
|
|
|
|
int olbc_ht;
|
|
|
|
|
2008-08-22 13:55:52 -04:00
|
|
|
u16 ht_op_mode;
|
2009-04-16 09:22:40 -04:00
|
|
|
void (*scan_cb)(struct hostapd_iface *iface);
|
2008-02-27 20:34:43 -05:00
|
|
|
};
|
|
|
|
|
2008-11-23 12:34:26 -05:00
|
|
|
int hostapd_reload_config(struct hostapd_iface *iface);
|
2009-03-26 13:23:41 -04:00
|
|
|
struct hostapd_data *
|
|
|
|
hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
|
|
|
|
struct hostapd_config *conf,
|
|
|
|
struct hostapd_bss_config *bss);
|
2009-03-26 13:06:02 -04:00
|
|
|
int hostapd_setup_interface(struct hostapd_iface *iface);
|
2009-04-16 09:22:40 -04:00
|
|
|
int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err);
|
2009-03-26 13:06:02 -04:00
|
|
|
void hostapd_interface_deinit(struct hostapd_iface *iface);
|
|
|
|
int handle_reload_iface(struct hostapd_iface *iface, void *ctx);
|
|
|
|
int handle_dump_state_iface(struct hostapd_iface *iface, void *ctx);
|
|
|
|
|
2009-12-19 12:07:31 -05:00
|
|
|
int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
|
|
|
|
int (*cb)(struct hostapd_iface *iface,
|
2009-01-09 10:27:03 -05:00
|
|
|
void *ctx), void *ctx);
|
2008-02-27 20:34:43 -05:00
|
|
|
|
2009-06-12 11:13:40 -04:00
|
|
|
int hostapd_register_probereq_cb(struct hostapd_data *hapd,
|
|
|
|
void (*cb)(void *ctx, const u8 *sa,
|
|
|
|
const u8 *ie, size_t ie_len),
|
|
|
|
void *ctx);
|
|
|
|
|
2009-12-06 04:28:41 -05:00
|
|
|
int eap_server_register_methods(void);
|
2009-12-24 09:15:22 -05:00
|
|
|
void hostapd_set_driver_ops(struct hostapd_driver_ops *ops);
|
2009-12-24 16:30:32 -05:00
|
|
|
void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
int reassoc);
|
2009-12-06 04:28:41 -05:00
|
|
|
|
2008-02-27 20:34:43 -05:00
|
|
|
#endif /* HOSTAPD_H */
|