ctype functions require an unsigned char
[mech_eap.git] / hostapd / main.c
index 6041799..1b9002c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * hostapd / main()
- * Copyright (c) 2002-2011, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2002-2016, Jouni Malinen <j@w1.fi>
  *
  * This software may be distributed under the terms of the BSD license.
  * See README for more details.
@@ -14,6 +14,7 @@
 
 #include "utils/common.h"
 #include "utils/eloop.h"
+#include "utils/uuid.h"
 #include "crypto/random.h"
 #include "crypto/tls.h"
 #include "common/version.h"
 #include "ap/hostapd.h"
 #include "ap/ap_config.h"
 #include "ap/ap_drv_ops.h"
+#include "fst/fst.h"
 #include "config_file.h"
 #include "eap_register.h"
-#include "dump_state.h"
 #include "ctrl_iface.h"
 
 
-extern int wpa_debug_level;
-extern int wpa_debug_show_keys;
-extern int wpa_debug_timestamp;
-
-extern struct wpa_driver_ops *wpa_drivers[];
-
-
 struct hapd_global {
        void **drv_priv;
        size_t drv_count;
@@ -99,22 +93,24 @@ static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
        if (hapd && hapd->conf && addr)
                os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
                            hapd->conf->iface, MAC2STR(addr),
-                           module_str ? " " : "", module_str, txt);
+                           module_str ? " " : "", module_str ? module_str : "",
+                           txt);
        else if (hapd && hapd->conf)
                os_snprintf(format, maxlen, "%s:%s%s %s",
                            hapd->conf->iface, module_str ? " " : "",
-                           module_str, txt);
+                           module_str ? module_str : "", txt);
        else if (addr)
                os_snprintf(format, maxlen, "STA " MACSTR "%s%s: %s",
                            MAC2STR(addr), module_str ? " " : "",
-                           module_str, txt);
+                           module_str ? module_str : "", txt);
        else
                os_snprintf(format, maxlen, "%s%s%s",
-                           module_str, module_str ? ": " : "", txt);
+                           module_str ? module_str : "",
+                           module_str ? ": " : "", txt);
 
        if ((conf_stdout & module) && level >= conf_stdout_level) {
                wpa_debug_print_timestamp();
-               printf("%s\n", format);
+               wpa_printf(MSG_INFO, "%s", format);
        }
 
 #ifndef CONFIG_NATIVE_WINDOWS
@@ -148,65 +144,8 @@ static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
 
 
 /**
- * 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().
+ * hostapd_driver_init - Preparate driver interface
  */
-static struct hostapd_iface * hostapd_init(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 = hostapd_config_read(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;
-}
-
-
 static int hostapd_driver_init(struct hostapd_iface *iface)
 {
        struct wpa_init_params params;
@@ -246,9 +185,7 @@ static int hostapd_driver_init(struct hostapd_iface *iface)
        }
        params.bssid = b;
        params.ifname = hapd->conf->iface;
-       params.ssid = hapd->conf->ssid.ssid;
-       params.ssid_len = hapd->conf->ssid.ssid_len;
-       params.test_socket = hapd->conf->test_socket;
+       params.driver_params = hapd->iconf->driver_params;
        params.use_pae_group_addr = hapd->conf->use_pae_group_addr;
 
        params.num_bridge = hapd->iface->num_bss;
@@ -274,27 +211,35 @@ static int hostapd_driver_init(struct hostapd_iface *iface)
 
        if (hapd->driver->get_capa &&
            hapd->driver->get_capa(hapd->drv_priv, &capa) == 0) {
+               struct wowlan_triggers *triggs;
+
                iface->drv_flags = capa.flags;
+               iface->smps_modes = capa.smps_modes;
                iface->probe_resp_offloads = capa.probe_resp_offloads;
                iface->extended_capa = capa.extended_capa;
                iface->extended_capa_mask = capa.extended_capa_mask;
                iface->extended_capa_len = capa.extended_capa_len;
                iface->drv_max_acl_mac_addrs = capa.max_acl_mac_addrs;
-       }
 
-#ifdef CONFIG_INTERWORKING
-       if (hapd->driver->set_qos_map && conf->qos_map_set_len &&
-           hapd->driver->set_qos_map(hapd->drv_priv, conf->qos_map_set,
-                                     conf->qos_map_set_len)) {
-               wpa_printf(MSG_ERROR, "Failed to initialize QoS Map.");
-               return -1;
+               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);
        }
-#endif /* CONFIG_INTERWORKING */
 
        return 0;
 }
 
 
+/**
+ * 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
+ * interfaces. No actiual driver operations are started.
+ */
 static struct hostapd_iface *
 hostapd_interface_init(struct hapd_interfaces *interfaces,
                       const char *config_fname, int debug)
@@ -303,7 +248,7 @@ hostapd_interface_init(struct hapd_interfaces *interfaces,
        int k;
 
        wpa_printf(MSG_ERROR, "Configuration file: %s", config_fname);
-       iface = hostapd_init(config_fname);
+       iface = hostapd_init(interfaces, config_fname);
        if (!iface)
                return NULL;
        iface->interfaces = interfaces;
@@ -321,129 +266,10 @@ hostapd_interface_init(struct hapd_interfaces *interfaces,
                return NULL;
        }
 
-       if (hostapd_driver_init(iface) ||
-           hostapd_setup_interface(iface)) {
-               hostapd_interface_deinit_free(iface);
-               return NULL;
-       }
-
-       iface->init_done = 1;
-
        return iface;
 }
 
 
-static 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;
-
-               /* Add new BSS to existing iface */
-               conf = hostapd_config_read(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;
-               }
-
-               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(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;
-}
-
-
-static int hostapd_interface_init2(struct hostapd_iface *iface)
-{
-       if (iface->init_done)
-               return 0;
-
-       if (hostapd_driver_init(iface) ||
-           hostapd_setup_interface(iface))
-               return -1;
-       iface->init_done = 1;
-
-       return 0;
-}
-
-
 /**
  * handle_term - SIGINT and SIGTERM handler to terminate hostapd process
  */
@@ -480,10 +306,7 @@ static void handle_reload(int sig, void *signal_ctx)
 
 static void handle_dump_state(int sig, void *signal_ctx)
 {
-#ifdef HOSTAPD_DUMP_STATE
-       struct hapd_interfaces *interfaces = signal_ctx;
-       hostapd_for_each_interface(interfaces, handle_dump_state_iface, NULL);
-#endif /* HOSTAPD_DUMP_STATE */
+       /* Not used anymore - ignore signal */
 }
 #endif /* CONFIG_NATIVE_WINDOWS */
 
@@ -585,9 +408,16 @@ static int hostapd_global_run(struct hapd_interfaces *ifaces, int daemonize,
        }
 #endif /* EAP_SERVER_TNC */
 
-       if (daemonize && os_daemonize(pid_file)) {
-               perror("daemon");
-               return -1;
+       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;
+               }
        }
 
        eloop_run();
@@ -602,7 +432,7 @@ static void show_version(void)
                "hostapd v" VERSION_STR "\n"
                "User space daemon for IEEE 802.11 AP management,\n"
                "IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n"
-               "Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi> "
+               "Copyright (c) 2002-2016, Jouni Malinen <j@w1.fi> "
                "and contributors\n");
 }
 
@@ -633,6 +463,7 @@ static void usage(void)
                "   -T = record to Linux tracing in addition to logging\n"
                "        (records all messages regardless of debug verbosity)\n"
 #endif /* CONFIG_DEBUG_LINUX_TRACING */
+               "   -S   start all the interfaces synchronously\n"
                "   -t   include timestamps in some debug messages\n"
                "   -v   show hostapd version\n");
 
@@ -690,6 +521,49 @@ static int hostapd_get_ctrl_iface_group(struct hapd_interfaces *interfaces,
 }
 
 
+#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 */
+
+
+#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);
+}
+
+
 int main(int argc, char *argv[])
 {
        struct hapd_interfaces interfaces;
@@ -704,6 +578,7 @@ int main(int argc, char *argv[])
 #ifdef CONFIG_DEBUG_LINUX_TRACING
        int enable_trace_dbg = 0;
 #endif /* CONFIG_DEBUG_LINUX_TRACING */
+       int start_ifaces_in_sync = 0;
 
        if (os_program_init())
                return -1;
@@ -718,9 +593,10 @@ int main(int argc, char *argv[])
        interfaces.global_iface_path = NULL;
        interfaces.global_iface_name = NULL;
        interfaces.global_ctrl_sock = -1;
+       interfaces.global_ctrl_dst = NULL;
 
        for (;;) {
-               c = getopt(argc, argv, "b:Bde:f:hKP:Ttvg:G:");
+               c = getopt(argc, argv, "b:Bde:f:hKP:STtu:vg:G:");
                if (c < 0)
                        break;
                switch (c) {
@@ -777,6 +653,13 @@ int main(int argc, char *argv[])
                        bss_config = tmp_bss;
                        bss_config[num_bss_configs++] = optarg;
                        break;
+               case 'S':
+                       start_ifaces_in_sync = 1;
+                       break;
+#ifdef CONFIG_WPS
+               case 'u':
+                       return gen_uuid(optarg);
+#endif /* CONFIG_WPS */
                default:
                        usage();
                        break;
@@ -791,6 +674,8 @@ int main(int argc, char *argv[])
 
        if (log_file)
                wpa_debug_open_file(log_file);
+       else
+               wpa_debug_setup_stdout();
 #ifdef CONFIG_DEBUG_LINUX_TRACING
        if (enable_trace_dbg) {
                int tret = wpa_debug_open_linux_tracing();
@@ -812,11 +697,25 @@ int main(int argc, char *argv[])
        }
 
        if (hostapd_global_init(&interfaces, entropy_file)) {
-               wpa_printf(MSG_ERROR, "Failed to initilize global context");
+               wpa_printf(MSG_ERROR, "Failed to initialize global context");
                return -1;
        }
 
-       /* Initialize interfaces */
+       eloop_register_timeout(HOSTAPD_CLEANUP_INTERVAL, 0,
+                              hostapd_periodic, &interfaces, NULL);
+
+       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 */
+
+       /* Allocate and parse configuration for full interface files */
        for (i = 0; i < interfaces.count; i++) {
                interfaces.iface[i] = hostapd_interface_init(&interfaces,
                                                             argv[optind + i],
@@ -825,8 +724,11 @@ int main(int argc, char *argv[])
                        wpa_printf(MSG_ERROR, "Failed to initialize interface");
                        goto out;
                }
+               if (start_ifaces_in_sync)
+                       interfaces.iface[i]->need_to_start_in_sync = 1;
        }
 
+       /* Allocate and parse configuration for per-BSS files */
        for (i = 0; i < num_bss_configs; i++) {
                struct hostapd_iface *iface;
                char *fname;
@@ -862,8 +764,18 @@ int main(int argc, char *argv[])
                }
        }
 
+       /*
+        * 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().
+        */
+       interfaces.terminate_on_error = interfaces.count;
        for (i = 0; i < interfaces.count; i++) {
-               if (hostapd_interface_init2(interfaces.iface[i]) < 0)
+               if (hostapd_driver_init(interfaces.iface[i]) ||
+                   hostapd_setup_interface(interfaces.iface[i]))
                        goto out;
        }
 
@@ -879,10 +791,17 @@ int main(int argc, char *argv[])
  out:
        hostapd_global_ctrl_iface_deinit(&interfaces);
        /* Deinitialize all interfaces */
-       for (i = 0; i < interfaces.count; i++)
+       for (i = 0; i < interfaces.count; i++) {
+               if (!interfaces.iface[i])
+                       continue;
+               interfaces.iface[i]->driver_ap_teardown =
+                       !!(interfaces.iface[i]->drv_flags &
+                          WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
                hostapd_interface_deinit_free(interfaces.iface[i]);
+       }
        os_free(interfaces.iface);
 
+       eloop_cancel_timeout(hostapd_periodic, &interfaces, NULL);
        hostapd_global_deinit(pid_file);
        os_free(pid_file);
 
@@ -892,6 +811,8 @@ int main(int argc, char *argv[])
 
        os_free(bss_config);
 
+       fst_global_deinit();
+
        os_program_deinit();
 
        return ret;