ReplyModule.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. #include "dht/CJDHTConstants.h"
  16. #include "dht/DHTMessage.h"
  17. #include "dht/DHTModule.h"
  18. #include "dht/DHTModuleRegistry.h"
  19. #include "dht/ReplyModule.h"
  20. #include "benc/Object.h"
  21. #include "wire/Message.h"
  22. /**
  23. * The reply module replies to all incoming queries.
  24. * It also modifies outgoing replies to make sure that a reply packet has the
  25. * correct transaction id and is labeled as a reply. It adds the "y":"r" and
  26. * the "t":"aa" to the packet.
  27. * It is the core of the cjdns dht engine.
  28. */
  29. /*--------------------Prototypes--------------------*/
  30. static int handleIncoming(struct DHTMessage* message, void* vcontext);
  31. static int handleOutgoing(struct DHTMessage* message, void* vcontext);
  32. /*--------------------Interface--------------------*/
  33. /**
  34. * Register a new ReplyModule.
  35. *
  36. * @param registry the DHT module registry for signal handling.
  37. * @param allocator a means to allocate memory.
  38. */
  39. void ReplyModule_register(struct DHTModuleRegistry* registry, struct Allocator* allocator)
  40. {
  41. struct DHTModule* dm = Allocator_clone(allocator, (&(struct DHTModule) {
  42. .name = "ReplyModule",
  43. // We use the registry itself as the context
  44. .context = registry,
  45. .handleIncoming = handleIncoming,
  46. .handleOutgoing = handleOutgoing
  47. }));
  48. DHTModuleRegistry_register(dm, registry);
  49. }
  50. static int handleIncoming(struct DHTMessage* message, void* vcontext)
  51. {
  52. if (Dict_getString(message->asDict, CJDHTConstants_QUERY) == NULL) {
  53. return 0;
  54. }
  55. struct DHTModuleRegistry* registry = (struct DHTModuleRegistry*) vcontext;
  56. Message_reset(message->binMessage);
  57. Assert_true(!((uintptr_t)message->binMessage->bytes % 4) || !"alignment fault0");
  58. struct DHTMessage* reply = Allocator_clone(message->allocator, (&(struct DHTMessage) {
  59. .replyTo = message,
  60. .address = message->address,
  61. .allocator = message->allocator,
  62. .binMessage = message->binMessage
  63. }));
  64. DHTModuleRegistry_handleOutgoing(reply, registry);
  65. return 0;
  66. }
  67. static int handleOutgoing(struct DHTMessage* message, void* vcontext)
  68. {
  69. if (message->replyTo != NULL) {
  70. if (message->asDict == NULL) {
  71. message->asDict = Dict_new(message->allocator);
  72. }
  73. // Put the transaction ID
  74. String* tid = Dict_getString(message->replyTo->asDict, CJDHTConstants_TXID);
  75. if (tid != NULL) {
  76. Dict_putString(message->asDict, CJDHTConstants_TXID, tid, message->allocator);
  77. }
  78. }
  79. return 0;
  80. }