560-disable_ctrl_iface_mib.patch 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. --- a/hostapd/Makefile
  2. +++ b/hostapd/Makefile
  3. @@ -119,6 +119,9 @@ endif
  4. ifdef CONFIG_NO_CTRL_IFACE
  5. CFLAGS += -DCONFIG_NO_CTRL_IFACE
  6. else
  7. +ifdef CONFIG_CTRL_IFACE_MIB
  8. +CFLAGS += -DCONFIG_CTRL_IFACE_MIB
  9. +endif
  10. OBJS += ctrl_iface.o
  11. OBJS += ../src/ap/ctrl_iface_ap.o
  12. endif
  13. --- a/hostapd/ctrl_iface.c
  14. +++ b/hostapd/ctrl_iface.c
  15. @@ -852,6 +852,7 @@ static void hostapd_ctrl_iface_receive(i
  16. if (os_strcmp(buf, "PING") == 0) {
  17. os_memcpy(reply, "PONG\n", 5);
  18. reply_len = 5;
  19. +#ifdef CONFIG_CTRL_IFACE_MIB
  20. } else if (os_strcmp(buf, "MIB") == 0) {
  21. reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
  22. if (reply_len >= 0) {
  23. @@ -881,10 +882,12 @@ static void hostapd_ctrl_iface_receive(i
  24. reply_len += res;
  25. }
  26. #endif /* CONFIG_NO_RADIUS */
  27. +#endif
  28. } else if (os_strcmp(buf, "DOWN") == 0) {
  29. hostapd_ctrl_iface_set_down(hapd);
  30. } else if (os_strncmp(buf, "RELOAD ", 7) == 0) {
  31. hostapd_ctrl_iface_reload(hapd, buf + 7);
  32. +#ifdef CONFIG_CTRL_IFACE_MIB
  33. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  34. reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
  35. reply_size);
  36. @@ -894,6 +897,7 @@ static void hostapd_ctrl_iface_receive(i
  37. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  38. reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
  39. reply_size);
  40. +#endif
  41. } else if (os_strcmp(buf, "ATTACH") == 0) {
  42. if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
  43. reply_len = -1;
  44. --- a/wpa_supplicant/Makefile
  45. +++ b/wpa_supplicant/Makefile
  46. @@ -668,6 +668,9 @@ ifdef CONFIG_IEEE80211N
  47. OBJS += ../src/ap/ieee802_11_ht.o
  48. endif
  49. ifdef CONFIG_CTRL_IFACE
  50. +ifdef CONFIG_CTRL_IFACE_MIB
  51. +CFLAGS += -DCONFIG_CTRL_IFACE_MIB
  52. +endif
  53. OBJS += ../src/ap/ctrl_iface_ap.o
  54. endif
  55. --- a/wpa_supplicant/ctrl_iface.c
  56. +++ b/wpa_supplicant/ctrl_iface.c
  57. @@ -2788,6 +2788,7 @@ char * wpa_supplicant_ctrl_iface_process
  58. reply_len = 5;
  59. } else if (os_strncmp(buf, "NOTE ", 5) == 0) {
  60. wpa_printf(MSG_INFO, "NOTE: %s", buf + 5);
  61. +#ifdef CONFIG_CTRL_IFACE_MIB
  62. } else if (os_strcmp(buf, "MIB") == 0) {
  63. reply_len = wpa_sm_get_mib(wpa_s->wpa, reply, reply_size);
  64. if (reply_len >= 0) {
  65. @@ -2799,6 +2800,7 @@ char * wpa_supplicant_ctrl_iface_process
  66. else
  67. reply_len += res;
  68. }
  69. +#endif
  70. } else if (os_strncmp(buf, "STATUS", 6) == 0) {
  71. reply_len = wpa_supplicant_ctrl_iface_status(
  72. wpa_s, buf + 6, reply, reply_size);
  73. @@ -3083,6 +3085,7 @@ char * wpa_supplicant_ctrl_iface_process
  74. reply_len = wpa_supplicant_ctrl_iface_bss(
  75. wpa_s, buf + 4, reply, reply_size);
  76. #ifdef CONFIG_AP
  77. +#ifdef CONFIG_CTRL_IFACE_MIB
  78. } else if (os_strcmp(buf, "STA-FIRST") == 0) {
  79. reply_len = ap_ctrl_iface_sta_first(wpa_s, reply, reply_size);
  80. } else if (os_strncmp(buf, "STA ", 4) == 0) {
  81. @@ -3091,6 +3094,7 @@ char * wpa_supplicant_ctrl_iface_process
  82. } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
  83. reply_len = ap_ctrl_iface_sta_next(wpa_s, buf + 9, reply,
  84. reply_size);
  85. +#endif
  86. #endif /* CONFIG_AP */
  87. } else if (os_strcmp(buf, "SUSPEND") == 0) {
  88. wpas_notify_suspend(wpa_s->global);
  89. --- a/src/ap/ctrl_iface_ap.c
  90. +++ b/src/ap/ctrl_iface_ap.c
  91. @@ -24,6 +24,7 @@
  92. #include "p2p_hostapd.h"
  93. #include "ctrl_iface_ap.h"
  94. +#ifdef CONFIG_CTRL_IFACE_MIB
  95. static int hostapd_ctrl_iface_sta_mib(struct hostapd_data *hapd,
  96. struct sta_info *sta,
  97. @@ -106,3 +107,5 @@ int hostapd_ctrl_iface_sta_next(struct h
  98. }
  99. return hostapd_ctrl_iface_sta_mib(hapd, sta->next, buf, buflen);
  100. }
  101. +
  102. +#endif
  103. --- a/src/ap/ieee802_1x.c
  104. +++ b/src/ap/ieee802_1x.c
  105. @@ -1848,6 +1848,7 @@ static const char * bool_txt(Boolean boo
  106. return bool ? "TRUE" : "FALSE";
  107. }
  108. +#ifdef CONFIG_CTRL_IFACE_MIB
  109. int ieee802_1x_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
  110. {
  111. @@ -1999,6 +2000,7 @@ int ieee802_1x_get_mib_sta(struct hostap
  112. return len;
  113. }
  114. +#endif
  115. static void ieee802_1x_finished(struct hostapd_data *hapd,
  116. struct sta_info *sta, int success)
  117. --- a/src/ap/wpa_auth.c
  118. +++ b/src/ap/wpa_auth.c
  119. @@ -2458,6 +2458,7 @@ static int wpa_cipher_bits(int cipher)
  120. }
  121. }
  122. +#ifdef CONFIG_CTRL_IFACE_MIB
  123. #define RSN_SUITE "%02x-%02x-%02x-%d"
  124. #define RSN_SUITE_ARG(s) \
  125. @@ -2619,7 +2620,7 @@ int wpa_get_mib_sta(struct wpa_state_mac
  126. return len;
  127. }
  128. -
  129. +#endif
  130. void wpa_auth_countermeasures_start(struct wpa_authenticator *wpa_auth)
  131. {
  132. --- a/src/rsn_supp/wpa.c
  133. +++ b/src/rsn_supp/wpa.c
  134. @@ -1852,6 +1852,8 @@ static u32 wpa_cipher_suite(struct wpa_s
  135. }
  136. +#ifdef CONFIG_CTRL_IFACE_MIB
  137. +
  138. #define RSN_SUITE "%02x-%02x-%02x-%d"
  139. #define RSN_SUITE_ARG(s) \
  140. ((s) >> 24) & 0xff, ((s) >> 16) & 0xff, ((s) >> 8) & 0xff, (s) & 0xff
  141. @@ -1931,6 +1933,7 @@ int wpa_sm_get_mib(struct wpa_sm *sm, ch
  142. return (int) len;
  143. }
  144. +#endif
  145. #endif /* CONFIG_CTRL_IFACE */