ctrl_iface_ap.c 2.4 KB

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