2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* hostapd / Initialization and configuration
|
2013-11-03 16:30:49 +01:00
|
|
|
* Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi>
|
2008-02-28 02:34:43 +01:00
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
|
2009-12-25 23:05:40 +01:00
|
|
|
#include "utils/includes.h"
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2009-12-25 23:05:40 +01:00
|
|
|
#include "utils/common.h"
|
|
|
|
#include "utils/eloop.h"
|
2009-11-29 22:04:43 +01:00
|
|
|
#include "common/ieee802_11_defs.h"
|
2013-11-03 16:30:49 +01:00
|
|
|
#include "common/wpa_ctrl.h"
|
2009-11-29 22:04:43 +01:00
|
|
|
#include "radius/radius_client.h"
|
2012-05-06 21:02:42 +02:00
|
|
|
#include "radius/radius_das.h"
|
2009-12-25 23:21:22 +01:00
|
|
|
#include "drivers/driver.h"
|
2009-12-25 23:05:40 +01:00
|
|
|
#include "hostapd.h"
|
|
|
|
#include "authsrv.h"
|
|
|
|
#include "sta_info.h"
|
|
|
|
#include "accounting.h"
|
|
|
|
#include "ap_list.h"
|
|
|
|
#include "beacon.h"
|
|
|
|
#include "iapp.h"
|
|
|
|
#include "ieee802_1x.h"
|
|
|
|
#include "ieee802_11_auth.h"
|
|
|
|
#include "vlan_init.h"
|
|
|
|
#include "wpa_auth.h"
|
|
|
|
#include "wps_hostapd.h"
|
2008-02-28 02:34:43 +01:00
|
|
|
#include "hw_features.h"
|
2009-12-25 13:02:17 +01:00
|
|
|
#include "wpa_auth_glue.h"
|
2009-12-25 13:20:35 +01:00
|
|
|
#include "ap_drv_ops.h"
|
2009-12-25 23:12:25 +01:00
|
|
|
#include "ap_config.h"
|
2010-07-09 02:14:24 +02:00
|
|
|
#include "p2p_hostapd.h"
|
2012-02-26 21:34:19 +01:00
|
|
|
#include "gas_serv.h"
|
2013-10-15 19:27:25 +02:00
|
|
|
#include "dfs.h"
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
2012-04-03 15:17:38 +02:00
|
|
|
static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason);
|
2008-11-23 18:34:26 +01:00
|
|
|
static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
|
2011-07-05 10:39:26 +02:00
|
|
|
static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd);
|
2013-11-03 15:33:11 +01:00
|
|
|
static int setup_interface2(struct hostapd_iface *iface);
|
|
|
|
static void channel_list_update_timeout(void *eloop_ctx, void *timeout_ctx);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
extern int wpa_debug_level;
|
2012-08-25 10:37:12 +02:00
|
|
|
extern struct wpa_driver_ops *wpa_drivers[];
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
2012-02-16 18:46:27 +01:00
|
|
|
int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
|
|
|
|
int (*cb)(struct hostapd_iface *iface,
|
|
|
|
void *ctx), void *ctx)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
for (i = 0; i < interfaces->count; i++) {
|
|
|
|
ret = cb(interfaces->iface[i], ctx);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-09 15:35:49 +01:00
|
|
|
static void hostapd_reload_bss(struct hostapd_data *hapd)
|
2008-11-23 18:34:26 +01:00
|
|
|
{
|
2013-10-29 15:55:15 +01:00
|
|
|
struct hostapd_ssid *ssid;
|
|
|
|
|
2011-02-10 21:12:29 +01:00
|
|
|
#ifndef CONFIG_NO_RADIUS
|
|
|
|
radius_client_reconfig(hapd->radius, hapd->conf->radius);
|
|
|
|
#endif /* CONFIG_NO_RADIUS */
|
|
|
|
|
2013-10-29 15:55:15 +01:00
|
|
|
ssid = &hapd->conf->ssid;
|
|
|
|
if (!ssid->wpa_psk_set && ssid->wpa_psk && !ssid->wpa_psk->next &&
|
|
|
|
ssid->wpa_passphrase_set && ssid->wpa_passphrase) {
|
|
|
|
/*
|
|
|
|
* Force PSK to be derived again since SSID or passphrase may
|
|
|
|
* have changed.
|
|
|
|
*/
|
|
|
|
os_free(ssid->wpa_psk);
|
|
|
|
ssid->wpa_psk = NULL;
|
|
|
|
}
|
2008-11-23 18:34:26 +01:00
|
|
|
if (hostapd_setup_wpa_psk(hapd->conf)) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to re-configure WPA PSK "
|
|
|
|
"after reloading configuration");
|
|
|
|
}
|
|
|
|
|
2010-05-29 21:27:27 +02:00
|
|
|
if (hapd->conf->ieee802_1x || hapd->conf->wpa)
|
2010-11-24 15:50:06 +01:00
|
|
|
hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
|
2010-05-29 21:27:27 +02:00
|
|
|
else
|
2010-11-24 15:50:06 +01:00
|
|
|
hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
|
2010-05-29 21:27:27 +02:00
|
|
|
|
2011-08-09 13:56:16 +02:00
|
|
|
if (hapd->conf->wpa && hapd->wpa_auth == NULL) {
|
2008-11-23 18:34:26 +01:00
|
|
|
hostapd_setup_wpa(hapd);
|
2011-08-09 13:56:16 +02:00
|
|
|
if (hapd->wpa_auth)
|
|
|
|
wpa_init_keys(hapd->wpa_auth);
|
|
|
|
} else if (hapd->conf->wpa) {
|
2010-04-06 19:44:26 +02:00
|
|
|
const u8 *wpa_ie;
|
|
|
|
size_t wpa_ie_len;
|
2009-12-25 13:02:17 +01:00
|
|
|
hostapd_reconfig_wpa(hapd);
|
2010-04-06 19:44:26 +02:00
|
|
|
wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
|
|
|
|
if (hostapd_set_generic_elem(hapd, wpa_ie, wpa_ie_len))
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to configure WPA IE for "
|
|
|
|
"the kernel driver.");
|
|
|
|
} else if (hapd->wpa_auth) {
|
2008-11-23 18:34:26 +01:00
|
|
|
wpa_deinit(hapd->wpa_auth);
|
|
|
|
hapd->wpa_auth = NULL;
|
|
|
|
hostapd_set_privacy(hapd, 0);
|
|
|
|
hostapd_setup_encryption(hapd->conf->iface, hapd);
|
2010-04-06 19:44:26 +02:00
|
|
|
hostapd_set_generic_elem(hapd, (u8 *) "", 0);
|
2008-11-23 18:34:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ieee802_11_set_beacon(hapd);
|
2010-05-02 10:21:19 +02:00
|
|
|
hostapd_update_wps(hapd);
|
2008-11-23 18:34:26 +01:00
|
|
|
|
2009-03-27 15:10:14 +01:00
|
|
|
if (hapd->conf->ssid.ssid_set &&
|
2012-08-07 15:07:25 +02:00
|
|
|
hostapd_set_ssid(hapd, hapd->conf->ssid.ssid,
|
2009-03-27 15:10:14 +01:00
|
|
|
hapd->conf->ssid.ssid_len)) {
|
|
|
|
wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
|
|
|
|
/* try to continue */
|
|
|
|
}
|
2010-11-09 15:35:49 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-31 10:26:29 +02:00
|
|
|
static void hostapd_clear_old(struct hostapd_iface *iface)
|
2010-11-09 15:35:49 +01:00
|
|
|
{
|
|
|
|
size_t j;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Deauthenticate all stations since the new configuration may not
|
|
|
|
* allow them to use the BSS anymore.
|
|
|
|
*/
|
2011-02-10 21:12:29 +01:00
|
|
|
for (j = 0; j < iface->num_bss; j++) {
|
2012-04-03 15:17:38 +02:00
|
|
|
hostapd_flush_old_stations(iface->bss[j],
|
|
|
|
WLAN_REASON_PREV_AUTH_NOT_VALID);
|
2011-07-05 10:39:26 +02:00
|
|
|
hostapd_broadcast_wep_clear(iface->bss[j]);
|
2010-11-09 15:35:49 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_NO_RADIUS
|
2011-02-10 21:12:29 +01:00
|
|
|
/* TODO: update dynamic data based on changed configuration
|
|
|
|
* items (e.g., open/close sockets, etc.) */
|
|
|
|
radius_client_flush(iface->bss[j]->radius, 0);
|
2010-11-09 15:35:49 +01:00
|
|
|
#endif /* CONFIG_NO_RADIUS */
|
2011-02-10 21:12:29 +01:00
|
|
|
}
|
2013-03-31 10:26:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int hostapd_reload_config(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
struct hostapd_data *hapd = iface->bss[0];
|
|
|
|
struct hostapd_config *newconf, *oldconf;
|
|
|
|
size_t j;
|
|
|
|
|
|
|
|
if (iface->config_fname == NULL) {
|
|
|
|
/* Only in-memory config in use - assume it has been updated */
|
|
|
|
hostapd_clear_old(iface);
|
|
|
|
for (j = 0; j < iface->num_bss; j++)
|
|
|
|
hostapd_reload_bss(iface->bss[j]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iface->interfaces == NULL ||
|
|
|
|
iface->interfaces->config_read_cb == NULL)
|
|
|
|
return -1;
|
|
|
|
newconf = iface->interfaces->config_read_cb(iface->config_fname);
|
|
|
|
if (newconf == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
hostapd_clear_old(iface);
|
2010-11-09 15:35:49 +01:00
|
|
|
|
|
|
|
oldconf = hapd->iconf;
|
|
|
|
iface->conf = newconf;
|
|
|
|
|
|
|
|
for (j = 0; j < iface->num_bss; j++) {
|
|
|
|
hapd = iface->bss[j];
|
|
|
|
hapd->iconf = newconf;
|
2013-10-29 15:23:23 +01:00
|
|
|
hapd->conf = newconf->bss[j];
|
2010-11-09 15:35:49 +01:00
|
|
|
hostapd_reload_bss(hapd);
|
|
|
|
}
|
2009-03-27 15:10:14 +01:00
|
|
|
|
2008-11-23 18:34:26 +01:00
|
|
|
hostapd_config_free(oldconf);
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
static void hostapd_broadcast_key_clear_iface(struct hostapd_data *hapd,
|
|
|
|
char *ifname)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_WEP_KEYS; i++) {
|
2010-11-24 15:34:49 +01:00
|
|
|
if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE, NULL, i,
|
2011-01-09 11:18:36 +01:00
|
|
|
0, NULL, 0, NULL, 0)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "Failed to clear default "
|
|
|
|
"encryption keys (ifname=%s keyidx=%d)",
|
|
|
|
ifname, i);
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
}
|
2008-12-31 16:49:43 +01:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
if (hapd->conf->ieee80211w) {
|
|
|
|
for (i = NUM_WEP_KEYS; i < NUM_WEP_KEYS + 2; i++) {
|
2010-11-24 15:34:49 +01:00
|
|
|
if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE,
|
2011-01-09 11:18:36 +01:00
|
|
|
NULL, i, 0, NULL,
|
2010-11-24 15:34:49 +01:00
|
|
|
0, NULL, 0)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "Failed to clear "
|
|
|
|
"default mgmt encryption keys "
|
|
|
|
"(ifname=%s keyidx=%d)", ifname, i);
|
2008-12-31 16:49:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd)
|
|
|
|
{
|
|
|
|
hostapd_broadcast_key_clear_iface(hapd, hapd->conf->iface);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
|
|
|
|
{
|
|
|
|
int errors = 0, idx;
|
|
|
|
struct hostapd_ssid *ssid = &hapd->conf->ssid;
|
|
|
|
|
|
|
|
idx = ssid->wep.idx;
|
|
|
|
if (ssid->wep.default_len &&
|
2010-11-24 15:34:49 +01:00
|
|
|
hostapd_drv_set_key(hapd->conf->iface,
|
2011-01-09 18:44:28 +01:00
|
|
|
hapd, WPA_ALG_WEP, broadcast_ether_addr, idx,
|
|
|
|
1, NULL, 0, ssid->wep.key[idx],
|
2010-11-24 15:34:49 +01:00
|
|
|
ssid->wep.len[idx])) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_WARNING, "Could not set WEP encryption.");
|
2008-02-28 02:34:43 +01:00
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-16 18:47:14 +01:00
|
|
|
static void hostapd_free_hapd_data(struct hostapd_data *hapd)
|
|
|
|
{
|
2008-02-28 02:34:43 +01:00
|
|
|
iapp_deinit(hapd->iapp);
|
|
|
|
hapd->iapp = NULL;
|
|
|
|
accounting_deinit(hapd);
|
2009-12-25 13:02:17 +01:00
|
|
|
hostapd_deinit_wpa(hapd);
|
2008-02-28 02:34:43 +01:00
|
|
|
vlan_deinit(hapd);
|
|
|
|
hostapd_acl_deinit(hapd);
|
2009-12-06 16:53:59 +01:00
|
|
|
#ifndef CONFIG_NO_RADIUS
|
2008-02-28 02:34:43 +01:00
|
|
|
radius_client_deinit(hapd->radius);
|
|
|
|
hapd->radius = NULL;
|
2012-05-06 21:02:42 +02:00
|
|
|
radius_das_deinit(hapd->radius_das);
|
|
|
|
hapd->radius_das = NULL;
|
2009-12-06 16:53:59 +01:00
|
|
|
#endif /* CONFIG_NO_RADIUS */
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2008-11-23 18:34:26 +01:00
|
|
|
hostapd_deinit_wps(hapd);
|
|
|
|
|
2009-12-25 12:43:43 +01:00
|
|
|
authsrv_deinit(hapd);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2013-10-31 00:34:32 +01:00
|
|
|
if (hostapd_if_remove(hapd, WPA_IF_AP_BSS, hapd->conf->iface)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_WARNING, "Failed to remove BSS interface %s",
|
|
|
|
hapd->conf->iface);
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
2009-06-12 17:13:40 +02:00
|
|
|
|
|
|
|
os_free(hapd->probereq_cb);
|
|
|
|
hapd->probereq_cb = NULL;
|
2010-07-18 23:30:25 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
wpabuf_free(hapd->p2p_beacon_ie);
|
|
|
|
hapd->p2p_beacon_ie = NULL;
|
|
|
|
wpabuf_free(hapd->p2p_probe_resp_ie);
|
|
|
|
hapd->p2p_probe_resp_ie = NULL;
|
|
|
|
#endif /* CONFIG_P2P */
|
2011-10-17 23:24:16 +02:00
|
|
|
|
|
|
|
wpabuf_free(hapd->time_adv);
|
2012-02-26 21:34:19 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_INTERWORKING
|
|
|
|
gas_serv_deinit(hapd);
|
|
|
|
#endif /* CONFIG_INTERWORKING */
|
2012-11-20 23:47:47 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_SQLITE
|
|
|
|
os_free(hapd->tmp_eap_user.identity);
|
|
|
|
os_free(hapd->tmp_eap_user.password);
|
|
|
|
#endif /* CONFIG_SQLITE */
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-16 18:47:14 +01:00
|
|
|
/**
|
|
|
|
* hostapd_cleanup - Per-BSS cleanup (deinitialization)
|
|
|
|
* @hapd: Pointer to BSS data
|
|
|
|
*
|
|
|
|
* This function is used to free all per-BSS data structures and resources.
|
|
|
|
* This gets called in a loop for each BSS between calls to
|
|
|
|
* hostapd_cleanup_iface_pre() and hostapd_cleanup_iface() when an interface
|
|
|
|
* is deinitialized. Most of the modules that are initialized in
|
|
|
|
* hostapd_setup_bss() are deinitialized here.
|
|
|
|
*/
|
|
|
|
static void hostapd_cleanup(struct hostapd_data *hapd)
|
|
|
|
{
|
2012-08-25 11:43:27 +02:00
|
|
|
if (hapd->iface->interfaces &&
|
|
|
|
hapd->iface->interfaces->ctrl_iface_deinit)
|
|
|
|
hapd->iface->interfaces->ctrl_iface_deinit(hapd);
|
2012-02-16 18:47:14 +01:00
|
|
|
hostapd_free_hapd_data(hapd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* hostapd_cleanup_iface_pre - Preliminary per-interface cleanup
|
|
|
|
* @iface: Pointer to interface data
|
|
|
|
*
|
|
|
|
* This function is called before per-BSS data structures are deinitialized
|
|
|
|
* with hostapd_cleanup().
|
|
|
|
*/
|
|
|
|
static void hostapd_cleanup_iface_pre(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-16 18:47:54 +01:00
|
|
|
static void hostapd_cleanup_iface_partial(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
|
|
|
|
iface->hw_features = NULL;
|
|
|
|
os_free(iface->current_rates);
|
|
|
|
iface->current_rates = NULL;
|
|
|
|
os_free(iface->basic_rates);
|
|
|
|
iface->basic_rates = NULL;
|
|
|
|
ap_list_deinit(iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* hostapd_cleanup_iface - Complete per-interface cleanup
|
|
|
|
* @iface: Pointer to interface data
|
|
|
|
*
|
|
|
|
* This function is called after per-BSS data structures are deinitialized
|
|
|
|
* with hostapd_cleanup().
|
|
|
|
*/
|
|
|
|
static void hostapd_cleanup_iface(struct hostapd_iface *iface)
|
|
|
|
{
|
2013-11-03 15:33:11 +01:00
|
|
|
eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
|
|
|
|
|
2012-02-16 18:47:54 +01:00
|
|
|
hostapd_cleanup_iface_partial(iface);
|
2008-02-28 02:34:43 +01:00
|
|
|
hostapd_config_free(iface->conf);
|
|
|
|
iface->conf = NULL;
|
|
|
|
|
|
|
|
os_free(iface->config_fname);
|
|
|
|
os_free(iface->bss);
|
|
|
|
os_free(iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-16 18:48:48 +01:00
|
|
|
static void hostapd_clear_wep(struct hostapd_data *hapd)
|
|
|
|
{
|
|
|
|
if (hapd->drv_priv) {
|
|
|
|
hostapd_set_privacy(hapd, 0);
|
|
|
|
hostapd_broadcast_wep_clear(hapd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
hostapd_broadcast_wep_set(hapd);
|
|
|
|
|
2009-12-24 19:18:55 +01:00
|
|
|
if (hapd->conf->ssid.wep.default_len) {
|
|
|
|
hostapd_set_privacy(hapd, 1);
|
2008-02-28 02:34:43 +01:00
|
|
|
return 0;
|
2009-12-24 19:18:55 +01:00
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2011-05-20 17:27:53 +02:00
|
|
|
/*
|
|
|
|
* When IEEE 802.1X is not enabled, the driver may need to know how to
|
|
|
|
* set authentication algorithms for static WEP.
|
|
|
|
*/
|
|
|
|
hostapd_drv_set_authmode(hapd, hapd->conf->auth_algs);
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
if (hapd->conf->ssid.wep.key[i] &&
|
2010-11-24 15:34:49 +01:00
|
|
|
hostapd_drv_set_key(iface, hapd, WPA_ALG_WEP, NULL, i,
|
|
|
|
i == hapd->conf->ssid.wep.idx, NULL, 0,
|
|
|
|
hapd->conf->ssid.wep.key[i],
|
|
|
|
hapd->conf->ssid.wep.len[i])) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_WARNING, "Could not set WEP "
|
|
|
|
"encryption.");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (hapd->conf->ssid.wep.key[i] &&
|
|
|
|
i == hapd->conf->ssid.wep.idx)
|
|
|
|
hostapd_set_privacy(hapd, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-03 15:17:38 +02:00
|
|
|
static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason)
|
2008-02-28 02:34:43 +01:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2011-01-09 11:50:57 +01:00
|
|
|
u8 addr[ETH_ALEN];
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2010-03-07 10:25:28 +01:00
|
|
|
if (hostapd_drv_none(hapd) || hapd->drv_priv == NULL)
|
2008-10-01 13:17:35 +02:00
|
|
|
return 0;
|
|
|
|
|
2011-12-10 15:28:14 +01:00
|
|
|
wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "Flushing old station entries");
|
2008-02-28 02:34:43 +01:00
|
|
|
if (hostapd_flush(hapd)) {
|
2011-12-10 15:28:14 +01:00
|
|
|
wpa_msg(hapd->msg_ctx, MSG_WARNING, "Could not connect to "
|
|
|
|
"kernel driver");
|
2008-02-28 02:34:43 +01:00
|
|
|
ret = -1;
|
|
|
|
}
|
2011-12-10 15:28:14 +01:00
|
|
|
wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "Deauthenticate all stations");
|
2011-01-09 11:50:57 +01:00
|
|
|
os_memset(addr, 0xff, ETH_ALEN);
|
2012-04-03 15:17:38 +02:00
|
|
|
hostapd_drv_sta_deauth(hapd, addr, reason);
|
2011-02-10 21:31:32 +01:00
|
|
|
hostapd_free_stas(hapd);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hostapd_validate_bssid_configuration - Validate BSSID configuration
|
|
|
|
* @iface: Pointer to interface data
|
|
|
|
* Returns: 0 on success, -1 on failure
|
|
|
|
*
|
|
|
|
* This function is used to validate that the configured BSSIDs are valid.
|
|
|
|
*/
|
|
|
|
static int hostapd_validate_bssid_configuration(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
u8 mask[ETH_ALEN] = { 0 };
|
|
|
|
struct hostapd_data *hapd = iface->bss[0];
|
|
|
|
unsigned int i = iface->conf->num_bss, bits = 0, j;
|
2009-03-12 21:01:26 +01:00
|
|
|
int auto_addr = 0;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2008-10-01 13:17:35 +02:00
|
|
|
if (hostapd_drv_none(hapd))
|
|
|
|
return 0;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/* Generate BSSID mask that is large enough to cover the BSSIDs. */
|
|
|
|
|
|
|
|
/* Determine the bits necessary to cover the number of BSSIDs. */
|
|
|
|
for (i--; i; i >>= 1)
|
|
|
|
bits++;
|
|
|
|
|
|
|
|
/* Determine the bits necessary to any configured BSSIDs,
|
|
|
|
if they are higher than the number of BSSIDs. */
|
|
|
|
for (j = 0; j < iface->conf->num_bss; j++) {
|
2013-10-29 15:23:23 +01:00
|
|
|
if (hostapd_mac_comp_empty(iface->conf->bss[j]->bssid) == 0) {
|
2009-03-12 21:01:26 +01:00
|
|
|
if (j)
|
|
|
|
auto_addr++;
|
2008-02-28 02:34:43 +01:00
|
|
|
continue;
|
2009-03-12 21:01:26 +01:00
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
for (i = 0; i < ETH_ALEN; i++) {
|
|
|
|
mask[i] |=
|
2013-10-29 15:23:23 +01:00
|
|
|
iface->conf->bss[j]->bssid[i] ^
|
2008-02-28 02:34:43 +01:00
|
|
|
hapd->own_addr[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-12 21:01:26 +01:00
|
|
|
if (!auto_addr)
|
|
|
|
goto skip_mask_ext;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
for (i = 0; i < ETH_ALEN && mask[i] == 0; i++)
|
|
|
|
;
|
|
|
|
j = 0;
|
|
|
|
if (i < ETH_ALEN) {
|
|
|
|
j = (5 - i) * 8;
|
|
|
|
|
|
|
|
while (mask[i] != 0) {
|
|
|
|
mask[i] >>= 1;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bits < j)
|
|
|
|
bits = j;
|
|
|
|
|
2009-03-12 21:01:26 +01:00
|
|
|
if (bits > 40) {
|
|
|
|
wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
|
|
|
|
bits);
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
2009-03-12 21:01:26 +01:00
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
os_memset(mask, 0xff, ETH_ALEN);
|
|
|
|
j = bits / 8;
|
|
|
|
for (i = 5; i > 5 - j; i--)
|
|
|
|
mask[i] = 0;
|
|
|
|
j = bits % 8;
|
|
|
|
while (j--)
|
|
|
|
mask[i] <<= 1;
|
|
|
|
|
2009-03-12 21:01:26 +01:00
|
|
|
skip_mask_ext:
|
2008-02-28 02:34:43 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
|
|
|
|
(unsigned long) iface->conf->num_bss, MAC2STR(mask), bits);
|
|
|
|
|
2009-03-12 21:01:26 +01:00
|
|
|
if (!auto_addr)
|
|
|
|
return 0;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
for (i = 0; i < ETH_ALEN; i++) {
|
|
|
|
if ((hapd->own_addr[i] & mask[i]) != hapd->own_addr[i]) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
|
|
|
|
" for start address " MACSTR ".",
|
|
|
|
MAC2STR(mask), MAC2STR(hapd->own_addr));
|
|
|
|
wpa_printf(MSG_ERROR, "Start address must be the "
|
|
|
|
"first address in the block (i.e., addr "
|
|
|
|
"AND mask == addr).");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int mac_in_conf(struct hostapd_config *conf, const void *a)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < conf->num_bss; i++) {
|
2013-10-29 15:23:23 +01:00
|
|
|
if (hostapd_mac_comp(conf->bss[i]->bssid, a) == 0) {
|
2008-02-28 02:34:43 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-17 18:30:01 +02:00
|
|
|
#ifndef CONFIG_NO_RADIUS
|
|
|
|
|
|
|
|
static int hostapd_das_nas_mismatch(struct hostapd_data *hapd,
|
|
|
|
struct radius_das_attrs *attr)
|
|
|
|
{
|
|
|
|
/* TODO */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct sta_info * hostapd_das_find_sta(struct hostapd_data *hapd,
|
|
|
|
struct radius_das_attrs *attr)
|
|
|
|
{
|
|
|
|
struct sta_info *sta = NULL;
|
|
|
|
char buf[128];
|
|
|
|
|
|
|
|
if (attr->sta_addr)
|
|
|
|
sta = ap_get_sta(hapd, attr->sta_addr);
|
|
|
|
|
|
|
|
if (sta == NULL && attr->acct_session_id &&
|
|
|
|
attr->acct_session_id_len == 17) {
|
|
|
|
for (sta = hapd->sta_list; sta; sta = sta->next) {
|
|
|
|
os_snprintf(buf, sizeof(buf), "%08X-%08X",
|
|
|
|
sta->acct_session_id_hi,
|
|
|
|
sta->acct_session_id_lo);
|
|
|
|
if (os_memcmp(attr->acct_session_id, buf, 17) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-17 18:44:46 +02:00
|
|
|
if (sta == NULL && attr->cui) {
|
|
|
|
for (sta = hapd->sta_list; sta; sta = sta->next) {
|
|
|
|
struct wpabuf *cui;
|
|
|
|
cui = ieee802_1x_get_radius_cui(sta->eapol_sm);
|
|
|
|
if (cui && wpabuf_len(cui) == attr->cui_len &&
|
|
|
|
os_memcmp(wpabuf_head(cui), attr->cui,
|
|
|
|
attr->cui_len) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-17 18:30:01 +02:00
|
|
|
if (sta == NULL && attr->user_name) {
|
|
|
|
for (sta = hapd->sta_list; sta; sta = sta->next) {
|
|
|
|
u8 *identity;
|
|
|
|
size_t identity_len;
|
|
|
|
identity = ieee802_1x_get_identity(sta->eapol_sm,
|
|
|
|
&identity_len);
|
|
|
|
if (identity &&
|
|
|
|
identity_len == attr->user_name_len &&
|
|
|
|
os_memcmp(identity, attr->user_name, identity_len)
|
|
|
|
== 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sta;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static enum radius_das_res
|
|
|
|
hostapd_das_disconnect(void *ctx, struct radius_das_attrs *attr)
|
|
|
|
{
|
|
|
|
struct hostapd_data *hapd = ctx;
|
|
|
|
struct sta_info *sta;
|
|
|
|
|
|
|
|
if (hostapd_das_nas_mismatch(hapd, attr))
|
|
|
|
return RADIUS_DAS_NAS_MISMATCH;
|
|
|
|
|
|
|
|
sta = hostapd_das_find_sta(hapd, attr);
|
|
|
|
if (sta == NULL)
|
|
|
|
return RADIUS_DAS_SESSION_NOT_FOUND;
|
|
|
|
|
|
|
|
hostapd_drv_sta_deauth(hapd, sta->addr,
|
|
|
|
WLAN_REASON_PREV_AUTH_NOT_VALID);
|
|
|
|
ap_sta_deauthenticate(hapd, sta, WLAN_REASON_PREV_AUTH_NOT_VALID);
|
|
|
|
|
|
|
|
return RADIUS_DAS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_NO_RADIUS */
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hostapd_setup_bss - Per-BSS setup (initialization)
|
|
|
|
* @hapd: Pointer to BSS data
|
2013-10-31 18:41:42 +01:00
|
|
|
* @first: Whether this BSS is the first BSS of an interface; -1 = not first,
|
|
|
|
* but interface may exist
|
2008-02-28 02:34:43 +01:00
|
|
|
*
|
|
|
|
* This function is used to initialize all per-BSS data structures and
|
|
|
|
* resources. This gets called in a loop for each BSS when an interface is
|
|
|
|
* initialized. Most of the modules that are initialized here will be
|
|
|
|
* deinitialized in hostapd_cleanup().
|
|
|
|
*/
|
|
|
|
static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
|
|
|
|
{
|
|
|
|
struct hostapd_bss_config *conf = hapd->conf;
|
|
|
|
u8 ssid[HOSTAPD_MAX_SSID_LEN + 1];
|
|
|
|
int ssid_len, set_ssid;
|
2010-04-11 18:23:09 +02:00
|
|
|
char force_ifname[IFNAMSIZ];
|
|
|
|
u8 if_addr[ETH_ALEN];
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2013-10-31 18:41:42 +01:00
|
|
|
if (!first || first == -1) {
|
2008-02-28 02:34:43 +01:00
|
|
|
if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0) {
|
|
|
|
/* Allocate the next available BSSID. */
|
|
|
|
do {
|
|
|
|
inc_byte_array(hapd->own_addr, ETH_ALEN);
|
|
|
|
} while (mac_in_conf(hapd->iconf, hapd->own_addr));
|
|
|
|
} else {
|
|
|
|
/* Allocate the configured BSSID. */
|
|
|
|
os_memcpy(hapd->own_addr, hapd->conf->bssid, ETH_ALEN);
|
|
|
|
|
|
|
|
if (hostapd_mac_comp(hapd->own_addr,
|
|
|
|
hapd->iface->bss[0]->own_addr) ==
|
|
|
|
0) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "BSS '%s' may not have "
|
|
|
|
"BSSID set to the MAC address of "
|
|
|
|
"the radio", hapd->conf->iface);
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-09 15:49:28 +01:00
|
|
|
if (hostapd_if_add(hapd->iface->bss[0], WPA_IF_AP_BSS,
|
2010-03-06 21:22:56 +01:00
|
|
|
hapd->conf->iface, hapd->own_addr, hapd,
|
2011-03-15 12:02:49 +01:00
|
|
|
&hapd->drv_priv, force_ifname, if_addr,
|
|
|
|
hapd->conf->bridge[0] ? hapd->conf->bridge :
|
2013-10-31 18:41:42 +01:00
|
|
|
NULL, first == -1)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Failed to add BSS (BSSID="
|
|
|
|
MACSTR ")", MAC2STR(hapd->own_addr));
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-01 13:34:12 +01:00
|
|
|
if (conf->wmm_enabled < 0)
|
|
|
|
conf->wmm_enabled = hapd->iconf->ieee80211n;
|
|
|
|
|
2012-04-03 15:17:38 +02:00
|
|
|
hostapd_flush_old_stations(hapd, WLAN_REASON_PREV_AUTH_NOT_VALID);
|
2009-04-03 19:14:39 +02:00
|
|
|
hostapd_set_privacy(hapd, 0);
|
|
|
|
|
|
|
|
hostapd_broadcast_wep_clear(hapd);
|
|
|
|
if (hostapd_setup_encryption(hapd->conf->iface, hapd))
|
|
|
|
return -1;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* Fetch the SSID from the system and use it or,
|
|
|
|
* if one was specified in the config file, verify they
|
|
|
|
* match.
|
|
|
|
*/
|
|
|
|
ssid_len = hostapd_get_ssid(hapd, ssid, sizeof(ssid));
|
|
|
|
if (ssid_len < 0) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Could not read SSID from system");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (conf->ssid.ssid_set) {
|
|
|
|
/*
|
|
|
|
* If SSID is specified in the config file and it differs
|
|
|
|
* from what is being used then force installation of the
|
|
|
|
* new SSID.
|
|
|
|
*/
|
|
|
|
set_ssid = (conf->ssid.ssid_len != (size_t) ssid_len ||
|
|
|
|
os_memcmp(conf->ssid.ssid, ssid, ssid_len) != 0);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* No SSID in the config file; just use the one we got
|
|
|
|
* from the system.
|
|
|
|
*/
|
|
|
|
set_ssid = 0;
|
|
|
|
conf->ssid.ssid_len = ssid_len;
|
|
|
|
os_memcpy(conf->ssid.ssid, ssid, conf->ssid.ssid_len);
|
|
|
|
}
|
|
|
|
|
2008-10-01 13:17:35 +02:00
|
|
|
if (!hostapd_drv_none(hapd)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
|
2012-08-07 15:07:25 +02:00
|
|
|
" and ssid \"%s\"",
|
2009-01-08 15:57:04 +01:00
|
|
|
hapd->conf->iface, MAC2STR(hapd->own_addr),
|
2012-08-07 15:07:25 +02:00
|
|
|
wpa_ssid_txt(hapd->conf->ssid.ssid,
|
|
|
|
hapd->conf->ssid.ssid_len));
|
2008-10-01 13:17:35 +02:00
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
if (hostapd_setup_wpa_psk(conf)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "WPA-PSK setup failed.");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set SSID for the kernel driver (to be used in beacon and probe
|
|
|
|
* response frames) */
|
2012-08-07 15:07:25 +02:00
|
|
|
if (set_ssid && hostapd_set_ssid(hapd, conf->ssid.ssid,
|
2008-02-28 02:34:43 +01:00
|
|
|
conf->ssid.ssid_len)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wpa_debug_level == MSG_MSGDUMP)
|
|
|
|
conf->radius->msg_dumps = 1;
|
2009-12-06 16:53:59 +01:00
|
|
|
#ifndef CONFIG_NO_RADIUS
|
2008-02-28 02:34:43 +01:00
|
|
|
hapd->radius = radius_client_init(hapd, conf->radius);
|
|
|
|
if (hapd->radius == NULL) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "RADIUS client initialization failed.");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2012-05-06 21:02:42 +02:00
|
|
|
|
|
|
|
if (hapd->conf->radius_das_port) {
|
|
|
|
struct radius_das_conf das_conf;
|
|
|
|
os_memset(&das_conf, 0, sizeof(das_conf));
|
|
|
|
das_conf.port = hapd->conf->radius_das_port;
|
|
|
|
das_conf.shared_secret = hapd->conf->radius_das_shared_secret;
|
|
|
|
das_conf.shared_secret_len =
|
|
|
|
hapd->conf->radius_das_shared_secret_len;
|
|
|
|
das_conf.client_addr = &hapd->conf->radius_das_client_addr;
|
2012-06-17 16:43:36 +02:00
|
|
|
das_conf.time_window = hapd->conf->radius_das_time_window;
|
|
|
|
das_conf.require_event_timestamp =
|
|
|
|
hapd->conf->radius_das_require_event_timestamp;
|
2012-06-17 18:30:01 +02:00
|
|
|
das_conf.ctx = hapd;
|
|
|
|
das_conf.disconnect = hostapd_das_disconnect;
|
2012-05-06 21:02:42 +02:00
|
|
|
hapd->radius_das = radius_das_init(&das_conf);
|
|
|
|
if (hapd->radius_das == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "RADIUS DAS initialization "
|
|
|
|
"failed.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2009-12-06 16:53:59 +01:00
|
|
|
#endif /* CONFIG_NO_RADIUS */
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
if (hostapd_acl_init(hapd)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "ACL initialization failed.");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2008-11-23 18:34:26 +01:00
|
|
|
if (hostapd_init_wps(hapd, conf))
|
|
|
|
return -1;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2010-01-17 11:14:17 +01:00
|
|
|
if (authsrv_init(hapd) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
if (ieee802_1x_init(hapd)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "IEEE 802.1X initialization failed.");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hapd->conf->wpa && hostapd_setup_wpa(hapd))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (accounting_init(hapd)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Accounting initialization failed.");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hapd->conf->ieee802_11f &&
|
|
|
|
(hapd->iapp = iapp_init(hapd, hapd->conf->iapp_iface)) == NULL) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "IEEE 802.11F (IAPP) initialization "
|
|
|
|
"failed.");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-02-26 21:34:19 +01:00
|
|
|
#ifdef CONFIG_INTERWORKING
|
|
|
|
if (gas_serv_init(hapd)) {
|
|
|
|
wpa_printf(MSG_ERROR, "GAS server initialization failed");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_INTERWORKING */
|
|
|
|
|
2008-10-01 13:17:35 +02:00
|
|
|
if (!hostapd_drv_none(hapd) && vlan_init(hapd)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "VLAN initialization failed.");
|
2008-02-28 02:34:43 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-07-20 16:20:43 +02:00
|
|
|
if (!hapd->conf->start_disabled)
|
|
|
|
ieee802_11_set_beacon(hapd);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2011-08-09 13:56:16 +02:00
|
|
|
if (hapd->wpa_auth && wpa_init_keys(hapd->wpa_auth) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2010-10-26 15:30:28 +02:00
|
|
|
if (hapd->driver && hapd->driver->set_operstate)
|
|
|
|
hapd->driver->set_operstate(hapd->drv_priv, 1);
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-29 18:25:15 +01:00
|
|
|
static void hostapd_tx_queue_params(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
struct hostapd_data *hapd = iface->bss[0];
|
|
|
|
int i;
|
|
|
|
struct hostapd_tx_queue_params *p;
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_TX_QUEUES; i++) {
|
|
|
|
p = &iface->conf->tx_queue[i];
|
|
|
|
|
|
|
|
if (hostapd_set_tx_queue_params(hapd, i, p->aifs, p->cwmin,
|
|
|
|
p->cwmax, p->burst)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "Failed to set TX queue "
|
|
|
|
"parameters for queue %d.", i);
|
2008-10-29 18:25:15 +01:00
|
|
|
/* Continue anyway */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-23 13:38:20 +02:00
|
|
|
static int hostapd_set_acl_list(struct hostapd_data *hapd,
|
|
|
|
struct mac_acl_entry *mac_acl,
|
|
|
|
int n_entries, u8 accept_acl)
|
|
|
|
{
|
|
|
|
struct hostapd_acl_params *acl_params;
|
|
|
|
int i, err;
|
|
|
|
|
|
|
|
acl_params = os_zalloc(sizeof(*acl_params) +
|
|
|
|
(n_entries * sizeof(acl_params->mac_acl[0])));
|
|
|
|
if (!acl_params)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
for (i = 0; i < n_entries; i++)
|
|
|
|
os_memcpy(acl_params->mac_acl[i].addr, mac_acl[i].addr,
|
|
|
|
ETH_ALEN);
|
|
|
|
|
|
|
|
acl_params->acl_policy = accept_acl;
|
|
|
|
acl_params->num_mac_acl = n_entries;
|
|
|
|
|
|
|
|
err = hostapd_drv_set_acl(hapd, acl_params);
|
|
|
|
|
|
|
|
os_free(acl_params);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void hostapd_set_acl(struct hostapd_data *hapd)
|
|
|
|
{
|
|
|
|
struct hostapd_config *conf = hapd->iconf;
|
|
|
|
int err;
|
|
|
|
u8 accept_acl;
|
|
|
|
|
2013-05-24 12:37:22 +02:00
|
|
|
if (hapd->iface->drv_max_acl_mac_addrs == 0)
|
|
|
|
return;
|
2013-10-29 15:23:23 +01:00
|
|
|
if (!(conf->bss[0]->num_accept_mac || conf->bss[0]->num_deny_mac))
|
2013-05-23 13:38:20 +02:00
|
|
|
return;
|
|
|
|
|
2013-10-29 15:23:23 +01:00
|
|
|
if (conf->bss[0]->macaddr_acl == DENY_UNLESS_ACCEPTED) {
|
|
|
|
if (conf->bss[0]->num_accept_mac) {
|
2013-05-23 13:38:20 +02:00
|
|
|
accept_acl = 1;
|
2013-10-29 15:23:23 +01:00
|
|
|
err = hostapd_set_acl_list(hapd,
|
|
|
|
conf->bss[0]->accept_mac,
|
|
|
|
conf->bss[0]->num_accept_mac,
|
2013-05-23 13:38:20 +02:00
|
|
|
accept_acl);
|
|
|
|
if (err) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Failed to set accept acl");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_DEBUG, "Mismatch between ACL Policy & Accept/deny lists file");
|
|
|
|
}
|
2013-10-29 15:23:23 +01:00
|
|
|
} else if (conf->bss[0]->macaddr_acl == ACCEPT_UNLESS_DENIED) {
|
|
|
|
if (conf->bss[0]->num_deny_mac) {
|
2013-05-23 13:38:20 +02:00
|
|
|
accept_acl = 0;
|
2013-10-29 15:23:23 +01:00
|
|
|
err = hostapd_set_acl_list(hapd, conf->bss[0]->deny_mac,
|
|
|
|
conf->bss[0]->num_deny_mac,
|
2013-05-23 13:38:20 +02:00
|
|
|
accept_acl);
|
|
|
|
if (err) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Failed to set deny acl");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_DEBUG, "Mismatch between ACL Policy & Accept/deny lists file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-03 14:47:01 +01:00
|
|
|
static int start_ctrl_iface_bss(struct hostapd_data *hapd)
|
|
|
|
{
|
|
|
|
if (!hapd->iface->interfaces ||
|
|
|
|
!hapd->iface->interfaces->ctrl_iface_init)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (hapd->iface->interfaces->ctrl_iface_init(hapd)) {
|
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"Failed to setup control interface for %s",
|
|
|
|
hapd->conf->iface);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int start_ctrl_iface(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (!iface->interfaces || !iface->interfaces->ctrl_iface_init)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < iface->num_bss; i++) {
|
|
|
|
struct hostapd_data *hapd = iface->bss[i];
|
|
|
|
if (iface->interfaces->ctrl_iface_init(hapd)) {
|
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"Failed to setup control interface for %s",
|
|
|
|
hapd->conf->iface);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-03 15:33:11 +01:00
|
|
|
static void channel_list_update_timeout(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct hostapd_iface *iface = eloop_ctx;
|
|
|
|
|
|
|
|
if (!iface->wait_channel_update) {
|
|
|
|
wpa_printf(MSG_INFO, "Channel list update timeout, but interface was not waiting for it");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It is possible that the existing channel list is acceptable, so try
|
|
|
|
* to proceed.
|
|
|
|
*/
|
|
|
|
wpa_printf(MSG_DEBUG, "Channel list update timeout - try to continue anyway");
|
|
|
|
setup_interface2(iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void hostapd_channel_list_updated(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
if (!iface->wait_channel_update)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "Channel list updated - continue setup");
|
|
|
|
eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
|
|
|
|
setup_interface2(iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-21 19:39:33 +01:00
|
|
|
static int setup_interface(struct hostapd_iface *iface)
|
2008-02-28 02:34:43 +01:00
|
|
|
{
|
|
|
|
struct hostapd_data *hapd = iface->bss[0];
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
/*
|
2009-12-25 11:21:11 +01:00
|
|
|
* Make sure that all BSSes get configured with a pointer to the same
|
|
|
|
* driver interface.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
2009-12-25 11:21:11 +01:00
|
|
|
for (i = 1; i < iface->num_bss; i++) {
|
2008-02-28 02:34:43 +01:00
|
|
|
iface->bss[i]->driver = hapd->driver;
|
|
|
|
iface->bss[i]->drv_priv = hapd->drv_priv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hostapd_validate_bssid_configuration(iface))
|
|
|
|
return -1;
|
|
|
|
|
2013-11-03 14:47:01 +01:00
|
|
|
/*
|
|
|
|
* Initialize control interfaces early to allow external monitoring of
|
|
|
|
* channel setup operations that may take considerable amount of time
|
|
|
|
* especially for DFS cases.
|
|
|
|
*/
|
|
|
|
if (start_ctrl_iface(iface))
|
|
|
|
return -1;
|
|
|
|
|
2009-01-30 11:43:19 +01:00
|
|
|
if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
|
2013-11-03 15:33:11 +01:00
|
|
|
char country[4], previous_country[4];
|
|
|
|
|
2013-11-03 16:25:05 +01:00
|
|
|
hostapd_set_state(iface, HAPD_IFACE_COUNTRY_UPDATE);
|
2013-11-03 15:33:11 +01:00
|
|
|
if (hostapd_get_country(hapd, previous_country) < 0)
|
|
|
|
previous_country[0] = '\0';
|
|
|
|
|
2009-01-30 11:43:19 +01:00
|
|
|
os_memcpy(country, hapd->iconf->country, 3);
|
|
|
|
country[3] = '\0';
|
|
|
|
if (hostapd_set_country(hapd, country) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to set country code");
|
|
|
|
return -1;
|
|
|
|
}
|
2013-11-03 15:33:11 +01:00
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "Previous country code %s, new country code %s",
|
|
|
|
previous_country, country);
|
|
|
|
|
|
|
|
if (os_strncmp(previous_country, country, 2) != 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Continue interface setup after channel list update");
|
|
|
|
iface->wait_channel_update = 1;
|
|
|
|
eloop_register_timeout(1, 0,
|
|
|
|
channel_list_update_timeout,
|
|
|
|
iface, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
2013-11-03 15:33:11 +01:00
|
|
|
return setup_interface2(iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int setup_interface2(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
iface->wait_channel_update = 0;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
if (hostapd_get_hw_features(iface)) {
|
|
|
|
/* Not all drivers support this yet, so continue without hw
|
|
|
|
* feature data. */
|
|
|
|
} else {
|
2008-11-21 19:39:33 +01:00
|
|
|
int ret = hostapd_select_hw_mode(iface);
|
|
|
|
if (ret < 0) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Could not select hw_mode and "
|
|
|
|
"channel. (%d)", ret);
|
2008-11-21 19:39:33 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2013-08-31 10:49:51 +02:00
|
|
|
if (ret == 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Interface initialization will be completed in a callback (ACS)");
|
|
|
|
return 0;
|
|
|
|
}
|
2009-04-16 15:22:40 +02:00
|
|
|
ret = hostapd_check_ht_capab(iface);
|
|
|
|
if (ret < 0)
|
|
|
|
return -1;
|
|
|
|
if (ret == 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Interface initialization will "
|
|
|
|
"be completed in a callback");
|
|
|
|
return 0;
|
|
|
|
}
|
2013-10-15 19:27:25 +02:00
|
|
|
|
|
|
|
if (iface->conf->ieee80211h)
|
|
|
|
wpa_printf(MSG_DEBUG, "DFS support is enabled");
|
2009-04-16 15:22:40 +02:00
|
|
|
}
|
|
|
|
return hostapd_setup_interface_complete(iface, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err)
|
|
|
|
{
|
|
|
|
struct hostapd_data *hapd = iface->bss[0];
|
|
|
|
size_t j;
|
|
|
|
u8 *prev_addr;
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
wpa_printf(MSG_ERROR, "Interface initialization failed");
|
2013-11-03 16:25:05 +01:00
|
|
|
hostapd_set_state(iface, HAPD_IFACE_DISABLED);
|
2009-04-16 15:22:40 +02:00
|
|
|
eloop_terminate();
|
|
|
|
return -1;
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
2009-04-16 15:22:40 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "Completing interface initialization");
|
2008-11-21 19:39:33 +01:00
|
|
|
if (hapd->iconf->channel) {
|
2013-10-15 19:27:25 +02:00
|
|
|
#ifdef NEED_AP_MLME
|
|
|
|
int res;
|
|
|
|
#endif /* NEED_AP_MLME */
|
|
|
|
|
2010-04-11 19:33:33 +02:00
|
|
|
iface->freq = hostapd_hw_get_freq(hapd, hapd->iconf->channel);
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "Mode: %s Channel: %d "
|
|
|
|
"Frequency: %d MHz",
|
|
|
|
hostapd_hw_mode_txt(hapd->iconf->hw_mode),
|
2010-04-11 19:33:33 +02:00
|
|
|
hapd->iconf->channel, iface->freq);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2013-10-15 19:27:25 +02:00
|
|
|
#ifdef NEED_AP_MLME
|
|
|
|
/* Check DFS */
|
|
|
|
res = hostapd_handle_dfs(hapd);
|
|
|
|
if (res <= 0)
|
|
|
|
return res;
|
|
|
|
#endif /* NEED_AP_MLME */
|
|
|
|
|
2010-04-11 19:33:33 +02:00
|
|
|
if (hostapd_set_freq(hapd, hapd->iconf->hw_mode, iface->freq,
|
2009-03-30 16:55:37 +02:00
|
|
|
hapd->iconf->channel,
|
2008-11-26 09:44:04 +01:00
|
|
|
hapd->iconf->ieee80211n,
|
2012-12-28 16:24:21 +01:00
|
|
|
hapd->iconf->ieee80211ac,
|
|
|
|
hapd->iconf->secondary_channel,
|
|
|
|
hapd->iconf->vht_oper_chwidth,
|
|
|
|
hapd->iconf->vht_oper_centr_freq_seg0_idx,
|
|
|
|
hapd->iconf->vht_oper_centr_freq_seg1_idx)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Could not set channel for "
|
|
|
|
"kernel driver");
|
2008-11-21 19:39:33 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2010-11-09 15:17:50 +01:00
|
|
|
if (iface->current_mode) {
|
2011-12-03 11:20:17 +01:00
|
|
|
if (hostapd_prepare_rates(iface, iface->current_mode)) {
|
2010-11-09 15:17:50 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Failed to prepare rates "
|
|
|
|
"table.");
|
|
|
|
hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
|
|
|
|
HOSTAPD_LEVEL_WARNING,
|
|
|
|
"Failed to prepare rates table.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-21 19:39:33 +01:00
|
|
|
if (hapd->iconf->rts_threshold > -1 &&
|
|
|
|
hostapd_set_rts(hapd, hapd->iconf->rts_threshold)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Could not set RTS threshold for "
|
|
|
|
"kernel driver");
|
2008-11-21 19:39:33 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hapd->iconf->fragm_threshold > -1 &&
|
|
|
|
hostapd_set_frag(hapd, hapd->iconf->fragm_threshold)) {
|
2009-01-08 15:57:04 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Could not set fragmentation threshold "
|
|
|
|
"for kernel driver");
|
2008-11-21 19:39:33 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2008-11-21 19:39:33 +01:00
|
|
|
prev_addr = hapd->own_addr;
|
|
|
|
|
|
|
|
for (j = 0; j < iface->num_bss; j++) {
|
|
|
|
hapd = iface->bss[j];
|
|
|
|
if (j)
|
|
|
|
os_memcpy(hapd->own_addr, prev_addr, ETH_ALEN);
|
|
|
|
if (hostapd_setup_bss(hapd, j == 0))
|
|
|
|
return -1;
|
|
|
|
if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0)
|
|
|
|
prev_addr = hapd->own_addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
hostapd_tx_queue_params(iface);
|
|
|
|
|
|
|
|
ap_list_init(iface);
|
|
|
|
|
2013-05-23 13:38:20 +02:00
|
|
|
hostapd_set_acl(hapd);
|
|
|
|
|
2008-11-21 19:39:33 +01:00
|
|
|
if (hostapd_driver_commit(hapd) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "%s: Failed to commit driver "
|
|
|
|
"configuration", __func__);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-05-19 11:55:47 +02:00
|
|
|
/*
|
|
|
|
* WPS UPnP module can be initialized only when the "upnp_iface" is up.
|
|
|
|
* If "interface" and "upnp_iface" are the same (e.g., non-bridge
|
|
|
|
* mode), the interface is up only after driver_commit, so initialize
|
|
|
|
* WPS after driver_commit.
|
|
|
|
*/
|
|
|
|
for (j = 0; j < iface->num_bss; j++) {
|
|
|
|
if (hostapd_init_wps_complete(iface->bss[j]))
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-11-03 16:25:05 +01:00
|
|
|
hostapd_set_state(iface, HAPD_IFACE_ENABLED);
|
2013-11-03 16:30:49 +01:00
|
|
|
wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_ENABLED);
|
2011-03-19 12:11:15 +01:00
|
|
|
if (hapd->setup_complete_cb)
|
|
|
|
hapd->setup_complete_cb(hapd->setup_complete_cb_ctx);
|
|
|
|
|
2009-04-16 15:22:40 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
|
|
|
|
iface->bss[0]->conf->iface);
|
|
|
|
|
2009-03-26 18:09:25 +01:00
|
|
|
return 0;
|
2008-02-28 02:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 19:39:33 +01:00
|
|
|
* hostapd_setup_interface - Setup of an interface
|
2008-02-28 02:34:43 +01:00
|
|
|
* @iface: Pointer to interface data.
|
2008-11-21 19:39:33 +01:00
|
|
|
* Returns: 0 on success, -1 on failure
|
2008-02-28 02:34:43 +01:00
|
|
|
*
|
|
|
|
* Initializes the driver interface, validates the configuration,
|
|
|
|
* and sets driver parameters based on the configuration.
|
2008-11-21 19:39:33 +01:00
|
|
|
* Flushes old stations, sets the channel, encryption,
|
2008-02-28 02:34:43 +01:00
|
|
|
* beacons, and WDS links based on the configuration.
|
|
|
|
*/
|
2009-03-26 18:06:02 +01:00
|
|
|
int hostapd_setup_interface(struct hostapd_iface *iface)
|
2008-02-28 02:34:43 +01:00
|
|
|
{
|
2008-11-21 19:39:33 +01:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = setup_interface(iface);
|
|
|
|
if (ret) {
|
2009-12-25 10:51:20 +01:00
|
|
|
wpa_printf(MSG_ERROR, "%s: Unable to setup interface.",
|
2008-02-28 02:34:43 +01:00
|
|
|
iface->bss[0]->conf->iface);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hostapd_alloc_bss_data - Allocate and initialize per-BSS data
|
|
|
|
* @hapd_iface: Pointer to interface data
|
|
|
|
* @conf: Pointer to per-interface configuration
|
|
|
|
* @bss: Pointer to per-BSS configuration for this BSS
|
|
|
|
* Returns: Pointer to allocated BSS data
|
|
|
|
*
|
|
|
|
* This function is used to allocate per-BSS data structure. This data will be
|
|
|
|
* freed after hostapd_cleanup() is called for it during interface
|
|
|
|
* deinitialization.
|
|
|
|
*/
|
2009-03-26 18:23:41 +01:00
|
|
|
struct hostapd_data *
|
2008-02-28 02:34:43 +01:00
|
|
|
hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
|
|
|
|
struct hostapd_config *conf,
|
|
|
|
struct hostapd_bss_config *bss)
|
|
|
|
{
|
|
|
|
struct hostapd_data *hapd;
|
|
|
|
|
|
|
|
hapd = os_zalloc(sizeof(*hapd));
|
|
|
|
if (hapd == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-12-24 22:42:13 +01:00
|
|
|
hapd->new_assoc_sta_cb = hostapd_new_assoc_sta;
|
2008-02-28 02:34:43 +01:00
|
|
|
hapd->iconf = conf;
|
|
|
|
hapd->conf = bss;
|
|
|
|
hapd->iface = hapd_iface;
|
|
|
|
hapd->driver = hapd->iconf->driver;
|
2012-02-16 18:44:43 +01:00
|
|
|
hapd->ctrl_sock = -1;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
return hapd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
void hostapd_interface_deinit(struct hostapd_iface *iface)
|
2009-01-09 17:04:57 +01:00
|
|
|
{
|
2013-10-31 00:34:32 +01:00
|
|
|
int j;
|
2009-01-09 17:04:57 +01:00
|
|
|
|
|
|
|
if (iface == NULL)
|
|
|
|
return;
|
|
|
|
|
2013-11-03 15:33:11 +01:00
|
|
|
eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
|
|
|
|
iface->wait_channel_update = 0;
|
|
|
|
|
2009-01-09 17:04:57 +01:00
|
|
|
hostapd_cleanup_iface_pre(iface);
|
2013-10-31 00:34:32 +01:00
|
|
|
for (j = iface->num_bss - 1; j >= 0; j--) {
|
2009-01-09 17:04:57 +01:00
|
|
|
struct hostapd_data *hapd = iface->bss[j];
|
|
|
|
hostapd_free_stas(hapd);
|
2012-04-03 15:17:38 +02:00
|
|
|
hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
|
2012-02-16 18:48:48 +01:00
|
|
|
hostapd_clear_wep(hapd);
|
2009-01-09 17:04:57 +01:00
|
|
|
hostapd_cleanup(hapd);
|
|
|
|
}
|
2009-12-27 20:31:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void hostapd_interface_free(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
size_t j;
|
2009-01-09 17:04:57 +01:00
|
|
|
for (j = 0; j < iface->num_bss; j++)
|
|
|
|
os_free(iface->bss[j]);
|
|
|
|
hostapd_cleanup_iface(iface);
|
|
|
|
}
|
2009-06-12 17:13:40 +02:00
|
|
|
|
|
|
|
|
2013-10-29 15:27:30 +01:00
|
|
|
/**
|
|
|
|
* hostapd_init - Allocate and initialize per-interface data
|
|
|
|
* @config_file: Path to the configuration file
|
|
|
|
* Returns: Pointer to the allocated interface data or %NULL on failure
|
|
|
|
*
|
|
|
|
* This function is used to allocate main data structures for per-interface
|
|
|
|
* data. The allocated data buffer will be freed by calling
|
|
|
|
* hostapd_cleanup_iface().
|
|
|
|
*/
|
|
|
|
struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
|
|
|
|
const char *config_file)
|
|
|
|
{
|
|
|
|
struct hostapd_iface *hapd_iface = NULL;
|
|
|
|
struct hostapd_config *conf = NULL;
|
|
|
|
struct hostapd_data *hapd;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
hapd_iface = os_zalloc(sizeof(*hapd_iface));
|
|
|
|
if (hapd_iface == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
hapd_iface->config_fname = os_strdup(config_file);
|
|
|
|
if (hapd_iface->config_fname == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
conf = interfaces->config_read_cb(hapd_iface->config_fname);
|
|
|
|
if (conf == NULL)
|
|
|
|
goto fail;
|
|
|
|
hapd_iface->conf = conf;
|
|
|
|
|
|
|
|
hapd_iface->num_bss = conf->num_bss;
|
|
|
|
hapd_iface->bss = os_calloc(conf->num_bss,
|
|
|
|
sizeof(struct hostapd_data *));
|
|
|
|
if (hapd_iface->bss == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
for (i = 0; i < conf->num_bss; i++) {
|
|
|
|
hapd = hapd_iface->bss[i] =
|
|
|
|
hostapd_alloc_bss_data(hapd_iface, conf,
|
|
|
|
conf->bss[i]);
|
|
|
|
if (hapd == NULL)
|
|
|
|
goto fail;
|
|
|
|
hapd->msg_ctx = hapd;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hapd_iface;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to set up interface with %s",
|
|
|
|
config_file);
|
|
|
|
if (conf)
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
if (hapd_iface) {
|
|
|
|
os_free(hapd_iface->config_fname);
|
|
|
|
os_free(hapd_iface->bss);
|
|
|
|
os_free(hapd_iface);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-23 09:10:22 +02:00
|
|
|
static int ifname_in_use(struct hapd_interfaces *interfaces, const char *ifname)
|
|
|
|
{
|
|
|
|
size_t i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < interfaces->count; i++) {
|
|
|
|
struct hostapd_iface *iface = interfaces->iface[i];
|
|
|
|
for (j = 0; j < iface->num_bss; j++) {
|
|
|
|
struct hostapd_data *hapd = iface->bss[j];
|
|
|
|
if (os_strcmp(ifname, hapd->conf->iface) == 0)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-29 15:29:49 +01:00
|
|
|
struct hostapd_iface *
|
|
|
|
hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
|
|
|
|
const char *config_fname, int debug)
|
|
|
|
{
|
|
|
|
struct hostapd_iface *new_iface = NULL, *iface = NULL;
|
|
|
|
struct hostapd_data *hapd;
|
|
|
|
int k;
|
|
|
|
size_t i, bss_idx;
|
|
|
|
|
|
|
|
if (!phy || !*phy)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < interfaces->count; i++) {
|
|
|
|
if (os_strcmp(interfaces->iface[i]->phy, phy) == 0) {
|
|
|
|
iface = interfaces->iface[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_ERROR, "Configuration file: %s (phy %s)%s",
|
|
|
|
config_fname, phy, iface ? "" : " --> new PHY");
|
|
|
|
if (iface) {
|
|
|
|
struct hostapd_config *conf;
|
|
|
|
struct hostapd_bss_config **tmp_conf;
|
|
|
|
struct hostapd_data **tmp_bss;
|
|
|
|
struct hostapd_bss_config *bss;
|
2013-10-23 09:10:22 +02:00
|
|
|
const char *ifname;
|
2013-10-29 15:29:49 +01:00
|
|
|
|
|
|
|
/* Add new BSS to existing iface */
|
|
|
|
conf = interfaces->config_read_cb(config_fname);
|
|
|
|
if (conf == NULL)
|
|
|
|
return NULL;
|
|
|
|
if (conf->num_bss > 1) {
|
|
|
|
wpa_printf(MSG_ERROR, "Multiple BSSes specified in BSS-config");
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-10-23 09:10:22 +02:00
|
|
|
ifname = conf->bss[0]->iface;
|
|
|
|
if (ifname[0] != '\0' && ifname_in_use(interfaces, ifname)) {
|
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"Interface name %s already in use", ifname);
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-10-29 15:29:49 +01:00
|
|
|
tmp_conf = os_realloc_array(
|
|
|
|
iface->conf->bss, iface->conf->num_bss + 1,
|
|
|
|
sizeof(struct hostapd_bss_config *));
|
|
|
|
tmp_bss = os_realloc_array(iface->bss, iface->num_bss + 1,
|
|
|
|
sizeof(struct hostapd_data *));
|
|
|
|
if (tmp_bss)
|
|
|
|
iface->bss = tmp_bss;
|
|
|
|
if (tmp_conf) {
|
|
|
|
iface->conf->bss = tmp_conf;
|
|
|
|
iface->conf->last_bss = tmp_conf[0];
|
|
|
|
}
|
|
|
|
if (tmp_bss == NULL || tmp_conf == NULL) {
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
bss = iface->conf->bss[iface->conf->num_bss] = conf->bss[0];
|
|
|
|
iface->conf->num_bss++;
|
|
|
|
|
|
|
|
hapd = hostapd_alloc_bss_data(iface, iface->conf, bss);
|
|
|
|
if (hapd == NULL) {
|
|
|
|
iface->conf->num_bss--;
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
iface->conf->last_bss = bss;
|
|
|
|
iface->bss[iface->num_bss] = hapd;
|
|
|
|
hapd->msg_ctx = hapd;
|
|
|
|
|
|
|
|
bss_idx = iface->num_bss++;
|
|
|
|
conf->num_bss--;
|
|
|
|
conf->bss[0] = NULL;
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
} else {
|
|
|
|
/* Add a new iface with the first BSS */
|
|
|
|
new_iface = iface = hostapd_init(interfaces, config_fname);
|
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
|
|
|
os_strlcpy(iface->phy, phy, sizeof(iface->phy));
|
|
|
|
iface->interfaces = interfaces;
|
|
|
|
bss_idx = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (k = 0; k < debug; k++) {
|
|
|
|
if (iface->bss[bss_idx]->conf->logger_stdout_level > 0)
|
|
|
|
iface->bss[bss_idx]->conf->logger_stdout_level--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iface->conf->bss[bss_idx]->iface[0] == '\0' &&
|
|
|
|
!hostapd_drv_none(iface->bss[bss_idx])) {
|
|
|
|
wpa_printf(MSG_ERROR, "Interface name not specified in %s",
|
|
|
|
config_fname);
|
|
|
|
if (new_iface)
|
|
|
|
hostapd_interface_deinit_free(new_iface);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-16 19:42:40 +01:00
|
|
|
void hostapd_interface_deinit_free(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
const struct wpa_driver_ops *driver;
|
|
|
|
void *drv_priv;
|
|
|
|
if (iface == NULL)
|
|
|
|
return;
|
|
|
|
driver = iface->bss[0]->driver;
|
|
|
|
drv_priv = iface->bss[0]->drv_priv;
|
|
|
|
hostapd_interface_deinit(iface);
|
|
|
|
if (driver && driver->hapd_deinit && drv_priv)
|
|
|
|
driver->hapd_deinit(drv_priv);
|
|
|
|
hostapd_interface_free(iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int hostapd_enable_iface(struct hostapd_iface *hapd_iface)
|
|
|
|
{
|
|
|
|
if (hapd_iface->bss[0]->drv_priv != NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "Interface %s already enabled",
|
2013-10-29 15:23:23 +01:00
|
|
|
hapd_iface->conf->bss[0]->iface);
|
2011-12-16 19:42:40 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "Enable interface %s",
|
2013-10-29 15:23:23 +01:00
|
|
|
hapd_iface->conf->bss[0]->iface);
|
2011-12-16 19:42:40 +01:00
|
|
|
|
|
|
|
if (hapd_iface->interfaces == NULL ||
|
|
|
|
hapd_iface->interfaces->driver_init == NULL ||
|
2013-11-02 18:49:01 +01:00
|
|
|
hapd_iface->interfaces->driver_init(hapd_iface))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (hostapd_setup_interface(hapd_iface)) {
|
|
|
|
const struct wpa_driver_ops *driver;
|
|
|
|
void *drv_priv;
|
|
|
|
|
|
|
|
driver = hapd_iface->bss[0]->driver;
|
|
|
|
drv_priv = hapd_iface->bss[0]->drv_priv;
|
|
|
|
if (driver && driver->hapd_deinit && drv_priv) {
|
|
|
|
driver->hapd_deinit(drv_priv);
|
|
|
|
hapd_iface->bss[0]->drv_priv = NULL;
|
|
|
|
}
|
2011-12-16 19:42:40 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2013-11-02 18:49:01 +01:00
|
|
|
|
2011-12-16 19:42:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int hostapd_reload_iface(struct hostapd_iface *hapd_iface)
|
|
|
|
{
|
|
|
|
size_t j;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "Reload interface %s",
|
2013-10-29 15:23:23 +01:00
|
|
|
hapd_iface->conf->bss[0]->iface);
|
2013-10-29 15:42:39 +01:00
|
|
|
for (j = 0; j < hapd_iface->num_bss; j++)
|
|
|
|
hostapd_set_security_params(hapd_iface->conf->bss[j]);
|
|
|
|
if (hostapd_config_check(hapd_iface->conf) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "Updated configuration is invalid");
|
|
|
|
return -1;
|
|
|
|
}
|
2013-10-29 15:09:34 +01:00
|
|
|
hostapd_clear_old(hapd_iface);
|
|
|
|
for (j = 0; j < hapd_iface->num_bss; j++)
|
2011-12-16 19:42:40 +01:00
|
|
|
hostapd_reload_bss(hapd_iface->bss[j]);
|
2013-10-29 15:09:34 +01:00
|
|
|
|
2011-12-16 19:42:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int hostapd_disable_iface(struct hostapd_iface *hapd_iface)
|
|
|
|
{
|
|
|
|
size_t j;
|
|
|
|
const struct wpa_driver_ops *driver;
|
|
|
|
void *drv_priv;
|
|
|
|
|
|
|
|
if (hapd_iface == NULL)
|
|
|
|
return -1;
|
2013-11-03 16:30:49 +01:00
|
|
|
wpa_msg(hapd_iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
|
2011-12-16 19:42:40 +01:00
|
|
|
driver = hapd_iface->bss[0]->driver;
|
|
|
|
drv_priv = hapd_iface->bss[0]->drv_priv;
|
|
|
|
|
|
|
|
/* whatever hostapd_interface_deinit does */
|
|
|
|
for (j = 0; j < hapd_iface->num_bss; j++) {
|
|
|
|
struct hostapd_data *hapd = hapd_iface->bss[j];
|
|
|
|
hostapd_free_stas(hapd);
|
|
|
|
hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
|
|
|
|
hostapd_clear_wep(hapd);
|
|
|
|
hostapd_free_hapd_data(hapd);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (driver && driver->hapd_deinit && drv_priv) {
|
|
|
|
driver->hapd_deinit(drv_priv);
|
|
|
|
hapd_iface->bss[0]->drv_priv = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* From hostapd_cleanup_iface: These were initialized in
|
|
|
|
* hostapd_setup_interface and hostapd_setup_interface_complete
|
|
|
|
*/
|
|
|
|
hostapd_cleanup_iface_partial(hapd_iface);
|
|
|
|
|
2013-09-25 18:24:17 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "Interface %s disabled",
|
|
|
|
hapd_iface->bss[0]->conf->iface);
|
2013-11-03 16:25:05 +01:00
|
|
|
hostapd_set_state(hapd_iface, HAPD_IFACE_DISABLED);
|
2011-12-16 19:42:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-25 10:37:12 +02:00
|
|
|
|
|
|
|
static struct hostapd_iface *
|
|
|
|
hostapd_iface_alloc(struct hapd_interfaces *interfaces)
|
|
|
|
{
|
|
|
|
struct hostapd_iface **iface, *hapd_iface;
|
|
|
|
|
|
|
|
iface = os_realloc_array(interfaces->iface, interfaces->count + 1,
|
|
|
|
sizeof(struct hostapd_iface *));
|
|
|
|
if (iface == NULL)
|
|
|
|
return NULL;
|
|
|
|
interfaces->iface = iface;
|
|
|
|
hapd_iface = interfaces->iface[interfaces->count] =
|
|
|
|
os_zalloc(sizeof(*hapd_iface));
|
|
|
|
if (hapd_iface == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
|
|
|
|
"the interface", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
interfaces->count++;
|
|
|
|
hapd_iface->interfaces = interfaces;
|
|
|
|
|
|
|
|
return hapd_iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct hostapd_config *
|
|
|
|
hostapd_config_alloc(struct hapd_interfaces *interfaces, const char *ifname,
|
|
|
|
const char *ctrl_iface)
|
|
|
|
{
|
|
|
|
struct hostapd_bss_config *bss;
|
|
|
|
struct hostapd_config *conf;
|
|
|
|
|
|
|
|
/* Allocates memory for bss and conf */
|
|
|
|
conf = hostapd_config_defaults();
|
|
|
|
if (conf == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
|
|
|
|
"configuration", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
conf->driver = wpa_drivers[0];
|
|
|
|
if (conf->driver == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "No driver wrappers registered!");
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-10-29 15:23:23 +01:00
|
|
|
bss = conf->last_bss = conf->bss[0];
|
2012-08-25 10:37:12 +02:00
|
|
|
|
|
|
|
os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
|
|
|
|
bss->ctrl_interface = os_strdup(ctrl_iface);
|
|
|
|
if (bss->ctrl_interface == NULL) {
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reading configuration file skipped, will be done in SET!
|
|
|
|
* From reading the configuration till the end has to be done in
|
|
|
|
* SET
|
|
|
|
*/
|
|
|
|
return conf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct hostapd_iface * hostapd_data_alloc(
|
|
|
|
struct hapd_interfaces *interfaces, struct hostapd_config *conf)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
struct hostapd_iface *hapd_iface =
|
|
|
|
interfaces->iface[interfaces->count - 1];
|
|
|
|
struct hostapd_data *hapd;
|
|
|
|
|
|
|
|
hapd_iface->conf = conf;
|
|
|
|
hapd_iface->num_bss = conf->num_bss;
|
|
|
|
|
|
|
|
hapd_iface->bss = os_zalloc(conf->num_bss *
|
|
|
|
sizeof(struct hostapd_data *));
|
|
|
|
if (hapd_iface->bss == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < conf->num_bss; i++) {
|
|
|
|
hapd = hapd_iface->bss[i] =
|
2013-10-29 15:23:23 +01:00
|
|
|
hostapd_alloc_bss_data(hapd_iface, conf, conf->bss[i]);
|
2012-08-25 10:37:12 +02:00
|
|
|
if (hapd == NULL)
|
|
|
|
return NULL;
|
|
|
|
hapd->msg_ctx = hapd;
|
|
|
|
}
|
|
|
|
|
|
|
|
hapd_iface->interfaces = interfaces;
|
|
|
|
|
|
|
|
return hapd_iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int hostapd_add_iface(struct hapd_interfaces *interfaces, char *buf)
|
|
|
|
{
|
|
|
|
struct hostapd_config *conf = NULL;
|
2013-10-23 09:10:22 +02:00
|
|
|
struct hostapd_iface *hapd_iface = NULL, *new_iface = NULL;
|
|
|
|
struct hostapd_data *hapd;
|
2012-08-25 10:37:12 +02:00
|
|
|
char *ptr;
|
2013-10-23 09:10:22 +02:00
|
|
|
size_t i, j;
|
|
|
|
const char *conf_file = NULL, *phy_name = NULL;
|
|
|
|
|
|
|
|
if (os_strncmp(buf, "bss_config=", 11) == 0) {
|
|
|
|
char *pos;
|
|
|
|
phy_name = buf + 11;
|
|
|
|
pos = os_strchr(phy_name, ':');
|
|
|
|
if (!pos)
|
|
|
|
return -1;
|
|
|
|
*pos++ = '\0';
|
|
|
|
conf_file = pos;
|
|
|
|
if (!os_strlen(conf_file))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
hapd_iface = hostapd_interface_init_bss(interfaces, phy_name,
|
|
|
|
conf_file, 0);
|
|
|
|
if (!hapd_iface)
|
|
|
|
return -1;
|
|
|
|
for (j = 0; j < interfaces->count; j++) {
|
|
|
|
if (interfaces->iface[j] == hapd_iface)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (j == interfaces->count) {
|
|
|
|
struct hostapd_iface **tmp;
|
|
|
|
tmp = os_realloc_array(interfaces->iface,
|
|
|
|
interfaces->count + 1,
|
|
|
|
sizeof(struct hostapd_iface *));
|
|
|
|
if (!tmp) {
|
|
|
|
hostapd_interface_deinit_free(hapd_iface);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
interfaces->iface = tmp;
|
|
|
|
interfaces->iface[interfaces->count++] = hapd_iface;
|
|
|
|
new_iface = hapd_iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_iface) {
|
|
|
|
if (interfaces->driver_init(hapd_iface) ||
|
|
|
|
hostapd_setup_interface(hapd_iface)) {
|
|
|
|
interfaces->count--;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Assign new BSS with bss[0]'s driver info */
|
|
|
|
hapd = hapd_iface->bss[hapd_iface->num_bss - 1];
|
|
|
|
hapd->driver = hapd_iface->bss[0]->driver;
|
|
|
|
hapd->drv_priv = hapd_iface->bss[0]->drv_priv;
|
|
|
|
os_memcpy(hapd->own_addr, hapd_iface->bss[0]->own_addr,
|
|
|
|
ETH_ALEN);
|
|
|
|
|
2013-11-03 14:47:01 +01:00
|
|
|
if (start_ctrl_iface_bss(hapd) < 0 ||
|
|
|
|
hostapd_setup_bss(hapd, -1)) {
|
2013-10-23 09:10:22 +02:00
|
|
|
hapd_iface->conf->num_bss--;
|
|
|
|
hapd_iface->num_bss--;
|
|
|
|
os_free(hapd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2012-08-25 10:37:12 +02:00
|
|
|
|
|
|
|
ptr = os_strchr(buf, ' ');
|
|
|
|
if (ptr == NULL)
|
|
|
|
return -1;
|
|
|
|
*ptr++ = '\0';
|
|
|
|
|
2013-09-25 18:07:29 +02:00
|
|
|
if (os_strncmp(ptr, "config=", 7) == 0)
|
|
|
|
conf_file = ptr + 7;
|
|
|
|
|
2012-08-25 10:37:12 +02:00
|
|
|
for (i = 0; i < interfaces->count; i++) {
|
2013-10-29 15:23:23 +01:00
|
|
|
if (!os_strcmp(interfaces->iface[i]->conf->bss[0]->iface,
|
2012-08-25 10:37:12 +02:00
|
|
|
buf)) {
|
|
|
|
wpa_printf(MSG_INFO, "Cannot add interface - it "
|
|
|
|
"already exists");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hapd_iface = hostapd_iface_alloc(interfaces);
|
|
|
|
if (hapd_iface == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
|
|
|
|
"for interface", __func__);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2013-09-25 18:07:29 +02:00
|
|
|
if (conf_file && interfaces->config_read_cb) {
|
|
|
|
conf = interfaces->config_read_cb(conf_file);
|
|
|
|
if (conf && conf->bss)
|
2013-10-29 15:23:23 +01:00
|
|
|
os_strlcpy(conf->bss[0]->iface, buf,
|
|
|
|
sizeof(conf->bss[0]->iface));
|
2013-09-25 18:07:29 +02:00
|
|
|
} else
|
|
|
|
conf = hostapd_config_alloc(interfaces, buf, ptr);
|
|
|
|
if (conf == NULL || conf->bss == NULL) {
|
2012-08-25 10:37:12 +02:00
|
|
|
wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
|
|
|
|
"for configuration", __func__);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
hapd_iface = hostapd_data_alloc(interfaces, conf);
|
|
|
|
if (hapd_iface == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
|
|
|
|
"for hostapd", __func__);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hapd_iface->interfaces &&
|
|
|
|
hapd_iface->interfaces->ctrl_iface_init &&
|
|
|
|
hapd_iface->interfaces->ctrl_iface_init(hapd_iface->bss[0])) {
|
|
|
|
wpa_printf(MSG_ERROR, "%s: Failed to setup control "
|
|
|
|
"interface", __func__);
|
|
|
|
goto fail;
|
|
|
|
}
|
2013-10-29 15:23:23 +01:00
|
|
|
wpa_printf(MSG_INFO, "Add interface '%s'", conf->bss[0]->iface);
|
2012-08-25 10:37:12 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (conf)
|
|
|
|
hostapd_config_free(conf);
|
|
|
|
if (hapd_iface) {
|
2013-10-29 15:32:23 +01:00
|
|
|
if (hapd_iface->bss) {
|
|
|
|
for (i = 0; i < hapd_iface->num_bss; i++)
|
|
|
|
os_free(hapd_iface->bss[i]);
|
|
|
|
os_free(hapd_iface->bss);
|
|
|
|
}
|
2012-08-25 10:37:12 +02:00
|
|
|
os_free(hapd_iface);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-17 17:56:30 +02:00
|
|
|
static int hostapd_remove_bss(struct hostapd_iface *iface, unsigned int idx)
|
|
|
|
{
|
|
|
|
struct hostapd_data *hapd;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (idx > iface->num_bss || idx > iface->conf->num_bss)
|
|
|
|
return -1;
|
|
|
|
hapd = iface->bss[idx];
|
|
|
|
wpa_printf(MSG_INFO, "Remove BSS '%s'", hapd->conf->iface);
|
|
|
|
|
|
|
|
hostapd_free_stas(hapd);
|
|
|
|
hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
|
|
|
|
hostapd_clear_wep(hapd);
|
|
|
|
hostapd_cleanup(hapd);
|
|
|
|
hostapd_config_free_bss(hapd->conf);
|
|
|
|
os_free(hapd);
|
|
|
|
|
|
|
|
iface->num_bss--;
|
|
|
|
for (i = idx; i < iface->num_bss; i++)
|
|
|
|
iface->bss[i] = iface->bss[i + 1];
|
|
|
|
|
|
|
|
iface->conf->num_bss--;
|
|
|
|
for (i = idx; i < iface->num_bss; i++)
|
|
|
|
iface->conf->bss[i] = iface->conf->bss[i + 1];
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-25 10:37:12 +02:00
|
|
|
int hostapd_remove_iface(struct hapd_interfaces *interfaces, char *buf)
|
|
|
|
{
|
|
|
|
struct hostapd_iface *hapd_iface;
|
2013-10-17 17:56:30 +02:00
|
|
|
size_t i, j, k = 0;
|
2012-08-25 10:37:12 +02:00
|
|
|
|
|
|
|
for (i = 0; i < interfaces->count; i++) {
|
|
|
|
hapd_iface = interfaces->iface[i];
|
|
|
|
if (hapd_iface == NULL)
|
|
|
|
return -1;
|
2013-10-17 17:56:30 +02:00
|
|
|
if (hapd_iface->conf->num_bss == 1 &&
|
|
|
|
!os_strcmp(hapd_iface->conf->bss[0]->iface, buf)) {
|
2012-08-25 10:37:12 +02:00
|
|
|
wpa_printf(MSG_INFO, "Remove interface '%s'", buf);
|
|
|
|
hostapd_interface_deinit_free(hapd_iface);
|
|
|
|
k = i;
|
|
|
|
while (k < (interfaces->count - 1)) {
|
|
|
|
interfaces->iface[k] =
|
|
|
|
interfaces->iface[k + 1];
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
interfaces->count--;
|
|
|
|
return 0;
|
|
|
|
}
|
2013-10-17 17:56:30 +02:00
|
|
|
|
|
|
|
for (j = 0; j < hapd_iface->conf->num_bss; j++) {
|
|
|
|
if (!os_strcmp(hapd_iface->conf->bss[j]->iface, buf))
|
|
|
|
return hostapd_remove_bss(hapd_iface, j);
|
|
|
|
}
|
2012-08-25 10:37:12 +02:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-12-16 19:42:40 +01:00
|
|
|
|
2009-12-24 22:30:32 +01:00
|
|
|
/**
|
|
|
|
* hostapd_new_assoc_sta - Notify that a new station associated with the AP
|
|
|
|
* @hapd: Pointer to BSS data
|
|
|
|
* @sta: Pointer to the associated STA data
|
|
|
|
* @reassoc: 1 to indicate this was a re-association; 0 = first association
|
|
|
|
*
|
|
|
|
* This function will be called whenever a station associates with the AP. It
|
|
|
|
* can be called from ieee802_11.c for drivers that export MLME to hostapd and
|
|
|
|
* from drv_callbacks.c based on driver events for drivers that take care of
|
|
|
|
* management frames (IEEE 802.11 authentication and association) internally.
|
|
|
|
*/
|
|
|
|
void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
int reassoc)
|
|
|
|
{
|
|
|
|
if (hapd->tkip_countermeasures) {
|
2010-11-24 14:36:02 +01:00
|
|
|
hostapd_drv_sta_deauth(hapd, sta->addr,
|
|
|
|
WLAN_REASON_MICHAEL_MIC_FAILURE);
|
2009-12-24 22:30:32 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-25 13:06:26 +01:00
|
|
|
hostapd_prune_associations(hapd, sta->addr);
|
2009-12-24 22:30:32 +01:00
|
|
|
|
|
|
|
/* IEEE 802.11F (IAPP) */
|
|
|
|
if (hapd->conf->ieee802_11f)
|
|
|
|
iapp_new_station(hapd->iapp, sta);
|
|
|
|
|
2010-07-09 02:14:24 +02:00
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
if (sta->p2p_ie == NULL && !sta->no_p2p_set) {
|
|
|
|
sta->no_p2p_set = 1;
|
|
|
|
hapd->num_sta_no_p2p++;
|
|
|
|
if (hapd->num_sta_no_p2p == 1)
|
|
|
|
hostapd_p2p_non_p2p_sta_connected(hapd);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_P2P */
|
|
|
|
|
2009-12-24 22:30:32 +01:00
|
|
|
/* Start accounting here, if IEEE 802.1X and WPA are not used.
|
|
|
|
* IEEE 802.1X/WPA code will start accounting after the station has
|
|
|
|
* been authorized. */
|
2012-09-26 12:52:19 +02:00
|
|
|
if (!hapd->conf->ieee802_1x && !hapd->conf->wpa) {
|
|
|
|
os_get_time(&sta->connected_time);
|
2009-12-24 22:30:32 +01:00
|
|
|
accounting_sta_start(hapd, sta);
|
2012-09-26 12:52:19 +02:00
|
|
|
}
|
2009-12-24 22:30:32 +01:00
|
|
|
|
|
|
|
/* Start IEEE 802.1X authentication process for new stations */
|
|
|
|
ieee802_1x_new_station(hapd, sta);
|
|
|
|
if (reassoc) {
|
|
|
|
if (sta->auth_alg != WLAN_AUTH_FT &&
|
|
|
|
!(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
|
|
|
|
wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
|
|
|
|
} else
|
|
|
|
wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
|
2012-04-11 13:21:35 +02:00
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
|
|
|
|
"for " MACSTR " (%d seconds - ap_max_inactivity)",
|
|
|
|
__func__, MAC2STR(sta->addr),
|
|
|
|
hapd->conf->ap_max_inactivity);
|
|
|
|
eloop_cancel_timeout(ap_handle_timer, hapd, sta);
|
|
|
|
eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
|
|
|
|
ap_handle_timer, hapd, sta);
|
2009-12-24 22:30:32 +01:00
|
|
|
}
|
2013-11-03 16:25:05 +01:00
|
|
|
|
|
|
|
|
2013-11-03 17:13:14 +01:00
|
|
|
const char * hostapd_state_text(enum hostapd_iface_state s)
|
2013-11-03 16:25:05 +01:00
|
|
|
{
|
|
|
|
switch (s) {
|
|
|
|
case HAPD_IFACE_UNINITIALIZED:
|
|
|
|
return "UNINITIALIZED";
|
|
|
|
case HAPD_IFACE_DISABLED:
|
|
|
|
return "DISABLED";
|
|
|
|
case HAPD_IFACE_COUNTRY_UPDATE:
|
|
|
|
return "COUNTRY_UPDATE";
|
|
|
|
case HAPD_IFACE_ACS:
|
|
|
|
return "ACS";
|
|
|
|
case HAPD_IFACE_HT_SCAN:
|
|
|
|
return "HT_SCAN";
|
|
|
|
case HAPD_IFACE_DFS:
|
|
|
|
return "DFS";
|
|
|
|
case HAPD_IFACE_ENABLED:
|
|
|
|
return "ENABLED";
|
|
|
|
}
|
|
|
|
|
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_INFO, "%s: interface state %s->%s",
|
|
|
|
iface->conf->bss[0]->iface, hostapd_state_text(iface->state),
|
|
|
|
hostapd_state_text(s));
|
|
|
|
iface->state = s;
|
|
|
|
}
|