HandshakeExtensionMessage.cc 5.4 KB

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