2009-03-25 12:23:42 +02:00
|
|
|
/*
|
|
|
|
* WPA Supplicant - Basic AP mode support routines
|
|
|
|
* Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
|
|
|
|
* Copyright (c) 2009, Atheros Communications
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "../hostapd/hostapd.h"
|
2009-03-25 16:35:26 +02:00
|
|
|
#include "../hostapd/config.h"
|
2009-03-26 20:37:05 +02:00
|
|
|
#include "../hostapd/driver.h"
|
2009-03-25 12:23:42 +02:00
|
|
|
#include "eap_common/eap_defs.h"
|
|
|
|
#include "eap_server/eap_methods.h"
|
|
|
|
#include "eap_common/eap_wsc_common.h"
|
2009-03-26 16:08:17 +02:00
|
|
|
#include "config_ssid.h"
|
|
|
|
#include "wpa_supplicant_i.h"
|
2009-03-26 20:37:05 +02:00
|
|
|
#include "driver_i.h"
|
|
|
|
#include "ap.h"
|
2009-03-25 12:23:42 +02:00
|
|
|
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
int hostapd_for_each_interface(int (*cb)(struct hostapd_iface *iface,
|
|
|
|
void *ctx), void *ctx)
|
2009-03-25 12:23:42 +02:00
|
|
|
{
|
|
|
|
/* TODO */
|
2009-03-26 20:37:05 +02:00
|
|
|
return 0;
|
2009-03-25 12:23:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
|
2009-03-25 12:23:42 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
|
2009-03-25 12:23:42 +02:00
|
|
|
{
|
2009-03-26 20:37:05 +02:00
|
|
|
}
|
2009-03-25 12:23:42 +02:00
|
|
|
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
struct ap_driver_data {
|
|
|
|
struct hostapd_data *hapd;
|
|
|
|
};
|
2009-03-25 12:23:42 +02:00
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
|
|
|
|
static void * ap_driver_init(struct hostapd_data *hapd)
|
|
|
|
{
|
|
|
|
struct ap_driver_data *drv;
|
|
|
|
|
|
|
|
drv = os_zalloc(sizeof(struct ap_driver_data));
|
|
|
|
if (drv == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "Could not allocate memory for AP "
|
|
|
|
"driver data");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
drv->hapd = hapd;
|
|
|
|
|
|
|
|
return drv;
|
2009-03-25 12:23:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
static void ap_driver_deinit(void *priv)
|
2009-03-25 12:23:42 +02:00
|
|
|
{
|
2009-03-26 20:37:05 +02:00
|
|
|
struct ap_driver_data *drv = priv;
|
|
|
|
|
|
|
|
os_free(drv);
|
2009-03-25 12:23:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
static int ap_driver_send_ether(void *priv, const u8 *dst, const u8 *src,
|
|
|
|
u16 proto, const u8 *data, size_t data_len)
|
2009-03-25 12:23:42 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
static struct hapd_driver_ops ap_driver_ops =
|
2009-03-25 12:23:42 +02:00
|
|
|
{
|
2009-03-26 20:37:05 +02:00
|
|
|
.name = "wpa_supplicant",
|
|
|
|
.init = ap_driver_init,
|
|
|
|
.deinit = ap_driver_deinit,
|
|
|
|
.send_ether = ap_driver_send_ether,
|
|
|
|
};
|
2009-03-25 12:23:42 +02:00
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
struct hapd_driver_ops *hostapd_drivers[] =
|
|
|
|
{
|
|
|
|
&ap_driver_ops,
|
|
|
|
NULL
|
|
|
|
};
|
2009-03-25 12:23:42 +02:00
|
|
|
|
2009-03-27 16:45:47 +02:00
|
|
|
|
|
|
|
static int wpa_supplicant_conf_ap(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid,
|
|
|
|
struct hostapd_config *conf)
|
|
|
|
{
|
|
|
|
struct hostapd_bss_config *bss = &conf->bss[0];
|
|
|
|
|
|
|
|
os_strlcpy(bss->iface, wpa_s->ifname, sizeof(bss->iface));
|
|
|
|
|
|
|
|
if (ssid->frequency == 0) {
|
|
|
|
/* default channel 11 */
|
|
|
|
conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
|
|
|
|
conf->channel = 11;
|
|
|
|
} else if (ssid->frequency >= 2412 && ssid->frequency <= 2472) {
|
|
|
|
conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
|
|
|
|
conf->channel = (ssid->frequency - 2407) / 5;
|
|
|
|
} else if ((ssid->frequency >= 5180 && ssid->frequency <= 5240) ||
|
|
|
|
(ssid->frequency >= 5745 && ssid->frequency <= 5825)) {
|
|
|
|
conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
|
|
|
|
conf->channel = (ssid->frequency - 5000) / 5;
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_ERROR, "Unsupported AP mode frequency: %d MHz",
|
|
|
|
ssid->frequency);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: enable HT if driver supports it;
|
|
|
|
* drop to 11b if driver does not support 11g */
|
|
|
|
|
|
|
|
if (ssid->ssid_len == 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
os_memcpy(bss->ssid.ssid, ssid->ssid, ssid->ssid_len);
|
|
|
|
bss->ssid.ssid[ssid->ssid_len] = '\0';
|
|
|
|
bss->ssid.ssid_len = ssid->ssid_len;
|
|
|
|
bss->ssid.ssid_set = 1;
|
|
|
|
|
|
|
|
if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt))
|
|
|
|
bss->wpa = ssid->proto;
|
|
|
|
bss->wpa_key_mgmt = ssid->key_mgmt;
|
|
|
|
bss->wpa_pairwise = ssid->pairwise_cipher;
|
|
|
|
if (ssid->passphrase) {
|
|
|
|
bss->ssid.wpa_passphrase = os_strdup(ssid->passphrase);
|
|
|
|
if (hostapd_setup_wpa_psk(bss))
|
|
|
|
return -1;
|
|
|
|
} else if (ssid->psk_set) {
|
|
|
|
os_free(bss->ssid.wpa_psk);
|
|
|
|
bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
|
|
|
|
if (bss->ssid.wpa_psk == NULL)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(bss->ssid.wpa_psk->psk, ssid->psk, PMK_LEN);
|
|
|
|
bss->ssid.wpa_psk->group = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
int wpa_supplicant_create_ap(struct wpa_supplicant *wpa_s,
|
|
|
|
struct wpa_ssid *ssid)
|
|
|
|
{
|
|
|
|
struct wpa_driver_associate_params params;
|
|
|
|
struct hostapd_iface *hapd_iface;
|
|
|
|
struct hostapd_config *conf;
|
|
|
|
size_t i;
|
2009-03-25 12:23:42 +02:00
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
if (ssid->ssid == NULL || ssid->ssid_len == 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "No SSID configured for AP mode");
|
|
|
|
return -1;
|
2009-03-25 12:23:42 +02:00
|
|
|
}
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
wpa_supplicant_ap_deinit(wpa_s);
|
|
|
|
wpa_s->ap_iface = hapd_iface = os_zalloc(sizeof(*wpa_s->ap_iface));
|
|
|
|
if (hapd_iface == NULL)
|
|
|
|
return -1;
|
2009-03-26 16:08:17 +02:00
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
wpa_s->ap_iface->conf = conf = hostapd_config_defaults();
|
|
|
|
if (conf == NULL) {
|
|
|
|
wpa_supplicant_ap_deinit(wpa_s);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-26 16:08:17 +02:00
|
|
|
|
2009-03-27 16:45:47 +02:00
|
|
|
if (wpa_supplicant_conf_ap(wpa_s, ssid, conf)) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to create AP configuration");
|
|
|
|
wpa_supplicant_ap_deinit(wpa_s);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
hapd_iface->num_bss = conf->num_bss;
|
|
|
|
hapd_iface->bss = os_zalloc(conf->num_bss *
|
|
|
|
sizeof(struct hostapd_data *));
|
|
|
|
if (hapd_iface->bss == NULL) {
|
|
|
|
wpa_supplicant_ap_deinit(wpa_s);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-26 16:08:17 +02:00
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
for (i = 0; i < conf->num_bss; i++) {
|
|
|
|
hapd_iface->bss[i] =
|
|
|
|
hostapd_alloc_bss_data(hapd_iface, conf,
|
|
|
|
&conf->bss[i]);
|
|
|
|
if (hapd_iface->bss[i] == NULL) {
|
|
|
|
wpa_supplicant_ap_deinit(wpa_s);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hostapd_setup_interface(wpa_s->ap_iface)) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to initialize AP interface");
|
|
|
|
wpa_supplicant_ap_deinit(wpa_s);
|
|
|
|
return -1;
|
2009-03-26 16:08:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "Setting up AP (SSID='%s')",
|
|
|
|
wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
|
|
|
|
|
|
|
|
os_memset(¶ms, 0, sizeof(params));
|
|
|
|
params.ssid = ssid->ssid;
|
|
|
|
params.ssid_len = ssid->ssid_len;
|
|
|
|
params.mode = ssid->mode;
|
|
|
|
|
2009-03-26 20:37:05 +02:00
|
|
|
if (wpa_drv_associate(wpa_s, ¶ms) < 0) {
|
2009-03-26 16:08:17 +02:00
|
|
|
wpa_msg(wpa_s, MSG_INFO, "Failed to start AP functionality");
|
2009-03-26 20:37:05 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wpa_supplicant_ap_deinit(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
if (wpa_s->ap_iface == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hostapd_interface_deinit(wpa_s->ap_iface);
|
|
|
|
wpa_s->ap_iface = NULL;
|
2009-03-26 16:08:17 +02:00
|
|
|
}
|