LCOV - code coverage report
Current view: top level - hostapd - main.c (source / functions) Hit Total Coverage
Test: hostapd hwsim test run 1388613141 Lines: 204 357 57.1 %
Date: 2014-01-02 Functions: 10 16 62.5 %
Branches: 90 211 42.7 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * hostapd / main()
       3                 :            :  * Copyright (c) 2002-2011, Jouni Malinen <j@w1.fi>
       4                 :            :  *
       5                 :            :  * This software may be distributed under the terms of the BSD license.
       6                 :            :  * See README for more details.
       7                 :            :  */
       8                 :            : 
       9                 :            : #include "utils/includes.h"
      10                 :            : #ifndef CONFIG_NATIVE_WINDOWS
      11                 :            : #include <syslog.h>
      12                 :            : #include <grp.h>
      13                 :            : #endif /* CONFIG_NATIVE_WINDOWS */
      14                 :            : 
      15                 :            : #include "utils/common.h"
      16                 :            : #include "utils/eloop.h"
      17                 :            : #include "crypto/random.h"
      18                 :            : #include "crypto/tls.h"
      19                 :            : #include "common/version.h"
      20                 :            : #include "drivers/driver.h"
      21                 :            : #include "eap_server/eap.h"
      22                 :            : #include "eap_server/tncs.h"
      23                 :            : #include "ap/hostapd.h"
      24                 :            : #include "ap/ap_config.h"
      25                 :            : #include "ap/ap_drv_ops.h"
      26                 :            : #include "config_file.h"
      27                 :            : #include "eap_register.h"
      28                 :            : #include "dump_state.h"
      29                 :            : #include "ctrl_iface.h"
      30                 :            : 
      31                 :            : 
      32                 :            : struct hapd_global {
      33                 :            :         void **drv_priv;
      34                 :            :         size_t drv_count;
      35                 :            : };
      36                 :            : 
      37                 :            : static struct hapd_global global;
      38                 :            : 
      39                 :            : 
      40                 :            : #ifndef CONFIG_NO_HOSTAPD_LOGGER
      41                 :      10536 : static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
      42                 :            :                               int level, const char *txt, size_t len)
      43                 :            : {
      44                 :      10536 :         struct hostapd_data *hapd = ctx;
      45                 :            :         char *format, *module_str;
      46                 :            :         int maxlen;
      47                 :            :         int conf_syslog_level, conf_stdout_level;
      48                 :            :         unsigned int conf_syslog, conf_stdout;
      49                 :            : 
      50                 :      10536 :         maxlen = len + 100;
      51                 :      10536 :         format = os_malloc(maxlen);
      52         [ -  + ]:      10536 :         if (!format)
      53                 :      10536 :                 return;
      54                 :            : 
      55 [ +  - ][ +  - ]:      10536 :         if (hapd && hapd->conf) {
      56                 :      10536 :                 conf_syslog_level = hapd->conf->logger_syslog_level;
      57                 :      10536 :                 conf_stdout_level = hapd->conf->logger_stdout_level;
      58                 :      10536 :                 conf_syslog = hapd->conf->logger_syslog;
      59                 :      10536 :                 conf_stdout = hapd->conf->logger_stdout;
      60                 :            :         } else {
      61                 :          0 :                 conf_syslog_level = conf_stdout_level = 0;
      62                 :          0 :                 conf_syslog = conf_stdout = (unsigned int) -1;
      63                 :            :         }
      64                 :            : 
      65   [ +  +  +  +  :      10536 :         switch (module) {
             -  -  +  - ]
      66                 :            :         case HOSTAPD_MODULE_IEEE80211:
      67                 :       1522 :                 module_str = "IEEE 802.11";
      68                 :       1522 :                 break;
      69                 :            :         case HOSTAPD_MODULE_IEEE8021X:
      70                 :       2895 :                 module_str = "IEEE 802.1X";
      71                 :       2895 :                 break;
      72                 :            :         case HOSTAPD_MODULE_RADIUS:
      73                 :       2661 :                 module_str = "RADIUS";
      74                 :       2661 :                 break;
      75                 :            :         case HOSTAPD_MODULE_WPA:
      76                 :       1650 :                 module_str = "WPA";
      77                 :       1650 :                 break;
      78                 :            :         case HOSTAPD_MODULE_DRIVER:
      79                 :          0 :                 module_str = "DRIVER";
      80                 :          0 :                 break;
      81                 :            :         case HOSTAPD_MODULE_IAPP:
      82                 :          0 :                 module_str = "IAPP";
      83                 :          0 :                 break;
      84                 :            :         case HOSTAPD_MODULE_MLME:
      85                 :       1808 :                 module_str = "MLME";
      86                 :       1808 :                 break;
      87                 :            :         default:
      88                 :          0 :                 module_str = NULL;
      89                 :          0 :                 break;
      90                 :            :         }
      91                 :            : 
      92 [ +  - ][ +  - ]:      10536 :         if (hapd && hapd->conf && addr)
                 [ +  + ]
      93         [ +  - ]:       8617 :                 os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
      94                 :      60319 :                             hapd->conf->iface, MAC2STR(addr),
      95                 :            :                             module_str ? " " : "", module_str, txt);
      96 [ +  - ][ +  - ]:       1919 :         else if (hapd && hapd->conf)
      97         [ +  - ]:       1919 :                 os_snprintf(format, maxlen, "%s:%s%s %s",
      98                 :       1919 :                             hapd->conf->iface, module_str ? " " : "",
      99                 :            :                             module_str, txt);
     100         [ #  # ]:          0 :         else if (addr)
     101         [ #  # ]:          0 :                 os_snprintf(format, maxlen, "STA " MACSTR "%s%s: %s",
     102                 :          0 :                             MAC2STR(addr), module_str ? " " : "",
     103                 :            :                             module_str, txt);
     104                 :            :         else
     105         [ #  # ]:          0 :                 os_snprintf(format, maxlen, "%s%s%s",
     106                 :            :                             module_str, module_str ? ": " : "", txt);
     107                 :            : 
     108 [ +  - ][ +  + ]:      10536 :         if ((conf_stdout & module) && level >= conf_stdout_level) {
     109                 :      10055 :                 wpa_debug_print_timestamp();
     110                 :      10055 :                 wpa_printf(MSG_INFO, "%s", format);
     111                 :            :         }
     112                 :            : 
     113                 :            : #ifndef CONFIG_NATIVE_WINDOWS
     114 [ +  - ][ +  + ]:      10536 :         if ((conf_syslog & module) && level >= conf_syslog_level) {
     115                 :            :                 int priority;
     116   [ -  +  -  +  :       1332 :                 switch (level) {
                      - ]
     117                 :            :                 case HOSTAPD_LEVEL_DEBUG_VERBOSE:
     118                 :            :                 case HOSTAPD_LEVEL_DEBUG:
     119                 :          0 :                         priority = LOG_DEBUG;
     120                 :          0 :                         break;
     121                 :            :                 case HOSTAPD_LEVEL_INFO:
     122                 :       1287 :                         priority = LOG_INFO;
     123                 :       1287 :                         break;
     124                 :            :                 case HOSTAPD_LEVEL_NOTICE:
     125                 :          0 :                         priority = LOG_NOTICE;
     126                 :          0 :                         break;
     127                 :            :                 case HOSTAPD_LEVEL_WARNING:
     128                 :         45 :                         priority = LOG_WARNING;
     129                 :         45 :                         break;
     130                 :            :                 default:
     131                 :          0 :                         priority = LOG_INFO;
     132                 :          0 :                         break;
     133                 :            :                 }
     134                 :       1332 :                 syslog(priority, "%s", format);
     135                 :            :         }
     136                 :            : #endif /* CONFIG_NATIVE_WINDOWS */
     137                 :            : 
     138                 :      10536 :         os_free(format);
     139                 :            : }
     140                 :            : #endif /* CONFIG_NO_HOSTAPD_LOGGER */
     141                 :            : 
     142                 :            : 
     143                 :            : /**
     144                 :            :  * hostapd_driver_init - Preparate driver interface
     145                 :            :  */
     146                 :        203 : static int hostapd_driver_init(struct hostapd_iface *iface)
     147                 :            : {
     148                 :            :         struct wpa_init_params params;
     149                 :            :         size_t i;
     150                 :        203 :         struct hostapd_data *hapd = iface->bss[0];
     151                 :        203 :         struct hostapd_bss_config *conf = hapd->conf;
     152                 :        203 :         u8 *b = conf->bssid;
     153                 :            :         struct wpa_driver_capa capa;
     154                 :            : 
     155 [ +  - ][ -  + ]:        203 :         if (hapd->driver == NULL || hapd->driver->hapd_init == NULL) {
     156                 :          0 :                 wpa_printf(MSG_ERROR, "No hostapd driver wrapper available");
     157                 :          0 :                 return -1;
     158                 :            :         }
     159                 :            : 
     160                 :            :         /* Initialize the driver interface */
     161         [ +  + ]:        203 :         if (!(b[0] | b[1] | b[2] | b[3] | b[4] | b[5]))
     162                 :        197 :                 b = NULL;
     163                 :            : 
     164                 :        203 :         os_memset(&params, 0, sizeof(params));
     165         [ +  - ]:        203 :         for (i = 0; wpa_drivers[i]; i++) {
     166         [ -  + ]:        203 :                 if (wpa_drivers[i] != hapd->driver)
     167                 :          0 :                         continue;
     168                 :            : 
     169 [ +  + ][ +  - ]:        203 :                 if (global.drv_priv[i] == NULL &&
     170                 :          1 :                     wpa_drivers[i]->global_init) {
     171                 :          1 :                         global.drv_priv[i] = wpa_drivers[i]->global_init();
     172         [ -  + ]:          1 :                         if (global.drv_priv[i] == NULL) {
     173                 :          0 :                                 wpa_printf(MSG_ERROR, "Failed to initialize "
     174                 :            :                                            "driver '%s'",
     175                 :          0 :                                            wpa_drivers[i]->name);
     176                 :          0 :                                 return -1;
     177                 :            :                         }
     178                 :            :                 }
     179                 :            : 
     180                 :        203 :                 params.global_priv = global.drv_priv[i];
     181                 :        203 :                 break;
     182                 :            :         }
     183                 :        203 :         params.bssid = b;
     184                 :        203 :         params.ifname = hapd->conf->iface;
     185                 :        203 :         params.ssid = hapd->conf->ssid.ssid;
     186                 :        203 :         params.ssid_len = hapd->conf->ssid.ssid_len;
     187                 :        203 :         params.test_socket = hapd->conf->test_socket;
     188                 :        203 :         params.use_pae_group_addr = hapd->conf->use_pae_group_addr;
     189                 :            : 
     190                 :        203 :         params.num_bridge = hapd->iface->num_bss;
     191                 :        203 :         params.bridge = os_calloc(hapd->iface->num_bss, sizeof(char *));
     192         [ -  + ]:        203 :         if (params.bridge == NULL)
     193                 :          0 :                 return -1;
     194         [ +  + ]:        412 :         for (i = 0; i < hapd->iface->num_bss; i++) {
     195                 :        209 :                 struct hostapd_data *bss = hapd->iface->bss[i];
     196         [ -  + ]:        209 :                 if (bss->conf->bridge[0])
     197                 :          0 :                         params.bridge[i] = bss->conf->bridge;
     198                 :            :         }
     199                 :            : 
     200                 :        203 :         params.own_addr = hapd->own_addr;
     201                 :            : 
     202                 :        203 :         hapd->drv_priv = hapd->driver->hapd_init(hapd, &params);
     203                 :        203 :         os_free(params.bridge);
     204         [ -  + ]:        203 :         if (hapd->drv_priv == NULL) {
     205                 :          0 :                 wpa_printf(MSG_ERROR, "%s driver initialization failed.",
     206                 :          0 :                            hapd->driver->name);
     207                 :          0 :                 hapd->driver = NULL;
     208                 :          0 :                 return -1;
     209                 :            :         }
     210                 :            : 
     211   [ +  -  +  - ]:        406 :         if (hapd->driver->get_capa &&
     212                 :        203 :             hapd->driver->get_capa(hapd->drv_priv, &capa) == 0) {
     213                 :        203 :                 iface->drv_flags = capa.flags;
     214                 :        203 :                 iface->probe_resp_offloads = capa.probe_resp_offloads;
     215                 :        203 :                 iface->extended_capa = capa.extended_capa;
     216                 :        203 :                 iface->extended_capa_mask = capa.extended_capa_mask;
     217                 :        203 :                 iface->extended_capa_len = capa.extended_capa_len;
     218                 :        203 :                 iface->drv_max_acl_mac_addrs = capa.max_acl_mac_addrs;
     219                 :            :         }
     220                 :            : 
     221                 :        203 :         return 0;
     222                 :            : }
     223                 :            : 
     224                 :            : 
     225                 :            : /**
     226                 :            :  * hostapd_interface_init - Read configuration file and init BSS data
     227                 :            :  *
     228                 :            :  * This function is used to parse configuration file for a full interface (one
     229                 :            :  * or more BSSes sharing the same radio) and allocate memory for the BSS
     230                 :            :  * interfaces. No actiual driver operations are started.
     231                 :            :  */
     232                 :            : static struct hostapd_iface *
     233                 :          0 : hostapd_interface_init(struct hapd_interfaces *interfaces,
     234                 :            :                        const char *config_fname, int debug)
     235                 :            : {
     236                 :            :         struct hostapd_iface *iface;
     237                 :            :         int k;
     238                 :            : 
     239                 :          0 :         wpa_printf(MSG_ERROR, "Configuration file: %s", config_fname);
     240                 :          0 :         iface = hostapd_init(interfaces, config_fname);
     241         [ #  # ]:          0 :         if (!iface)
     242                 :          0 :                 return NULL;
     243                 :          0 :         iface->interfaces = interfaces;
     244                 :            : 
     245         [ #  # ]:          0 :         for (k = 0; k < debug; k++) {
     246         [ #  # ]:          0 :                 if (iface->bss[0]->conf->logger_stdout_level > 0)
     247                 :          0 :                         iface->bss[0]->conf->logger_stdout_level--;
     248                 :            :         }
     249                 :            : 
     250   [ #  #  #  # ]:          0 :         if (iface->conf->bss[0]->iface[0] == '\0' &&
     251                 :          0 :             !hostapd_drv_none(iface->bss[0])) {
     252                 :          0 :                 wpa_printf(MSG_ERROR, "Interface name not specified in %s",
     253                 :            :                            config_fname);
     254                 :          0 :                 hostapd_interface_deinit_free(iface);
     255                 :          0 :                 return NULL;
     256                 :            :         }
     257                 :            : 
     258                 :          0 :         return iface;
     259                 :            : }
     260                 :            : 
     261                 :            : 
     262                 :            : /**
     263                 :            :  * handle_term - SIGINT and SIGTERM handler to terminate hostapd process
     264                 :            :  */
     265                 :          1 : static void handle_term(int sig, void *signal_ctx)
     266                 :            : {
     267                 :          1 :         wpa_printf(MSG_DEBUG, "Signal %d received - terminating", sig);
     268                 :          1 :         eloop_terminate();
     269                 :          1 : }
     270                 :            : 
     271                 :            : 
     272                 :            : #ifndef CONFIG_NATIVE_WINDOWS
     273                 :            : 
     274                 :          0 : static int handle_reload_iface(struct hostapd_iface *iface, void *ctx)
     275                 :            : {
     276         [ #  # ]:          0 :         if (hostapd_reload_config(iface) < 0) {
     277                 :          0 :                 wpa_printf(MSG_WARNING, "Failed to read new configuration "
     278                 :            :                            "file - continuing with old.");
     279                 :            :         }
     280                 :          0 :         return 0;
     281                 :            : }
     282                 :            : 
     283                 :            : 
     284                 :            : /**
     285                 :            :  * handle_reload - SIGHUP handler to reload configuration
     286                 :            :  */
     287                 :          0 : static void handle_reload(int sig, void *signal_ctx)
     288                 :            : {
     289                 :          0 :         struct hapd_interfaces *interfaces = signal_ctx;
     290                 :          0 :         wpa_printf(MSG_DEBUG, "Signal %d received - reloading configuration",
     291                 :            :                    sig);
     292                 :          0 :         hostapd_for_each_interface(interfaces, handle_reload_iface, NULL);
     293                 :          0 : }
     294                 :            : 
     295                 :            : 
     296                 :          0 : static void handle_dump_state(int sig, void *signal_ctx)
     297                 :            : {
     298                 :            : #ifdef HOSTAPD_DUMP_STATE
     299                 :          0 :         struct hapd_interfaces *interfaces = signal_ctx;
     300                 :          0 :         hostapd_for_each_interface(interfaces, handle_dump_state_iface, NULL);
     301                 :            : #endif /* HOSTAPD_DUMP_STATE */
     302                 :          0 : }
     303                 :            : #endif /* CONFIG_NATIVE_WINDOWS */
     304                 :            : 
     305                 :            : 
     306                 :          1 : static int hostapd_global_init(struct hapd_interfaces *interfaces,
     307                 :            :                                const char *entropy_file)
     308                 :            : {
     309                 :            :         int i;
     310                 :            : 
     311                 :          1 :         os_memset(&global, 0, sizeof(global));
     312                 :            : 
     313                 :          1 :         hostapd_logger_register_cb(hostapd_logger_cb);
     314                 :            : 
     315         [ -  + ]:          1 :         if (eap_server_register_methods()) {
     316                 :          0 :                 wpa_printf(MSG_ERROR, "Failed to register EAP methods");
     317                 :          0 :                 return -1;
     318                 :            :         }
     319                 :            : 
     320         [ -  + ]:          1 :         if (eloop_init()) {
     321                 :          0 :                 wpa_printf(MSG_ERROR, "Failed to initialize event loop");
     322                 :          0 :                 return -1;
     323                 :            :         }
     324                 :            : 
     325                 :            :         random_init(entropy_file);
     326                 :            : 
     327                 :            : #ifndef CONFIG_NATIVE_WINDOWS
     328                 :          1 :         eloop_register_signal(SIGHUP, handle_reload, interfaces);
     329                 :          1 :         eloop_register_signal(SIGUSR1, handle_dump_state, interfaces);
     330                 :            : #endif /* CONFIG_NATIVE_WINDOWS */
     331                 :          1 :         eloop_register_signal_terminate(handle_term, interfaces);
     332                 :            : 
     333                 :            : #ifndef CONFIG_NATIVE_WINDOWS
     334                 :          1 :         openlog("hostapd", 0, LOG_DAEMON);
     335                 :            : #endif /* CONFIG_NATIVE_WINDOWS */
     336                 :            : 
     337         [ +  + ]:          5 :         for (i = 0; wpa_drivers[i]; i++)
     338                 :          4 :                 global.drv_count++;
     339         [ -  + ]:          1 :         if (global.drv_count == 0) {
     340                 :          0 :                 wpa_printf(MSG_ERROR, "No drivers enabled");
     341                 :          0 :                 return -1;
     342                 :            :         }
     343                 :          1 :         global.drv_priv = os_calloc(global.drv_count, sizeof(void *));
     344         [ -  + ]:          1 :         if (global.drv_priv == NULL)
     345                 :          0 :                 return -1;
     346                 :            : 
     347                 :          1 :         return 0;
     348                 :            : }
     349                 :            : 
     350                 :            : 
     351                 :          1 : static void hostapd_global_deinit(const char *pid_file)
     352                 :            : {
     353                 :            :         int i;
     354                 :            : 
     355 [ +  + ][ +  - ]:          5 :         for (i = 0; wpa_drivers[i] && global.drv_priv; i++) {
     356         [ +  + ]:          4 :                 if (!global.drv_priv[i])
     357                 :          3 :                         continue;
     358                 :          1 :                 wpa_drivers[i]->global_deinit(global.drv_priv[i]);
     359                 :            :         }
     360                 :          1 :         os_free(global.drv_priv);
     361                 :          1 :         global.drv_priv = NULL;
     362                 :            : 
     363                 :            : #ifdef EAP_SERVER_TNC
     364                 :          1 :         tncs_global_deinit();
     365                 :            : #endif /* EAP_SERVER_TNC */
     366                 :            : 
     367                 :            :         random_deinit();
     368                 :            : 
     369                 :          1 :         eloop_destroy();
     370                 :            : 
     371                 :            : #ifndef CONFIG_NATIVE_WINDOWS
     372                 :          1 :         closelog();
     373                 :            : #endif /* CONFIG_NATIVE_WINDOWS */
     374                 :            : 
     375                 :          1 :         eap_server_unregister_methods();
     376                 :            : 
     377                 :          1 :         os_daemonize_terminate(pid_file);
     378                 :          1 : }
     379                 :            : 
     380                 :            : 
     381                 :          1 : static int hostapd_global_run(struct hapd_interfaces *ifaces, int daemonize,
     382                 :            :                               const char *pid_file)
     383                 :            : {
     384                 :            : #ifdef EAP_SERVER_TNC
     385                 :          1 :         int tnc = 0;
     386                 :            :         size_t i, k;
     387                 :            : 
     388 [ +  - ][ -  + ]:          1 :         for (i = 0; !tnc && i < ifaces->count; i++) {
     389         [ #  # ]:          0 :                 for (k = 0; k < ifaces->iface[i]->num_bss; k++) {
     390         [ #  # ]:          0 :                         if (ifaces->iface[i]->bss[0]->conf->tnc) {
     391                 :          0 :                                 tnc++;
     392                 :          0 :                                 break;
     393                 :            :                         }
     394                 :            :                 }
     395                 :            :         }
     396                 :            : 
     397 [ -  + ][ #  # ]:          1 :         if (tnc && tncs_global_init() < 0) {
     398                 :          0 :                 wpa_printf(MSG_ERROR, "Failed to initialize TNCS");
     399                 :          0 :                 return -1;
     400                 :            :         }
     401                 :            : #endif /* EAP_SERVER_TNC */
     402                 :            : 
     403 [ -  + ][ #  # ]:          1 :         if (daemonize && os_daemonize(pid_file)) {
     404                 :          0 :                 perror("daemon");
     405                 :          0 :                 return -1;
     406                 :            :         }
     407                 :            : 
     408                 :          1 :         eloop_run();
     409                 :            : 
     410                 :          1 :         return 0;
     411                 :            : }
     412                 :            : 
     413                 :            : 
     414                 :          0 : static void show_version(void)
     415                 :            : {
     416                 :          0 :         fprintf(stderr,
     417                 :            :                 "hostapd v" VERSION_STR "\n"
     418                 :            :                 "User space daemon for IEEE 802.11 AP management,\n"
     419                 :            :                 "IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n"
     420                 :            :                 "Copyright (c) 2002-2013, Jouni Malinen <j@w1.fi> "
     421                 :            :                 "and contributors\n");
     422                 :          0 : }
     423                 :            : 
     424                 :            : 
     425                 :          0 : static void usage(void)
     426                 :            : {
     427                 :          0 :         show_version();
     428                 :          0 :         fprintf(stderr,
     429                 :            :                 "\n"
     430                 :            :                 "usage: hostapd [-hdBKtv] [-P <PID file>] [-e <entropy file>] "
     431                 :            :                 "\\\n"
     432                 :            :                 "         [-g <global ctrl_iface>] [-G <group>] \\\n"
     433                 :            :                 "         <configuration file(s)>\n"
     434                 :            :                 "\n"
     435                 :            :                 "options:\n"
     436                 :            :                 "   -h   show this usage\n"
     437                 :            :                 "   -d   show more debug messages (-dd for even more)\n"
     438                 :            :                 "   -B   run daemon in the background\n"
     439                 :            :                 "   -e   entropy file\n"
     440                 :            :                 "   -g   global control interface path\n"
     441                 :            :                 "   -G   group for control interfaces\n"
     442                 :            :                 "   -P   PID file\n"
     443                 :            :                 "   -K   include key data in debug messages\n"
     444                 :            : #ifdef CONFIG_DEBUG_FILE
     445                 :            :                 "   -f   log output to debug file instead of stdout\n"
     446                 :            : #endif /* CONFIG_DEBUG_FILE */
     447                 :            : #ifdef CONFIG_DEBUG_LINUX_TRACING
     448                 :            :                 "   -T = record to Linux tracing in addition to logging\n"
     449                 :            :                 "        (records all messages regardless of debug verbosity)\n"
     450                 :            : #endif /* CONFIG_DEBUG_LINUX_TRACING */
     451                 :            :                 "   -t   include timestamps in some debug messages\n"
     452                 :            :                 "   -v   show hostapd version\n");
     453                 :            : 
     454                 :          0 :         exit(1);
     455                 :            : }
     456                 :            : 
     457                 :            : 
     458                 :       9173 : static const char * hostapd_msg_ifname_cb(void *ctx)
     459                 :            : {
     460                 :       9173 :         struct hostapd_data *hapd = ctx;
     461 [ +  - ][ +  - ]:       9173 :         if (hapd && hapd->iconf && hapd->iconf->bss &&
         [ +  - ][ +  - ]
     462         [ +  - ]:       9173 :             hapd->iconf->num_bss > 0 && hapd->iconf->bss[0])
     463                 :       9173 :                 return hapd->iconf->bss[0]->iface;
     464                 :       9173 :         return NULL;
     465                 :            : }
     466                 :            : 
     467                 :            : 
     468                 :          1 : static int hostapd_get_global_ctrl_iface(struct hapd_interfaces *interfaces,
     469                 :            :                                          const char *path)
     470                 :            : {
     471                 :            :         char *pos;
     472                 :          1 :         os_free(interfaces->global_iface_path);
     473                 :          1 :         interfaces->global_iface_path = os_strdup(path);
     474         [ -  + ]:          1 :         if (interfaces->global_iface_path == NULL)
     475                 :          0 :                 return -1;
     476                 :          1 :         pos = os_strrchr(interfaces->global_iface_path, '/');
     477         [ -  + ]:          1 :         if (pos == NULL) {
     478                 :          0 :                 wpa_printf(MSG_ERROR, "No '/' in the global control interface "
     479                 :            :                            "file");
     480                 :          0 :                 os_free(interfaces->global_iface_path);
     481                 :          0 :                 interfaces->global_iface_path = NULL;
     482                 :          0 :                 return -1;
     483                 :            :         }
     484                 :            : 
     485                 :          1 :         *pos = '\0';
     486                 :          1 :         interfaces->global_iface_name = pos + 1;
     487                 :            : 
     488                 :          1 :         return 0;
     489                 :            : }
     490                 :            : 
     491                 :            : 
     492                 :          1 : static int hostapd_get_ctrl_iface_group(struct hapd_interfaces *interfaces,
     493                 :            :                                         const char *group)
     494                 :            : {
     495                 :            : #ifndef CONFIG_NATIVE_WINDOWS
     496                 :            :         struct group *grp;
     497                 :          1 :         grp = getgrnam(group);
     498         [ -  + ]:          1 :         if (grp == NULL) {
     499                 :          0 :                 wpa_printf(MSG_ERROR, "Unknown group '%s'", group);
     500                 :          0 :                 return -1;
     501                 :            :         }
     502                 :          1 :         interfaces->ctrl_iface_group = grp->gr_gid;
     503                 :            : #endif /* CONFIG_NATIVE_WINDOWS */
     504                 :          1 :         return 0;
     505                 :            : }
     506                 :            : 
     507                 :            : 
     508                 :          1 : int main(int argc, char *argv[])
     509                 :            : {
     510                 :            :         struct hapd_interfaces interfaces;
     511                 :          1 :         int ret = 1;
     512                 :            :         size_t i, j;
     513                 :          1 :         int c, debug = 0, daemonize = 0;
     514                 :          1 :         char *pid_file = NULL;
     515                 :          1 :         const char *log_file = NULL;
     516                 :          1 :         const char *entropy_file = NULL;
     517                 :          1 :         char **bss_config = NULL, **tmp_bss;
     518                 :          1 :         size_t num_bss_configs = 0;
     519                 :            : #ifdef CONFIG_DEBUG_LINUX_TRACING
     520                 :          1 :         int enable_trace_dbg = 0;
     521                 :            : #endif /* CONFIG_DEBUG_LINUX_TRACING */
     522                 :            : 
     523         [ -  + ]:          1 :         if (os_program_init())
     524                 :          0 :                 return -1;
     525                 :            : 
     526                 :          1 :         os_memset(&interfaces, 0, sizeof(interfaces));
     527                 :          1 :         interfaces.reload_config = hostapd_reload_config;
     528                 :          1 :         interfaces.config_read_cb = hostapd_config_read;
     529                 :          1 :         interfaces.for_each_interface = hostapd_for_each_interface;
     530                 :          1 :         interfaces.ctrl_iface_init = hostapd_ctrl_iface_init;
     531                 :          1 :         interfaces.ctrl_iface_deinit = hostapd_ctrl_iface_deinit;
     532                 :          1 :         interfaces.driver_init = hostapd_driver_init;
     533                 :          1 :         interfaces.global_iface_path = NULL;
     534                 :          1 :         interfaces.global_iface_name = NULL;
     535                 :          1 :         interfaces.global_ctrl_sock = -1;
     536                 :            : 
     537                 :            :         for (;;) {
     538                 :         12 :                 c = getopt(argc, argv, "b:Bde:f:hKP:Ttvg:G:");
     539         [ +  + ]:         12 :                 if (c < 0)
     540                 :          1 :                         break;
     541   [ -  +  -  -  :         11 :                 switch (c) {
          +  +  -  +  -  
             -  +  +  -  
                      - ]
     542                 :            :                 case 'h':
     543                 :          0 :                         usage();
     544                 :          0 :                         break;
     545                 :            :                 case 'd':
     546                 :          4 :                         debug++;
     547         [ +  + ]:          4 :                         if (wpa_debug_level > 0)
     548                 :          3 :                                 wpa_debug_level--;
     549                 :          4 :                         break;
     550                 :            :                 case 'B':
     551                 :          0 :                         daemonize++;
     552                 :          0 :                         break;
     553                 :            :                 case 'e':
     554                 :          0 :                         entropy_file = optarg;
     555                 :          0 :                         break;
     556                 :            :                 case 'f':
     557                 :          1 :                         log_file = optarg;
     558                 :          1 :                         break;
     559                 :            :                 case 'K':
     560                 :          2 :                         wpa_debug_show_keys++;
     561                 :          2 :                         break;
     562                 :            :                 case 'P':
     563                 :          0 :                         os_free(pid_file);
     564                 :          0 :                         pid_file = os_rel2abs_path(optarg);
     565                 :          0 :                         break;
     566                 :            :                 case 't':
     567                 :          2 :                         wpa_debug_timestamp++;
     568                 :          2 :                         break;
     569                 :            : #ifdef CONFIG_DEBUG_LINUX_TRACING
     570                 :            :                 case 'T':
     571                 :          0 :                         enable_trace_dbg = 1;
     572                 :          0 :                         break;
     573                 :            : #endif /* CONFIG_DEBUG_LINUX_TRACING */
     574                 :            :                 case 'v':
     575                 :          0 :                         show_version();
     576                 :          0 :                         exit(1);
     577                 :            :                         break;
     578                 :            :                 case 'g':
     579         [ -  + ]:          1 :                         if (hostapd_get_global_ctrl_iface(&interfaces, optarg))
     580                 :          0 :                                 return -1;
     581                 :          1 :                         break;
     582                 :            :                 case 'G':
     583         [ -  + ]:          1 :                         if (hostapd_get_ctrl_iface_group(&interfaces, optarg))
     584                 :          0 :                                 return -1;
     585                 :          1 :                         break;
     586                 :            :                 case 'b':
     587                 :          0 :                         tmp_bss = os_realloc_array(bss_config,
     588                 :            :                                                    num_bss_configs + 1,
     589                 :            :                                                    sizeof(char *));
     590         [ #  # ]:          0 :                         if (tmp_bss == NULL)
     591                 :          0 :                                 goto out;
     592                 :          0 :                         bss_config = tmp_bss;
     593                 :          0 :                         bss_config[num_bss_configs++] = optarg;
     594                 :          0 :                         break;
     595                 :            :                 default:
     596                 :          0 :                         usage();
     597                 :          0 :                         break;
     598                 :            :                 }
     599                 :         11 :         }
     600                 :            : 
     601 [ +  - ][ -  + ]:          1 :         if (optind == argc && interfaces.global_iface_path == NULL &&
                 [ #  # ]
     602                 :            :             num_bss_configs == 0)
     603                 :          0 :                 usage();
     604                 :            : 
     605                 :          1 :         wpa_msg_register_ifname_cb(hostapd_msg_ifname_cb);
     606                 :            : 
     607         [ +  - ]:          1 :         if (log_file)
     608                 :          1 :                 wpa_debug_open_file(log_file);
     609                 :            : #ifdef CONFIG_DEBUG_LINUX_TRACING
     610         [ -  + ]:          1 :         if (enable_trace_dbg) {
     611                 :          0 :                 int tret = wpa_debug_open_linux_tracing();
     612         [ #  # ]:          0 :                 if (tret) {
     613                 :          0 :                         wpa_printf(MSG_ERROR, "Failed to enable trace logging");
     614                 :          0 :                         return -1;
     615                 :            :                 }
     616                 :            :         }
     617                 :            : #endif /* CONFIG_DEBUG_LINUX_TRACING */
     618                 :            : 
     619                 :          1 :         interfaces.count = argc - optind;
     620 [ +  - ][ -  + ]:          1 :         if (interfaces.count || num_bss_configs) {
     621                 :          0 :                 interfaces.iface = os_calloc(interfaces.count + num_bss_configs,
     622                 :            :                                              sizeof(struct hostapd_iface *));
     623         [ #  # ]:          0 :                 if (interfaces.iface == NULL) {
     624                 :          0 :                         wpa_printf(MSG_ERROR, "malloc failed");
     625                 :          0 :                         return -1;
     626                 :            :                 }
     627                 :            :         }
     628                 :            : 
     629         [ -  + ]:          1 :         if (hostapd_global_init(&interfaces, entropy_file)) {
     630                 :          0 :                 wpa_printf(MSG_ERROR, "Failed to initilize global context");
     631                 :          0 :                 return -1;
     632                 :            :         }
     633                 :            : 
     634                 :            :         /* Allocate and parse configuration for full interface files */
     635         [ -  + ]:          1 :         for (i = 0; i < interfaces.count; i++) {
     636                 :          0 :                 interfaces.iface[i] = hostapd_interface_init(&interfaces,
     637                 :          0 :                                                              argv[optind + i],
     638                 :            :                                                              debug);
     639         [ #  # ]:          0 :                 if (!interfaces.iface[i]) {
     640                 :          0 :                         wpa_printf(MSG_ERROR, "Failed to initialize interface");
     641                 :          0 :                         goto out;
     642                 :            :                 }
     643                 :            :         }
     644                 :            : 
     645                 :            :         /* Allocate and parse configuration for per-BSS files */
     646         [ -  + ]:          1 :         for (i = 0; i < num_bss_configs; i++) {
     647                 :            :                 struct hostapd_iface *iface;
     648                 :            :                 char *fname;
     649                 :            : 
     650                 :          0 :                 wpa_printf(MSG_INFO, "BSS config: %s", bss_config[i]);
     651                 :          0 :                 fname = os_strchr(bss_config[i], ':');
     652         [ #  # ]:          0 :                 if (fname == NULL) {
     653                 :          0 :                         wpa_printf(MSG_ERROR,
     654                 :            :                                    "Invalid BSS config identifier '%s'",
     655                 :          0 :                                    bss_config[i]);
     656                 :          0 :                         goto out;
     657                 :            :                 }
     658                 :          0 :                 *fname++ = '\0';
     659                 :          0 :                 iface = hostapd_interface_init_bss(&interfaces, bss_config[i],
     660                 :            :                                                    fname, debug);
     661         [ #  # ]:          0 :                 if (iface == NULL)
     662                 :          0 :                         goto out;
     663         [ #  # ]:          0 :                 for (j = 0; j < interfaces.count; j++) {
     664         [ #  # ]:          0 :                         if (interfaces.iface[j] == iface)
     665                 :          0 :                                 break;
     666                 :            :                 }
     667         [ #  # ]:          0 :                 if (j == interfaces.count) {
     668                 :            :                         struct hostapd_iface **tmp;
     669                 :          0 :                         tmp = os_realloc_array(interfaces.iface,
     670                 :          0 :                                                interfaces.count + 1,
     671                 :            :                                                sizeof(struct hostapd_iface *));
     672         [ #  # ]:          0 :                         if (tmp == NULL) {
     673                 :          0 :                                 hostapd_interface_deinit_free(iface);
     674                 :          0 :                                 goto out;
     675                 :            :                         }
     676                 :          0 :                         interfaces.iface = tmp;
     677                 :          0 :                         interfaces.iface[interfaces.count++] = iface;
     678                 :            :                 }
     679                 :            :         }
     680                 :            : 
     681                 :            :         /*
     682                 :            :          * Enable configured interfaces. Depending on channel configuration,
     683                 :            :          * this may complete full initialization before returning or use a
     684                 :            :          * callback mechanism to complete setup in case of operations like HT
     685                 :            :          * co-ex scans, ACS, or DFS are needed to determine channel parameters.
     686                 :            :          * In such case, the interface will be enabled from eloop context within
     687                 :            :          * hostapd_global_run().
     688                 :            :          */
     689                 :          1 :         interfaces.terminate_on_error = interfaces.count;
     690         [ -  + ]:          1 :         for (i = 0; i < interfaces.count; i++) {
     691   [ #  #  #  # ]:          0 :                 if (hostapd_driver_init(interfaces.iface[i]) ||
     692                 :          0 :                     hostapd_setup_interface(interfaces.iface[i]))
     693                 :            :                         goto out;
     694                 :            :         }
     695                 :            : 
     696                 :          1 :         hostapd_global_ctrl_iface_init(&interfaces);
     697                 :            : 
     698         [ -  + ]:          1 :         if (hostapd_global_run(&interfaces, daemonize, pid_file)) {
     699                 :          0 :                 wpa_printf(MSG_ERROR, "Failed to start eloop");
     700                 :          0 :                 goto out;
     701                 :            :         }
     702                 :            : 
     703                 :          1 :         ret = 0;
     704                 :            : 
     705                 :            :  out:
     706                 :          1 :         hostapd_global_ctrl_iface_deinit(&interfaces);
     707                 :            :         /* Deinitialize all interfaces */
     708         [ -  + ]:          1 :         for (i = 0; i < interfaces.count; i++)
     709                 :          0 :                 hostapd_interface_deinit_free(interfaces.iface[i]);
     710                 :          1 :         os_free(interfaces.iface);
     711                 :            : 
     712                 :          1 :         hostapd_global_deinit(pid_file);
     713                 :          1 :         os_free(pid_file);
     714                 :            : 
     715         [ +  - ]:          1 :         if (log_file)
     716                 :          1 :                 wpa_debug_close_file();
     717                 :          1 :         wpa_debug_close_linux_tracing();
     718                 :            : 
     719                 :          1 :         os_free(bss_config);
     720                 :            : 
     721                 :          1 :         os_program_deinit();
     722                 :            : 
     723                 :          1 :         return ret;
     724                 :            : }

Generated by: LCOV version 1.9