main.c 15 KB

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