main.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  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. #endif /* CONFIG_NATIVE_WINDOWS */
  12. #include "utils/common.h"
  13. #include "utils/eloop.h"
  14. #include "crypto/random.h"
  15. #include "crypto/tls.h"
  16. #include "common/version.h"
  17. #include "drivers/driver.h"
  18. #include "eap_server/eap.h"
  19. #include "eap_server/tncs.h"
  20. #include "ap/hostapd.h"
  21. #include "ap/ap_config.h"
  22. #include "config_file.h"
  23. #include "eap_register.h"
  24. #include "dump_state.h"
  25. #include "ctrl_iface.h"
  26. extern int wpa_debug_level;
  27. extern int wpa_debug_show_keys;
  28. extern int wpa_debug_timestamp;
  29. extern struct wpa_driver_ops *wpa_drivers[];
  30. struct hapd_global {
  31. void **drv_priv;
  32. size_t drv_count;
  33. };
  34. static struct hapd_global global;
  35. struct hapd_interfaces {
  36. size_t count;
  37. struct hostapd_iface **iface;
  38. };
  39. static int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
  40. int (*cb)(struct hostapd_iface *iface,
  41. void *ctx), void *ctx)
  42. {
  43. size_t i;
  44. int ret;
  45. for (i = 0; i < interfaces->count; i++) {
  46. ret = cb(interfaces->iface[i], ctx);
  47. if (ret)
  48. return ret;
  49. }
  50. return 0;
  51. }
  52. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  53. static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
  54. int level, const char *txt, size_t len)
  55. {
  56. struct hostapd_data *hapd = ctx;
  57. char *format, *module_str;
  58. int maxlen;
  59. int conf_syslog_level, conf_stdout_level;
  60. unsigned int conf_syslog, conf_stdout;
  61. maxlen = len + 100;
  62. format = os_malloc(maxlen);
  63. if (!format)
  64. return;
  65. if (hapd && hapd->conf) {
  66. conf_syslog_level = hapd->conf->logger_syslog_level;
  67. conf_stdout_level = hapd->conf->logger_stdout_level;
  68. conf_syslog = hapd->conf->logger_syslog;
  69. conf_stdout = hapd->conf->logger_stdout;
  70. } else {
  71. conf_syslog_level = conf_stdout_level = 0;
  72. conf_syslog = conf_stdout = (unsigned int) -1;
  73. }
  74. switch (module) {
  75. case HOSTAPD_MODULE_IEEE80211:
  76. module_str = "IEEE 802.11";
  77. break;
  78. case HOSTAPD_MODULE_IEEE8021X:
  79. module_str = "IEEE 802.1X";
  80. break;
  81. case HOSTAPD_MODULE_RADIUS:
  82. module_str = "RADIUS";
  83. break;
  84. case HOSTAPD_MODULE_WPA:
  85. module_str = "WPA";
  86. break;
  87. case HOSTAPD_MODULE_DRIVER:
  88. module_str = "DRIVER";
  89. break;
  90. case HOSTAPD_MODULE_IAPP:
  91. module_str = "IAPP";
  92. break;
  93. case HOSTAPD_MODULE_MLME:
  94. module_str = "MLME";
  95. break;
  96. default:
  97. module_str = NULL;
  98. break;
  99. }
  100. if (hapd && hapd->conf && addr)
  101. os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
  102. hapd->conf->iface, MAC2STR(addr),
  103. module_str ? " " : "", module_str, txt);
  104. else if (hapd && hapd->conf)
  105. os_snprintf(format, maxlen, "%s:%s%s %s",
  106. hapd->conf->iface, module_str ? " " : "",
  107. module_str, txt);
  108. else if (addr)
  109. os_snprintf(format, maxlen, "STA " MACSTR "%s%s: %s",
  110. MAC2STR(addr), module_str ? " " : "",
  111. module_str, txt);
  112. else
  113. os_snprintf(format, maxlen, "%s%s%s",
  114. module_str, module_str ? ": " : "", txt);
  115. if ((conf_stdout & module) && level >= conf_stdout_level) {
  116. wpa_debug_print_timestamp();
  117. printf("%s\n", format);
  118. }
  119. #ifndef CONFIG_NATIVE_WINDOWS
  120. if ((conf_syslog & module) && level >= conf_syslog_level) {
  121. int priority;
  122. switch (level) {
  123. case HOSTAPD_LEVEL_DEBUG_VERBOSE:
  124. case HOSTAPD_LEVEL_DEBUG:
  125. priority = LOG_DEBUG;
  126. break;
  127. case HOSTAPD_LEVEL_INFO:
  128. priority = LOG_INFO;
  129. break;
  130. case HOSTAPD_LEVEL_NOTICE:
  131. priority = LOG_NOTICE;
  132. break;
  133. case HOSTAPD_LEVEL_WARNING:
  134. priority = LOG_WARNING;
  135. break;
  136. default:
  137. priority = LOG_INFO;
  138. break;
  139. }
  140. syslog(priority, "%s", format);
  141. }
  142. #endif /* CONFIG_NATIVE_WINDOWS */
  143. os_free(format);
  144. }
  145. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  146. /**
  147. * hostapd_init - Allocate and initialize per-interface data
  148. * @config_file: Path to the configuration file
  149. * Returns: Pointer to the allocated interface data or %NULL on failure
  150. *
  151. * This function is used to allocate main data structures for per-interface
  152. * data. The allocated data buffer will be freed by calling
  153. * hostapd_cleanup_iface().
  154. */
  155. static struct hostapd_iface * hostapd_init(const char *config_file)
  156. {
  157. struct hostapd_iface *hapd_iface = NULL;
  158. struct hostapd_config *conf = NULL;
  159. struct hostapd_data *hapd;
  160. size_t i;
  161. hapd_iface = os_zalloc(sizeof(*hapd_iface));
  162. if (hapd_iface == NULL)
  163. goto fail;
  164. hapd_iface->reload_config = hostapd_reload_config;
  165. hapd_iface->config_read_cb = hostapd_config_read;
  166. hapd_iface->config_fname = os_strdup(config_file);
  167. if (hapd_iface->config_fname == NULL)
  168. goto fail;
  169. hapd_iface->ctrl_iface_init = hostapd_ctrl_iface_init;
  170. hapd_iface->ctrl_iface_deinit = hostapd_ctrl_iface_deinit;
  171. hapd_iface->for_each_interface = hostapd_for_each_interface;
  172. conf = hostapd_config_read(hapd_iface->config_fname);
  173. if (conf == NULL)
  174. goto fail;
  175. hapd_iface->conf = conf;
  176. hapd_iface->num_bss = conf->num_bss;
  177. hapd_iface->bss = os_zalloc(conf->num_bss *
  178. sizeof(struct hostapd_data *));
  179. if (hapd_iface->bss == NULL)
  180. goto fail;
  181. for (i = 0; i < conf->num_bss; i++) {
  182. hapd = hapd_iface->bss[i] =
  183. hostapd_alloc_bss_data(hapd_iface, conf,
  184. &conf->bss[i]);
  185. if (hapd == NULL)
  186. goto fail;
  187. hapd->msg_ctx = hapd;
  188. }
  189. return hapd_iface;
  190. fail:
  191. if (conf)
  192. hostapd_config_free(conf);
  193. if (hapd_iface) {
  194. os_free(hapd_iface->config_fname);
  195. os_free(hapd_iface->bss);
  196. os_free(hapd_iface);
  197. }
  198. return NULL;
  199. }
  200. static int hostapd_driver_init(struct hostapd_iface *iface)
  201. {
  202. struct wpa_init_params params;
  203. size_t i;
  204. struct hostapd_data *hapd = iface->bss[0];
  205. struct hostapd_bss_config *conf = hapd->conf;
  206. u8 *b = conf->bssid;
  207. struct wpa_driver_capa capa;
  208. if (hapd->driver == NULL || hapd->driver->hapd_init == NULL) {
  209. wpa_printf(MSG_ERROR, "No hostapd driver wrapper available");
  210. return -1;
  211. }
  212. /* Initialize the driver interface */
  213. if (!(b[0] | b[1] | b[2] | b[3] | b[4] | b[5]))
  214. b = NULL;
  215. os_memset(&params, 0, sizeof(params));
  216. for (i = 0; wpa_drivers[i]; i++) {
  217. if (wpa_drivers[i] != hapd->driver)
  218. continue;
  219. if (global.drv_priv[i] == NULL &&
  220. wpa_drivers[i]->global_init) {
  221. global.drv_priv[i] = wpa_drivers[i]->global_init();
  222. if (global.drv_priv[i] == NULL) {
  223. wpa_printf(MSG_ERROR, "Failed to initialize "
  224. "driver '%s'",
  225. wpa_drivers[i]->name);
  226. return -1;
  227. }
  228. }
  229. params.global_priv = global.drv_priv[i];
  230. break;
  231. }
  232. params.bssid = b;
  233. params.ifname = hapd->conf->iface;
  234. params.ssid = (const u8 *) hapd->conf->ssid.ssid;
  235. params.ssid_len = hapd->conf->ssid.ssid_len;
  236. params.test_socket = hapd->conf->test_socket;
  237. params.use_pae_group_addr = hapd->conf->use_pae_group_addr;
  238. params.num_bridge = hapd->iface->num_bss;
  239. params.bridge = os_zalloc(hapd->iface->num_bss * sizeof(char *));
  240. if (params.bridge == NULL)
  241. return -1;
  242. for (i = 0; i < hapd->iface->num_bss; i++) {
  243. struct hostapd_data *bss = hapd->iface->bss[i];
  244. if (bss->conf->bridge[0])
  245. params.bridge[i] = bss->conf->bridge;
  246. }
  247. params.own_addr = hapd->own_addr;
  248. hapd->drv_priv = hapd->driver->hapd_init(hapd, &params);
  249. os_free(params.bridge);
  250. if (hapd->drv_priv == NULL) {
  251. wpa_printf(MSG_ERROR, "%s driver initialization failed.",
  252. hapd->driver->name);
  253. hapd->driver = NULL;
  254. return -1;
  255. }
  256. if (hapd->driver->get_capa &&
  257. hapd->driver->get_capa(hapd->drv_priv, &capa) == 0) {
  258. iface->drv_flags = capa.flags;
  259. iface->probe_resp_offloads = capa.probe_resp_offloads;
  260. }
  261. return 0;
  262. }
  263. static void hostapd_interface_deinit_free(struct hostapd_iface *iface)
  264. {
  265. const struct wpa_driver_ops *driver;
  266. void *drv_priv;
  267. if (iface == NULL)
  268. return;
  269. driver = iface->bss[0]->driver;
  270. drv_priv = iface->bss[0]->drv_priv;
  271. hostapd_interface_deinit(iface);
  272. if (driver && driver->hapd_deinit && drv_priv)
  273. driver->hapd_deinit(drv_priv);
  274. hostapd_interface_free(iface);
  275. }
  276. static struct hostapd_iface *
  277. hostapd_interface_init(struct hapd_interfaces *interfaces,
  278. const char *config_fname, int debug)
  279. {
  280. struct hostapd_iface *iface;
  281. int k;
  282. wpa_printf(MSG_ERROR, "Configuration file: %s", config_fname);
  283. iface = hostapd_init(config_fname);
  284. if (!iface)
  285. return NULL;
  286. iface->interfaces = interfaces;
  287. for (k = 0; k < debug; k++) {
  288. if (iface->bss[0]->conf->logger_stdout_level > 0)
  289. iface->bss[0]->conf->logger_stdout_level--;
  290. }
  291. if (iface->conf->bss[0].iface[0] != 0) {
  292. if (hostapd_driver_init(iface) ||
  293. hostapd_setup_interface(iface)) {
  294. hostapd_interface_deinit_free(iface);
  295. return NULL;
  296. }
  297. }
  298. return iface;
  299. }
  300. /**
  301. * handle_term - SIGINT and SIGTERM handler to terminate hostapd process
  302. */
  303. static void handle_term(int sig, void *signal_ctx)
  304. {
  305. wpa_printf(MSG_DEBUG, "Signal %d received - terminating", sig);
  306. eloop_terminate();
  307. }
  308. #ifndef CONFIG_NATIVE_WINDOWS
  309. static int handle_reload_iface(struct hostapd_iface *iface, void *ctx)
  310. {
  311. if (hostapd_reload_config(iface) < 0) {
  312. wpa_printf(MSG_WARNING, "Failed to read new configuration "
  313. "file - continuing with old.");
  314. }
  315. return 0;
  316. }
  317. /**
  318. * handle_reload - SIGHUP handler to reload configuration
  319. */
  320. static void handle_reload(int sig, void *signal_ctx)
  321. {
  322. struct hapd_interfaces *interfaces = signal_ctx;
  323. wpa_printf(MSG_DEBUG, "Signal %d received - reloading configuration",
  324. sig);
  325. hostapd_for_each_interface(interfaces, handle_reload_iface, NULL);
  326. }
  327. static void handle_dump_state(int sig, void *signal_ctx)
  328. {
  329. #ifdef HOSTAPD_DUMP_STATE
  330. struct hapd_interfaces *interfaces = signal_ctx;
  331. hostapd_for_each_interface(interfaces, handle_dump_state_iface, NULL);
  332. #endif /* HOSTAPD_DUMP_STATE */
  333. }
  334. #endif /* CONFIG_NATIVE_WINDOWS */
  335. static int hostapd_global_init(struct hapd_interfaces *interfaces,
  336. const char *entropy_file)
  337. {
  338. int i;
  339. os_memset(&global, 0, sizeof(global));
  340. hostapd_logger_register_cb(hostapd_logger_cb);
  341. if (eap_server_register_methods()) {
  342. wpa_printf(MSG_ERROR, "Failed to register EAP methods");
  343. return -1;
  344. }
  345. if (eloop_init()) {
  346. wpa_printf(MSG_ERROR, "Failed to initialize event loop");
  347. return -1;
  348. }
  349. random_init(entropy_file);
  350. #ifndef CONFIG_NATIVE_WINDOWS
  351. eloop_register_signal(SIGHUP, handle_reload, interfaces);
  352. eloop_register_signal(SIGUSR1, handle_dump_state, interfaces);
  353. #endif /* CONFIG_NATIVE_WINDOWS */
  354. eloop_register_signal_terminate(handle_term, interfaces);
  355. #ifndef CONFIG_NATIVE_WINDOWS
  356. openlog("hostapd", 0, LOG_DAEMON);
  357. #endif /* CONFIG_NATIVE_WINDOWS */
  358. for (i = 0; wpa_drivers[i]; i++)
  359. global.drv_count++;
  360. if (global.drv_count == 0) {
  361. wpa_printf(MSG_ERROR, "No drivers enabled");
  362. return -1;
  363. }
  364. global.drv_priv = os_zalloc(global.drv_count * sizeof(void *));
  365. if (global.drv_priv == NULL)
  366. return -1;
  367. return 0;
  368. }
  369. static void hostapd_global_deinit(const char *pid_file)
  370. {
  371. int i;
  372. for (i = 0; wpa_drivers[i] && global.drv_priv; i++) {
  373. if (!global.drv_priv[i])
  374. continue;
  375. wpa_drivers[i]->global_deinit(global.drv_priv[i]);
  376. }
  377. os_free(global.drv_priv);
  378. global.drv_priv = NULL;
  379. #ifdef EAP_SERVER_TNC
  380. tncs_global_deinit();
  381. #endif /* EAP_SERVER_TNC */
  382. random_deinit();
  383. eloop_destroy();
  384. #ifndef CONFIG_NATIVE_WINDOWS
  385. closelog();
  386. #endif /* CONFIG_NATIVE_WINDOWS */
  387. eap_server_unregister_methods();
  388. os_daemonize_terminate(pid_file);
  389. }
  390. static int hostapd_global_run(struct hapd_interfaces *ifaces, int daemonize,
  391. const char *pid_file)
  392. {
  393. #ifdef EAP_SERVER_TNC
  394. int tnc = 0;
  395. size_t i, k;
  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. if (tnc && tncs_global_init() < 0) {
  405. wpa_printf(MSG_ERROR, "Failed to initialize TNCS");
  406. return -1;
  407. }
  408. #endif /* EAP_SERVER_TNC */
  409. if (daemonize && os_daemonize(pid_file)) {
  410. perror("daemon");
  411. return -1;
  412. }
  413. eloop_run();
  414. return 0;
  415. }
  416. static void show_version(void)
  417. {
  418. fprintf(stderr,
  419. "hostapd v" VERSION_STR "\n"
  420. "User space daemon for IEEE 802.11 AP management,\n"
  421. "IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n"
  422. "Copyright (c) 2002-2012, Jouni Malinen <j@w1.fi> "
  423. "and contributors\n");
  424. }
  425. static void usage(void)
  426. {
  427. show_version();
  428. fprintf(stderr,
  429. "\n"
  430. "usage: hostapd [-hdBKtv] [-P <PID file>] [-e <entropy file>] "
  431. "<configuration file(s)>\n"
  432. "\n"
  433. "options:\n"
  434. " -h show this usage\n"
  435. " -d show more debug messages (-dd for even more)\n"
  436. " -B run daemon in the background\n"
  437. " -e entropy file\n"
  438. " -P PID file\n"
  439. " -K include key data in debug messages\n"
  440. #ifdef CONFIG_DEBUG_FILE
  441. " -f log output to debug file instead of stdout\n"
  442. #endif /* CONFIG_DEBUG_FILE */
  443. " -t include timestamps in some debug messages\n"
  444. " -v show hostapd version\n");
  445. exit(1);
  446. }
  447. static const char * hostapd_msg_ifname_cb(void *ctx)
  448. {
  449. struct hostapd_data *hapd = ctx;
  450. if (hapd && hapd->iconf && hapd->iconf->bss)
  451. return hapd->iconf->bss->iface;
  452. return NULL;
  453. }
  454. int main(int argc, char *argv[])
  455. {
  456. struct hapd_interfaces interfaces;
  457. int ret = 1;
  458. size_t i;
  459. int c, debug = 0, daemonize = 0;
  460. char *pid_file = NULL;
  461. const char *log_file = NULL;
  462. const char *entropy_file = NULL;
  463. if (os_program_init())
  464. return -1;
  465. for (;;) {
  466. c = getopt(argc, argv, "Bde:f:hKP:tv");
  467. if (c < 0)
  468. break;
  469. switch (c) {
  470. case 'h':
  471. usage();
  472. break;
  473. case 'd':
  474. debug++;
  475. if (wpa_debug_level > 0)
  476. wpa_debug_level--;
  477. break;
  478. case 'B':
  479. daemonize++;
  480. break;
  481. case 'e':
  482. entropy_file = optarg;
  483. break;
  484. case 'f':
  485. log_file = optarg;
  486. break;
  487. case 'K':
  488. wpa_debug_show_keys++;
  489. break;
  490. case 'P':
  491. os_free(pid_file);
  492. pid_file = os_rel2abs_path(optarg);
  493. break;
  494. case 't':
  495. wpa_debug_timestamp++;
  496. break;
  497. case 'v':
  498. show_version();
  499. exit(1);
  500. break;
  501. default:
  502. usage();
  503. break;
  504. }
  505. }
  506. if (optind == argc)
  507. usage();
  508. wpa_msg_register_ifname_cb(hostapd_msg_ifname_cb);
  509. if (log_file)
  510. wpa_debug_open_file(log_file);
  511. interfaces.count = argc - optind;
  512. interfaces.iface = os_zalloc(interfaces.count *
  513. sizeof(struct hostapd_iface *));
  514. if (interfaces.iface == NULL) {
  515. wpa_printf(MSG_ERROR, "malloc failed");
  516. return -1;
  517. }
  518. if (hostapd_global_init(&interfaces, entropy_file))
  519. return -1;
  520. /* Initialize interfaces */
  521. for (i = 0; i < interfaces.count; i++) {
  522. interfaces.iface[i] = hostapd_interface_init(&interfaces,
  523. argv[optind + i],
  524. debug);
  525. if (!interfaces.iface[i])
  526. goto out;
  527. }
  528. if (hostapd_global_run(&interfaces, daemonize, pid_file))
  529. goto out;
  530. ret = 0;
  531. out:
  532. /* Deinitialize all interfaces */
  533. for (i = 0; i < interfaces.count; i++)
  534. hostapd_interface_deinit_free(interfaces.iface[i]);
  535. os_free(interfaces.iface);
  536. hostapd_global_deinit(pid_file);
  537. os_free(pid_file);
  538. if (log_file)
  539. wpa_debug_close_file();
  540. os_program_deinit();
  541. return ret;
  542. }