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