BtPortMessage.cc 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #include "BtPortMessage.h"
  36. #include "bittorrent_helper.h"
  37. #include "DlAbortEx.h"
  38. #include "util.h"
  39. #include "message.h"
  40. #include "Logger.h"
  41. #include "LogFactory.h"
  42. #include "Peer.h"
  43. #include "DHTNode.h"
  44. #include "DHTRoutingTable.h"
  45. #include "DHTTaskQueue.h"
  46. #include "DHTTaskFactory.h"
  47. #include "DHTTask.h"
  48. #include "fmt.h"
  49. #include "a2functional.h"
  50. namespace aria2 {
  51. const char BtPortMessage::NAME[] = "port";
  52. BtPortMessage::BtPortMessage(uint16_t port)
  53. : SimpleBtMessage(ID, NAME),
  54. port_(port),
  55. localNode_(nullptr),
  56. routingTable_(nullptr),
  57. taskQueue_(nullptr),
  58. taskFactory_(nullptr)
  59. {
  60. }
  61. std::unique_ptr<BtPortMessage> BtPortMessage::create(const unsigned char* data,
  62. size_t dataLength)
  63. {
  64. bittorrent::assertPayloadLengthEqual(3, dataLength, NAME);
  65. bittorrent::assertID(ID, data, NAME);
  66. uint16_t port = bittorrent::getShortIntParam(data, 1);
  67. return make_unique<BtPortMessage>(port);
  68. }
  69. void BtPortMessage::doReceivedAction()
  70. {
  71. if (taskFactory_ && taskQueue_) {
  72. if (port_ == 0) {
  73. A2_LOG_DEBUG("Ignored port 0.");
  74. return;
  75. }
  76. // node id is random at this point. When ping reply received, new DHTNode
  77. // instance created with proper node ID and is added to a routing table.
  78. auto node = std::make_shared<DHTNode>();
  79. node->setIPAddress(getPeer()->getIPAddress());
  80. node->setPort(port_);
  81. {
  82. std::shared_ptr<DHTTask> task = taskFactory_->createPingTask(node);
  83. taskQueue_->addImmediateTask(task);
  84. }
  85. if (routingTable_->getNumBucket() == 1) {
  86. // initiate bootstrap
  87. A2_LOG_INFO("Dispatch node_lookup since too few buckets.");
  88. taskQueue_->addImmediateTask(
  89. taskFactory_->createNodeLookupTask(localNode_->getID()));
  90. }
  91. }
  92. else {
  93. A2_LOG_INFO(
  94. "DHT port message received while localhost didn't declare support it.");
  95. }
  96. }
  97. std::vector<unsigned char> BtPortMessage::createMessage()
  98. {
  99. /**
  100. * len --- 5, 4bytes
  101. * id --- 4, 1byte
  102. * port --- port number, 2bytes
  103. * total: 7bytes
  104. */
  105. auto msg = std::vector<unsigned char>(MESSAGE_LENGTH);
  106. bittorrent::createPeerMessageString(msg.data(), MESSAGE_LENGTH, 3, ID);
  107. bittorrent::setShortIntParam(&msg[5], port_);
  108. return msg;
  109. }
  110. std::string BtPortMessage::toString() const
  111. {
  112. return fmt("%s port=%u", NAME, port_);
  113. }
  114. void BtPortMessage::setLocalNode(DHTNode* localNode) { localNode_ = localNode; }
  115. void BtPortMessage::setRoutingTable(DHTRoutingTable* routingTable)
  116. {
  117. routingTable_ = routingTable;
  118. }
  119. void BtPortMessage::setTaskQueue(DHTTaskQueue* taskQueue)
  120. {
  121. taskQueue_ = taskQueue;
  122. }
  123. void BtPortMessage::setTaskFactory(DHTTaskFactory* taskFactory)
  124. {
  125. taskFactory_ = taskFactory;
  126. }
  127. } // namespace aria2