main.c 14 KB

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