2009-03-26 18:06:02 +01:00
|
|
|
/*
|
|
|
|
* hostapd / main()
|
2019-01-01 22:38:56 +01:00
|
|
|
* Copyright (c) 2002-2019, Jouni Malinen <j@w1.fi>
|
2009-03-26 18:06:02 +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.
|
2009-03-26 18:06:02 +01:00
|
|
|
*/
|
|
|
|
|
2009-12-25 23:05:40 +01:00
|
|
|
#include "utils/includes.h"
|
2009-03-26 18:06:02 +01:00
|
|
|
#ifndef CONFIG_NATIVE_WINDOWS
|
|
|
|
#include <syslog.h>
|
2013-03-29 16:09:31 +01:00
|
|
|
#include <grp.h>
|
2009-03-26 18:06:02 +01:00
|
|
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
|
|
|
|
2009-12-25 23:05:40 +01:00
|
|
|
#include "utils/common.h"
|
|
|
|
#include "utils/eloop.h"
|
2013-12-18 01:00:21 +01:00
|
|
|
#include "utils/uuid.h"
|
2011-03-22 22:15:00 +01:00
|
|
|
#include "crypto/random.h"
|
2009-11-29 22:04:43 +01:00
|
|
|
#include "crypto/tls.h"
|
2009-11-29 16:51:55 +01:00
|
|
|
#include "common/version.h"
|
2019-03-24 15:44:21 +01:00
|
|
|
#include "common/dpp.h"
|
2009-12-25 11:21:11 +01:00
|
|
|
#include "drivers/driver.h"
|
2009-03-26 18:06:02 +01:00
|
|
|
#include "eap_server/eap.h"
|
|
|
|
#include "eap_server/tncs.h"
|
2009-12-25 00:12:50 +01:00
|
|
|
#include "ap/hostapd.h"
|
2009-12-25 23:05:40 +01:00
|
|
|
#include "ap/ap_config.h"
|
2012-02-16 22:11:29 +01:00
|
|
|
#include "ap/ap_drv_ops.h"
|
2017-11-27 12:22:32 +01:00
|
|
|
#include "ap/dpp_hostapd.h"
|
2015-01-21 14:30:48 +01:00
|
|
|
#include "fst/fst.h"
|
2009-12-24 20:05:40 +01:00
|
|
|
#include "config_file.h"
|
2009-12-25 13:20:35 +01:00
|
|
|
#include "eap_register.h"
|
2009-12-25 19:06:07 +01:00
|
|
|
#include "ctrl_iface.h"
|
2009-03-26 18:06:02 +01:00
|
|
|
|
|
|
|
|
2011-10-22 10:59:00 +02:00
|
|
|
struct hapd_global {
|
|
|
|
void **drv_priv;
|
|
|
|
size_t drv_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct hapd_global global;
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_NO_HOSTAPD_LOGGER
|
|
|
|
static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
|
|
|
|
int level, const char *txt, size_t len)
|
|
|
|
{
|
|
|
|
struct hostapd_data *hapd = ctx;
|
|
|
|
char *format, *module_str;
|
|
|
|
int maxlen;
|
|
|
|
int conf_syslog_level, conf_stdout_level;
|
|
|
|
unsigned int conf_syslog, conf_stdout;
|
|
|
|
|
|
|
|
maxlen = len + 100;
|
|
|
|
format = os_malloc(maxlen);
|
|
|
|
if (!format)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (hapd && hapd->conf) {
|
|
|
|
conf_syslog_level = hapd->conf->logger_syslog_level;
|
|
|
|
conf_stdout_level = hapd->conf->logger_stdout_level;
|
|
|
|
conf_syslog = hapd->conf->logger_syslog;
|
|
|
|
conf_stdout = hapd->conf->logger_stdout;
|
|
|
|
} else {
|
|
|
|
conf_syslog_level = conf_stdout_level = 0;
|
|
|
|
conf_syslog = conf_stdout = (unsigned int) -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (module) {
|
|
|
|
case HOSTAPD_MODULE_IEEE80211:
|
|
|
|
module_str = "IEEE 802.11";
|
|
|
|
break;
|
|
|
|
case HOSTAPD_MODULE_IEEE8021X:
|
|
|
|
module_str = "IEEE 802.1X";
|
|
|
|
break;
|
|
|
|
case HOSTAPD_MODULE_RADIUS:
|
|
|
|
module_str = "RADIUS";
|
|
|
|
break;
|
|
|
|
case HOSTAPD_MODULE_WPA:
|
|
|
|
module_str = "WPA";
|
|
|
|
break;
|
|
|
|
case HOSTAPD_MODULE_DRIVER:
|
|
|
|
module_str = "DRIVER";
|
|
|
|
break;
|
|
|
|
case HOSTAPD_MODULE_MLME:
|
|
|
|
module_str = "MLME";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
module_str = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hapd && hapd->conf && addr)
|
|
|
|
os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
|
|
|
|
hapd->conf->iface, MAC2STR(addr),
|
2014-02-10 11:55:06 +01:00
|
|
|
module_str ? " " : "", module_str ? module_str : "",
|
|
|
|
txt);
|
2009-03-26 18:06:02 +01:00
|
|
|
else if (hapd && hapd->conf)
|
|
|
|
os_snprintf(format, maxlen, "%s:%s%s %s",
|
|
|
|
hapd->conf->iface, module_str ? " " : "",
|
2014-08-28 17:25:32 +02:00
|
|
|
module_str ? module_str : "", txt);
|
2009-03-26 18:06:02 +01:00
|
|
|
else if (addr)
|
|
|
|
os_snprintf(format, maxlen, "STA " MACSTR "%s%s: %s",
|
|
|
|
MAC2STR(addr), module_str ? " " : "",
|
2014-08-28 17:25:32 +02:00
|
|
|
module_str ? module_str : "", txt);
|
2009-03-26 18:06:02 +01:00
|
|
|
else
|
|
|
|
os_snprintf(format, maxlen, "%s%s%s",
|
2014-08-28 17:25:32 +02:00
|
|
|
module_str ? module_str : "",
|
|
|
|
module_str ? ": " : "", txt);
|
2009-03-26 18:06:02 +01:00
|
|
|
|
2017-01-23 13:55:04 +01:00
|
|
|
#ifdef CONFIG_DEBUG_SYSLOG
|
|
|
|
if (wpa_debug_syslog)
|
|
|
|
conf_stdout = 0;
|
|
|
|
#endif /* CONFIG_DEBUG_SYSLOG */
|
2009-03-26 18:06:02 +01:00
|
|
|
if ((conf_stdout & module) && level >= conf_stdout_level) {
|
|
|
|
wpa_debug_print_timestamp();
|
2013-11-02 10:32:19 +01:00
|
|
|
wpa_printf(MSG_INFO, "%s", format);
|
2009-03-26 18:06:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef CONFIG_NATIVE_WINDOWS
|
|
|
|
if ((conf_syslog & module) && level >= conf_syslog_level) {
|
|
|
|
int priority;
|
|
|
|
switch (level) {
|
|
|
|
case HOSTAPD_LEVEL_DEBUG_VERBOSE:
|
|
|
|
case HOSTAPD_LEVEL_DEBUG:
|
|
|
|
priority = LOG_DEBUG;
|
|
|
|
break;
|
|
|
|
case HOSTAPD_LEVEL_INFO:
|
|
|
|
priority = LOG_INFO;
|
|
|
|
break;
|
|
|
|
case HOSTAPD_LEVEL_NOTICE:
|
|
|
|
priority = LOG_NOTICE;
|
|
|
|
break;
|
|
|
|
case HOSTAPD_LEVEL_WARNING:
|
|
|
|
priority = LOG_WARNING;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
priority = LOG_INFO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
syslog(priority, "%s", format);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
|
|
|
|
|
|
|
os_free(format);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NO_HOSTAPD_LOGGER */
|
|
|
|
|
|
|
|
|
2013-11-03 20:16:33 +01:00
|
|
|
/**
|
|
|
|
* hostapd_driver_init - Preparate driver interface
|
|
|
|
*/
|
2009-12-25 11:21:11 +01:00
|
|
|
static int hostapd_driver_init(struct hostapd_iface *iface)
|
|
|
|
{
|
|
|
|
struct wpa_init_params params;
|
|
|
|
size_t i;
|
|
|
|
struct hostapd_data *hapd = iface->bss[0];
|
|
|
|
struct hostapd_bss_config *conf = hapd->conf;
|
|
|
|
u8 *b = conf->bssid;
|
2011-03-29 16:36:06 +02:00
|
|
|
struct wpa_driver_capa capa;
|
2009-12-25 11:21:11 +01:00
|
|
|
|
|
|
|
if (hapd->driver == NULL || hapd->driver->hapd_init == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "No hostapd driver wrapper available");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the driver interface */
|
|
|
|
if (!(b[0] | b[1] | b[2] | b[3] | b[4] | b[5]))
|
|
|
|
b = NULL;
|
|
|
|
|
|
|
|
os_memset(¶ms, 0, sizeof(params));
|
2011-10-22 10:59:00 +02:00
|
|
|
for (i = 0; wpa_drivers[i]; i++) {
|
2011-10-23 12:20:52 +02:00
|
|
|
if (wpa_drivers[i] != hapd->driver)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (global.drv_priv[i] == NULL &&
|
|
|
|
wpa_drivers[i]->global_init) {
|
2016-03-15 14:02:08 +01:00
|
|
|
global.drv_priv[i] =
|
|
|
|
wpa_drivers[i]->global_init(iface->interfaces);
|
2011-10-23 12:20:52 +02:00
|
|
|
if (global.drv_priv[i] == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to initialize "
|
|
|
|
"driver '%s'",
|
|
|
|
wpa_drivers[i]->name);
|
|
|
|
return -1;
|
|
|
|
}
|
2011-10-22 10:59:00 +02:00
|
|
|
}
|
2011-10-23 12:20:52 +02:00
|
|
|
|
|
|
|
params.global_priv = global.drv_priv[i];
|
|
|
|
break;
|
2011-10-22 10:59:00 +02:00
|
|
|
}
|
2009-12-25 11:21:11 +01:00
|
|
|
params.bssid = b;
|
|
|
|
params.ifname = hapd->conf->iface;
|
2014-11-29 12:24:42 +01:00
|
|
|
params.driver_params = hapd->iconf->driver_params;
|
2009-12-25 11:21:11 +01:00
|
|
|
params.use_pae_group_addr = hapd->conf->use_pae_group_addr;
|
|
|
|
|
|
|
|
params.num_bridge = hapd->iface->num_bss;
|
2012-08-13 19:44:21 +02:00
|
|
|
params.bridge = os_calloc(hapd->iface->num_bss, sizeof(char *));
|
2009-12-25 11:21:11 +01:00
|
|
|
if (params.bridge == NULL)
|
|
|
|
return -1;
|
|
|
|
for (i = 0; i < hapd->iface->num_bss; i++) {
|
|
|
|
struct hostapd_data *bss = hapd->iface->bss[i];
|
|
|
|
if (bss->conf->bridge[0])
|
|
|
|
params.bridge[i] = bss->conf->bridge;
|
|
|
|
}
|
|
|
|
|
|
|
|
params.own_addr = hapd->own_addr;
|
|
|
|
|
|
|
|
hapd->drv_priv = hapd->driver->hapd_init(hapd, ¶ms);
|
|
|
|
os_free(params.bridge);
|
|
|
|
if (hapd->drv_priv == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "%s driver initialization failed.",
|
|
|
|
hapd->driver->name);
|
|
|
|
hapd->driver = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-03-29 16:36:06 +02:00
|
|
|
if (hapd->driver->get_capa &&
|
2011-12-10 16:17:43 +01:00
|
|
|
hapd->driver->get_capa(hapd->drv_priv, &capa) == 0) {
|
2014-09-03 23:58:37 +02:00
|
|
|
struct wowlan_triggers *triggs;
|
|
|
|
|
2011-03-29 16:36:06 +02:00
|
|
|
iface->drv_flags = capa.flags;
|
2011-12-10 16:17:43 +01:00
|
|
|
iface->probe_resp_offloads = capa.probe_resp_offloads;
|
2016-04-12 10:01:42 +02:00
|
|
|
/*
|
|
|
|
* Use default extended capa values from per-radio information
|
|
|
|
*/
|
2013-03-31 20:51:44 +02:00
|
|
|
iface->extended_capa = capa.extended_capa;
|
|
|
|
iface->extended_capa_mask = capa.extended_capa_mask;
|
|
|
|
iface->extended_capa_len = capa.extended_capa_len;
|
2013-05-24 12:37:22 +02:00
|
|
|
iface->drv_max_acl_mac_addrs = capa.max_acl_mac_addrs;
|
2014-09-03 23:58:37 +02:00
|
|
|
|
2016-04-12 10:01:42 +02:00
|
|
|
/*
|
|
|
|
* Override extended capa with per-interface type (AP), if
|
|
|
|
* available from the driver.
|
|
|
|
*/
|
|
|
|
hostapd_get_ext_capa(iface);
|
|
|
|
|
2014-09-03 23:58:37 +02:00
|
|
|
triggs = wpa_get_wowlan_triggers(conf->wowlan_triggers, &capa);
|
|
|
|
if (triggs && hapd->driver->set_wowlan) {
|
|
|
|
if (hapd->driver->set_wowlan(hapd->drv_priv, triggs))
|
|
|
|
wpa_printf(MSG_ERROR, "set_wowlan failed");
|
|
|
|
}
|
|
|
|
os_free(triggs);
|
2011-12-10 16:17:43 +01:00
|
|
|
}
|
2011-03-29 16:36:06 +02:00
|
|
|
|
2009-12-25 11:21:11 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-03 20:16:33 +01:00
|
|
|
/**
|
|
|
|
* hostapd_interface_init - Read configuration file and init BSS data
|
|
|
|
*
|
|
|
|
* This function is used to parse configuration file for a full interface (one
|
|
|
|
* or more BSSes sharing the same radio) and allocate memory for the BSS
|
2018-11-25 23:37:24 +01:00
|
|
|
* interfaces. No actual driver operations are started.
|
2013-11-03 20:16:33 +01:00
|
|
|
*/
|
2009-12-19 18:07:31 +01:00
|
|
|
static struct hostapd_iface *
|
2016-06-10 20:04:25 +02:00
|
|
|
hostapd_interface_init(struct hapd_interfaces *interfaces, const char *if_name,
|
2009-12-19 18:07:31 +01:00
|
|
|
const char *config_fname, int debug)
|
2009-03-26 18:06:02 +01:00
|
|
|
{
|
|
|
|
struct hostapd_iface *iface;
|
|
|
|
int k;
|
|
|
|
|
2020-01-02 14:52:01 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "Configuration file: %s", config_fname);
|
2013-10-29 15:27:30 +01:00
|
|
|
iface = hostapd_init(interfaces, config_fname);
|
2009-03-26 18:06:02 +01:00
|
|
|
if (!iface)
|
|
|
|
return NULL;
|
2016-06-10 20:04:25 +02:00
|
|
|
|
|
|
|
if (if_name) {
|
|
|
|
os_strlcpy(iface->conf->bss[0]->iface, if_name,
|
|
|
|
sizeof(iface->conf->bss[0]->iface));
|
|
|
|
}
|
|
|
|
|
2009-12-19 18:07:31 +01:00
|
|
|
iface->interfaces = interfaces;
|
2009-03-26 18:06:02 +01:00
|
|
|
|
|
|
|
for (k = 0; k < debug; k++) {
|
|
|
|
if (iface->bss[0]->conf->logger_stdout_level > 0)
|
|
|
|
iface->bss[0]->conf->logger_stdout_level--;
|
|
|
|
}
|
|
|
|
|
2013-10-29 15:23:23 +01:00
|
|
|
if (iface->conf->bss[0]->iface[0] == '\0' &&
|
2013-04-29 12:50:02 +02:00
|
|
|
!hostapd_drv_none(iface->bss[0])) {
|
2016-06-10 20:04:25 +02:00
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"Interface name not specified in %s, nor by '-i' parameter",
|
2013-04-29 12:50:02 +02:00
|
|
|
config_fname);
|
|
|
|
hostapd_interface_deinit_free(iface);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
return iface;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* handle_term - SIGINT and SIGTERM handler to terminate hostapd process
|
|
|
|
*/
|
2009-12-19 18:22:16 +01:00
|
|
|
static void handle_term(int sig, void *signal_ctx)
|
2009-03-26 18:06:02 +01:00
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "Signal %d received - terminating", sig);
|
|
|
|
eloop_terminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef CONFIG_NATIVE_WINDOWS
|
2009-12-25 13:20:35 +01:00
|
|
|
|
|
|
|
static int handle_reload_iface(struct hostapd_iface *iface, void *ctx)
|
|
|
|
{
|
|
|
|
if (hostapd_reload_config(iface) < 0) {
|
|
|
|
wpa_printf(MSG_WARNING, "Failed to read new configuration "
|
|
|
|
"file - continuing with old.");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
/**
|
|
|
|
* handle_reload - SIGHUP handler to reload configuration
|
|
|
|
*/
|
2009-12-19 18:22:16 +01:00
|
|
|
static void handle_reload(int sig, void *signal_ctx)
|
2009-03-26 18:06:02 +01:00
|
|
|
{
|
2009-12-19 18:22:16 +01:00
|
|
|
struct hapd_interfaces *interfaces = signal_ctx;
|
2009-03-26 18:06:02 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "Signal %d received - reloading configuration",
|
|
|
|
sig);
|
2009-12-19 18:07:31 +01:00
|
|
|
hostapd_for_each_interface(interfaces, handle_reload_iface, NULL);
|
2009-03-26 18:06:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-19 18:22:16 +01:00
|
|
|
static void handle_dump_state(int sig, void *signal_ctx)
|
2009-03-26 18:06:02 +01:00
|
|
|
{
|
2014-01-02 17:15:07 +01:00
|
|
|
/* Not used anymore - ignore signal */
|
2009-03-26 18:06:02 +01:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
|
|
|
|
|
|
|
|
2011-05-31 19:07:11 +02:00
|
|
|
static int hostapd_global_init(struct hapd_interfaces *interfaces,
|
|
|
|
const char *entropy_file)
|
2009-03-26 18:06:02 +01:00
|
|
|
{
|
2011-10-22 10:59:00 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
os_memset(&global, 0, sizeof(global));
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
hostapd_logger_register_cb(hostapd_logger_cb);
|
|
|
|
|
|
|
|
if (eap_server_register_methods()) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to register EAP methods");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-12-19 18:22:16 +01:00
|
|
|
if (eloop_init()) {
|
2009-03-26 18:06:02 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Failed to initialize event loop");
|
|
|
|
return -1;
|
|
|
|
}
|
2016-06-12 23:36:18 +02:00
|
|
|
interfaces->eloop_initialized = 1;
|
2009-03-26 18:06:02 +01:00
|
|
|
|
2011-05-31 19:07:11 +02:00
|
|
|
random_init(entropy_file);
|
2011-03-22 22:15:00 +01:00
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
#ifndef CONFIG_NATIVE_WINDOWS
|
2009-12-19 18:22:16 +01:00
|
|
|
eloop_register_signal(SIGHUP, handle_reload, interfaces);
|
|
|
|
eloop_register_signal(SIGUSR1, handle_dump_state, interfaces);
|
2009-03-26 18:06:02 +01:00
|
|
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
2009-12-19 18:22:16 +01:00
|
|
|
eloop_register_signal_terminate(handle_term, interfaces);
|
2009-03-26 18:06:02 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_NATIVE_WINDOWS
|
|
|
|
openlog("hostapd", 0, LOG_DAEMON);
|
|
|
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
|
|
|
|
2011-10-22 10:59:00 +02:00
|
|
|
for (i = 0; wpa_drivers[i]; i++)
|
|
|
|
global.drv_count++;
|
|
|
|
if (global.drv_count == 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "No drivers enabled");
|
|
|
|
return -1;
|
|
|
|
}
|
2012-08-13 19:44:21 +02:00
|
|
|
global.drv_priv = os_calloc(global.drv_count, sizeof(void *));
|
2011-10-22 10:59:00 +02:00
|
|
|
if (global.drv_priv == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-12 23:36:18 +02:00
|
|
|
static void hostapd_global_deinit(const char *pid_file, int eloop_initialized)
|
2009-03-26 18:06:02 +01:00
|
|
|
{
|
2011-10-22 10:59:00 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; wpa_drivers[i] && global.drv_priv; i++) {
|
|
|
|
if (!global.drv_priv[i])
|
|
|
|
continue;
|
|
|
|
wpa_drivers[i]->global_deinit(global.drv_priv[i]);
|
|
|
|
}
|
|
|
|
os_free(global.drv_priv);
|
|
|
|
global.drv_priv = NULL;
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
#ifdef EAP_SERVER_TNC
|
|
|
|
tncs_global_deinit();
|
|
|
|
#endif /* EAP_SERVER_TNC */
|
|
|
|
|
2011-03-22 22:15:00 +01:00
|
|
|
random_deinit();
|
|
|
|
|
2016-06-12 23:36:18 +02:00
|
|
|
if (eloop_initialized)
|
|
|
|
eloop_destroy();
|
2009-03-26 18:06:02 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_NATIVE_WINDOWS
|
|
|
|
closelog();
|
|
|
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
|
|
|
|
|
|
|
eap_server_unregister_methods();
|
|
|
|
|
|
|
|
os_daemonize_terminate(pid_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int hostapd_global_run(struct hapd_interfaces *ifaces, int daemonize,
|
|
|
|
const char *pid_file)
|
|
|
|
{
|
|
|
|
#ifdef EAP_SERVER_TNC
|
|
|
|
int tnc = 0;
|
|
|
|
size_t i, k;
|
|
|
|
|
|
|
|
for (i = 0; !tnc && i < ifaces->count; i++) {
|
|
|
|
for (k = 0; k < ifaces->iface[i]->num_bss; k++) {
|
|
|
|
if (ifaces->iface[i]->bss[0]->conf->tnc) {
|
|
|
|
tnc++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tnc && tncs_global_init() < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to initialize TNCS");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif /* EAP_SERVER_TNC */
|
|
|
|
|
2016-01-22 21:28:25 +01:00
|
|
|
if (daemonize) {
|
|
|
|
if (os_daemonize(pid_file)) {
|
|
|
|
wpa_printf(MSG_ERROR, "daemon: %s", strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (eloop_sock_requeue()) {
|
|
|
|
wpa_printf(MSG_ERROR, "eloop_sock_requeue: %s",
|
|
|
|
strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-26 18:06:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
eloop_run();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void show_version(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
2020-02-16 16:14:54 +01:00
|
|
|
"hostapd v%s\n"
|
2009-03-26 18:06:02 +01:00
|
|
|
"User space daemon for IEEE 802.11 AP management,\n"
|
|
|
|
"IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n"
|
2019-01-01 22:38:56 +01:00
|
|
|
"Copyright (c) 2002-2019, Jouni Malinen <j@w1.fi> "
|
2020-02-16 16:14:54 +01:00
|
|
|
"and contributors\n",
|
|
|
|
VERSION_STR);
|
2009-03-26 18:06:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
|
|
|
show_version();
|
|
|
|
fprintf(stderr,
|
|
|
|
"\n"
|
2011-05-31 19:07:11 +02:00
|
|
|
"usage: hostapd [-hdBKtv] [-P <PID file>] [-e <entropy file>] "
|
2011-12-20 16:10:47 +01:00
|
|
|
"\\\n"
|
2016-06-10 20:04:25 +02:00
|
|
|
" [-g <global ctrl_iface>] [-G <group>]\\\n"
|
|
|
|
" [-i <comma-separated list of interface names>]\\\n"
|
2013-03-29 16:09:31 +01:00
|
|
|
" <configuration file(s)>\n"
|
2009-03-26 18:06:02 +01:00
|
|
|
"\n"
|
|
|
|
"options:\n"
|
|
|
|
" -h show this usage\n"
|
|
|
|
" -d show more debug messages (-dd for even more)\n"
|
|
|
|
" -B run daemon in the background\n"
|
2011-05-31 19:07:11 +02:00
|
|
|
" -e entropy file\n"
|
2011-12-20 16:10:47 +01:00
|
|
|
" -g global control interface path\n"
|
2013-03-29 16:09:31 +01:00
|
|
|
" -G group for control interfaces\n"
|
2009-03-26 18:06:02 +01:00
|
|
|
" -P PID file\n"
|
|
|
|
" -K include key data in debug messages\n"
|
2011-02-06 19:24:16 +01:00
|
|
|
#ifdef CONFIG_DEBUG_FILE
|
|
|
|
" -f log output to debug file instead of stdout\n"
|
|
|
|
#endif /* CONFIG_DEBUG_FILE */
|
2013-10-30 19:29:58 +01:00
|
|
|
#ifdef CONFIG_DEBUG_LINUX_TRACING
|
2016-11-19 21:20:14 +01:00
|
|
|
" -T record to Linux tracing in addition to logging\n"
|
2013-10-30 19:29:58 +01:00
|
|
|
" (records all messages regardless of debug verbosity)\n"
|
|
|
|
#endif /* CONFIG_DEBUG_LINUX_TRACING */
|
2016-06-10 20:04:25 +02:00
|
|
|
" -i list of interface names to use\n"
|
2017-01-23 13:55:04 +01:00
|
|
|
#ifdef CONFIG_DEBUG_SYSLOG
|
|
|
|
" -s log output to syslog instead of stdout\n"
|
|
|
|
#endif /* CONFIG_DEBUG_SYSLOG */
|
2015-09-22 19:43:12 +02:00
|
|
|
" -S start all the interfaces synchronously\n"
|
2009-03-26 18:06:02 +01:00
|
|
|
" -t include timestamps in some debug messages\n"
|
|
|
|
" -v show hostapd version\n");
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-06 19:50:32 +01:00
|
|
|
static const char * hostapd_msg_ifname_cb(void *ctx)
|
|
|
|
{
|
|
|
|
struct hostapd_data *hapd = ctx;
|
2016-03-06 10:42:38 +01:00
|
|
|
if (hapd && hapd->conf)
|
|
|
|
return hapd->conf->iface;
|
2011-02-06 19:50:32 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-20 16:10:47 +01:00
|
|
|
static int hostapd_get_global_ctrl_iface(struct hapd_interfaces *interfaces,
|
|
|
|
const char *path)
|
|
|
|
{
|
2016-03-04 10:20:25 +01:00
|
|
|
#ifndef CONFIG_CTRL_IFACE_UDP
|
2011-12-20 16:10:47 +01:00
|
|
|
char *pos;
|
2016-03-04 10:20:25 +01:00
|
|
|
#endif /* !CONFIG_CTRL_IFACE_UDP */
|
|
|
|
|
2011-12-20 16:10:47 +01:00
|
|
|
os_free(interfaces->global_iface_path);
|
|
|
|
interfaces->global_iface_path = os_strdup(path);
|
|
|
|
if (interfaces->global_iface_path == NULL)
|
|
|
|
return -1;
|
2016-03-04 10:20:25 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_CTRL_IFACE_UDP
|
2011-12-20 16:10:47 +01:00
|
|
|
pos = os_strrchr(interfaces->global_iface_path, '/');
|
|
|
|
if (pos == NULL) {
|
2013-04-01 17:17:24 +02:00
|
|
|
wpa_printf(MSG_ERROR, "No '/' in the global control interface "
|
|
|
|
"file");
|
2011-12-20 16:10:47 +01:00
|
|
|
os_free(interfaces->global_iface_path);
|
|
|
|
interfaces->global_iface_path = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*pos = '\0';
|
|
|
|
interfaces->global_iface_name = pos + 1;
|
2016-03-04 10:20:25 +01:00
|
|
|
#endif /* !CONFIG_CTRL_IFACE_UDP */
|
2011-12-20 16:10:47 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-29 16:09:31 +01:00
|
|
|
static int hostapd_get_ctrl_iface_group(struct hapd_interfaces *interfaces,
|
|
|
|
const char *group)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_NATIVE_WINDOWS
|
|
|
|
struct group *grp;
|
|
|
|
grp = getgrnam(group);
|
|
|
|
if (grp == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "Unknown group '%s'", group);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
interfaces->ctrl_iface_group = grp->gr_gid;
|
|
|
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-10 20:04:25 +02:00
|
|
|
static int hostapd_get_interface_names(char ***if_names,
|
|
|
|
size_t *if_names_size,
|
2016-11-12 18:26:47 +01:00
|
|
|
char *arg)
|
2016-06-10 20:04:25 +02:00
|
|
|
{
|
|
|
|
char *if_name, *tmp, **nnames;
|
|
|
|
size_t i;
|
|
|
|
|
2016-11-12 18:26:47 +01:00
|
|
|
if (!arg)
|
2016-06-10 20:04:25 +02:00
|
|
|
return -1;
|
2016-11-12 18:26:47 +01:00
|
|
|
if_name = strtok_r(arg, ",", &tmp);
|
2016-06-10 20:04:25 +02:00
|
|
|
|
|
|
|
while (if_name) {
|
|
|
|
nnames = os_realloc_array(*if_names, 1 + *if_names_size,
|
|
|
|
sizeof(char *));
|
|
|
|
if (!nnames)
|
|
|
|
goto fail;
|
|
|
|
*if_names = nnames;
|
|
|
|
|
|
|
|
(*if_names)[*if_names_size] = os_strdup(if_name);
|
|
|
|
if (!(*if_names)[*if_names_size])
|
|
|
|
goto fail;
|
|
|
|
(*if_names_size)++;
|
|
|
|
if_name = strtok_r(NULL, ",", &tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
for (i = 0; i < *if_names_size; i++)
|
|
|
|
os_free((*if_names)[i]);
|
|
|
|
os_free(*if_names);
|
|
|
|
*if_names = NULL;
|
|
|
|
*if_names_size = 0;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-18 01:00:21 +01:00
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
static int gen_uuid(const char *txt_addr)
|
|
|
|
{
|
|
|
|
u8 addr[ETH_ALEN];
|
|
|
|
u8 uuid[UUID_LEN];
|
|
|
|
char buf[100];
|
|
|
|
|
|
|
|
if (hwaddr_aton(txt_addr, addr) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
uuid_gen_mac_addr(addr, uuid);
|
|
|
|
if (uuid_bin2str(uuid, buf, sizeof(buf)) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
printf("%s\n", buf);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_WPS */
|
|
|
|
|
|
|
|
|
2015-07-20 12:33:30 +02:00
|
|
|
#ifndef HOSTAPD_CLEANUP_INTERVAL
|
|
|
|
#define HOSTAPD_CLEANUP_INTERVAL 10
|
|
|
|
#endif /* HOSTAPD_CLEANUP_INTERVAL */
|
|
|
|
|
|
|
|
static int hostapd_periodic_call(struct hostapd_iface *iface, void *ctx)
|
|
|
|
{
|
|
|
|
hostapd_periodic_iface(iface);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Periodic cleanup tasks */
|
|
|
|
static void hostapd_periodic(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
struct hapd_interfaces *interfaces = eloop_ctx;
|
|
|
|
|
|
|
|
eloop_register_timeout(HOSTAPD_CLEANUP_INTERVAL, 0,
|
|
|
|
hostapd_periodic, interfaces, NULL);
|
|
|
|
hostapd_for_each_interface(interfaces, hostapd_periodic_call, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
struct hapd_interfaces interfaces;
|
|
|
|
int ret = 1;
|
2013-10-17 16:41:26 +02:00
|
|
|
size_t i, j;
|
2009-03-26 18:06:02 +01:00
|
|
|
int c, debug = 0, daemonize = 0;
|
2009-08-15 19:09:24 +02:00
|
|
|
char *pid_file = NULL;
|
2011-02-06 19:24:16 +01:00
|
|
|
const char *log_file = NULL;
|
2011-05-31 19:07:11 +02:00
|
|
|
const char *entropy_file = NULL;
|
2013-10-17 16:41:26 +02:00
|
|
|
char **bss_config = NULL, **tmp_bss;
|
|
|
|
size_t num_bss_configs = 0;
|
2013-10-30 19:29:58 +01:00
|
|
|
#ifdef CONFIG_DEBUG_LINUX_TRACING
|
|
|
|
int enable_trace_dbg = 0;
|
|
|
|
#endif /* CONFIG_DEBUG_LINUX_TRACING */
|
2015-09-22 19:43:12 +02:00
|
|
|
int start_ifaces_in_sync = 0;
|
2016-06-10 20:04:25 +02:00
|
|
|
char **if_names = NULL;
|
|
|
|
size_t if_names_size = 0;
|
2019-04-21 20:18:24 +02:00
|
|
|
#ifdef CONFIG_DPP
|
|
|
|
struct dpp_global_config dpp_conf;
|
|
|
|
#endif /* CONFIG_DPP */
|
2009-03-26 18:06:02 +01:00
|
|
|
|
2009-12-19 19:55:17 +01:00
|
|
|
if (os_program_init())
|
|
|
|
return -1;
|
|
|
|
|
2012-08-25 11:43:27 +02:00
|
|
|
os_memset(&interfaces, 0, sizeof(interfaces));
|
|
|
|
interfaces.reload_config = hostapd_reload_config;
|
|
|
|
interfaces.config_read_cb = hostapd_config_read;
|
|
|
|
interfaces.for_each_interface = hostapd_for_each_interface;
|
|
|
|
interfaces.ctrl_iface_init = hostapd_ctrl_iface_init;
|
|
|
|
interfaces.ctrl_iface_deinit = hostapd_ctrl_iface_deinit;
|
2011-12-16 19:42:40 +01:00
|
|
|
interfaces.driver_init = hostapd_driver_init;
|
2011-12-20 16:10:47 +01:00
|
|
|
interfaces.global_iface_path = NULL;
|
|
|
|
interfaces.global_iface_name = NULL;
|
|
|
|
interfaces.global_ctrl_sock = -1;
|
2016-03-04 10:20:22 +01:00
|
|
|
dl_list_init(&interfaces.global_ctrl_dst);
|
2017-04-02 14:52:49 +02:00
|
|
|
#ifdef CONFIG_ETH_P_OUI
|
|
|
|
dl_list_init(&interfaces.eth_p_oui);
|
|
|
|
#endif /* CONFIG_ETH_P_OUI */
|
2017-11-27 12:22:32 +01:00
|
|
|
#ifdef CONFIG_DPP
|
2019-04-21 20:18:24 +02:00
|
|
|
os_memset(&dpp_conf, 0, sizeof(dpp_conf));
|
|
|
|
/* TODO: dpp_conf.msg_ctx? */
|
|
|
|
interfaces.dpp = dpp_global_init(&dpp_conf);
|
2019-03-24 15:44:21 +01:00
|
|
|
if (!interfaces.dpp)
|
|
|
|
return -1;
|
2017-11-27 12:22:32 +01:00
|
|
|
#endif /* CONFIG_DPP */
|
2012-08-25 11:43:27 +02:00
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
for (;;) {
|
2017-01-23 13:55:04 +01:00
|
|
|
c = getopt(argc, argv, "b:Bde:f:hi:KP:sSTtu:vg:G:");
|
2009-03-26 18:06:02 +01:00
|
|
|
if (c < 0)
|
|
|
|
break;
|
|
|
|
switch (c) {
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
debug++;
|
|
|
|
if (wpa_debug_level > 0)
|
|
|
|
wpa_debug_level--;
|
|
|
|
break;
|
|
|
|
case 'B':
|
|
|
|
daemonize++;
|
|
|
|
break;
|
2011-05-31 19:07:11 +02:00
|
|
|
case 'e':
|
|
|
|
entropy_file = optarg;
|
|
|
|
break;
|
2011-02-06 19:24:16 +01:00
|
|
|
case 'f':
|
|
|
|
log_file = optarg;
|
|
|
|
break;
|
2009-03-26 18:06:02 +01:00
|
|
|
case 'K':
|
|
|
|
wpa_debug_show_keys++;
|
|
|
|
break;
|
|
|
|
case 'P':
|
2009-08-15 19:09:24 +02:00
|
|
|
os_free(pid_file);
|
|
|
|
pid_file = os_rel2abs_path(optarg);
|
2009-03-26 18:06:02 +01:00
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
wpa_debug_timestamp++;
|
|
|
|
break;
|
2013-10-30 19:29:58 +01:00
|
|
|
#ifdef CONFIG_DEBUG_LINUX_TRACING
|
|
|
|
case 'T':
|
|
|
|
enable_trace_dbg = 1;
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_DEBUG_LINUX_TRACING */
|
2009-03-26 18:06:02 +01:00
|
|
|
case 'v':
|
|
|
|
show_version();
|
|
|
|
exit(1);
|
|
|
|
break;
|
2011-12-20 16:10:47 +01:00
|
|
|
case 'g':
|
2013-04-01 17:17:24 +02:00
|
|
|
if (hostapd_get_global_ctrl_iface(&interfaces, optarg))
|
|
|
|
return -1;
|
2011-12-20 16:10:47 +01:00
|
|
|
break;
|
2013-03-29 16:09:31 +01:00
|
|
|
case 'G':
|
2013-04-01 17:17:24 +02:00
|
|
|
if (hostapd_get_ctrl_iface_group(&interfaces, optarg))
|
|
|
|
return -1;
|
2013-03-29 16:09:31 +01:00
|
|
|
break;
|
2013-10-17 16:41:26 +02:00
|
|
|
case 'b':
|
|
|
|
tmp_bss = os_realloc_array(bss_config,
|
|
|
|
num_bss_configs + 1,
|
|
|
|
sizeof(char *));
|
|
|
|
if (tmp_bss == NULL)
|
|
|
|
goto out;
|
|
|
|
bss_config = tmp_bss;
|
|
|
|
bss_config[num_bss_configs++] = optarg;
|
|
|
|
break;
|
2017-01-23 13:55:04 +01:00
|
|
|
#ifdef CONFIG_DEBUG_SYSLOG
|
|
|
|
case 's':
|
|
|
|
wpa_debug_syslog = 1;
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_DEBUG_SYSLOG */
|
2015-09-22 19:43:12 +02:00
|
|
|
case 'S':
|
|
|
|
start_ifaces_in_sync = 1;
|
|
|
|
break;
|
2013-12-18 01:00:21 +01:00
|
|
|
#ifdef CONFIG_WPS
|
|
|
|
case 'u':
|
|
|
|
return gen_uuid(optarg);
|
|
|
|
#endif /* CONFIG_WPS */
|
2016-06-10 20:04:25 +02:00
|
|
|
case 'i':
|
|
|
|
if (hostapd_get_interface_names(&if_names,
|
|
|
|
&if_names_size, optarg))
|
|
|
|
goto out;
|
|
|
|
break;
|
2009-03-26 18:06:02 +01:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-17 16:41:26 +02:00
|
|
|
if (optind == argc && interfaces.global_iface_path == NULL &&
|
|
|
|
num_bss_configs == 0)
|
2009-03-26 18:06:02 +01:00
|
|
|
usage();
|
|
|
|
|
2011-02-06 19:50:32 +01:00
|
|
|
wpa_msg_register_ifname_cb(hostapd_msg_ifname_cb);
|
|
|
|
|
2011-02-06 19:24:16 +01:00
|
|
|
if (log_file)
|
|
|
|
wpa_debug_open_file(log_file);
|
2019-12-28 17:17:44 +01:00
|
|
|
if (!log_file && !wpa_debug_syslog)
|
2014-12-04 23:23:35 +01:00
|
|
|
wpa_debug_setup_stdout();
|
2017-01-23 13:55:04 +01:00
|
|
|
#ifdef CONFIG_DEBUG_SYSLOG
|
|
|
|
if (wpa_debug_syslog)
|
|
|
|
wpa_debug_open_syslog();
|
|
|
|
#endif /* CONFIG_DEBUG_SYSLOG */
|
2013-10-30 19:29:58 +01:00
|
|
|
#ifdef CONFIG_DEBUG_LINUX_TRACING
|
|
|
|
if (enable_trace_dbg) {
|
|
|
|
int tret = wpa_debug_open_linux_tracing();
|
|
|
|
if (tret) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to enable trace logging");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_DEBUG_LINUX_TRACING */
|
2011-02-06 19:24:16 +01:00
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
interfaces.count = argc - optind;
|
2013-10-17 16:41:26 +02:00
|
|
|
if (interfaces.count || num_bss_configs) {
|
|
|
|
interfaces.iface = os_calloc(interfaces.count + num_bss_configs,
|
2012-08-25 10:42:30 +02:00
|
|
|
sizeof(struct hostapd_iface *));
|
|
|
|
if (interfaces.iface == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "malloc failed");
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-26 18:06:02 +01:00
|
|
|
}
|
|
|
|
|
2013-04-29 12:52:34 +02:00
|
|
|
if (hostapd_global_init(&interfaces, entropy_file)) {
|
2015-06-09 21:03:53 +02:00
|
|
|
wpa_printf(MSG_ERROR, "Failed to initialize global context");
|
2009-03-26 18:06:02 +01:00
|
|
|
return -1;
|
2013-04-29 12:52:34 +02:00
|
|
|
}
|
2009-03-26 18:06:02 +01:00
|
|
|
|
2015-07-20 12:33:30 +02:00
|
|
|
eloop_register_timeout(HOSTAPD_CLEANUP_INTERVAL, 0,
|
|
|
|
hostapd_periodic, &interfaces, NULL);
|
|
|
|
|
2015-01-21 14:30:48 +01:00
|
|
|
if (fst_global_init()) {
|
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"Failed to initialize global FST context");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_FST) && defined(CONFIG_CTRL_IFACE)
|
|
|
|
if (!fst_global_add_ctrl(fst_ctrl_cli))
|
|
|
|
wpa_printf(MSG_WARNING, "Failed to add CLI FST ctrl");
|
|
|
|
#endif /* CONFIG_FST && CONFIG_CTRL_IFACE */
|
|
|
|
|
2013-11-03 20:16:33 +01:00
|
|
|
/* Allocate and parse configuration for full interface files */
|
2009-03-26 18:06:02 +01:00
|
|
|
for (i = 0; i < interfaces.count; i++) {
|
2016-06-10 20:04:25 +02:00
|
|
|
char *if_name = NULL;
|
|
|
|
|
|
|
|
if (i < if_names_size)
|
|
|
|
if_name = if_names[i];
|
|
|
|
|
2009-12-19 18:07:31 +01:00
|
|
|
interfaces.iface[i] = hostapd_interface_init(&interfaces,
|
2016-06-10 20:04:25 +02:00
|
|
|
if_name,
|
2009-12-19 18:07:31 +01:00
|
|
|
argv[optind + i],
|
2009-03-26 18:06:02 +01:00
|
|
|
debug);
|
2013-04-29 12:52:34 +02:00
|
|
|
if (!interfaces.iface[i]) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to initialize interface");
|
2009-03-26 18:06:02 +01:00
|
|
|
goto out;
|
2013-04-29 12:52:34 +02:00
|
|
|
}
|
2015-09-22 19:43:12 +02:00
|
|
|
if (start_ifaces_in_sync)
|
|
|
|
interfaces.iface[i]->need_to_start_in_sync = 1;
|
2009-03-26 18:06:02 +01:00
|
|
|
}
|
|
|
|
|
2013-11-03 20:16:33 +01:00
|
|
|
/* Allocate and parse configuration for per-BSS files */
|
2013-10-17 16:41:26 +02:00
|
|
|
for (i = 0; i < num_bss_configs; i++) {
|
|
|
|
struct hostapd_iface *iface;
|
|
|
|
char *fname;
|
|
|
|
|
|
|
|
wpa_printf(MSG_INFO, "BSS config: %s", bss_config[i]);
|
|
|
|
fname = os_strchr(bss_config[i], ':');
|
|
|
|
if (fname == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR,
|
|
|
|
"Invalid BSS config identifier '%s'",
|
|
|
|
bss_config[i]);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
*fname++ = '\0';
|
|
|
|
iface = hostapd_interface_init_bss(&interfaces, bss_config[i],
|
|
|
|
fname, debug);
|
|
|
|
if (iface == NULL)
|
|
|
|
goto out;
|
|
|
|
for (j = 0; j < interfaces.count; j++) {
|
|
|
|
if (interfaces.iface[j] == 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 == NULL) {
|
|
|
|
hostapd_interface_deinit_free(iface);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
interfaces.iface = tmp;
|
|
|
|
interfaces.iface[interfaces.count++] = iface;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-03 20:16:33 +01:00
|
|
|
/*
|
|
|
|
* Enable configured interfaces. Depending on channel configuration,
|
|
|
|
* this may complete full initialization before returning or use a
|
|
|
|
* callback mechanism to complete setup in case of operations like HT
|
|
|
|
* co-ex scans, ACS, or DFS are needed to determine channel parameters.
|
|
|
|
* In such case, the interface will be enabled from eloop context within
|
|
|
|
* hostapd_global_run().
|
|
|
|
*/
|
2013-11-05 12:39:21 +01:00
|
|
|
interfaces.terminate_on_error = interfaces.count;
|
2013-10-17 16:41:26 +02:00
|
|
|
for (i = 0; i < interfaces.count; i++) {
|
2018-10-16 16:32:19 +02:00
|
|
|
if (hostapd_driver_init(interfaces.iface[i]) ||
|
|
|
|
hostapd_setup_interface(interfaces.iface[i]))
|
2013-10-17 16:41:26 +02:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2011-12-20 16:10:47 +01:00
|
|
|
hostapd_global_ctrl_iface_init(&interfaces);
|
|
|
|
|
2013-04-29 12:52:34 +02:00
|
|
|
if (hostapd_global_run(&interfaces, daemonize, pid_file)) {
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to start eloop");
|
2009-03-26 18:06:02 +01:00
|
|
|
goto out;
|
2013-04-29 12:52:34 +02:00
|
|
|
}
|
2009-03-26 18:06:02 +01:00
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
out:
|
2011-12-20 16:10:47 +01:00
|
|
|
hostapd_global_ctrl_iface_deinit(&interfaces);
|
2009-03-26 18:06:02 +01:00
|
|
|
/* Deinitialize all interfaces */
|
2014-03-05 13:55:29 +01:00
|
|
|
for (i = 0; i < interfaces.count; i++) {
|
2014-03-07 21:37:03 +01:00
|
|
|
if (!interfaces.iface[i])
|
|
|
|
continue;
|
2014-03-05 13:55:29 +01:00
|
|
|
interfaces.iface[i]->driver_ap_teardown =
|
|
|
|
!!(interfaces.iface[i]->drv_flags &
|
|
|
|
WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
|
2009-12-27 20:31:13 +01:00
|
|
|
hostapd_interface_deinit_free(interfaces.iface[i]);
|
2014-03-05 13:55:29 +01:00
|
|
|
}
|
2009-03-26 18:06:02 +01:00
|
|
|
os_free(interfaces.iface);
|
|
|
|
|
2017-11-27 12:22:32 +01:00
|
|
|
#ifdef CONFIG_DPP
|
2019-03-24 15:44:21 +01:00
|
|
|
dpp_global_deinit(interfaces.dpp);
|
2017-11-27 12:22:32 +01:00
|
|
|
#endif /* CONFIG_DPP */
|
|
|
|
|
2016-06-12 23:36:18 +02:00
|
|
|
if (interfaces.eloop_initialized)
|
|
|
|
eloop_cancel_timeout(hostapd_periodic, &interfaces, NULL);
|
|
|
|
hostapd_global_deinit(pid_file, interfaces.eloop_initialized);
|
2009-11-10 16:05:28 +01:00
|
|
|
os_free(pid_file);
|
2009-03-26 18:06:02 +01:00
|
|
|
|
2017-01-23 13:55:04 +01:00
|
|
|
wpa_debug_close_syslog();
|
2011-02-06 19:24:16 +01:00
|
|
|
if (log_file)
|
|
|
|
wpa_debug_close_file();
|
2013-10-30 19:29:58 +01:00
|
|
|
wpa_debug_close_linux_tracing();
|
2011-02-06 19:24:16 +01:00
|
|
|
|
2013-10-17 16:41:26 +02:00
|
|
|
os_free(bss_config);
|
|
|
|
|
2016-06-10 20:04:25 +02:00
|
|
|
for (i = 0; i < if_names_size; i++)
|
|
|
|
os_free(if_names[i]);
|
|
|
|
os_free(if_names);
|
|
|
|
|
2015-01-21 14:30:48 +01:00
|
|
|
fst_global_deinit();
|
|
|
|
|
2009-12-19 19:55:17 +01:00
|
|
|
os_program_deinit();
|
|
|
|
|
2009-03-26 18:06:02 +01:00
|
|
|
return ret;
|
|
|
|
}
|