ctrl_iface_ap.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * Control interface for shared AP commands
  3. * Copyright (c) 2004-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 "utils/common.h"
  10. #include "hostapd.h"
  11. #include "ieee802_1x.h"
  12. #include "wpa_auth.h"
  13. #include "ieee802_11.h"
  14. #include "sta_info.h"
  15. #include "wps_hostapd.h"
  16. #include "p2p_hostapd.h"
  17. #include "ctrl_iface_ap.h"
  18. static int hostapd_ctrl_iface_sta_mib(struct hostapd_data *hapd,
  19. struct sta_info *sta,
  20. char *buf, size_t buflen)
  21. {
  22. int len, res, ret;
  23. if (sta == NULL) {
  24. ret = os_snprintf(buf, buflen, "FAIL\n");
  25. if (ret < 0 || (size_t) ret >= buflen)
  26. return 0;
  27. return ret;
  28. }
  29. len = 0;
  30. ret = os_snprintf(buf + len, buflen - len, MACSTR "\n",
  31. MAC2STR(sta->addr));
  32. if (ret < 0 || (size_t) ret >= buflen - len)
  33. return len;
  34. len += ret;
  35. res = ieee802_11_get_mib_sta(hapd, sta, buf + len, buflen - len);
  36. if (res >= 0)
  37. len += res;
  38. res = wpa_get_mib_sta(sta->wpa_sm, buf + len, buflen - len);
  39. if (res >= 0)
  40. len += res;
  41. res = ieee802_1x_get_mib_sta(hapd, sta, buf + len, buflen - len);
  42. if (res >= 0)
  43. len += res;
  44. res = hostapd_wps_get_mib_sta(hapd, sta->addr, buf + len,
  45. buflen - len);
  46. if (res >= 0)
  47. len += res;
  48. res = hostapd_p2p_get_mib_sta(hapd, sta, buf + len, buflen - len);
  49. if (res >= 0)
  50. len += res;
  51. return len;
  52. }
  53. int hostapd_ctrl_iface_sta_first(struct hostapd_data *hapd,
  54. char *buf, size_t buflen)
  55. {
  56. return hostapd_ctrl_iface_sta_mib(hapd, hapd->sta_list, buf, buflen);
  57. }
  58. int hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
  59. char *buf, size_t buflen)
  60. {
  61. u8 addr[ETH_ALEN];
  62. int ret;
  63. if (hwaddr_aton(txtaddr, addr)) {
  64. ret = os_snprintf(buf, buflen, "FAIL\n");
  65. if (ret < 0 || (size_t) ret >= buflen)
  66. return 0;
  67. return ret;
  68. }
  69. return hostapd_ctrl_iface_sta_mib(hapd, ap_get_sta(hapd, addr),
  70. buf, buflen);
  71. }
  72. int hostapd_ctrl_iface_sta_next(struct hostapd_data *hapd, const char *txtaddr,
  73. char *buf, size_t buflen)
  74. {
  75. u8 addr[ETH_ALEN];
  76. struct sta_info *sta;
  77. int ret;
  78. if (hwaddr_aton(txtaddr, addr) ||
  79. (sta = ap_get_sta(hapd, addr)) == NULL) {
  80. ret = os_snprintf(buf, buflen, "FAIL\n");
  81. if (ret < 0 || (size_t) ret >= buflen)
  82. return 0;
  83. return ret;
  84. }
  85. return hostapd_ctrl_iface_sta_mib(hapd, sta->next, buf, buflen);
  86. }