main.c 17 KB

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