FtpNegotiationCommand.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. #ifndef _D_FTP_NEGOTIATION_COMMAND_H_
  36. #define _D_FTP_NEGOTIATION_COMMAND_H_
  37. #include "AbstractCommand.h"
  38. namespace aria2 {
  39. class FtpConnection;
  40. class SocketCore;
  41. class HttpConnection;
  42. class FtpNegotiationCommand : public AbstractCommand {
  43. public:
  44. enum Seq {
  45. SEQ_RECV_GREETING,
  46. SEQ_SEND_USER,
  47. SEQ_RECV_USER,
  48. SEQ_SEND_PASS,
  49. SEQ_RECV_PASS,
  50. SEQ_SEND_TYPE,
  51. SEQ_RECV_TYPE,
  52. SEQ_SEND_PWD,
  53. SEQ_RECV_PWD,
  54. SEQ_SEND_CWD,
  55. SEQ_RECV_CWD,
  56. SEQ_SEND_MDTM,
  57. SEQ_RECV_MDTM,
  58. SEQ_SEND_SIZE,
  59. SEQ_RECV_SIZE,
  60. SEQ_PREPARE_SERVER_SOCKET,
  61. SEQ_SEND_PORT,
  62. SEQ_RECV_PORT,
  63. SEQ_SEND_PASV,
  64. SEQ_RECV_PASV,
  65. SEQ_RESOLVE_PROXY,
  66. SEQ_SEND_TUNNEL_REQUEST,
  67. SEQ_RECV_TUNNEL_RESPONSE,
  68. SEQ_SEND_REST_PASV,
  69. SEQ_SEND_REST,
  70. SEQ_RECV_REST,
  71. SEQ_SEND_RETR,
  72. SEQ_RECV_RETR,
  73. SEQ_WAIT_CONNECTION,
  74. SEQ_NEGOTIATION_COMPLETED,
  75. SEQ_RETRY,
  76. SEQ_HEAD_OK,
  77. SEQ_DOWNLOAD_ALREADY_COMPLETED,
  78. SEQ_FILE_PREPARATION, // File allocation after SIZE command
  79. SEQ_EXIT
  80. };
  81. private:
  82. bool recvGreeting();
  83. bool sendUser();
  84. bool recvUser();
  85. bool sendPass();
  86. bool recvPass();
  87. bool sendType();
  88. bool recvType();
  89. bool sendPwd();
  90. bool recvPwd();
  91. bool sendCwd();
  92. bool recvCwd();
  93. bool sendMdtm();
  94. bool recvMdtm();
  95. bool sendSize();
  96. bool recvSize();
  97. bool prepareServerSocket();
  98. bool sendPort();
  99. bool recvPort();
  100. bool sendPasv();
  101. bool recvPasv();
  102. bool resolveProxy();
  103. bool sendTunnelRequest();
  104. bool recvTunnelResponse();
  105. bool sendRest(const SharedHandle<Segment>& segment);
  106. bool sendRestPasv(const SharedHandle<Segment>& segment);
  107. bool recvRest(const SharedHandle<Segment>& segment);
  108. bool sendRetr();
  109. bool recvRetr();
  110. bool waitConnection();
  111. bool processSequence(const SharedHandle<Segment>& segment);
  112. void afterFileAllocation();
  113. void poolConnection() const;
  114. bool onFileSizeDetermined(uint64_t totalLength);
  115. void onDryRunFileFound();
  116. SharedHandle<SocketCore> _dataSocket;
  117. SharedHandle<SocketCore> _serverSocket;
  118. Seq _sequence;
  119. SharedHandle<FtpConnection> _ftp;
  120. // For tunneling
  121. SharedHandle<HttpConnection> _http;
  122. // IP, Port pair in pasv response
  123. std::pair<std::string, uint16_t> _dataConnAddr;
  124. // Resolved address for proxy
  125. std::string _proxyAddr;
  126. std::string _connectedHostname;
  127. std::string _connectedAddr;
  128. uint16_t _connectedPort;
  129. protected:
  130. virtual bool executeInternal();
  131. public:
  132. FtpNegotiationCommand(cuid_t cuid,
  133. const SharedHandle<Request>& req,
  134. const SharedHandle<FileEntry>& fileEntry,
  135. RequestGroup* requestGroup,
  136. DownloadEngine* e,
  137. const SharedHandle<SocketCore>& s,
  138. Seq seq = SEQ_RECV_GREETING,
  139. const std::string& baseWorkingDir = "/");
  140. virtual ~FtpNegotiationCommand();
  141. void setConnectedAddr
  142. (const std::string& hostname, const std::string& addr, uint16_t port)
  143. {
  144. _connectedHostname = hostname;
  145. _connectedAddr = addr;
  146. _connectedPort = port;
  147. }
  148. };
  149. } // namespace aria2
  150. #endif // _D_FTP_NEGOTIATION_COMMAND_H_