main.c 10 KB

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