main.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  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 "hostapd.h"
  20. #include "eloop.h"
  21. #include "common/version.h"
  22. #include "config.h"
  23. #include "tls.h"
  24. #include "eap_server/eap.h"
  25. #include "eap_server/tncs.h"
  26. extern int wpa_debug_level;
  27. extern int wpa_debug_show_keys;
  28. extern int wpa_debug_timestamp;
  29. struct hapd_interfaces {
  30. size_t count;
  31. struct hostapd_iface **iface;
  32. };
  33. int hostapd_for_each_interface(int (*cb)(struct hostapd_iface *iface,
  34. void *ctx), void *ctx)
  35. {
  36. struct hapd_interfaces *interfaces = eloop_get_user_data();
  37. size_t i;
  38. int ret;
  39. for (i = 0; i < interfaces->count; i++) {
  40. ret = cb(interfaces->iface[i], ctx);
  41. if (ret)
  42. return ret;
  43. }
  44. return 0;
  45. }
  46. #ifndef CONFIG_NO_HOSTAPD_LOGGER
  47. static void hostapd_logger_cb(void *ctx, const u8 *addr, unsigned int module,
  48. int level, const char *txt, size_t len)
  49. {
  50. struct hostapd_data *hapd = ctx;
  51. char *format, *module_str;
  52. int maxlen;
  53. int conf_syslog_level, conf_stdout_level;
  54. unsigned int conf_syslog, conf_stdout;
  55. maxlen = len + 100;
  56. format = os_malloc(maxlen);
  57. if (!format)
  58. return;
  59. if (hapd && hapd->conf) {
  60. conf_syslog_level = hapd->conf->logger_syslog_level;
  61. conf_stdout_level = hapd->conf->logger_stdout_level;
  62. conf_syslog = hapd->conf->logger_syslog;
  63. conf_stdout = hapd->conf->logger_stdout;
  64. } else {
  65. conf_syslog_level = conf_stdout_level = 0;
  66. conf_syslog = conf_stdout = (unsigned int) -1;
  67. }
  68. switch (module) {
  69. case HOSTAPD_MODULE_IEEE80211:
  70. module_str = "IEEE 802.11";
  71. break;
  72. case HOSTAPD_MODULE_IEEE8021X:
  73. module_str = "IEEE 802.1X";
  74. break;
  75. case HOSTAPD_MODULE_RADIUS:
  76. module_str = "RADIUS";
  77. break;
  78. case HOSTAPD_MODULE_WPA:
  79. module_str = "WPA";
  80. break;
  81. case HOSTAPD_MODULE_DRIVER:
  82. module_str = "DRIVER";
  83. break;
  84. case HOSTAPD_MODULE_IAPP:
  85. module_str = "IAPP";
  86. break;
  87. case HOSTAPD_MODULE_MLME:
  88. module_str = "MLME";
  89. break;
  90. default:
  91. module_str = NULL;
  92. break;
  93. }
  94. if (hapd && hapd->conf && addr)
  95. os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
  96. hapd->conf->iface, MAC2STR(addr),
  97. module_str ? " " : "", module_str, txt);
  98. else if (hapd && hapd->conf)
  99. os_snprintf(format, maxlen, "%s:%s%s %s",
  100. hapd->conf->iface, module_str ? " " : "",
  101. module_str, txt);
  102. else if (addr)
  103. os_snprintf(format, maxlen, "STA " MACSTR "%s%s: %s",
  104. MAC2STR(addr), module_str ? " " : "",
  105. module_str, txt);
  106. else
  107. os_snprintf(format, maxlen, "%s%s%s",
  108. module_str, module_str ? ": " : "", txt);
  109. if ((conf_stdout & module) && level >= conf_stdout_level) {
  110. wpa_debug_print_timestamp();
  111. printf("%s\n", format);
  112. }
  113. #ifndef CONFIG_NATIVE_WINDOWS
  114. if ((conf_syslog & module) && level >= conf_syslog_level) {
  115. int priority;
  116. switch (level) {
  117. case HOSTAPD_LEVEL_DEBUG_VERBOSE:
  118. case HOSTAPD_LEVEL_DEBUG:
  119. priority = LOG_DEBUG;
  120. break;
  121. case HOSTAPD_LEVEL_INFO:
  122. priority = LOG_INFO;
  123. break;
  124. case HOSTAPD_LEVEL_NOTICE:
  125. priority = LOG_NOTICE;
  126. break;
  127. case HOSTAPD_LEVEL_WARNING:
  128. priority = LOG_WARNING;
  129. break;
  130. default:
  131. priority = LOG_INFO;
  132. break;
  133. }
  134. syslog(priority, "%s", format);
  135. }
  136. #endif /* CONFIG_NATIVE_WINDOWS */
  137. os_free(format);
  138. }
  139. #endif /* CONFIG_NO_HOSTAPD_LOGGER */
  140. /**
  141. * hostapd_init - Allocate and initialize per-interface data
  142. * @config_file: Path to the configuration file
  143. * Returns: Pointer to the allocated interface data or %NULL on failure
  144. *
  145. * This function is used to allocate main data structures for per-interface
  146. * data. The allocated data buffer will be freed by calling
  147. * hostapd_cleanup_iface().
  148. */
  149. static struct hostapd_iface * hostapd_init(const char *config_file)
  150. {
  151. struct hostapd_iface *hapd_iface = NULL;
  152. struct hostapd_config *conf = NULL;
  153. struct hostapd_data *hapd;
  154. size_t i;
  155. hapd_iface = os_zalloc(sizeof(*hapd_iface));
  156. if (hapd_iface == NULL)
  157. goto fail;
  158. hapd_iface->config_fname = os_strdup(config_file);
  159. if (hapd_iface->config_fname == NULL)
  160. goto fail;
  161. conf = hostapd_config_read(hapd_iface->config_fname);
  162. if (conf == NULL)
  163. goto fail;
  164. hapd_iface->conf = conf;
  165. hapd_iface->num_bss = conf->num_bss;
  166. hapd_iface->bss = os_zalloc(conf->num_bss *
  167. sizeof(struct hostapd_data *));
  168. if (hapd_iface->bss == NULL)
  169. goto fail;
  170. for (i = 0; i < conf->num_bss; i++) {
  171. hapd = hapd_iface->bss[i] =
  172. hostapd_alloc_bss_data(hapd_iface, conf,
  173. &conf->bss[i]);
  174. if (hapd == NULL)
  175. goto fail;
  176. }
  177. return hapd_iface;
  178. fail:
  179. if (conf)
  180. hostapd_config_free(conf);
  181. if (hapd_iface) {
  182. for (i = 0; hapd_iface->bss && i < hapd_iface->num_bss; i++) {
  183. hapd = hapd_iface->bss[i];
  184. if (hapd && hapd->ssl_ctx)
  185. tls_deinit(hapd->ssl_ctx);
  186. }
  187. os_free(hapd_iface->config_fname);
  188. os_free(hapd_iface->bss);
  189. os_free(hapd_iface);
  190. }
  191. return NULL;
  192. }
  193. static struct hostapd_iface * hostapd_interface_init(const char *config_fname,
  194. int debug)
  195. {
  196. struct hostapd_iface *iface;
  197. int k;
  198. wpa_printf(MSG_ERROR, "Configuration file: %s", config_fname);
  199. iface = hostapd_init(config_fname);
  200. if (!iface)
  201. return NULL;
  202. for (k = 0; k < debug; k++) {
  203. if (iface->bss[0]->conf->logger_stdout_level > 0)
  204. iface->bss[0]->conf->logger_stdout_level--;
  205. }
  206. if (hostapd_setup_interface(iface)) {
  207. hostapd_interface_deinit(iface);
  208. return NULL;
  209. }
  210. return iface;
  211. }
  212. /**
  213. * handle_term - SIGINT and SIGTERM handler to terminate hostapd process
  214. */
  215. static void handle_term(int sig, void *eloop_ctx, void *signal_ctx)
  216. {
  217. wpa_printf(MSG_DEBUG, "Signal %d received - terminating", sig);
  218. eloop_terminate();
  219. }
  220. #ifndef CONFIG_NATIVE_WINDOWS
  221. /**
  222. * handle_reload - SIGHUP handler to reload configuration
  223. */
  224. static void handle_reload(int sig, void *eloop_ctx, void *signal_ctx)
  225. {
  226. wpa_printf(MSG_DEBUG, "Signal %d received - reloading configuration",
  227. sig);
  228. hostapd_for_each_interface(handle_reload_iface, NULL);
  229. }
  230. static void handle_dump_state(int sig, void *eloop_ctx, void *signal_ctx)
  231. {
  232. #ifdef HOSTAPD_DUMP_STATE
  233. hostapd_for_each_interface(handle_dump_state_iface, NULL);
  234. #endif /* HOSTAPD_DUMP_STATE */
  235. }
  236. #endif /* CONFIG_NATIVE_WINDOWS */
  237. static int hostapd_global_init(struct hapd_interfaces *interfaces)
  238. {
  239. hostapd_logger_register_cb(hostapd_logger_cb);
  240. if (eap_server_register_methods()) {
  241. wpa_printf(MSG_ERROR, "Failed to register EAP methods");
  242. return -1;
  243. }
  244. if (eloop_init(interfaces)) {
  245. wpa_printf(MSG_ERROR, "Failed to initialize event loop");
  246. return -1;
  247. }
  248. #ifndef CONFIG_NATIVE_WINDOWS
  249. eloop_register_signal(SIGHUP, handle_reload, NULL);
  250. eloop_register_signal(SIGUSR1, handle_dump_state, NULL);
  251. #endif /* CONFIG_NATIVE_WINDOWS */
  252. eloop_register_signal_terminate(handle_term, NULL);
  253. #ifndef CONFIG_NATIVE_WINDOWS
  254. openlog("hostapd", 0, LOG_DAEMON);
  255. #endif /* CONFIG_NATIVE_WINDOWS */
  256. return 0;
  257. }
  258. static void hostapd_global_deinit(const char *pid_file)
  259. {
  260. #ifdef EAP_SERVER_TNC
  261. tncs_global_deinit();
  262. #endif /* EAP_SERVER_TNC */
  263. eloop_destroy();
  264. #ifndef CONFIG_NATIVE_WINDOWS
  265. closelog();
  266. #endif /* CONFIG_NATIVE_WINDOWS */
  267. eap_server_unregister_methods();
  268. os_daemonize_terminate(pid_file);
  269. }
  270. static int hostapd_global_run(struct hapd_interfaces *ifaces, int daemonize,
  271. const char *pid_file)
  272. {
  273. #ifdef EAP_SERVER_TNC
  274. int tnc = 0;
  275. size_t i, k;
  276. for (i = 0; !tnc && i < ifaces->count; i++) {
  277. for (k = 0; k < ifaces->iface[i]->num_bss; k++) {
  278. if (ifaces->iface[i]->bss[0]->conf->tnc) {
  279. tnc++;
  280. break;
  281. }
  282. }
  283. }
  284. if (tnc && tncs_global_init() < 0) {
  285. wpa_printf(MSG_ERROR, "Failed to initialize TNCS");
  286. return -1;
  287. }
  288. #endif /* EAP_SERVER_TNC */
  289. if (daemonize && os_daemonize(pid_file)) {
  290. perror("daemon");
  291. return -1;
  292. }
  293. eloop_run();
  294. return 0;
  295. }
  296. static void show_version(void)
  297. {
  298. fprintf(stderr,
  299. "hostapd v" VERSION_STR "\n"
  300. "User space daemon for IEEE 802.11 AP management,\n"
  301. "IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n"
  302. "Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> "
  303. "and contributors\n");
  304. }
  305. static void usage(void)
  306. {
  307. show_version();
  308. fprintf(stderr,
  309. "\n"
  310. "usage: hostapd [-hdBKtv] [-P <PID file>] "
  311. "<configuration file(s)>\n"
  312. "\n"
  313. "options:\n"
  314. " -h show this usage\n"
  315. " -d show more debug messages (-dd for even more)\n"
  316. " -B run daemon in the background\n"
  317. " -P PID file\n"
  318. " -K include key data in debug messages\n"
  319. " -t include timestamps in some debug messages\n"
  320. " -v show hostapd version\n");
  321. exit(1);
  322. }
  323. int main(int argc, char *argv[])
  324. {
  325. struct hapd_interfaces interfaces;
  326. int ret = 1;
  327. size_t i;
  328. int c, debug = 0, daemonize = 0;
  329. char *pid_file = NULL;
  330. for (;;) {
  331. c = getopt(argc, argv, "BdhKP:tv");
  332. if (c < 0)
  333. break;
  334. switch (c) {
  335. case 'h':
  336. usage();
  337. break;
  338. case 'd':
  339. debug++;
  340. if (wpa_debug_level > 0)
  341. wpa_debug_level--;
  342. break;
  343. case 'B':
  344. daemonize++;
  345. break;
  346. case 'K':
  347. wpa_debug_show_keys++;
  348. break;
  349. case 'P':
  350. os_free(pid_file);
  351. pid_file = os_rel2abs_path(optarg);
  352. break;
  353. case 't':
  354. wpa_debug_timestamp++;
  355. break;
  356. case 'v':
  357. show_version();
  358. exit(1);
  359. break;
  360. default:
  361. usage();
  362. break;
  363. }
  364. }
  365. if (optind == argc)
  366. usage();
  367. interfaces.count = argc - optind;
  368. interfaces.iface = os_malloc(interfaces.count *
  369. sizeof(struct hostapd_iface *));
  370. if (interfaces.iface == NULL) {
  371. wpa_printf(MSG_ERROR, "malloc failed\n");
  372. return -1;
  373. }
  374. if (hostapd_global_init(&interfaces))
  375. return -1;
  376. /* Initialize interfaces */
  377. for (i = 0; i < interfaces.count; i++) {
  378. interfaces.iface[i] = hostapd_interface_init(argv[optind + i],
  379. debug);
  380. if (!interfaces.iface[i])
  381. goto out;
  382. }
  383. if (hostapd_global_run(&interfaces, daemonize, pid_file))
  384. goto out;
  385. ret = 0;
  386. out:
  387. /* Deinitialize all interfaces */
  388. for (i = 0; i < interfaces.count; i++)
  389. hostapd_interface_deinit(interfaces.iface[i]);
  390. os_free(interfaces.iface);
  391. hostapd_global_deinit(pid_file);
  392. os_free(pid_file);
  393. return ret;
  394. }