SwitchPinger.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 "dht/Address.h"
  18. #include "crypto/random/Random.h"
  19. #include "interface/Iface.h"
  20. #include "util/events/EventBase.h"
  21. #include "util/log/Log.h"
  22. #include "util/Linker.h"
  23. #include "wire/Control.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. // relevant only to messages of type RPATH
  61. uint64_t rpath;
  62. // If it's an lladdr response, the address
  63. struct Control_LlAddr lladdr;
  64. struct SwitchPinger_Ping* ping;
  65. };
  66. /** Callback which will be called when the ping response comes back. */
  67. typedef void (* SwitchPinger_ResponseCallback)(struct SwitchPinger_Response* resp, void* userData);
  68. enum SwitchPinger_Type
  69. {
  70. SwitchPinger_Type_PING,
  71. SwitchPinger_Type_KEYPING,
  72. SwitchPinger_Type_GETSNODE,
  73. SwitchPinger_Type_RPATH,
  74. SwitchPinger_Type_LLADDR,
  75. };
  76. struct SwitchPinger_Ping
  77. {
  78. /**
  79. * The allocator which is set by SwitchPinger_ping() and can be used to
  80. * allocate space which will be freed when the ping completes.
  81. */
  82. struct Allocator* pingAlloc;
  83. enum SwitchPinger_Type type;
  84. // relevant only for pings of type GETSNODE
  85. uint32_t kbpsLimit;
  86. struct Address snode;
  87. /**
  88. * This is NULL by default and is set by the caller of Pinger_ping(),
  89. * when onResponse() is called, whatever this is, will be given to it.
  90. */
  91. void* onResponseContext;
  92. };
  93. struct SwitchPinger
  94. {
  95. struct Iface controlHandlerIf;
  96. };
  97. String* SwitchPinger_resultString(enum SwitchPinger_Result result);
  98. /**
  99. * Allocate a ping message.
  100. *
  101. * @param label the HOST ORDER label of the node to send the ping message to.
  102. * @param data the content of the ping to send, if NULL, an empty string will be
  103. * returned in the response.
  104. * @param timeoutMilliseconds how long to wait before failing the ping.
  105. * @param onResponse the callback after the on pong or timeout.
  106. * @param alloc free this to cancel the ping.
  107. * @param ctx the pinger
  108. */
  109. struct SwitchPinger_Ping* SwitchPinger_newPing(uint64_t label,
  110. String* data,
  111. uint32_t timeoutMilliseconds,
  112. SwitchPinger_ResponseCallback onResponse,
  113. struct Allocator* alloc,
  114. struct SwitchPinger* ctx);
  115. struct SwitchPinger* SwitchPinger_new(EventBase_t* eventBase,
  116. struct Random* rand,
  117. struct Log* logger,
  118. struct Address* myAddr,
  119. struct Allocator* alloc);
  120. #endif