/* */ #include "FtpNegotiationCommand.h" #include #include #include #include #include "Request.h" #include "DownloadEngine.h" #include "FtpConnection.h" #include "RequestGroup.h" #include "PieceStorage.h" #include "FtpDownloadCommand.h" #include "FileEntry.h" #include "DlAbortEx.h" #include "message.h" #include "prefs.h" #include "util.h" #include "Option.h" #include "Logger.h" #include "Segment.h" #include "DownloadContext.h" #include "DefaultBtProgressInfoFile.h" #include "RequestGroupMan.h" #include "DownloadFailureException.h" #include "Socket.h" #include "StringFormat.h" #include "DiskAdaptor.h" #include "SegmentMan.h" #include "AuthConfigFactory.h" #include "AuthConfig.h" #include "a2functional.h" #include "URISelector.h" namespace aria2 { FtpNegotiationCommand::FtpNegotiationCommand (cuid_t cuid, const SharedHandle& req, const SharedHandle& fileEntry, RequestGroup* requestGroup, DownloadEngine* e, const SocketHandle& s, Seq seq, const std::string& baseWorkingDir): AbstractCommand(cuid, req, fileEntry, requestGroup, e, s), sequence(seq), ftp(new FtpConnection(cuid, socket, req, e->getAuthConfigFactory()->createAuthConfig (req, requestGroup->getOption().get()), getOption().get())) { ftp->setBaseWorkingDir(baseWorkingDir); if(seq == SEQ_RECV_GREETING) { setTimeout(getOption()->getAsInt(PREF_CONNECT_TIMEOUT)); } disableReadCheckSocket(); setWriteCheckSocket(socket); } FtpNegotiationCommand::~FtpNegotiationCommand() {} bool FtpNegotiationCommand::executeInternal() { while(processSequence(_segments.front())); if(sequence == SEQ_RETRY) { return prepareForRetry(0); } else if(sequence == SEQ_NEGOTIATION_COMPLETED) { FtpDownloadCommand* command = new FtpDownloadCommand (cuid, req, _fileEntry, _requestGroup, ftp, e, dataSocket, socket); command->setStartupIdleTime(getOption()->getAsInt(PREF_STARTUP_IDLE_TIME)); command->setLowestDownloadSpeedLimit(getOption()->getAsInt(PREF_LOWEST_SPEED_LIMIT)); if(!_fileEntry->isSingleHostMultiConnectionEnabled()) { _fileEntry->removeURIWhoseHostnameIs(req->getHost()); } _requestGroup->getURISelector()->tuneDownloadCommand (_fileEntry->getRemainingUris(), command); e->commands.push_back(command); return true; } else if(sequence == SEQ_HEAD_OK || sequence == SEQ_DOWNLOAD_ALREADY_COMPLETED) { return true; } else if(sequence == SEQ_FILE_PREPARATION) { if(getOption()->getAsBool(PREF_FTP_PASV)) { sequence = SEQ_SEND_PASV; } else { sequence = SEQ_PREPARE_SERVER_SOCKET; } return false; } else if(sequence == SEQ_EXIT) { return true; } else { e->commands.push_back(this); return false; } } bool FtpNegotiationCommand::recvGreeting() { if(!checkIfConnectionEstablished (socket, _connectedHostname, _connectedAddr, _connectedPort)) { sequence = SEQ_EXIT; return false; } setTimeout(_requestGroup->getTimeout()); //socket->setBlockingMode(); disableWriteCheckSocket(); setReadCheckSocket(socket); unsigned int status = ftp->receiveResponse(); if(status == 0) { return false; } if(status != 220) { throw DL_ABORT_EX(EX_CONNECTION_FAILED); } sequence = SEQ_SEND_USER; return true; } bool FtpNegotiationCommand::sendUser() { if(ftp->sendUser()) { disableWriteCheckSocket(); sequence = SEQ_RECV_USER; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvUser() { unsigned int status = ftp->receiveResponse(); switch(status) { case 0: return false; case 230: sequence = SEQ_SEND_TYPE; break; case 331: sequence = SEQ_SEND_PASS; break; default: throw DL_ABORT_EX(StringFormat(EX_BAD_STATUS, status).str()); } return true; } bool FtpNegotiationCommand::sendPass() { if(ftp->sendPass()) { disableWriteCheckSocket(); sequence = SEQ_RECV_PASS; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvPass() { unsigned int status = ftp->receiveResponse(); if(status == 0) { return false; } if(status != 230) { throw DL_ABORT_EX(StringFormat(EX_BAD_STATUS, status).str()); } sequence = SEQ_SEND_TYPE; return true; } bool FtpNegotiationCommand::sendType() { if(ftp->sendType()) { disableWriteCheckSocket(); sequence = SEQ_RECV_TYPE; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvType() { unsigned int status = ftp->receiveResponse(); if(status == 0) { return false; } if(status != 200) { throw DL_ABORT_EX(StringFormat(EX_BAD_STATUS, status).str()); } sequence = SEQ_SEND_PWD; return true; } bool FtpNegotiationCommand::sendPwd() { if(ftp->sendPwd()) { disableWriteCheckSocket(); sequence = SEQ_RECV_PWD; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvPwd() { std::string pwd; unsigned int status = ftp->receivePwdResponse(pwd); if(status == 0) { return false; } if(status != 257) { throw DL_ABORT_EX(StringFormat(EX_BAD_STATUS, status).str()); } ftp->setBaseWorkingDir(pwd); if(logger->info()) { logger->info("CUID#%s - base working directory is '%s'", util::itos(cuid).c_str(), pwd.c_str()); } sequence = SEQ_SEND_CWD; return true; } bool FtpNegotiationCommand::sendCwd() { // Calling setReadCheckSocket() is needed when the socket is reused, setReadCheckSocket(socket); if(ftp->sendCwd()) { disableWriteCheckSocket(); sequence = SEQ_RECV_CWD; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvCwd() { unsigned int status = ftp->receiveResponse(); if(status == 0) { return false; } if(status != 250) { poolConnection(); _requestGroup->increaseAndValidateFileNotFoundCount(); if (status == 550) throw DL_ABORT_EX2(MSG_RESOURCE_NOT_FOUND, downloadresultcode::RESOURCE_NOT_FOUND); else throw DL_ABORT_EX(StringFormat(EX_BAD_STATUS, status).str()); } if(getOption()->getAsBool(PREF_REMOTE_TIME)) { sequence = SEQ_SEND_MDTM; } else { sequence = SEQ_SEND_SIZE; } return true; } bool FtpNegotiationCommand::sendMdtm() { if(ftp->sendMdtm()) { disableWriteCheckSocket(); sequence = SEQ_RECV_MDTM; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvMdtm() { Time lastModifiedTime = Time::null(); unsigned int status = ftp->receiveMdtmResponse(lastModifiedTime); if(status == 0) { return false; } if(status == 213) { if(lastModifiedTime.good()) { _requestGroup->updateLastModifiedTime(lastModifiedTime); time_t t = lastModifiedTime.getTime(); struct tm* tms = gmtime(&t); // returned struct is statically allocated. if(tms) { if(logger->debug()) { logger->debug("MDTM result was parsed as: %s GMT", asctime(tms)); } } else { if(logger->debug()) { logger->debug("gmtime() failed for MDTM result."); } } } else { if(logger->debug()) { logger->debug("MDTM response was returned, but it seems not to be a" " time value as in specified in RFC3659."); } } } else { if(logger->info()) { logger->info("CUID#%s - MDTM command failed.", util::itos(cuid).c_str()); } } sequence = SEQ_SEND_SIZE; return true; } bool FtpNegotiationCommand::sendSize() { if(ftp->sendSize()) { disableWriteCheckSocket(); sequence = SEQ_RECV_SIZE; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::onFileSizeDetermined(uint64_t totalLength) { _fileEntry->setLength(totalLength); if(_fileEntry->getPath().empty()) { _fileEntry->setPath (util::applyDir (getDownloadContext()->getDir(), util::fixTaintedBasename(util::percentDecode(req->getFile())))); } _requestGroup->preDownloadProcessing(); if(e->_requestGroupMan->isSameFileBeingDownloaded(_requestGroup)) { throw DOWNLOAD_FAILURE_EXCEPTION (StringFormat(EX_DUPLICATE_FILE_DOWNLOAD, _requestGroup->getFirstFilePath().c_str()).str()); } if(totalLength == 0) { if(getOption()->getAsBool(PREF_FTP_PASV)) { sequence = SEQ_SEND_PASV; } else { sequence = SEQ_PREPARE_SERVER_SOCKET; } if(getOption()->getAsBool(PREF_DRY_RUN)) { _requestGroup->initPieceStorage(); onDryRunFileFound(); return false; } if(_requestGroup->downloadFinishedByFileLength()) { _requestGroup->initPieceStorage(); _requestGroup->getPieceStorage()->markAllPiecesDone(); sequence = SEQ_DOWNLOAD_ALREADY_COMPLETED; logger->notice(MSG_DOWNLOAD_ALREADY_COMPLETED, util::itos(_requestGroup->getGID()).c_str(), _requestGroup->getFirstFilePath().c_str()); poolConnection(); return false; } _requestGroup->shouldCancelDownloadForSafety(); _requestGroup->initPieceStorage(); _requestGroup->getPieceStorage()->getDiskAdaptor()->initAndOpenFile(); if(getDownloadContext()->knowsTotalLength()) { sequence = SEQ_DOWNLOAD_ALREADY_COMPLETED; poolConnection(); return false; } // We have to make sure that command that has Request object must // have segment after PieceStorage is initialized. See // AbstractCommand::execute() _requestGroup->getSegmentMan()->getSegment(cuid, 0); return true; } else { _requestGroup->adjustFilename (SharedHandle(new DefaultBtProgressInfoFile (_requestGroup->getDownloadContext(), SharedHandle(), getOption().get()))); _requestGroup->initPieceStorage(); if(getOption()->getAsBool(PREF_DRY_RUN)) { onDryRunFileFound(); return false; } BtProgressInfoFileHandle infoFile(new DefaultBtProgressInfoFile(_requestGroup->getDownloadContext(), _requestGroup->getPieceStorage(), getOption().get())); if(!infoFile->exists() && _requestGroup->downloadFinishedByFileLength()) { _requestGroup->getPieceStorage()->markAllPiecesDone(); sequence = SEQ_DOWNLOAD_ALREADY_COMPLETED; logger->notice(MSG_DOWNLOAD_ALREADY_COMPLETED, util::itos(_requestGroup->getGID()).c_str(), _requestGroup->getFirstFilePath().c_str()); poolConnection(); return false; } _requestGroup->loadAndOpenFile(infoFile); // We have to make sure that command that has Request object must // have segment after PieceStorage is initialized. See // AbstractCommand::execute() _requestGroup->getSegmentMan()->getSegment(cuid, 0); prepareForNextAction(this); disableReadCheckSocket(); } return false; } bool FtpNegotiationCommand::recvSize() { uint64_t size = 0; unsigned int status = ftp->receiveSizeResponse(size); if(status == 0) { return false; } if(status == 213) { if(size > INT64_MAX) { throw DL_ABORT_EX (StringFormat(EX_TOO_LARGE_FILE, util::uitos(size, true).c_str()).str()); } if(_requestGroup->getPieceStorage().isNull()) { sequence = SEQ_FILE_PREPARATION; return onFileSizeDetermined(size); } else { _requestGroup->validateTotalLength(_fileEntry->getLength(), size); } } else { if(logger->info()) { logger->info("CUID#%s - The remote FTP Server doesn't recognize SIZE" " command. Continue.", util::itos(cuid).c_str()); } // Even if one of the other servers waiting in the queue supports SIZE // command, resuming and segmented downloading are disabled when the first // contacted FTP server doesn't support it. if(_requestGroup->getPieceStorage().isNull()) { getDownloadContext()->markTotalLengthIsUnknown(); return onFileSizeDetermined(0); } // TODO Skipping RequestGroup::validateTotalLength(0) here will allow // wrong file to be downloaded if user-specified URL is wrong. } if(getOption()->getAsBool(PREF_FTP_PASV)) { sequence = SEQ_SEND_PASV; } else { sequence = SEQ_PREPARE_SERVER_SOCKET; } return true; } void FtpNegotiationCommand::afterFileAllocation() { setReadCheckSocket(socket); } bool FtpNegotiationCommand::prepareServerSocket() { serverSocket = ftp->createServerSocket(); sequence = SEQ_SEND_PORT; return true; } bool FtpNegotiationCommand::sendPort() { afterFileAllocation(); if(ftp->sendPort(serverSocket)) { disableWriteCheckSocket(); sequence = SEQ_RECV_PORT; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvPort() { unsigned int status = ftp->receiveResponse(); if(status == 0) { return false; } if(status != 200) { throw DL_ABORT_EX(StringFormat(EX_BAD_STATUS, status).str()); } sequence = SEQ_SEND_REST; return true; } bool FtpNegotiationCommand::sendPasv() { afterFileAllocation(); if(ftp->sendPasv()) { disableWriteCheckSocket(); sequence = SEQ_RECV_PASV; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvPasv() { std::pair dest; unsigned int status = ftp->receivePasvResponse(dest); if(status == 0) { return false; } if(status != 227) { throw DL_ABORT_EX(StringFormat(EX_BAD_STATUS, status).str()); } // make a data connection to the server. if(logger->info()) { logger->info(MSG_CONNECTING_TO_SERVER, util::itos(cuid).c_str(), dest.first.c_str(), dest.second); } dataSocket.reset(new SocketCore()); dataSocket->establishConnection(dest.first, dest.second); disableReadCheckSocket(); setWriteCheckSocket(dataSocket); sequence = SEQ_SEND_REST_PASV; return false; } bool FtpNegotiationCommand::sendRestPasv(const SharedHandle& segment) { //dataSocket->setBlockingMode(); setReadCheckSocket(socket); disableWriteCheckSocket(); return sendRest(segment); } bool FtpNegotiationCommand::sendRest(const SharedHandle& segment) { if(ftp->sendRest(segment)) { disableWriteCheckSocket(); sequence = SEQ_RECV_REST; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvRest(const SharedHandle& segment) { unsigned int status = ftp->receiveResponse(); if(status == 0) { return false; } // If we recieve negative response and requested file position is not 0, // then throw exception here. if(status != 350) { if(!segment.isNull() && segment->getPositionToWrite() != 0) { throw DL_ABORT_EX2("FTP server doesn't support resuming.", downloadresultcode::CANNOT_RESUME); } } sequence = SEQ_SEND_RETR; return true; } bool FtpNegotiationCommand::sendRetr() { if(ftp->sendRetr()) { disableWriteCheckSocket(); sequence = SEQ_RECV_RETR; } else { setWriteCheckSocket(socket); } return false; } bool FtpNegotiationCommand::recvRetr() { unsigned int status = ftp->receiveResponse(); if(status == 0) { return false; } if(status != 150 && status != 125) { _requestGroup->increaseAndValidateFileNotFoundCount(); if (status == 550) throw DL_ABORT_EX2(MSG_RESOURCE_NOT_FOUND, downloadresultcode::RESOURCE_NOT_FOUND); else throw DL_ABORT_EX(StringFormat(EX_BAD_STATUS, status).str()); } if(getOption()->getAsBool(PREF_FTP_PASV)) { sequence = SEQ_NEGOTIATION_COMPLETED; return false; } else { disableReadCheckSocket(); setReadCheckSocket(serverSocket); sequence = SEQ_WAIT_CONNECTION; return false; } } bool FtpNegotiationCommand::waitConnection() { disableReadCheckSocket(); setReadCheckSocket(socket); dataSocket.reset(serverSocket->acceptConnection()); dataSocket->setNonBlockingMode(); sequence = SEQ_NEGOTIATION_COMPLETED; return false; } bool FtpNegotiationCommand::processSequence (const SharedHandle& segment) { bool doNextSequence = true; switch(sequence) { case SEQ_RECV_GREETING: return recvGreeting(); case SEQ_SEND_USER: return sendUser(); case SEQ_RECV_USER: return recvUser(); case SEQ_SEND_PASS: return sendPass(); case SEQ_RECV_PASS: return recvPass(); case SEQ_SEND_TYPE: return sendType(); case SEQ_RECV_TYPE: return recvType(); case SEQ_SEND_PWD: return sendPwd(); case SEQ_RECV_PWD: return recvPwd(); case SEQ_SEND_CWD: return sendCwd(); case SEQ_RECV_CWD: return recvCwd(); case SEQ_SEND_MDTM: return sendMdtm(); case SEQ_RECV_MDTM: return recvMdtm(); case SEQ_SEND_SIZE: return sendSize(); case SEQ_RECV_SIZE: return recvSize(); case SEQ_PREPARE_SERVER_SOCKET: return prepareServerSocket(); case SEQ_SEND_PORT: return sendPort(); case SEQ_RECV_PORT: return recvPort(); case SEQ_SEND_PASV: return sendPasv(); case SEQ_RECV_PASV: return recvPasv(); case SEQ_SEND_REST_PASV: return sendRestPasv(segment); case SEQ_SEND_REST: return sendRest(segment); case SEQ_RECV_REST: return recvRest(segment); case SEQ_SEND_RETR: return sendRetr(); case SEQ_RECV_RETR: return recvRetr(); case SEQ_WAIT_CONNECTION: return waitConnection(); default: abort(); } return doNextSequence; } void FtpNegotiationCommand::poolConnection() const { if(getOption()->getAsBool(PREF_FTP_REUSE_CONNECTION)) { std::map options; options["baseWorkingDir"] = ftp->getBaseWorkingDir(); e->poolSocket(req, isProxyDefined(), socket, options); } } void FtpNegotiationCommand::onDryRunFileFound() { _requestGroup->getPieceStorage()->markAllPiecesDone(); poolConnection(); sequence = SEQ_HEAD_OK; } } // namespace aria2