BtPortMessage.cc 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 std::string BtPortMessage::NAME("port");
  52. BtPortMessage::BtPortMessage(uint16_t port)
  53. : SimpleBtMessage(ID, NAME),
  54. port_(port),
  55. localNode_(0),
  56. routingTable_(0),
  57. taskQueue_(0),
  58. taskFactory_(0)
  59. {}
  60. SharedHandle<BtPortMessage> BtPortMessage::create
  61. (const unsigned char* data, size_t dataLength)
  62. {
  63. bittorrent::assertPayloadLengthEqual(3, dataLength, NAME);
  64. bittorrent::assertID(ID, data, NAME);
  65. uint16_t port = bittorrent::getShortIntParam(data, 1);
  66. SharedHandle<BtPortMessage> message(new BtPortMessage(port));
  67. return message;
  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. SharedHandle<DHTNode> node(new DHTNode());
  79. node->setIPAddress(getPeer()->getIPAddress());
  80. node->setPort(port_);
  81. {
  82. SharedHandle<DHTTask> task = taskFactory_->createPingTask(node);
  83. taskQueue_->addImmediateTask(task);
  84. }
  85. if(routingTable_->countBucket() == 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. } else {
  92. A2_LOG_INFO
  93. ("DHT port message received while localhost didn't declare support it.");
  94. }
  95. }
  96. unsigned char* BtPortMessage::createMessage()
  97. {
  98. /**
  99. * len --- 5, 4bytes
  100. * id --- 4, 1byte
  101. * port --- port number, 2bytes
  102. * total: 7bytes
  103. */
  104. unsigned char* msg = new unsigned char[MESSAGE_LENGTH];
  105. bittorrent::createPeerMessageString(msg, MESSAGE_LENGTH, 3, ID);
  106. bittorrent::setShortIntParam(&msg[5], port_);
  107. return msg;
  108. }
  109. size_t BtPortMessage::getMessageLength() {
  110. return MESSAGE_LENGTH;
  111. }
  112. std::string BtPortMessage::toString() const {
  113. return strconcat(NAME, " port=", util::uitos(port_));
  114. }
  115. void BtPortMessage::setLocalNode(DHTNode* localNode)
  116. {
  117. localNode_ = localNode;
  118. }
  119. void BtPortMessage::setRoutingTable(DHTRoutingTable* routingTable)
  120. {
  121. routingTable_ = routingTable;
  122. }
  123. void BtPortMessage::setTaskQueue(DHTTaskQueue* taskQueue)
  124. {
  125. taskQueue_ = taskQueue;
  126. }
  127. void BtPortMessage::setTaskFactory(DHTTaskFactory* taskFactory)
  128. {
  129. taskFactory_ = taskFactory;
  130. }
  131. } // namespace aria2