main.c 18 KB

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