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