main.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  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 "eap_server/eap.h"
  23. #include "eap_server/tncs.h"
  24. #include "hostapd.h"
  25. #include "config.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(struct hapd_interfaces *interfaces,
  34. int (*cb)(struct hostapd_iface *iface,
  35. void *ctx), void *ctx)
  36. {
  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 *
  194. hostapd_interface_init(struct hapd_interfaces *interfaces,
  195. const char *config_fname, int debug)
  196. {
  197. struct hostapd_iface *iface;
  198. int k;
  199. wpa_printf(MSG_ERROR, "Configuration file: %s", config_fname);
  200. iface = hostapd_init(config_fname);
  201. if (!iface)
  202. return NULL;
  203. iface->interfaces = interfaces;
  204. for (k = 0; k < debug; k++) {
  205. if (iface->bss[0]->conf->logger_stdout_level > 0)
  206. iface->bss[0]->conf->logger_stdout_level--;
  207. }
  208. if (hostapd_setup_interface(iface)) {
  209. hostapd_interface_deinit(iface);
  210. return NULL;
  211. }
  212. return iface;
  213. }
  214. /**
  215. * handle_term - SIGINT and SIGTERM handler to terminate hostapd process
  216. */
  217. static void handle_term(int sig, void *signal_ctx)
  218. {
  219. wpa_printf(MSG_DEBUG, "Signal %d received - terminating", sig);
  220. eloop_terminate();
  221. }
  222. #ifndef CONFIG_NATIVE_WINDOWS
  223. /**
  224. * handle_reload - SIGHUP handler to reload configuration
  225. */
  226. static void handle_reload(int sig, void *signal_ctx)
  227. {
  228. struct hapd_interfaces *interfaces = signal_ctx;
  229. wpa_printf(MSG_DEBUG, "Signal %d received - reloading configuration",
  230. sig);
  231. hostapd_for_each_interface(interfaces, handle_reload_iface, NULL);
  232. }
  233. static void handle_dump_state(int sig, void *signal_ctx)
  234. {
  235. #ifdef HOSTAPD_DUMP_STATE
  236. struct hapd_interfaces *interfaces = signal_ctx;
  237. hostapd_for_each_interface(interfaces, handle_dump_state_iface, NULL);
  238. #endif /* HOSTAPD_DUMP_STATE */
  239. }
  240. #endif /* CONFIG_NATIVE_WINDOWS */
  241. static int hostapd_global_init(struct hapd_interfaces *interfaces)
  242. {
  243. hostapd_logger_register_cb(hostapd_logger_cb);
  244. if (eap_server_register_methods()) {
  245. wpa_printf(MSG_ERROR, "Failed to register EAP methods");
  246. return -1;
  247. }
  248. if (eloop_init()) {
  249. wpa_printf(MSG_ERROR, "Failed to initialize event loop");
  250. return -1;
  251. }
  252. #ifndef CONFIG_NATIVE_WINDOWS
  253. eloop_register_signal(SIGHUP, handle_reload, interfaces);
  254. eloop_register_signal(SIGUSR1, handle_dump_state, interfaces);
  255. #endif /* CONFIG_NATIVE_WINDOWS */
  256. eloop_register_signal_terminate(handle_term, interfaces);
  257. #ifndef CONFIG_NATIVE_WINDOWS
  258. openlog("hostapd", 0, LOG_DAEMON);
  259. #endif /* CONFIG_NATIVE_WINDOWS */
  260. return 0;
  261. }
  262. static void hostapd_global_deinit(const char *pid_file)
  263. {
  264. #ifdef EAP_SERVER_TNC
  265. tncs_global_deinit();
  266. #endif /* EAP_SERVER_TNC */
  267. eloop_destroy();
  268. #ifndef CONFIG_NATIVE_WINDOWS
  269. closelog();
  270. #endif /* CONFIG_NATIVE_WINDOWS */
  271. eap_server_unregister_methods();
  272. os_daemonize_terminate(pid_file);
  273. }
  274. static int hostapd_global_run(struct hapd_interfaces *ifaces, int daemonize,
  275. const char *pid_file)
  276. {
  277. #ifdef EAP_SERVER_TNC
  278. int tnc = 0;
  279. size_t i, k;
  280. for (i = 0; !tnc && i < ifaces->count; i++) {
  281. for (k = 0; k < ifaces->iface[i]->num_bss; k++) {
  282. if (ifaces->iface[i]->bss[0]->conf->tnc) {
  283. tnc++;
  284. break;
  285. }
  286. }
  287. }
  288. if (tnc && tncs_global_init() < 0) {
  289. wpa_printf(MSG_ERROR, "Failed to initialize TNCS");
  290. return -1;
  291. }
  292. #endif /* EAP_SERVER_TNC */
  293. if (daemonize && os_daemonize(pid_file)) {
  294. perror("daemon");
  295. return -1;
  296. }
  297. eloop_run();
  298. return 0;
  299. }
  300. static void show_version(void)
  301. {
  302. fprintf(stderr,
  303. "hostapd v" VERSION_STR "\n"
  304. "User space daemon for IEEE 802.11 AP management,\n"
  305. "IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n"
  306. "Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi> "
  307. "and contributors\n");
  308. }
  309. static void usage(void)
  310. {
  311. show_version();
  312. fprintf(stderr,
  313. "\n"
  314. "usage: hostapd [-hdBKtv] [-P <PID file>] "
  315. "<configuration file(s)>\n"
  316. "\n"
  317. "options:\n"
  318. " -h show this usage\n"
  319. " -d show more debug messages (-dd for even more)\n"
  320. " -B run daemon in the background\n"
  321. " -P PID file\n"
  322. " -K include key data in debug messages\n"
  323. " -t include timestamps in some debug messages\n"
  324. " -v show hostapd version\n");
  325. exit(1);
  326. }
  327. int main(int argc, char *argv[])
  328. {
  329. struct hapd_interfaces interfaces;
  330. int ret = 1;
  331. size_t i;
  332. int c, debug = 0, daemonize = 0;
  333. char *pid_file = NULL;
  334. if (os_program_init())
  335. return -1;
  336. for (;;) {
  337. c = getopt(argc, argv, "BdhKP:tv");
  338. if (c < 0)
  339. break;
  340. switch (c) {
  341. case 'h':
  342. usage();
  343. break;
  344. case 'd':
  345. debug++;
  346. if (wpa_debug_level > 0)
  347. wpa_debug_level--;
  348. break;
  349. case 'B':
  350. daemonize++;
  351. break;
  352. case 'K':
  353. wpa_debug_show_keys++;
  354. break;
  355. case 'P':
  356. os_free(pid_file);
  357. pid_file = os_rel2abs_path(optarg);
  358. break;
  359. case 't':
  360. wpa_debug_timestamp++;
  361. break;
  362. case 'v':
  363. show_version();
  364. exit(1);
  365. break;
  366. default:
  367. usage();
  368. break;
  369. }
  370. }
  371. if (optind == argc)
  372. usage();
  373. interfaces.count = argc - optind;
  374. interfaces.iface = os_malloc(interfaces.count *
  375. sizeof(struct hostapd_iface *));
  376. if (interfaces.iface == NULL) {
  377. wpa_printf(MSG_ERROR, "malloc failed\n");
  378. return -1;
  379. }
  380. if (hostapd_global_init(&interfaces))
  381. return -1;
  382. /* Initialize interfaces */
  383. for (i = 0; i < interfaces.count; i++) {
  384. interfaces.iface[i] = hostapd_interface_init(&interfaces,
  385. argv[optind + i],
  386. debug);
  387. if (!interfaces.iface[i])
  388. goto out;
  389. }
  390. if (hostapd_global_run(&interfaces, daemonize, pid_file))
  391. goto out;
  392. ret = 0;
  393. out:
  394. /* Deinitialize all interfaces */
  395. for (i = 0; i < interfaces.count; i++)
  396. hostapd_interface_deinit(interfaces.iface[i]);
  397. os_free(interfaces.iface);
  398. hostapd_global_deinit(pid_file);
  399. os_free(pid_file);
  400. os_program_deinit();
  401. return ret;
  402. }