dump_state.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * hostapd / State dump
  3. * Copyright (c) 2002-2009, 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. #include <time.h>
  10. #include "utils/common.h"
  11. #include "eapol_auth/eapol_auth_sm.h"
  12. #include "eapol_auth/eapol_auth_sm_i.h"
  13. #include "eap_server/eap.h"
  14. #include "ap/hostapd.h"
  15. #include "ap/ap_config.h"
  16. #include "ap/sta_info.h"
  17. #include "dump_state.h"
  18. #include "ap/ap_drv_ops.h"
  19. static void ieee802_1x_dump_state(FILE *f, struct sta_info *sta)
  20. {
  21. struct eapol_state_machine *sm = sta->eapol_sm;
  22. char buf[4096];
  23. int res;
  24. if (sm == NULL)
  25. return;
  26. res = eapol_auth_dump_state(sm, buf, sizeof(buf));
  27. if (res > 0)
  28. fprintf(f, "%s", buf);
  29. }
  30. /**
  31. * hostapd_dump_state - SIGUSR1 handler to dump hostapd state to a text file
  32. */
  33. static void hostapd_dump_state(struct hostapd_data *hapd)
  34. {
  35. FILE *f;
  36. time_t now;
  37. struct sta_info *sta;
  38. if (!hapd->conf->dump_log_name) {
  39. wpa_printf(MSG_DEBUG, "Dump file not defined - ignoring dump "
  40. "request");
  41. return;
  42. }
  43. wpa_printf(MSG_DEBUG, "Dumping hostapd state to '%s'",
  44. hapd->conf->dump_log_name);
  45. f = fopen(hapd->conf->dump_log_name, "w");
  46. if (f == NULL) {
  47. wpa_printf(MSG_WARNING, "Could not open dump file '%s' for "
  48. "writing.", hapd->conf->dump_log_name);
  49. return;
  50. }
  51. time(&now);
  52. fprintf(f, "hostapd state dump - %s", ctime(&now));
  53. for (sta = hapd->sta_list; sta != NULL; sta = sta->next) {
  54. fprintf(f, "\nSTA=" MACSTR "\n", MAC2STR(sta->addr));
  55. ieee802_1x_dump_state(f, sta);
  56. }
  57. fclose(f);
  58. }
  59. int handle_dump_state_iface(struct hostapd_iface *iface, void *ctx)
  60. {
  61. size_t i;
  62. for (i = 0; i < iface->num_bss; i++)
  63. hostapd_dump_state(iface->bss[i]);
  64. return 0;
  65. }