1
0

SwitchPinger.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. */
  15. #ifndef SwitchPinger_H
  16. #define SwitchPinger_H
  17. #include "benc/String.h"
  18. #include "dht/Address.h"
  19. #include "crypto/random/Random.h"
  20. #include "interface/Iface.h"
  21. #include "util/events/EventBase.h"
  22. #include "util/log/Log.h"
  23. #include "util/Linker.h"
  24. Linker_require("net/SwitchPinger.c");
  25. #include <stdint.h>
  26. #define SwitchPinger_DEFAULT_MAX_CONCURRENT_PINGS 50
  27. enum SwitchPinger_Result
  28. {
  29. /** Ping responded to ok. */
  30. SwitchPinger_Result_OK,
  31. /** Response label differs from sent label. */
  32. SwitchPinger_Result_LABEL_MISMATCH,
  33. /** Response contains different data than what was sent. */
  34. SwitchPinger_Result_WRONG_DATA,
  35. /** Instead of a normal response, got an error control packet. */
  36. SwitchPinger_Result_ERROR_RESPONSE,
  37. /** A sub-set of ERROR_RESPONSE where the route contains a loop. */
  38. SwitchPinger_Result_LOOP_ROUTE,
  39. /** Ping timeout. */
  40. SwitchPinger_Result_TIMEOUT
  41. };
  42. struct SwitchPinger_Ping;
  43. struct SwitchPinger_Response
  44. {
  45. /** SwitchPinger_Result_OK if all went well, otherwise SwitchPinger_Result_* */
  46. enum SwitchPinger_Result res;
  47. /** the label as of the responding node in host order. */
  48. uint64_t label;
  49. /** the content of the ping response. */
  50. String* data;
  51. /** the number of milliseconds since the original ping was sent. */
  52. uint64_t milliseconds;
  53. /** the version of the node which was pinged. */
  54. uint32_t version;
  55. /** The key for the node which was pinged, if not a keyPing then this is set to 0. */
  56. uint8_t key[32];
  57. // relevant to messages of type GETSNODE
  58. uint32_t kbpsLimit;
  59. struct Address snode;
  60. struct SwitchPinger_Ping* ping;
  61. };
  62. /** Callback which will be called when the ping response comes back. */
  63. typedef void (* SwitchPinger_ResponseCallback)(struct SwitchPinger_Response* resp, void* userData);
  64. enum SwitchPinger_Type
  65. {
  66. SwitchPinger_Type_PING,
  67. SwitchPinger_Type_KEYPING,
  68. SwitchPinger_Type_GETSNODE
  69. };
  70. struct SwitchPinger_Ping
  71. {
  72. /**
  73. * The allocator which is set by SwitchPinger_ping() and can be used to
  74. * allocate space which will be freed when the ping completes.
  75. */
  76. struct Allocator* pingAlloc;
  77. enum SwitchPinger_Type type;
  78. // relevant only for pings of type GETSNODE
  79. uint32_t kbpsLimit;
  80. struct Address snode;
  81. /**
  82. * This is NULL by default and is set by the caller of Pinger_ping(),
  83. * when onResponse() is called, whatever this is, will be given to it.
  84. */
  85. void* onResponseContext;
  86. };
  87. struct SwitchPinger
  88. {
  89. struct Iface controlHandlerIf;
  90. };
  91. String* SwitchPinger_resultString(enum SwitchPinger_Result result);
  92. /**
  93. * Allocate a ping message.
  94. *
  95. * @param label the HOST ORDER label of the node to send the ping message to.
  96. * @param data the content of the ping to send, if NULL, an empty string will be
  97. * returned in the response.
  98. * @param timeoutMilliseconds how long to wait before failing the ping.
  99. * @param onResponse the callback after the on pong or timeout.
  100. * @param alloc free this to cancel the ping.
  101. * @param ctx the pinger
  102. */
  103. struct SwitchPinger_Ping* SwitchPinger_newPing(uint64_t label,
  104. String* data,
  105. uint32_t timeoutMilliseconds,
  106. SwitchPinger_ResponseCallback onResponse,
  107. struct Allocator* alloc,
  108. struct SwitchPinger* ctx);
  109. struct SwitchPinger* SwitchPinger_new(struct EventBase* eventBase,
  110. struct Random* rand,
  111. struct Log* logger,
  112. struct Address* myAddr,
  113. struct Allocator* alloc);
  114. #endif