main.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. /*
  2. * hostapd / main()
  3. * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #ifndef CONFIG_NATIVE_WINDOWS
  16. #include <syslog.h>
  17. #endif /* CONFIG_NATIVE_WINDOWS */
  18. #include "common.h"
  19. #include "eloop.h"
  20. #include "crypto/tls.h"
  21. #include "common/version.h"
  22. #include "drivers/driver.h"
  23. #include "eap_server/eap.h"
  24. #include "eap_server/tncs.h"
  25. #include "ap/hostapd.h"
  26. #include "ap/config.h"
  27. #include "config_file.h"
  28. #include "eap_register.h"
  29. #include "dump_state.h"
  30. extern int wpa_debug_level;
  31. extern int wpa_debug_show_keys;
  32. extern int wpa_debug_timestamp;
  33. struct hapd_interfaces {
  34. size_t count;
  35. struct hostapd_iface **iface;
  36. };
  37. int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
  38. int (*cb)(struct hostapd_iface *iface,
  39. void *ctx), void *ctx)
  40. {
  41. size_t i;
  42. int ret;
  43. for (i = 0; i < interfaces->count; i++) {
  44. ret = cb(interfaces->iface[i], ctx);
  45. if (ret)
  46. return ret;
  47. }
  48. return 0;
  49. }
  50. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  51. static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
  52. int level, const char *txt, size_t len)
  53. {
  54. struct hostapd_data *hapd = ctx;
  55. char *format, *module_str;
  56. int maxlen;
  57. int conf_syslog_level, conf_stdout_level;
  58. unsigned int conf_syslog, conf_stdout;
  59. maxlen = len + 100;
  60. format = os_malloc(maxlen);
  61. if (!format)
  62. return;
  63. if (hapd && hapd->conf) {
  64. conf_syslog_level = hapd->conf->logger_syslog_level;
  65. conf_stdout_level = hapd->conf->logger_stdout_level;
  66. conf_syslog = hapd->conf->logger_syslog;
  67. conf_stdout = hapd->conf->logger_stdout;
  68. } else {
  69. conf_syslog_level = conf_stdout_level = 0;
  70. conf_syslog = conf_stdout = (unsigned int) -1;
  71. }
  72. switch (module) {
  73. case HOSTAPD_MODULE_IEEE80211:
  74. module_str = "IEEE 802.11";
  75. break;
  76. case HOSTAPD_MODULE_IEEE8021X:
  77. module_str = "IEEE 802.1X";
  78. break;
  79. case HOSTAPD_MODULE_RADIUS:
  80. module_str = "RADIUS";
  81. break;
  82. case HOSTAPD_MODULE_WPA:
  83. module_str = "WPA";
  84. break;
  85. case HOSTAPD_MODULE_DRIVER:
  86. module_str = "DRIVER";
  87. break;
  88. case HOSTAPD_MODULE_IAPP:
  89. module_str = "IAPP";
  90. break;
  91. case HOSTAPD_MODULE_MLME:
  92. module_str = "MLME";
  93. break;
  94. default:
  95. module_str = NULL;
  96. break;
  97. }
  98. if (hapd && hapd->conf && addr)
  99. os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
  100. hapd->conf->iface, MAC2STR(addr),
  101. module_str ? " " : "", module_str, txt);
  102. else if (hapd && hapd->conf)
  103. os_snprintf(format, maxlen, "%s:%s%s %s",
  104. hapd->conf->iface, module_str ? " " : "",
  105. module_str, txt);
  106. else if (addr)
  107. os_snprintf(format, maxlen, "STA " MACSTR "%s%s: %s",
  108. MAC2STR(addr), module_str ? " " : "",
  109. module_str, txt);
  110. else
  111. os_snprintf(format, maxlen, "%s%s%s",
  112. module_str, module_str ? ": " : "", txt);
  113. if ((conf_stdout & module) && level >= conf_stdout_level) {
  114. wpa_debug_print_timestamp();
  115. printf("%s\n", format);
  116. }
  117. #ifndef CONFIG_NATIVE_WINDOWS
  118. if ((conf_syslog & module) && level >= conf_syslog_level) {
  119. int priority;
  120. switch (level) {
  121. case HOSTAPD_LEVEL_DEBUG_VERBOSE:
  122. case HOSTAPD_LEVEL_DEBUG:
  123. priority = LOG_DEBUG;
  124. break;
  125. case HOSTAPD_LEVEL_INFO:
  126. priority = LOG_INFO;
  127. break;
  128. case HOSTAPD_LEVEL_NOTICE:
  129. priority = LOG_NOTICE;
  130. break;
  131. case HOSTAPD_LEVEL_WARNING:
  132. priority = LOG_WARNING;
  133. break;
  134. default:
  135. priority = LOG_INFO;
  136. break;
  137. }
  138. syslog(priority, "%s", format);
  139. }
  140. #endif /* CONFIG_NATIVE_WINDOWS */
  141. os_free(format);
  142. }
  143. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  144. /**
  145. * hostapd_init - Allocate and initialize per-interface data
  146. * @config_file: Path to the configuration file
  147. * Returns: Pointer to the allocated interface data or %NULL on failure
  148. *
  149. * This function is used to allocate main data structures for per-interface
  150. * data. The allocated data buffer will be freed by calling
  151. * hostapd_cleanup_iface().
  152. */
  153. static struct hostapd_iface * hostapd_init(const char *config_file)
  154. {
  155. struct hostapd_iface *hapd_iface = NULL;
  156. struct hostapd_config *conf = NULL;
  157. struct hostapd_data *hapd;
  158. size_t i;
  159. hapd_iface = os_zalloc(sizeof(*hapd_iface));
  160. if (hapd_iface == NULL)
  161. goto fail;
  162. hapd_iface->reload_config = hostapd_reload_config;
  163. hapd_iface->config_read_cb = hostapd_config_read;
  164. hapd_iface->config_fname = os_strdup(config_file);
  165. if (hapd_iface->config_fname == NULL)
  166. goto fail;
  167. conf = hostapd_config_read(hapd_iface->config_fname);
  168. if (conf == NULL)
  169. goto fail;
  170. hapd_iface->conf = conf;
  171. hapd_iface->num_bss = conf->num_bss;
  172. hapd_iface->bss = os_zalloc(conf->num_bss *
  173. sizeof(struct hostapd_data *));
  174. if (hapd_iface->bss == NULL)
  175. goto fail;
  176. for (i = 0; i < conf->num_bss; i++) {
  177. hapd = hapd_iface->bss[i] =
  178. hostapd_alloc_bss_data(hapd_iface, conf,
  179. &conf->bss[i]);
  180. if (hapd == NULL)
  181. goto fail;
  182. }
  183. return hapd_iface;
  184. fail:
  185. if (conf)
  186. hostapd_config_free(conf);
  187. if (hapd_iface) {
  188. os_free(hapd_iface->config_fname);
  189. os_free(hapd_iface->bss);
  190. os_free(hapd_iface);
  191. }
  192. return NULL;
  193. }
  194. static int hostapd_driver_init(struct hostapd_iface *iface)
  195. {
  196. struct wpa_init_params params;
  197. size_t i;
  198. struct hostapd_data *hapd = iface->bss[0];
  199. struct hostapd_bss_config *conf = hapd->conf;
  200. u8 *b = conf->bssid;
  201. if (hapd->driver == NULL || hapd->driver->hapd_init == NULL) {
  202. wpa_printf(MSG_ERROR, "No hostapd driver wrapper available");
  203. return -1;
  204. }
  205. /* Initialize the driver interface */
  206. if (!(b[0] | b[1] | b[2] | b[3] | b[4] | b[5]))
  207. b = NULL;
  208. os_memset(&params, 0, sizeof(params));
  209. params.bssid = b;
  210. params.ifname = hapd->conf->iface;
  211. params.ssid = (const u8 *) hapd->conf->ssid.ssid;
  212. params.ssid_len = hapd->conf->ssid.ssid_len;
  213. params.test_socket = hapd->conf->test_socket;
  214. params.use_pae_group_addr = hapd->conf->use_pae_group_addr;
  215. params.num_bridge = hapd->iface->num_bss;
  216. params.bridge = os_zalloc(hapd->iface->num_bss * sizeof(char *));
  217. if (params.bridge == NULL)
  218. return -1;
  219. for (i = 0; i < hapd->iface->num_bss; i++) {
  220. struct hostapd_data *bss = hapd->iface->bss[i];
  221. if (bss->conf->bridge[0])
  222. params.bridge[i] = bss->conf->bridge;
  223. }
  224. params.own_addr = hapd->own_addr;
  225. hapd->drv_priv = hapd->driver->hapd_init(hapd, &params);
  226. os_free(params.bridge);
  227. if (hapd->drv_priv == NULL) {
  228. wpa_printf(MSG_ERROR, "%s driver initialization failed.",
  229. hapd->driver->name);
  230. hapd->driver = NULL;
  231. return -1;
  232. }
  233. return 0;
  234. }
  235. static struct hostapd_iface *
  236. hostapd_interface_init(struct hapd_interfaces *interfaces,
  237. const char *config_fname, int debug)
  238. {
  239. struct hostapd_iface *iface;
  240. int k;
  241. wpa_printf(MSG_ERROR, "Configuration file: %s", config_fname);
  242. iface = hostapd_init(config_fname);
  243. if (!iface)
  244. return NULL;
  245. iface->interfaces = interfaces;
  246. for (k = 0; k < debug; k++) {
  247. if (iface->bss[0]->conf->logger_stdout_level > 0)
  248. iface->bss[0]->conf->logger_stdout_level--;
  249. }
  250. if (hostapd_driver_init(iface) ||
  251. hostapd_setup_interface(iface)) {
  252. hostapd_interface_deinit(iface);
  253. return NULL;
  254. }
  255. return iface;
  256. }
  257. /**
  258. * handle_term - SIGINT and SIGTERM handler to terminate hostapd process
  259. */
  260. static void handle_term(int sig, void *signal_ctx)
  261. {
  262. wpa_printf(MSG_DEBUG, "Signal %d received - terminating", sig);
  263. eloop_terminate();
  264. }
  265. #ifndef CONFIG_NATIVE_WINDOWS
  266. static int handle_reload_iface(struct hostapd_iface *iface, void *ctx)
  267. {
  268. if (hostapd_reload_config(iface) < 0) {
  269. wpa_printf(MSG_WARNING, "Failed to read new configuration "
  270. "file - continuing with old.");
  271. }
  272. return 0;
  273. }
  274. /**
  275. * handle_reload - SIGHUP handler to reload configuration
  276. */
  277. static void handle_reload(int sig, void *signal_ctx)
  278. {
  279. struct hapd_interfaces *interfaces = signal_ctx;
  280. wpa_printf(MSG_DEBUG, "Signal %d received - reloading configuration",
  281. sig);
  282. hostapd_for_each_interface(interfaces, handle_reload_iface, NULL);
  283. }
  284. static void handle_dump_state(int sig, void *signal_ctx)
  285. {
  286. #ifdef HOSTAPD_DUMP_STATE
  287. struct hapd_interfaces *interfaces = signal_ctx;
  288. hostapd_for_each_interface(interfaces, handle_dump_state_iface, NULL);
  289. #endif /* HOSTAPD_DUMP_STATE */
  290. }
  291. #endif /* CONFIG_NATIVE_WINDOWS */
  292. static int hostapd_global_init(struct hapd_interfaces *interfaces)
  293. {
  294. hostapd_logger_register_cb(hostapd_logger_cb);
  295. if (eap_server_register_methods()) {
  296. wpa_printf(MSG_ERROR, "Failed to register EAP methods");
  297. return -1;
  298. }
  299. if (eloop_init()) {
  300. wpa_printf(MSG_ERROR, "Failed to initialize event loop");
  301. return -1;
  302. }
  303. #ifndef CONFIG_NATIVE_WINDOWS
  304. eloop_register_signal(SIGHUP, handle_reload, interfaces);
  305. eloop_register_signal(SIGUSR1, handle_dump_state, interfaces);
  306. #endif /* CONFIG_NATIVE_WINDOWS */
  307. eloop_register_signal_terminate(handle_term, interfaces);
  308. #ifndef CONFIG_NATIVE_WINDOWS
  309. openlog("hostapd", 0, LOG_DAEMON);
  310. #endif /* CONFIG_NATIVE_WINDOWS */
  311. return 0;
  312. }
  313. static void hostapd_global_deinit(const char *pid_file)
  314. {
  315. #ifdef EAP_SERVER_TNC
  316. tncs_global_deinit();
  317. #endif /* EAP_SERVER_TNC */
  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-2009, 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>] "
  366. "<configuration file(s)>\n"
  367. "\n"
  368. "options:\n"
  369. " -h show this usage\n"
  370. " -d show more debug messages (-dd for even more)\n"
  371. " -B run daemon in the background\n"
  372. " -P PID file\n"
  373. " -K include key data in debug messages\n"
  374. " -t include timestamps in some debug messages\n"
  375. " -v show hostapd version\n");
  376. exit(1);
  377. }
  378. int main(int argc, char *argv[])
  379. {
  380. struct hapd_interfaces interfaces;
  381. int ret = 1;
  382. size_t i;
  383. int c, debug = 0, daemonize = 0;
  384. char *pid_file = NULL;
  385. if (os_program_init())
  386. return -1;
  387. for (;;) {
  388. c = getopt(argc, argv, "BdhKP:tv");
  389. if (c < 0)
  390. break;
  391. switch (c) {
  392. case 'h':
  393. usage();
  394. break;
  395. case 'd':
  396. debug++;
  397. if (wpa_debug_level > 0)
  398. wpa_debug_level--;
  399. break;
  400. case 'B':
  401. daemonize++;
  402. break;
  403. case 'K':
  404. wpa_debug_show_keys++;
  405. break;
  406. case 'P':
  407. os_free(pid_file);
  408. pid_file = os_rel2abs_path(optarg);
  409. break;
  410. case 't':
  411. wpa_debug_timestamp++;
  412. break;
  413. case 'v':
  414. show_version();
  415. exit(1);
  416. break;
  417. default:
  418. usage();
  419. break;
  420. }
  421. }
  422. if (optind == argc)
  423. usage();
  424. interfaces.count = argc - optind;
  425. interfaces.iface = os_malloc(interfaces.count *
  426. sizeof(struct hostapd_iface *));
  427. if (interfaces.iface == NULL) {
  428. wpa_printf(MSG_ERROR, "malloc failed\n");
  429. return -1;
  430. }
  431. if (hostapd_global_init(&interfaces))
  432. return -1;
  433. /* Initialize interfaces */
  434. for (i = 0; i < interfaces.count; i++) {
  435. interfaces.iface[i] = hostapd_interface_init(&interfaces,
  436. argv[optind + i],
  437. debug);
  438. if (!interfaces.iface[i])
  439. goto out;
  440. }
  441. if (hostapd_global_run(&interfaces, daemonize, pid_file))
  442. goto out;
  443. ret = 0;
  444. out:
  445. /* Deinitialize all interfaces */
  446. for (i = 0; i < interfaces.count; i++)
  447. hostapd_interface_deinit(interfaces.iface[i]);
  448. os_free(interfaces.iface);
  449. hostapd_global_deinit(pid_file);
  450. os_free(pid_file);
  451. os_program_deinit();
  452. return ret;
  453. }