dump_state.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * hostapd / State dump
  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. #include "common.h"
  16. #include "radius/radius_client.h"
  17. #include "radius/radius_server.h"
  18. #include "eapol_auth/eapol_auth_sm.h"
  19. #include "eapol_auth/eapol_auth_sm_i.h"
  20. #include "eap_server/eap.h"
  21. #include "hostapd.h"
  22. #include "config.h"
  23. #include "sta_info.h"
  24. static void fprint_char(FILE *f, char c)
  25. {
  26. if (c >= 32 && c < 127)
  27. fprintf(f, "%c", c);
  28. else
  29. fprintf(f, "<%02x>", c);
  30. }
  31. static void ieee802_1x_dump_state(FILE *f, const char *prefix,
  32. struct sta_info *sta)
  33. {
  34. struct eapol_state_machine *sm = sta->eapol_sm;
  35. if (sm == NULL)
  36. return;
  37. fprintf(f, "%sIEEE 802.1X:\n", prefix);
  38. if (sm->identity) {
  39. size_t i;
  40. fprintf(f, "%sidentity=", prefix);
  41. for (i = 0; i < sm->identity_len; i++)
  42. fprint_char(f, sm->identity[i]);
  43. fprintf(f, "\n");
  44. }
  45. fprintf(f, "%slast EAP type: Authentication Server: %d (%s) "
  46. "Supplicant: %d (%s)\n", prefix,
  47. sm->eap_type_authsrv,
  48. eap_server_get_name(0, sm->eap_type_authsrv),
  49. sm->eap_type_supp, eap_server_get_name(0, sm->eap_type_supp));
  50. fprintf(f, "%scached_packets=%s\n", prefix,
  51. sm->last_recv_radius ? "[RX RADIUS]" : "");
  52. eapol_auth_dump_state(f, prefix, sm);
  53. }
  54. /**
  55. * hostapd_dump_state - SIGUSR1 handler to dump hostapd state to a text file
  56. */
  57. static void hostapd_dump_state(struct hostapd_data *hapd)
  58. {
  59. FILE *f;
  60. time_t now;
  61. struct sta_info *sta;
  62. int i;
  63. #ifndef CONFIG_NO_RADIUS
  64. char *buf;
  65. #endif /* CONFIG_NO_RADIUS */
  66. if (!hapd->conf->dump_log_name) {
  67. wpa_printf(MSG_DEBUG, "Dump file not defined - ignoring dump "
  68. "request");
  69. return;
  70. }
  71. wpa_printf(MSG_DEBUG, "Dumping hostapd state to '%s'",
  72. hapd->conf->dump_log_name);
  73. f = fopen(hapd->conf->dump_log_name, "w");
  74. if (f == NULL) {
  75. wpa_printf(MSG_WARNING, "Could not open dump file '%s' for "
  76. "writing.", hapd->conf->dump_log_name);
  77. return;
  78. }
  79. time(&now);
  80. fprintf(f, "hostapd state dump - %s", ctime(&now));
  81. fprintf(f, "num_sta=%d num_sta_non_erp=%d "
  82. "num_sta_no_short_slot_time=%d\n"
  83. "num_sta_no_short_preamble=%d\n",
  84. hapd->num_sta, hapd->iface->num_sta_non_erp,
  85. hapd->iface->num_sta_no_short_slot_time,
  86. hapd->iface->num_sta_no_short_preamble);
  87. for (sta = hapd->sta_list; sta != NULL; sta = sta->next) {
  88. fprintf(f, "\nSTA=" MACSTR "\n", MAC2STR(sta->addr));
  89. fprintf(f,
  90. " AID=%d flags=0x%x %s%s%s%s%s%s%s%s%s%s%s%s%s%s\n"
  91. " capability=0x%x listen_interval=%d\n",
  92. sta->aid,
  93. sta->flags,
  94. (sta->flags & WLAN_STA_AUTH ? "[AUTH]" : ""),
  95. (sta->flags & WLAN_STA_ASSOC ? "[ASSOC]" : ""),
  96. (sta->flags & WLAN_STA_PS ? "[PS]" : ""),
  97. (sta->flags & WLAN_STA_TIM ? "[TIM]" : ""),
  98. (sta->flags & WLAN_STA_PERM ? "[PERM]" : ""),
  99. (sta->flags & WLAN_STA_AUTHORIZED ? "[AUTHORIZED]" :
  100. ""),
  101. (sta->flags & WLAN_STA_PENDING_POLL ? "[PENDING_POLL" :
  102. ""),
  103. (sta->flags & WLAN_STA_SHORT_PREAMBLE ?
  104. "[SHORT_PREAMBLE]" : ""),
  105. (sta->flags & WLAN_STA_PREAUTH ? "[PREAUTH]" : ""),
  106. (sta->flags & WLAN_STA_WMM ? "[WMM]" : ""),
  107. (sta->flags & WLAN_STA_MFP ? "[MFP]" : ""),
  108. (sta->flags & WLAN_STA_WPS ? "[WPS]" : ""),
  109. (sta->flags & WLAN_STA_MAYBE_WPS ? "[MAYBE_WPS]" : ""),
  110. (sta->flags & WLAN_STA_NONERP ? "[NonERP]" : ""),
  111. sta->capability,
  112. sta->listen_interval);
  113. fprintf(f, " supported_rates=");
  114. for (i = 0; i < sta->supported_rates_len; i++)
  115. fprintf(f, "%02x ", sta->supported_rates[i]);
  116. fprintf(f, "\n");
  117. fprintf(f,
  118. " timeout_next=%s\n",
  119. (sta->timeout_next == STA_NULLFUNC ? "NULLFUNC POLL" :
  120. (sta->timeout_next == STA_DISASSOC ? "DISASSOC" :
  121. "DEAUTH")));
  122. ieee802_1x_dump_state(f, " ", sta);
  123. }
  124. #ifndef CONFIG_NO_RADIUS
  125. buf = os_malloc(4096);
  126. if (buf) {
  127. int count = radius_client_get_mib(hapd->radius, buf, 4096);
  128. if (count < 0)
  129. count = 0;
  130. else if (count > 4095)
  131. count = 4095;
  132. buf[count] = '\0';
  133. fprintf(f, "%s", buf);
  134. #ifdef RADIUS_SERVER
  135. count = radius_server_get_mib(hapd->radius_srv, buf, 4096);
  136. if (count < 0)
  137. count = 0;
  138. else if (count > 4095)
  139. count = 4095;
  140. buf[count] = '\0';
  141. fprintf(f, "%s", buf);
  142. #endif /* RADIUS_SERVER */
  143. os_free(buf);
  144. }
  145. #endif /* CONFIG_NO_RADIUS */
  146. fclose(f);
  147. }
  148. int handle_dump_state_iface(struct hostapd_iface *iface, void *ctx)
  149. {
  150. size_t i;
  151. for (i = 0; i < iface->num_bss; i++)
  152. hostapd_dump_state(iface->bss[i]);
  153. return 0;
  154. }