HandshakeExtensionMessage.cc 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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 "HandshakeExtensionMessage.h"
  36. #include "Peer.h"
  37. #include "BtContext.h"
  38. #include "Util.h"
  39. #include "DlAbortEx.h"
  40. #include "LogFactory.h"
  41. #include "Logger.h"
  42. #include "message.h"
  43. #include "StringFormat.h"
  44. #include "bencode.h"
  45. namespace aria2 {
  46. const std::string HandshakeExtensionMessage::EXTENSION_NAME = "handshake";
  47. HandshakeExtensionMessage::HandshakeExtensionMessage():
  48. _tcpPort(0),
  49. _logger(LogFactory::getInstance()) {}
  50. HandshakeExtensionMessage::~HandshakeExtensionMessage() {}
  51. std::string HandshakeExtensionMessage::getBencodedData()
  52. {
  53. bencode::BDE dict = bencode::BDE::dict();
  54. if(!_clientVersion.empty()) {
  55. dict["v"] = _clientVersion;
  56. }
  57. if(_tcpPort > 0) {
  58. dict["p"] = _tcpPort;
  59. }
  60. bencode::BDE extDict = bencode::BDE::dict();
  61. for(std::map<std::string, uint8_t>::const_iterator itr = _extensions.begin();
  62. itr != _extensions.end(); ++itr) {
  63. const std::map<std::string, uint8_t>::value_type& vt = *itr;
  64. extDict[vt.first] = vt.second;
  65. }
  66. dict["m"] = extDict;
  67. return bencode::encode(dict);
  68. }
  69. std::string HandshakeExtensionMessage::toString() const
  70. {
  71. std::string s = getExtensionName();
  72. if(!_clientVersion.empty()) {
  73. s += " client="+Util::urlencode(_clientVersion);
  74. }
  75. if(_tcpPort > 0) {
  76. s += ", tcpPort="+Util::uitos(_tcpPort);
  77. }
  78. for(std::map<std::string, uint8_t>::const_iterator itr = _extensions.begin();
  79. itr != _extensions.end(); ++itr) {
  80. const std::map<std::string, uint8_t>::value_type& vt = *itr;
  81. s += ", "+vt.first+"="+Util::uitos(vt.second);
  82. }
  83. return s;
  84. }
  85. void HandshakeExtensionMessage::doReceivedAction()
  86. {
  87. if(_tcpPort > 0) {
  88. _peer->port = _tcpPort;
  89. _peer->setIncomingPeer(false);
  90. }
  91. for(std::map<std::string, uint8_t>::const_iterator itr = _extensions.begin();
  92. itr != _extensions.end(); ++itr) {
  93. const std::map<std::string, uint8_t>::value_type& vt = *itr;
  94. _peer->setExtension(vt.first, vt.second);
  95. }
  96. }
  97. void HandshakeExtensionMessage::setPeer(const PeerHandle& peer)
  98. {
  99. _peer = peer;
  100. }
  101. void HandshakeExtensionMessage::setBtContext(const BtContextHandle& btContext)
  102. {
  103. _btContext = btContext;
  104. }
  105. uint8_t HandshakeExtensionMessage::getExtensionMessageID(const std::string& name) const
  106. {
  107. std::map<std::string, uint8_t>::const_iterator i = _extensions.find(name);
  108. if(i == _extensions.end()) {
  109. return 0;
  110. } else {
  111. return (*i).second;
  112. }
  113. }
  114. HandshakeExtensionMessageHandle
  115. HandshakeExtensionMessage::create(const unsigned char* data, size_t length)
  116. {
  117. if(length < 1) {
  118. throw DlAbortEx
  119. (StringFormat(MSG_TOO_SMALL_PAYLOAD_SIZE,
  120. EXTENSION_NAME.c_str(), length).str());
  121. }
  122. HandshakeExtensionMessageHandle msg(new HandshakeExtensionMessage());
  123. msg->_logger->debug("Creating HandshakeExtensionMessage from %s",
  124. Util::urlencode(data, length).c_str());
  125. const bencode::BDE dict = bencode::decode(data+1, length-1);
  126. if(!dict.isDict()) {
  127. throw DlAbortEx("Unexpected payload format for extended message handshake");
  128. }
  129. const bencode::BDE& port = dict["p"];
  130. if(port.isInteger() && 0 < port.i() && port.i() < 65536) {
  131. msg->_tcpPort = port.i();
  132. }
  133. const bencode::BDE& version = dict["v"];
  134. if(version.isString()) {
  135. msg->_clientVersion = version.s();
  136. }
  137. const bencode::BDE& extDict = dict["m"];
  138. if(extDict.isDict()) {
  139. for(bencode::BDE::Dict::const_iterator i = extDict.dictBegin();
  140. i != extDict.dictEnd(); ++i) {
  141. if((*i).second.isInteger()) {
  142. msg->_extensions[(*i).first] = (*i).second.i();
  143. }
  144. }
  145. }
  146. return msg;
  147. }
  148. } // namespace aria2