/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* vim:set tw=80 ts=4 sts=4 sw=4 et cin: */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Bradley Baetz * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsFTPChannel.h" #include "nsFtpConnectionThread.h" #include "nsFtpControlConnection.h" #include "nsFtpProtocolHandler.h" #include #include #include "nsISocketTransport.h" #include "nsIStreamConverterService.h" #include "nsIStreamListenerTee.h" #include "nsReadableUtils.h" #include "prprf.h" #include "prlog.h" #include "prtime.h" #include "prnetdb.h" #include "netCore.h" #include "ftpCore.h" #include "nsProxiedService.h" #include "nsCRT.h" #include "nsIInterfaceRequestor.h" #include "nsIInterfaceRequestorUtils.h" #include "nsIURL.h" #include "nsEscape.h" #include "nsNetUtil.h" #include "nsIDNSService.h" // for host error code #include "nsCPasswordManager.h" #include "nsIMemory.h" #include "nsIStringStream.h" #include "nsIPrefService.h" #include "nsIPrefBranch.h" #include "nsMimeTypes.h" #include "nsIStringBundle.h" #include "nsEventQueueUtils.h" #include "nsChannelProperties.h" #include "nsICacheEntryDescriptor.h" #include "nsICacheListener.h" #include "nsIResumableChannel.h" static NS_DEFINE_CID(kStreamConverterServiceCID, NS_STREAMCONVERTERSERVICE_CID); static NS_DEFINE_CID(kStreamListenerTeeCID, NS_STREAMLISTENERTEE_CID); static NS_DEFINE_CID(kSocketTransportServiceCID, NS_SOCKETTRANSPORTSERVICE_CID); #if defined(PR_LOGGING) extern PRLogModuleInfo* gFTPLog; #define LOG(args) PR_LOG(gFTPLog, PR_LOG_DEBUG, args) #define LOG_ALWAYS(args) PR_LOG(gFTPLog, PR_LOG_ALWAYS, args) #else #define LOG(args) #define LOG_ALWAYS(args) #endif /** * This object observes status from a control connection. For control * connections, we don't worry about reporting transfer progress. * * The OnTransportStatus events are delivered to the main thread. */ class TransportEventForwarder : public nsITransportEventSink { public: TransportEventForwarder(nsIProgressEventSink* aSink) : mSink(aSink) {} NS_DECL_ISUPPORTS NS_DECL_NSITRANSPORTEVENTSINK private: nsCOMPtr mSink; }; NS_IMPL_ISUPPORTS1(TransportEventForwarder, nsITransportEventSink) NS_IMETHODIMP TransportEventForwarder::OnTransportStatus(nsITransport *transport, nsresult status, PRUint64 progress, PRUint64 progressMax) { // We only want to forward the resolving and connecting states of the // control connection and report the data connection for the rest of the // transfer, to avoid continuously switching between "sending to" and // "receiving from" if (mSink && (status == NS_NET_STATUS_RESOLVING_HOST || status == NS_NET_STATUS_CONNECTING_TO || status == NS_NET_STATUS_CONNECTED_TO)) mSink->OnStatus(nsnull, nsnull, status, nsnull); return NS_OK; } /** * This object observes events for a data connection. */ class DataRequestForwarder : public nsIFTPChannel, public nsIStreamListener, public nsIResumableChannel, public nsITransportEventSink { public: DataRequestForwarder(); nsresult Init(nsIRequest *request); nsresult SetStreamListener(nsIStreamListener *listener); nsresult SetCacheEntry(nsICacheEntryDescriptor *entry, PRBool writing); nsresult SetEntityID(const nsACString& entity); void SetFileSize(PRUint64 fileSize) { mFileSize = fileSize; } NS_DECL_ISUPPORTS NS_DECL_NSISTREAMLISTENER NS_DECL_NSIREQUESTOBSERVER NS_DECL_NSIRESUMABLECHANNEL NS_DECL_NSITRANSPORTEVENTSINK NS_FORWARD_NSIREQUEST(mRequest->) NS_FORWARD_NSICHANNEL(mFTPChannel->) NS_FORWARD_NSIFTPCHANNEL(mFTPChannel->) PRUint64 GetBytesTransfered() {return mBytesTransfered;} void Uploading(PRBool value, PRUint32 uploadCount); void SetRetrying(PRBool retry); protected: nsCOMPtr mRequest; nsCOMPtr mFTPChannel; nsCOMPtr mListener; nsCOMPtr mEventSink; nsCOMPtr mCacheEntry; nsCString mEntityID; nsUint64 mBytesTransfered; nsUint64 mBytesToUpload; PRUint64 mFileSize; PRPackedBool mDelayedOnStartFired; PRPackedBool mUploading; PRPackedBool mRetrying; nsresult DelayedOnStartRequest(nsIRequest *request, nsISupports *ctxt); }; // The whole purpose of this class is to opaque // the socket transport so that clients only see // the same nsIChannel/nsIRequest that they started. NS_IMPL_THREADSAFE_ISUPPORTS7(DataRequestForwarder, nsIStreamListener, nsIRequestObserver, nsIFTPChannel, nsIResumableChannel, nsIChannel, nsIRequest, nsITransportEventSink) DataRequestForwarder::DataRequestForwarder() { LOG(("(%x) DataRequestForwarder CREATED\n", this)); mBytesTransfered = 0; mBytesToUpload = 0; mRetrying = mUploading = mDelayedOnStartFired = PR_FALSE; mFileSize = LL_MAXUINT; } nsresult DataRequestForwarder::Init(nsIRequest *request) { LOG(("(%x) DataRequestForwarder Init [request=%x]\n", this, request)); NS_ENSURE_ARG(request); // for the forwarding declarations. mRequest = request; mFTPChannel = do_QueryInterface(request); mEventSink = do_QueryInterface(request); mListener = do_QueryInterface(request); if (!mRequest || !mFTPChannel) return NS_ERROR_FAILURE; return NS_OK; } void DataRequestForwarder::Uploading(PRBool value, PRUint32 uploadCount) { mUploading = value; mBytesToUpload = uploadCount; } nsresult DataRequestForwarder::SetCacheEntry(nsICacheEntryDescriptor *cacheEntry, PRBool writing) { // if there is a cache entry descriptor, send data to it. if (!cacheEntry) return NS_ERROR_FAILURE; mCacheEntry = cacheEntry; if (!writing) return NS_OK; nsresult rv; nsCOMPtr out; rv = cacheEntry->OpenOutputStream(0, getter_AddRefs(out)); if (NS_FAILED(rv)) return rv; nsCOMPtr tee = do_CreateInstance(kStreamListenerTeeCID, &rv); if (NS_FAILED(rv)) return rv; rv = tee->Init(mListener, out); if (NS_FAILED(rv)) return rv; mListener = do_QueryInterface(tee, &rv); return NS_OK; } nsresult DataRequestForwarder::SetStreamListener(nsIStreamListener *listener) { LOG(("(%x) DataRequestForwarder SetStreamListener [listener=%x]\n", this, listener)); mListener = listener; if (!mListener) return NS_ERROR_FAILURE; return NS_OK; } nsresult DataRequestForwarder::SetEntityID(const nsACString& aEntityID) { mEntityID = aEntityID; return NS_OK; } NS_IMETHODIMP DataRequestForwarder::GetEntityID(nsACString& aEntityID) { if (mEntityID.IsEmpty()) return NS_ERROR_NOT_RESUMABLE; aEntityID = mEntityID; return NS_OK; } NS_IMETHODIMP DataRequestForwarder::ResumeAt(PRUint64, const nsACString&) { // We shouldn't get here. This class only exists in the middle of a // request NS_NOTREACHED("DataRequestForwarder::ResumeAt"); return NS_ERROR_NOT_IMPLEMENTED; } nsresult DataRequestForwarder::DelayedOnStartRequest(nsIRequest *request, nsISupports *ctxt) { LOG(("(%x) DataRequestForwarder DelayedOnStartRequest \n", this)); return mListener->OnStartRequest(this, ctxt); } void DataRequestForwarder::SetRetrying(PRBool retry) { // The problem here is that if we send a second PASV, our listener would // get an OnStop from the socket transport, and fail. So we temporarily // suspend notifications LOG(("(%x) DataRequestForwarder SetRetrying [retry=%d]\n", this, retry)); mRetrying = retry; mDelayedOnStartFired = PR_FALSE; } NS_IMETHODIMP DataRequestForwarder::OnStartRequest(nsIRequest *request, nsISupports *ctxt) { NS_ASSERTION(mListener, "No Listener Set."); LOG(("(%x) DataRequestForwarder OnStartRequest \n[mRetrying=%d]", this, mRetrying)); if (!mListener) return NS_ERROR_NOT_INITIALIZED; // OnStartRequest is delayed. return NS_OK; } NS_IMETHODIMP DataRequestForwarder::OnStopRequest(nsIRequest *request, nsISupports *ctxt, nsresult statusCode) { LOG(("(%x) DataRequestForwarder OnStopRequest [status=%x, mRetrying=%d]\n", this, statusCode, mRetrying)); if (mRetrying) { mRetrying = PR_FALSE; return NS_OK; } // If there were no calls to ODA, then the onstart won't have been // fired - bug 122913 if (!mDelayedOnStartFired) { mDelayedOnStartFired = PR_TRUE; nsresult rv = DelayedOnStartRequest(request, ctxt); if (NS_FAILED(rv)) return rv; } if (!mListener) return NS_ERROR_NOT_INITIALIZED; return mListener->OnStopRequest(this, ctxt, statusCode); } NS_IMETHODIMP DataRequestForwarder::OnDataAvailable(nsIRequest *request, nsISupports *ctxt, nsIInputStream *input, PRUint32 offset, PRUint32 count) { nsresult rv; NS_ASSERTION(mListener, "No Listener Set."); NS_ASSERTION(!mUploading, "Since we are uploading, we should never get a ODA"); if (!mListener) return NS_ERROR_NOT_INITIALIZED; // we want to delay firing the onStartRequest until we know that there is data if (!mDelayedOnStartFired) { mDelayedOnStartFired = PR_TRUE; rv = DelayedOnStartRequest(request, ctxt); if (NS_FAILED(rv)) return rv; } // XXX mBytesTransfered will get truncated from 64-bit to 32-bit rv = mListener->OnDataAvailable(this, ctxt, input, mBytesTransfered, count); if (NS_SUCCEEDED(rv)) mBytesTransfered += count; return rv; } // nsITransportEventSink methods NS_IMETHODIMP DataRequestForwarder::OnTransportStatus(nsITransport *transport, nsresult status, PRUint64 progress, PRUint64 progressMax) { if (mEventSink) { mEventSink->OnStatus(nsnull, nsnull, status, nsnull); if (status == nsISocketTransport::STATUS_RECEIVING_FROM || status == nsISocketTransport::STATUS_SENDING_TO) { // compute progress based on whether we are uploading or receiving... PRUint64 count = mUploading ? progress : PRUint64(mBytesTransfered); PRUint64 max = mUploading ? PRUint64(mBytesToUpload) : mFileSize; mEventSink->OnProgress(this, nsnull, count, max); } } return NS_OK; } NS_IMPL_THREADSAFE_ISUPPORTS3(nsFtpState, nsIStreamListener, nsIRequestObserver, nsIRequest) nsFtpState::nsFtpState() { LOG_ALWAYS(("(%x) nsFtpState created", this)); // bool init mRETRFailed = PR_FALSE; mWaitingForDConn = mTryingCachedControl = mRetryPass = PR_FALSE; mKeepRunning = mAnonymous = PR_TRUE; mAction = GET; mState = FTP_COMMAND_CONNECT; mNextState = FTP_S_USER; mInternalError = NS_OK; mSuspendCount = 0; mPort = 21; mReceivedControlData = PR_FALSE; mControlStatus = NS_OK; mWriteCount = 0; mIPv6Checked = PR_FALSE; mIPv6ServerAddress = nsnull; mControlConnection = nsnull; mDRequestForwarder = nsnull; mFileSize = LL_MAXUINT; // make sure handler stays around NS_ADDREF(gFtpHandler); } nsFtpState::~nsFtpState() { LOG_ALWAYS(("(%x) nsFtpState destroyed", this)); if (mIPv6ServerAddress) nsMemory::Free(mIPv6ServerAddress); NS_IF_RELEASE(mDRequestForwarder); // release reference to handler nsFtpProtocolHandler *handler = gFtpHandler; NS_RELEASE(handler); } nsresult nsFtpState::GetEntityID(nsACString& aEntityID) { if (mEntityID.IsEmpty()) return NS_ERROR_NOT_RESUMABLE; aEntityID = mEntityID; return NS_OK; } // nsIStreamListener implementation NS_IMETHODIMP nsFtpState::OnDataAvailable(nsIRequest *request, nsISupports *aContext, nsIInputStream *aInStream, PRUint32 aOffset, PRUint32 aCount) { if (aCount == 0) return NS_OK; /*** should this be an error?? */ if (!mReceivedControlData) { // parameter can be null cause the channel fills them in. mChannel->OnStatus(nsnull, nsnull, NS_NET_STATUS_BEGIN_FTP_TRANSACTION, nsnull); mReceivedControlData = PR_TRUE; } char* buffer = (char*)nsMemory::Alloc(aCount + 1); if (!buffer) return NS_ERROR_OUT_OF_MEMORY; nsresult rv = aInStream->Read(buffer, aCount, &aCount); if (NS_FAILED(rv)) { LOG(("(%x) nsFtpState - error reading %x\n", this, rv)); nsMemory::Free(buffer); return NS_ERROR_FAILURE; } buffer[aCount] = '\0'; nsXPIDLCString data; data.Adopt(buffer); LOG(("(%x) reading %d bytes: \"%s\"", this, aCount, buffer)); // Sometimes we can get two responses in the same packet, eg from LIST. // So we need to parse the response line by line nsCString lines(mControlReadCarryOverBuf); lines.Append(data, aCount); // Clear the carryover buf - if we still don't have a line, then it will // be reappended below mControlReadCarryOverBuf.Truncate(); const char* currLine = lines.get(); while (*currLine && mKeepRunning) { PRInt32 eolLength = strcspn(currLine, CRLF); PRInt32 currLineLength = strlen(currLine); // if currLine is empty or only contains CR or LF, then bail. we can // sometimes get an ODA event with the full response line + CR without // the trailing LF. the trailing LF might come in the next ODA event. // because we are happy enough to process a response line ending only // in CR, we need to take care to discard the extra LF (bug 191220). if (eolLength == 0 && currLineLength <= 1) break; if (eolLength == currLineLength) { mControlReadCarryOverBuf.Assign(currLine); break; } // Append the current segment, including the LF nsCAutoString line; PRInt32 crlfLength = 0; if ((currLineLength > eolLength) && (currLine[eolLength] == nsCRT::CR) && (currLine[eolLength+1] == nsCRT::LF)) crlfLength = 2; // CR +LF else crlfLength = 1; // + LF or CR line.Assign(currLine, eolLength + crlfLength); // Does this start with a response code? PRBool startNum = (line.Length() >= 3 && isdigit(line[0]) && isdigit(line[1]) && isdigit(line[2])); if (mResponseMsg.IsEmpty()) { // If we get here, then we know that we have a complete line, and // that it is the first one NS_ASSERTION(line.Length() > 4 && startNum, "Read buffer doesn't include response code"); mResponseCode = atoi(PromiseFlatCString(Substring(line,0,3)).get()); } mResponseMsg.Append(line); // This is the last line if its 3 numbers followed by a space if (startNum && line[3] == ' ') { // yup. last line, let's move on. if (mState == mNextState) { NS_ASSERTION(0, "ftp read state mixup"); mInternalError = NS_ERROR_FAILURE; mState = FTP_ERROR; } else { mState = mNextState; } nsCOMPtr ftpSink; mChannel->GetFTPEventSink(ftpSink); if (ftpSink) ftpSink->OnFTPControlLog(PR_TRUE, mResponseMsg.get()); rv = Process(); mResponseMsg.Truncate(); if (NS_FAILED(rv)) return rv; } currLine = currLine + eolLength + crlfLength; } return NS_OK; } // nsIRequestObserver implementation NS_IMETHODIMP nsFtpState::OnStartRequest(nsIRequest *request, nsISupports *aContext) { #if defined(PR_LOGGING) nsCAutoString spec; (void)mURL->GetAsciiSpec(spec); LOG(("(%x) nsFtpState::OnStartRequest() (spec =%s)\n", this, spec.get())); #endif return NS_OK; } NS_IMETHODIMP nsFtpState::OnStopRequest(nsIRequest *request, nsISupports *aContext, nsresult aStatus) { LOG(("(%x) nsFtpState::OnStopRequest() rv=%x\n", this, aStatus)); mControlStatus = aStatus; // HACK. This may not always work. I am assuming that I can mask the OnStopRequest // notification since I created it via the control connection. if (mTryingCachedControl && NS_FAILED(aStatus) && NS_SUCCEEDED(mInternalError)) { LOG(("(%x) nsFtpState::OnStopRequest() cache connect failed. Reconnecting...\n", this, aStatus)); mTryingCachedControl = PR_FALSE; Connect(); return NS_OK; } if (NS_FAILED(aStatus)) // aStatus will be NS_OK if we are sucessfully disconnecing the control connection. StopProcessing(); return NS_OK; } nsresult nsFtpState::EstablishControlConnection() { nsresult rv; LOG(("(%x) trying cached control\n", this)); nsFtpControlConnection* connection; (void) gFtpHandler->RemoveConnection(mURL, &connection); nsRefPtr fwd(new TransportEventForwarder(mChannel)); if (connection) { mControlConnection = connection; if (mControlConnection->IsAlive()) { // set stream listener of the control connection to be us. (void) mControlConnection->SetStreamListener(NS_STATIC_CAST(nsIStreamListener*, this)); // read cached variables into us. mServerType = mControlConnection->mServerType; mPassword = mControlConnection->mPassword; mPwd = mControlConnection->mPwd; mTryingCachedControl = PR_TRUE; // we're already connected to this server, skip login. mState = FTP_S_PASV; mResponseCode = 530; //assume the control connection was dropped. mControlStatus = NS_OK; mReceivedControlData = PR_FALSE; // For this request, we have not. // if we succeed, return. Otherwise, we need to // create a transport rv = mControlConnection->Connect(mProxyInfo, fwd); if (NS_SUCCEEDED(rv)) return rv; } else { LOG(("(%x) isAlive return false\n", this)); NS_RELEASE(mControlConnection); } } LOG(("(%x) creating control\n", this)); mState = FTP_READ_BUF; mNextState = FTP_S_USER; nsCAutoString host; rv = mURL->GetAsciiHost(host); if (NS_FAILED(rv)) return rv; mControlConnection = new nsFtpControlConnection(host.get(), mPort); if (!mControlConnection) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(mControlConnection); // Must do it this way 'cuz the channel intercepts the progress notifications. (void) mControlConnection->SetStreamListener(NS_STATIC_CAST(nsIStreamListener*, this)); return mControlConnection->Connect(mProxyInfo, fwd); } void nsFtpState::MoveToNextState(FTP_STATE nextState) { if (NS_FAILED(mInternalError)) { mState = FTP_ERROR; LOG(("(%x) FAILED (%x)\n", this, mInternalError)); } else { mState = FTP_READ_BUF; mNextState = nextState; } } nsresult nsFtpState::Process() { nsresult rv = NS_OK; PRBool processingRead = PR_TRUE; while (mKeepRunning && processingRead) { switch(mState) { case FTP_COMMAND_CONNECT: KillControlConnection(); LOG(("(%x) Establishing control connection...", this)); mInternalError = EstablishControlConnection(); // sets mState if (NS_FAILED(mInternalError)) { mState = FTP_ERROR; LOG(("(%x) FAILED\n", this)); } else LOG(("(%x) SUCCEEDED\n", this)); break; case FTP_READ_BUF: LOG(("(%x) Waiting for control data (%x)...", this, rv)); processingRead = PR_FALSE; break; case FTP_ERROR: // xx needs more work to handle dropped control connection cases if ((mTryingCachedControl && mResponseCode == 530 && mInternalError == NS_ERROR_FTP_PASV) || (mResponseCode == 425 && mInternalError == NS_ERROR_FTP_PASV)) { // The user was logged out during an pasv operation // we want to restart this request with a new control // channel. mState = FTP_COMMAND_CONNECT; } else if (mResponseCode == 421 && mInternalError != NS_ERROR_FTP_LOGIN) { // The command channel dropped for some reason. // Fire it back up, unless we were trying to login // in which case the server might just be telling us // that the max number of users has been reached... mState = FTP_COMMAND_CONNECT; } else { LOG(("(%x) FTP_ERROR - Calling StopProcessing\n", this)); rv = StopProcessing(); NS_ASSERTION(NS_SUCCEEDED(rv), "StopProcessing failed."); processingRead = PR_FALSE; } break; case FTP_COMPLETE: LOG(("(%x) COMPLETE\n", this)); rv = StopProcessing(); NS_ASSERTION(NS_SUCCEEDED(rv), "StopProcessing failed."); processingRead = PR_FALSE; break; // USER case FTP_S_USER: rv = S_user(); if (NS_FAILED(rv)) mInternalError = NS_ERROR_FTP_LOGIN; MoveToNextState(FTP_R_USER); break; case FTP_R_USER: mState = R_user(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FTP_LOGIN; break; // PASS case FTP_S_PASS: rv = S_pass(); if (NS_FAILED(rv)) mInternalError = NS_ERROR_FTP_LOGIN; MoveToNextState(FTP_R_PASS); break; case FTP_R_PASS: mState = R_pass(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FTP_LOGIN; break; // ACCT case FTP_S_ACCT: rv = S_acct(); if (NS_FAILED(rv)) mInternalError = NS_ERROR_FTP_LOGIN; MoveToNextState(FTP_R_ACCT); break; case FTP_R_ACCT: mState = R_acct(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FTP_LOGIN; break; // SYST case FTP_S_SYST: rv = S_syst(); if (NS_FAILED(rv)) mInternalError = NS_ERROR_FTP_LOGIN; MoveToNextState(FTP_R_SYST); break; case FTP_R_SYST: mState = R_syst(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FTP_LOGIN; break; // TYPE case FTP_S_TYPE: rv = S_type(); if (NS_FAILED(rv)) mInternalError = rv; MoveToNextState(FTP_R_TYPE); break; case FTP_R_TYPE: mState = R_type(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FAILURE; break; // CWD case FTP_S_CWD: rv = S_cwd(); if (NS_FAILED(rv)) mInternalError = NS_ERROR_FTP_CWD; MoveToNextState(FTP_R_CWD); break; case FTP_R_CWD: mState = R_cwd(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FTP_CWD; break; // LIST case FTP_S_LIST: rv = S_list(); if (rv == NS_ERROR_NOT_RESUMABLE) mInternalError = rv; else if (NS_FAILED(rv)) mInternalError = NS_ERROR_FTP_CWD; MoveToNextState(FTP_R_LIST); break; case FTP_R_LIST: mState = R_list(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FAILURE; break; // SIZE case FTP_S_SIZE: rv = S_size(); if (NS_FAILED(rv)) mInternalError = rv; MoveToNextState(FTP_R_SIZE); break; case FTP_R_SIZE: mState = R_size(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FAILURE; break; // REST case FTP_S_REST: rv = S_rest(); if (NS_FAILED(rv)) mInternalError = rv; MoveToNextState(FTP_R_REST); break; case FTP_R_REST: mState = R_rest(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FAILURE; break; // MDTM case FTP_S_MDTM: rv = S_mdtm(); if (NS_FAILED(rv)) mInternalError = rv; MoveToNextState(FTP_R_MDTM); break; case FTP_R_MDTM: mState = R_mdtm(); // Don't want to overwrite a more explicit status code if (FTP_ERROR == mState && NS_SUCCEEDED(mInternalError)) mInternalError = NS_ERROR_FAILURE; break; // RETR case FTP_S_RETR: rv = S_retr(); if (NS_FAILED(rv)) mInternalError = rv; MoveToNextState(FTP_R_RETR); break; case FTP_R_RETR: mState = R_retr(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FAILURE; break; // STOR case FTP_S_STOR: rv = S_stor(); if (NS_FAILED(rv)) mInternalError = rv; MoveToNextState(FTP_R_STOR); break; case FTP_R_STOR: mState = R_stor(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FAILURE; break; // PASV case FTP_S_PASV: rv = S_pasv(); if (NS_FAILED(rv)) mInternalError = NS_ERROR_FTP_PASV; MoveToNextState(FTP_R_PASV); break; case FTP_R_PASV: mState = R_pasv(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FTP_PASV; break; // PWD case FTP_S_PWD: rv = S_pwd(); if (NS_FAILED(rv)) mInternalError = NS_ERROR_FTP_PWD; MoveToNextState(FTP_R_PWD); break; case FTP_R_PWD: mState = R_pwd(); if (FTP_ERROR == mState) mInternalError = NS_ERROR_FTP_PWD; break; default: ; } } return rv; } /////////////////////////////////// // STATE METHODS /////////////////////////////////// nsresult nsFtpState::S_user() { // some servers on connect send us a 421 or 521. (84525) (141784) if ((mResponseCode == 421) || (mResponseCode == 521)) return NS_ERROR_FAILURE; nsresult rv; nsCAutoString usernameStr("USER "); if (mAnonymous) { usernameStr.AppendLiteral("anonymous"); } else { if (mUsername.IsEmpty()) { nsCOMPtr prompter; mChannel->GetCallback(prompter); if (!prompter) return NS_ERROR_NOT_INITIALIZED; nsXPIDLString user, passwd; PRBool retval; nsCAutoString prePath; rv = mURL->GetPrePath(prePath); if (NS_FAILED(rv)) return rv; NS_ConvertUTF8toUCS2 prePathU(prePath); nsCOMPtr bundleService = do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv); if (NS_FAILED(rv)) return rv; nsCOMPtr bundle; rv = bundleService->CreateBundle(NECKO_MSGS_URL, getter_AddRefs(bundle)); if (NS_FAILED(rv)) return rv; nsXPIDLString formatedString; const PRUnichar *formatStrings[1] = { prePathU.get()}; rv = bundle->FormatStringFromName(NS_LITERAL_STRING("EnterUserPasswordFor").get(), formatStrings, 1, getter_Copies(formatedString)); rv = prompter->PromptUsernameAndPassword(nsnull, formatedString, prePathU.get(), nsIAuthPrompt::SAVE_PASSWORD_PERMANENTLY, getter_Copies(user), getter_Copies(passwd), &retval); // if the user canceled or didn't supply a username we want to fail if (!retval || (user && !*user) ) return NS_ERROR_FAILURE; mUsername = user; mPassword = passwd; } // XXX Is UTF-8 the best choice? AppendUTF16toUTF8(mUsername, usernameStr); } usernameStr.Append(CRLF); return SendFTPCommand(usernameStr); } FTP_STATE nsFtpState::R_user() { if (mResponseCode/100 == 3) { // send off the password return FTP_S_PASS; } else if (mResponseCode/100 == 2) { // no password required, we're already logged in return FTP_S_SYST; } else if (mResponseCode/100 == 5) { // problem logging in. typically this means the server // has reached it's user limit. return FTP_ERROR; } else { // LOGIN FAILED if (mAnonymous) { // we just tried to login anonymously and failed. // kick back out to S_user() and try again after // gathering uname/pwd info from the user. mAnonymous = PR_FALSE; return FTP_S_USER; } else { return FTP_ERROR; } } } nsresult nsFtpState::S_pass() { nsresult rv; nsCAutoString passwordStr("PASS "); mResponseMsg = ""; if (mAnonymous) { if (!mPassword.IsEmpty()) { // XXX Is UTF-8 the best choice? AppendUTF16toUTF8(mPassword, passwordStr); } else { nsXPIDLCString anonPassword; PRBool useRealEmail = PR_FALSE; nsCOMPtr prefs = do_GetService(NS_PREFSERVICE_CONTRACTID); if (prefs) { rv = prefs->GetBoolPref("advanced.mailftp", &useRealEmail); if (NS_SUCCEEDED(rv) && useRealEmail) prefs->GetCharPref("network.ftp.anonymous_password", getter_Copies(anonPassword)); } if (!anonPassword.IsEmpty()) { passwordStr.AppendASCII(anonPassword); } else { // We need to default to a valid email address - bug 101027 // example.com is reserved (rfc2606), so use that passwordStr.AppendLiteral("mozilla@example.com"); } } } else { if (mPassword.IsEmpty() || mRetryPass) { nsCOMPtr prompter; mChannel->GetCallback(prompter); if (!prompter) return NS_ERROR_NOT_INITIALIZED; nsXPIDLString passwd; PRBool retval; nsCAutoString prePath; rv = mURL->GetPrePath(prePath); if (NS_FAILED(rv)) return rv; NS_ConvertUTF8toUCS2 prePathU(prePath); nsCOMPtr bundleService = do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv); if (NS_FAILED(rv)) return rv; nsCOMPtr bundle; rv = bundleService->CreateBundle(NECKO_MSGS_URL, getter_AddRefs(bundle)); nsXPIDLString formatedString; const PRUnichar *formatStrings[2] = { mUsername.get(), prePathU.get() }; rv = bundle->FormatStringFromName(NS_LITERAL_STRING("EnterPasswordFor").get(), formatStrings, 2, getter_Copies(formatedString)); if (NS_FAILED(rv)) return rv; rv = prompter->PromptPassword(nsnull, formatedString, prePathU.get(), nsIAuthPrompt::SAVE_PASSWORD_PERMANENTLY, getter_Copies(passwd), &retval); // we want to fail if the user canceled. Note here that if they want // a blank password, we will pass it along. if (!retval) return NS_ERROR_FAILURE; mPassword = passwd; } // XXX Is UTF-8 the best choice? AppendUTF16toUTF8(mPassword, passwordStr); } passwordStr.Append(CRLF); return SendFTPCommand(passwordStr); } FTP_STATE nsFtpState::R_pass() { if (mResponseCode/100 == 3) { // send account info return FTP_S_ACCT; } else if (mResponseCode/100 == 2) { // logged in return FTP_S_SYST; } else if (mResponseCode == 503) { // start over w/ the user command. // note: the password was successful, and it's stored in mPassword mRetryPass = PR_FALSE; return FTP_S_USER; } else if (mResponseCode/100 == 5 || mResponseCode==421) { // There is no difference between a too-many-users error, // a wrong-password error, or any other sort of error // So we need to tell wallet to forget the password if we had one, // and error out. That will then show the error message, and the // user can retry if they want to if (!mPassword.IsEmpty()) { nsCOMPtr pm = do_GetService(NS_PASSWORDMANAGER_CONTRACTID); if (pm) { nsCAutoString prePath; nsresult rv = mURL->GetPrePath(prePath); NS_ASSERTION(NS_SUCCEEDED(rv), "Failed to get prepath"); if (NS_SUCCEEDED(rv)) { pm->RemoveUser(prePath, EmptyString()); } } } // If the login was anonymous, and it failed, try again with a username if (mAnonymous) { mAnonymous = PR_FALSE; return FTP_S_USER; } mRetryPass = PR_TRUE; return FTP_ERROR; } // unexpected response code return FTP_ERROR; } nsresult nsFtpState::S_pwd() { nsCString pwdStr("PWD" CRLF); return SendFTPCommand(pwdStr); } FTP_STATE nsFtpState::R_pwd() { if (mResponseCode/100 != 2) return FTP_ERROR; nsCAutoString respStr(mResponseMsg); PRInt32 pos = respStr.FindChar('"'); if (pos > -1) { respStr.Cut(0,pos+1); pos = respStr.FindChar('"'); if (pos > -1) { respStr.Truncate(pos); if (mServerType == FTP_VMS_TYPE) ConvertDirspecFromVMS(respStr); if (respStr.Last() != '/') respStr.Append('/'); mPwd = respStr; } } return FTP_S_TYPE; } nsresult nsFtpState::S_syst() { nsCString systString("SYST" CRLF); return SendFTPCommand( systString ); } FTP_STATE nsFtpState::R_syst() { if (mResponseCode/100 == 2) { if (( mResponseMsg.Find("L8") > -1) || ( mResponseMsg.Find("UNIX") > -1) || ( mResponseMsg.Find("BSD") > -1) || ( mResponseMsg.Find("MACOS Peter's Server") > -1) || ( mResponseMsg.Find("MACOS WebSTAR FTP") > -1) || ( mResponseMsg.Find("MVS") > -1) || ( mResponseMsg.Find("OS/390") > -1)) { mServerType = FTP_UNIX_TYPE; } else if ( ( mResponseMsg.Find("WIN32", PR_TRUE) > -1) || ( mResponseMsg.Find("windows", PR_TRUE) > -1) ) { mServerType = FTP_NT_TYPE; } else if ( mResponseMsg.Find("OS/2", PR_TRUE) > -1) { mServerType = FTP_OS2_TYPE; } else if ( mResponseMsg.Find("VMS", PR_TRUE) > -1) { mServerType = FTP_VMS_TYPE; } else { NS_ASSERTION(0, "Server type list format unrecognized."); // Guessing causes crashes. // (Of course, the parsing code should be more robust...) nsresult rv; nsCOMPtr bundleService = do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv); if (NS_FAILED(rv)) return FTP_ERROR; nsCOMPtr bundle; rv = bundleService->CreateBundle(NECKO_MSGS_URL, getter_AddRefs(bundle)); if (NS_FAILED(rv)) return FTP_ERROR; nsXPIDLString formatedString; PRUnichar* ucs2Response = ToNewUnicode(mResponseMsg); const PRUnichar *formatStrings[1] = { ucs2Response }; rv = bundle->FormatStringFromName(NS_LITERAL_STRING("UnsupportedFTPServer").get(), formatStrings, 1, getter_Copies(formatedString)); nsMemory::Free(ucs2Response); if (NS_FAILED(rv)) return FTP_ERROR; // XXX(darin): this code should not be dictating UI like this! nsCOMPtr prompter; mChannel->GetCallback(prompter); if (prompter) prompter->Alert(nsnull, formatedString.get()); // since we just alerted the user, clear mResponseMsg, // which is displayed to the user. mResponseMsg = ""; return FTP_ERROR; } return FTP_S_PWD; } if (mResponseCode/100 == 5) { // server didn't like the SYST command. Probably (500, 501, 502) // No clue. We will just hope it is UNIX type server. mServerType = FTP_UNIX_TYPE; return FTP_S_PWD; } return FTP_ERROR; } nsresult nsFtpState::S_acct() { nsCString acctString("ACCT noaccount" CRLF); return SendFTPCommand(acctString); } FTP_STATE nsFtpState::R_acct() { if (mResponseCode/100 == 2) return FTP_S_SYST; else return FTP_ERROR; } nsresult nsFtpState::S_type() { nsCString typeString("TYPE I" CRLF); return SendFTPCommand(typeString); } FTP_STATE nsFtpState::R_type() { if (mResponseCode/100 != 2) return FTP_ERROR; return FTP_S_PASV; } nsresult nsFtpState::S_cwd() { nsCAutoString cwdStr; if (mAction != PUT) cwdStr = mPath; if (cwdStr.IsEmpty() || cwdStr.First() != '/') cwdStr.Insert(mPwd,0); if (mServerType == FTP_VMS_TYPE) ConvertDirspecToVMS(cwdStr); cwdStr.Insert("CWD ",0); cwdStr.Append(CRLF); return SendFTPCommand(cwdStr); } FTP_STATE nsFtpState::R_cwd() { if (mResponseCode/100 == 2) { if (mAction == PUT) return FTP_S_STOR; return FTP_S_LIST; } return FTP_ERROR; } nsresult nsFtpState::S_size() { nsCAutoString sizeBuf(mPath); if (sizeBuf.IsEmpty() || sizeBuf.First() != '/') sizeBuf.Insert(mPwd,0); if (mServerType == FTP_VMS_TYPE) ConvertFilespecToVMS(sizeBuf); sizeBuf.Insert("SIZE ",0); sizeBuf.Append(CRLF); return SendFTPCommand(sizeBuf); } FTP_STATE nsFtpState::R_size() { if (mResponseCode/100 == 2) { PR_sscanf(mResponseMsg.get() + 4, "%llu", &mFileSize); PRUint32 size32; LL_L2UI(size32, mFileSize); if (NS_FAILED(mChannel->SetContentLength(size32))) return FTP_ERROR; // Set the 64-bit length too mChannel->SetPropertyAsUint64(NS_CHANNEL_PROP_CONTENT_LENGTH, mFileSize); mDRequestForwarder->SetFileSize(mFileSize); } // We may want to be able to resume this return FTP_S_MDTM; } nsresult nsFtpState::S_mdtm() { nsCAutoString mdtmBuf(mPath); if (mdtmBuf.IsEmpty() || mdtmBuf.First() != '/') mdtmBuf.Insert(mPwd,0); if (mServerType == FTP_VMS_TYPE) ConvertFilespecToVMS(mdtmBuf); mdtmBuf.Insert("MDTM ",0); mdtmBuf.Append(CRLF); return SendFTPCommand(mdtmBuf); } FTP_STATE nsFtpState::R_mdtm() { if (mResponseCode == 213) { mResponseMsg.Cut(0,4); mResponseMsg.Trim(" \t\r\n"); // yyyymmddhhmmss if (mResponseMsg.Length() != 14) { NS_ASSERTION(mResponseMsg.Length() == 14, "Unknown MDTM response"); } else { mModTime = mResponseMsg; } } mEntityID.Truncate(); mEntityID.AppendInt(PRInt64(mFileSize)); mEntityID.Append('/'); mEntityID.Append(mModTime); mDRequestForwarder->SetEntityID(mEntityID); // if we tried downloading this, lets try restarting it... if (mDRequestForwarder && mDRequestForwarder->GetBytesTransfered() > 0) { mStartPos = mDRequestForwarder->GetBytesTransfered(); return FTP_S_REST; } // We weren't asked to resume if (mStartPos == LL_MAXUINT) return FTP_S_RETR; //if (our entityID == supplied one (if any)) if (mSuppliedEntityID.IsEmpty() || mEntityID.Equals(mSuppliedEntityID)) { return FTP_S_REST; } else { mInternalError = NS_ERROR_ENTITY_CHANGED; mResponseMsg.Truncate(); return FTP_ERROR; } } nsresult nsFtpState::SetContentType() { return mChannel->SetContentType(NS_LITERAL_CSTRING(APPLICATION_HTTP_INDEX_FORMAT)); } nsresult nsFtpState::S_list() { nsresult rv; if (!mDRequestForwarder) return NS_ERROR_FAILURE; rv = SetContentType(); if (NS_FAILED(rv)) return FTP_ERROR; // save off the server type if we are caching. if(mCacheEntry) { nsCAutoString serverType; serverType.AppendInt(mServerType); (void) mCacheEntry->SetMetaDataElement("servertype", serverType.get()); } nsCOMPtr converter; rv = BuildStreamConverter(getter_AddRefs(converter)); if (NS_FAILED(rv)) { // clear mResponseMsg which is displayed to the user. // TODO: we should probably set this to something // meaningful. mResponseMsg = ""; return rv; } // the data forwarder defaults to sending notifications // to the channel. Lets hijack and send the notifications // to the stream converter. mDRequestForwarder->SetStreamListener(converter); mDRequestForwarder->SetCacheEntry(mCacheEntry, PR_TRUE); // dir listings aren't resumable NS_ASSERTION(mSuppliedEntityID.IsEmpty(), "Entity ID given to directory request"); NS_ASSERTION(mStartPos == LL_MAXUINT || mStartPos == nsUint64(0), "Non-initial start position given to directory request"); if (!mSuppliedEntityID.IsEmpty() || (mStartPos != LL_MAXUINT && mStartPos != nsUint64(0))) { // If we reach this code, then the caller is in error return NS_ERROR_NOT_RESUMABLE; } mDRequestForwarder->SetEntityID(EmptyCString()); nsCAutoString listString; if (mServerType == FTP_VMS_TYPE) listString.AssignLiteral("LIST *.*;0" CRLF); else listString.AssignLiteral("LIST" CRLF); return SendFTPCommand(listString); } FTP_STATE nsFtpState::R_list() { if (mResponseCode/100 == 1) { nsresult rv = mDPipeRequest->Resume(); if (NS_FAILED(rv)) { LOG(("(%x) dataPipe->Resume (rv=%x)\n", this, rv)); return FTP_ERROR; } return FTP_READ_BUF; } if (mResponseCode/100 == 2) { //(DONE) mNextState = FTP_COMPLETE; return FTP_COMPLETE; } return FTP_ERROR; } nsresult nsFtpState::S_retr() { nsresult rv = NS_OK; nsCAutoString retrStr(mPath); if (retrStr.IsEmpty() || retrStr.First() != '/') retrStr.Insert(mPwd,0); if (mServerType == FTP_VMS_TYPE) ConvertFilespecToVMS(retrStr); retrStr.Insert("RETR ",0); retrStr.Append(CRLF); if (!mDRequestForwarder) return NS_ERROR_FAILURE; rv = SendFTPCommand(retrStr); return rv; } FTP_STATE nsFtpState::R_retr() { if (mResponseCode/100 == 2) { //(DONE) mNextState = FTP_COMPLETE; return FTP_COMPLETE; } if (mResponseCode/100 == 1) { // We're going to grab a file, not a directory. So we need to clear // any cache entry, otherwise we'll have problems reading it later. // See bug 122548 if (mCacheEntry) { (void)mCacheEntry->Doom(); mCacheEntry = nsnull; } nsresult rv = mDPipeRequest->Resume(); if (NS_FAILED(rv)) { LOG(("(%x) dataPipe->Resume (rv=%x)\n", this, rv)); return FTP_ERROR; } return FTP_READ_BUF; } // These error codes are related to problems with the connection. // If we encounter any at this point, do not try CWD and abort. if (mResponseCode == 421 || mResponseCode == 425 || mResponseCode == 426) return FTP_ERROR; if (mResponseCode/100 == 5) { mRETRFailed = PR_TRUE; mDRequestForwarder->SetRetrying(PR_TRUE); return FTP_S_PASV; } return FTP_S_CWD; } nsresult nsFtpState::S_rest() { nsCAutoString restString("REST "); // The PRInt64 cast is needed to avoid ambiguity restString.AppendInt(PRInt64(PRUint64(mStartPos)), 10); restString.Append(CRLF); return SendFTPCommand(restString); } FTP_STATE nsFtpState::R_rest() { if (mResponseCode/100 == 4) { // If REST fails, then we can't resume mEntityID.Truncate(); mInternalError = NS_ERROR_NOT_RESUMABLE; mResponseMsg.Truncate(); return FTP_ERROR; } return FTP_S_RETR; } nsresult nsFtpState::S_stor() { NS_ASSERTION(mWriteStream, "we're trying to upload without any data"); if (!mWriteStream) return NS_ERROR_FAILURE; NS_ASSERTION(mAction == PUT, "Wrong state to be here"); nsCAutoString storStr; nsresult rv; nsCOMPtr aURL(do_QueryInterface(mURL, &rv)); if (NS_FAILED(rv)) return rv; rv = aURL->GetFilePath(storStr); if (NS_FAILED(rv)) return rv; NS_ASSERTION(!storStr.IsEmpty(), "What does it mean to store a empty path"); if (storStr.First() == '/') { // kill the first slash since we want to be relative to CWD. storStr.Cut(0,1); } if (mServerType == FTP_VMS_TYPE) { ConvertFilespecToVMS(storStr); } NS_UnescapeURL(storStr); storStr.Insert("STOR ",0); storStr.Append(CRLF); return SendFTPCommand(storStr); } FTP_STATE nsFtpState::R_stor() { if (mResponseCode/100 == 2) { //(DONE) mNextState = FTP_COMPLETE; return FTP_COMPLETE; } if (mResponseCode/100 == 1) { LOG(("(%x) writing on Data Transport\n", this)); return FTP_READ_BUF; } return FTP_ERROR; } nsresult nsFtpState::S_pasv() { nsresult rv; if (mIPv6Checked == PR_FALSE) { // Find IPv6 socket address, if server is IPv6 mIPv6Checked = PR_TRUE; PR_ASSERT(mIPv6ServerAddress == 0); nsITransport *controlSocket = mControlConnection->Transport(); if (!controlSocket) return FTP_ERROR; nsCOMPtr sTrans = do_QueryInterface(controlSocket, &rv); if (sTrans) { PRNetAddr addr; rv = sTrans->GetPeerAddr(&addr); if (NS_SUCCEEDED(rv)) { if (addr.raw.family == PR_AF_INET6 && !PR_IsNetAddrType(&addr, PR_IpAddrV4Mapped)) { mIPv6ServerAddress = (char *) nsMemory::Alloc(100); if (mIPv6ServerAddress) { if (PR_NetAddrToString(&addr, mIPv6ServerAddress, 100) != PR_SUCCESS) { nsMemory::Free(mIPv6ServerAddress); mIPv6ServerAddress = 0; } } } } } } const char * string; if (mIPv6ServerAddress) string = "EPSV" CRLF; else string = "PASV" CRLF; nsCString pasvString(string); return SendFTPCommand(pasvString); } FTP_STATE nsFtpState::R_pasv() { nsresult rv; PRInt32 port; if (mResponseCode/100 != 2) { return FTP_ERROR; } char *response = ToNewCString(mResponseMsg); if (!response) return FTP_ERROR; char *ptr = response; // Make sure to ignore the address in the PASV response (bug 370559) nsCAutoString host; rv = mURL->GetAsciiHost(host); if (NS_FAILED(rv)) return FTP_ERROR; if (mIPv6ServerAddress) { // The returned string is of the form // text (|||ppp|) // Where '|' can be any single character char delim; while (*ptr && *ptr != '(') ptr++; if (*ptr++ != '(') { return FTP_ERROR; } delim = *ptr++; if (!delim || *ptr++ != delim || *ptr++ != delim || *ptr < '0' || *ptr > '9') { return FTP_ERROR; } port = 0; do { port = port * 10 + *ptr++ - '0'; } while (*ptr >= '0' && *ptr <= '9'); if (*ptr++ != delim || *ptr != ')') { return FTP_ERROR; } } else { // The returned address string can be of the form // (xxx,xxx,xxx,xxx,ppp,ppp) or // xxx,xxx,xxx,xxx,ppp,ppp (without parens) PRInt32 h0, h1, h2, h3, p0, p1; PRUint32 fields = 0; // First try with parens while (*ptr && *ptr != '(') ++ptr; if (*ptr) { ++ptr; fields = PR_sscanf(ptr, "%ld,%ld,%ld,%ld,%ld,%ld", &h0, &h1, &h2, &h3, &p0, &p1); } if (!*ptr || fields < 6) { // OK, lets try w/o parens ptr = response; while (*ptr && *ptr != ',') ++ptr; if (*ptr) { // backup to the start of the digits do { ptr--; } while ((ptr >=response) && (*ptr >= '0') && (*ptr <= '9')); ptr++; // get back onto the numbers fields = PR_sscanf(ptr, "%ld,%ld,%ld,%ld,%ld,%ld", &h0, &h1, &h2, &h3, &p0, &p1); } } NS_ASSERTION(fields == 6, "Can't parse PASV response"); if (fields < 6) { return FTP_ERROR; } port = ((PRInt32) (p0<<8)) + p1; } nsMemory::Free(response); const char* hostStr = mIPv6ServerAddress ? mIPv6ServerAddress : host.get(); PRBool newDataConn = PR_TRUE; if (mDPipeRequest) { // Reuse this connection only if its still alive, and the port // is the same if (mDPipe) { PRInt32 oldPort; nsresult rv = mDPipe->GetPort(&oldPort); if (NS_SUCCEEDED(rv)) { if (oldPort == port) { PRBool isAlive; if (NS_SUCCEEDED(mDPipe->IsAlive(&isAlive)) && isAlive) newDataConn = PR_FALSE; } } } if (newDataConn) { mDPipeRequest->Cancel(NS_ERROR_ABORT); mDPipeRequest = 0; mDPipe = 0; } else { mDRequestForwarder->SetRetrying(PR_FALSE); } } if (newDataConn) { // now we know where to connect our data channel nsCOMPtr sts = do_GetService(kSocketTransportServiceCID, &rv); rv = sts->CreateTransport(nsnull, 0, nsDependentCString(hostStr), port, mProxyInfo, getter_AddRefs(mDPipe)); // the data socket if (NS_FAILED(rv)) return FTP_ERROR; LOG(("(%x) Created Data Transport (%s:%x)\n", this, hostStr, port)); if (!mDRequestForwarder) { mDRequestForwarder = new DataRequestForwarder; if (!mDRequestForwarder) return FTP_ERROR; NS_ADDREF(mDRequestForwarder); rv = mDRequestForwarder->Init(mChannel); if (NS_FAILED(rv)){ LOG(("(%x) forwarder->Init failed (rv=%x)\n", this, rv)); return FTP_ERROR; } } mWaitingForDConn = PR_TRUE; // hook ourself up as a proxy for status notifications nsCOMPtr eventQ; rv = NS_GetCurrentEventQ(getter_AddRefs(eventQ)); if (NS_FAILED(rv)){ LOG(("(%x) NS_GetCurrentEventQ failed (rv=%x)\n", this, rv)); return FTP_ERROR; } rv = mDPipe->SetEventSink(NS_STATIC_CAST(nsITransportEventSink*, mDRequestForwarder), eventQ); if (NS_FAILED(rv)){ LOG(("(%x) forwarder->SetEventSink failed (rv=%x)\n", this, rv)); return FTP_ERROR; } if (mAction == PUT) { NS_ASSERTION(!mRETRFailed, "Failed before uploading"); mDRequestForwarder->Uploading(PR_TRUE, mWriteCount); // nsIUploadChannel requires the upload stream to support ReadSegments. // therefore, we can open an unbuffered socket output stream. nsCOMPtr output; rv = mDPipe->OpenOutputStream(nsITransport::OPEN_UNBUFFERED, 0, 0, getter_AddRefs(output)); if (NS_FAILED(rv)) return FTP_ERROR; // perform the data copy on the socket transport thread. we do this // because "output" is a socket output stream, so the result is that // all work will be done on the socket transport thread. nsCOMPtr stEventTarget = do_GetService(kSocketTransportServiceCID, &rv); if (NS_FAILED(rv)) return FTP_ERROR; nsCOMPtr copier; rv = NS_NewAsyncStreamCopier(getter_AddRefs(copier), mWriteStream, output, stEventTarget, PR_TRUE, // mWriteStream is buffered PR_FALSE); // output is NOT buffered if (NS_FAILED(rv)) return FTP_ERROR; rv = copier->AsyncCopy(mDRequestForwarder, nsnull); if (NS_FAILED(rv)) return FTP_ERROR; // hold a reference to the copier so we can cancel it if necessary. mDPipeRequest = copier; // update the current working directory before sending the STOR // command. this is needed since we might be reusing a control // connection. return FTP_S_CWD; } // // else, we are reading from the data connection... // // open a buffered, asynchronous socket input stream nsCOMPtr input; rv = mDPipe->OpenInputStream(0, FTP_DATA_CHANNEL_SEG_SIZE, FTP_DATA_CHANNEL_SEG_COUNT, getter_AddRefs(input)); if (NS_FAILED(rv)) { LOG(("(%x) OpenInputStream failed (rv=%x)\n", this, rv)); return FTP_ERROR; } // pump data to the request forwarder... nsCOMPtr pump; rv = NS_NewInputStreamPump(getter_AddRefs(pump), input, nsInt64(-1), nsInt64(-1), 0, 0, PR_TRUE); if (NS_FAILED(rv)) { LOG(("(%x) NS_NewInputStreamPump failed (rv=%x)\n", this, rv)); return FTP_ERROR; } rv = pump->AsyncRead(mDRequestForwarder, nsnull); if (NS_FAILED(rv)) { LOG(("(%x) AsyncRead failed (rv=%x)\n", this, rv)); return FTP_ERROR; } // hold a reference to the input stream pump so we can cancel it. mDPipeRequest = pump; // Suspend the read // If we don't do this, then the remote server could close the // connection before we get the error message, and then we process the // onstop as if it was from the real data connection rv = mDPipeRequest->Suspend(); if (NS_FAILED(rv)){ LOG(("(%x) dataPipe->Suspend failed (rv=%x)\n", this, rv)); return FTP_ERROR; } } if (mRETRFailed) return FTP_S_CWD; return FTP_S_SIZE; } //////////////////////////////////////////////////////////////////////////////// // nsIRequest methods: NS_IMETHODIMP nsFtpState::GetName(nsACString &result) { return mURL->GetSpec(result); } NS_IMETHODIMP nsFtpState::IsPending(PRBool *result) { nsresult rv = NS_OK; *result = PR_FALSE; nsIRequest *request = mControlConnection->ReadRequest(); if (request) rv = request->IsPending(result); return rv; } NS_IMETHODIMP nsFtpState::GetStatus(nsresult *status) { *status = mInternalError; return NS_OK; } NS_IMETHODIMP nsFtpState::Cancel(nsresult status) { NS_ASSERTION(NS_FAILED(status), "shouldn't cancel with a success code"); LOG(("(%x) nsFtpState::Cancel() rv=%x\n", this, status)); // we should try to recover the control connection.... if (NS_SUCCEEDED(mControlStatus)) mControlStatus = status; if (mKeepRunning) (void) StopProcessing(); return NS_OK; } NS_IMETHODIMP nsFtpState::Suspend(void) { nsresult rv = NS_OK; if (!mControlConnection) return NS_ERROR_FAILURE; // suspending the underlying socket transport will // cause the FTP state machine to "suspend" when it // tries to use the transport. May not be granular // enough. if (mSuspendCount < 1) { mSuspendCount++; // only worry about the read request. nsIRequest *request = mControlConnection->ReadRequest(); if (request) { rv = request->Suspend(); if (NS_FAILED(rv)) return rv; } if (mDPipeRequest) rv = mDPipeRequest->Suspend(); } return rv; } NS_IMETHODIMP nsFtpState::Resume(void) { nsresult rv = NS_ERROR_FAILURE; // resuming the underlying socket transports will // cause the FTP state machine to unblock and // go on about it's business. if (mSuspendCount) { PRBool dataAlive = PR_FALSE; if (mDPipe) mDPipe->IsAlive(&dataAlive); if (mDPipe && dataAlive && mControlConnection->IsAlive()) { nsIRequest *controlRequest = mControlConnection->ReadRequest(); NS_ASSERTION(controlRequest, "where did my request go!"); controlRequest->Resume(); rv = mDPipeRequest->Resume(); } else { // control or data connection went down. need to reconnect. // if we were downloading, we need to perform REST. rv = EstablishControlConnection(); } } mSuspendCount--; return rv; } NS_IMETHODIMP nsFtpState::GetLoadGroup(nsILoadGroup **aLoadGroup) { *aLoadGroup = nsnull; return NS_OK; } NS_IMETHODIMP nsFtpState::SetLoadGroup(nsILoadGroup *aLoadGroup) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsFtpState::GetLoadFlags(nsLoadFlags *aLoadFlags) { *aLoadFlags = nsIRequest::LOAD_NORMAL; return NS_OK; } NS_IMETHODIMP nsFtpState::SetLoadFlags(nsLoadFlags aLoadFlags) { return NS_ERROR_NOT_IMPLEMENTED; } // This really really needs to be somewhere else static inline PRUint32 PRTimeToSeconds(PRTime t_usec) { PRTime usec_per_sec; PRUint32 t_sec; LL_I2L(usec_per_sec, PR_USEC_PER_SEC); LL_DIV(t_usec, t_usec, usec_per_sec); LL_L2I(t_sec, t_usec); return t_sec; } #define NowInSeconds() PRTimeToSeconds(PR_Now()) PRUint32 nsFtpState::mSessionStartTime = NowInSeconds(); /* Is this cache entry valid to use for reading? * Since we make up an expiration time for ftp, use the following rules: * (see bug 103726) * * LOAD_FROM_CACHE : always use cache entry, even if expired * LOAD_BYPASS_CACHE : overwrite cache entry * LOAD_NORMAL|VALIDATE_ALWAYS : overwrite cache entry * LOAD_NORMAL : honor expiration time * LOAD_NORMAL|VALIDATE_ONCE_PER_SESSION : overwrite cache entry if first access * this session, otherwise use cache entry * even if expired. * LOAD_NORMAL|VALIDATE_NEVER : always use cache entry, even if expired * * Note that in theory we could use the mdtm time on the directory * In practice, the lack of a timezone plus the general lack of support for that * on directories means that its not worth it, I suspect. Revisit if we start * caching files - bbaetz */ PRBool nsFtpState::CanReadEntry() { nsCacheAccessMode access; nsresult rv = mCacheEntry->GetAccessGranted(&access); if (NS_FAILED(rv)) return PR_FALSE; // If I'm not granted read access, then I can't reuse it... if (!(access & nsICache::ACCESS_READ)) return PR_FALSE; nsLoadFlags flags; rv = mChannel->GetLoadFlags(&flags); if (NS_FAILED(rv)) return PR_FALSE; if (flags & LOAD_FROM_CACHE) return PR_TRUE; if (flags & LOAD_BYPASS_CACHE) return PR_FALSE; if (flags & VALIDATE_ALWAYS) return PR_FALSE; PRUint32 time; if (flags & VALIDATE_ONCE_PER_SESSION) { rv = mCacheEntry->GetLastModified(&time); if (NS_FAILED(rv)) return PR_FALSE; return (mSessionStartTime > time); } if (flags & VALIDATE_NEVER) return PR_TRUE; // OK, now we just check the expiration time as usual rv = mCacheEntry->GetExpirationTime(&time); if (NS_FAILED(rv)) return rv; return (NowInSeconds() <= time); } nsresult nsFtpState::Init(nsFTPChannel* aChannel, nsICacheEntryDescriptor* cacheEntry, nsIProxyInfo* proxyInfo, PRUint64 startPos, const nsACString& entity) { mKeepRunning = PR_TRUE; mCacheEntry = cacheEntry; mProxyInfo = proxyInfo; mStartPos = startPos; mSuppliedEntityID = entity; // parameter validation NS_ASSERTION(aChannel, "FTP: needs a channel"); mChannel = aChannel; // a straight ref ptr to the channel nsresult rv = aChannel->GetURI(getter_AddRefs(mURL)); if (NS_FAILED(rv)) return rv; if (mCacheEntry) { if (CanReadEntry()) { // XXX - all this code assumes that we only cache directories // If we start caching files, this needs to be updated // make sure the channel knows wassup SetContentType(); NS_ASSERTION(!mDRequestForwarder, "there should not be a data forwarder"); mDRequestForwarder = new DataRequestForwarder; if (!mDRequestForwarder) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(mDRequestForwarder); rv = mDRequestForwarder->Init(mChannel); nsXPIDLCString serverType; (void) mCacheEntry->GetMetaDataElement("servertype", getter_Copies(serverType)); nsCAutoString serverNum(serverType.get()); PRInt32 err; mServerType = serverNum.ToInteger(&err); nsCOMPtr converter; rv = BuildStreamConverter(getter_AddRefs(converter)); if (NS_FAILED(rv)) return rv; mDRequestForwarder->SetStreamListener(converter); mDRequestForwarder->SetCacheEntry(mCacheEntry, PR_FALSE); mDRequestForwarder->SetEntityID(EmptyCString()); // Get a transport to the cached data... nsCOMPtr input; rv = mCacheEntry->OpenInputStream(0, getter_AddRefs(input)); if (NS_FAILED(rv)) return rv; nsCOMPtr pump; rv = NS_NewInputStreamPump(getter_AddRefs(pump), input); if (NS_FAILED(rv)) return rv; // Pump the cache data downstream rv = pump->AsyncRead(mDRequestForwarder, nsnull); if (NS_FAILED(rv)) return rv; mDPipeRequest = pump; } } nsCAutoString path; nsCOMPtr aURL(do_QueryInterface(mURL)); if (aURL) rv = aURL->GetFilePath(path); else rv = mURL->GetPath(path); if (NS_FAILED(rv)) return rv; // Skip leading slash char *fwdPtr = path.BeginWriting(); if (fwdPtr && (*fwdPtr == '/')) fwdPtr++; if (*fwdPtr != '\0') { // now unescape it... %xx reduced inline to resulting character PRInt32 len = NS_UnescapeURL(fwdPtr); mPath.Assign(fwdPtr, len); #ifdef DEBUG if (mPath.FindCharInSet(CRLF) >= 0) NS_ERROR("NewURI() should've prevented this!!!"); #endif } // pull any username and/or password out of the uri nsCAutoString uname; rv = mURL->GetUsername(uname); if (NS_FAILED(rv)) return rv; if (!uname.IsEmpty() && !uname.EqualsLiteral("anonymous")) { mAnonymous = PR_FALSE; CopyUTF8toUTF16(NS_UnescapeURL(uname), mUsername); // return an error if we find a CR or LF in the username if (uname.FindCharInSet(CRLF) >= 0) return NS_ERROR_MALFORMED_URI; } nsCAutoString password; rv = mURL->GetPassword(password); if (NS_FAILED(rv)) return rv; CopyUTF8toUTF16(NS_UnescapeURL(password), mPassword); // return an error if we find a CR or LF in the password if (mPassword.FindCharInSet(CRLF) >= 0) return NS_ERROR_MALFORMED_URI; // setup the connection cache key PRInt32 port; rv = mURL->GetPort(&port); if (NS_FAILED(rv)) return rv; if (port > 0) mPort = port; return NS_OK; } nsresult nsFtpState::Connect() { if (mDRequestForwarder) return NS_OK; // we are already connected. nsresult rv; mState = FTP_COMMAND_CONNECT; mNextState = FTP_S_USER; rv = Process(); // check for errors. if (NS_FAILED(rv)) { LOG(("-- Connect() on Control Connect FAILED with rv = %x\n", rv)); mInternalError = NS_ERROR_FAILURE; mState = FTP_ERROR; } return rv; } nsresult nsFtpState::SetWriteStream(nsIInputStream* aInStream) { if (!aInStream) return NS_OK; mAction = PUT; mWriteStream = aInStream; mWriteStream->Available(&mWriteCount); return NS_OK; } void nsFtpState::KillControlConnection() { mControlReadCarryOverBuf.Truncate(0); NS_IF_RELEASE(mDRequestForwarder); mIPv6Checked = PR_FALSE; if (mIPv6ServerAddress) { nsMemory::Free(mIPv6ServerAddress); mIPv6ServerAddress = 0; } // if everything went okay, save the connection. // FIX: need a better way to determine if we can cache the connections. // there are some errors which do not mean that we need to kill the connection // e.g. fnf. if (!mControlConnection) return; // kill the reference to ourselves in the control connection. (void) mControlConnection->SetStreamListener(nsnull); if (FTP_CACHE_CONTROL_CONNECTION && NS_SUCCEEDED(mInternalError) && NS_SUCCEEDED(mControlStatus) && mControlConnection->IsAlive()) { LOG_ALWAYS(("(%x) nsFtpState caching control connection", this)); // Store connection persistant data mControlConnection->mServerType = mServerType; mControlConnection->mPassword = mPassword; mControlConnection->mPwd = mPwd; nsresult rv = gFtpHandler->InsertConnection(mURL, mControlConnection); // Can't cache it? Kill it then. mControlConnection->Disconnect(rv); } else mControlConnection->Disconnect(NS_BINDING_ABORTED); NS_RELEASE(mControlConnection); return; } nsresult nsFtpState::StopProcessing() { // Only do this function once. if (!mKeepRunning) return NS_OK; mKeepRunning = PR_FALSE; LOG_ALWAYS(("(%x) nsFtpState stopping", this)); #ifdef DEBUG_dougt printf("FTP Stopped: [response code %d] [response msg follows:]\n%s\n", mResponseCode, mResponseMsg.get()); #endif // We do this check here because the value of mInternalError changes during // this function. However, we only show the actual alert once we are done // changing member variables, because showing the dialog can process events // and we don't want to risk reentering this function. (compare bug 343371) nsCOMPtr prompter; if (NS_FAILED(mInternalError) && !mResponseMsg.IsEmpty()) mChannel->GetCallback(prompter); nsresult broadcastErrorCode = mControlStatus; if ( NS_SUCCEEDED(broadcastErrorCode)) broadcastErrorCode = mInternalError; mInternalError = broadcastErrorCode; if (mDPipeRequest && NS_FAILED(broadcastErrorCode)) mDPipeRequest->Cancel(broadcastErrorCode); if (mDRequestForwarder) { NS_RELEASE(mDRequestForwarder); } else { // The forwarding object was never created which means that we never sent our notifications. nsCOMPtr asyncObserver; NS_NewRequestObserverProxy(getter_AddRefs(asyncObserver), mChannel, NS_CURRENT_EVENTQ); if(asyncObserver) { (void) asyncObserver->OnStartRequest(this, nsnull); (void) asyncObserver->OnStopRequest(this, nsnull, broadcastErrorCode); } } KillControlConnection(); mChannel->OnStatus(nsnull, nsnull, NS_NET_STATUS_END_FTP_TRANSACTION, nsnull); // Release the Observers mWriteStream = 0; // should this call close before setting to null? mChannel = 0; mProxyInfo = 0; // This code must be at the end of this function. See the comment about // prompter for why. if (prompter) { // web shell wont throw an alert. we better: // XXX(darin): this code should not be dictating UI like this! prompter->Alert(nsnull, NS_ConvertASCIItoUCS2(mResponseMsg).get()); } return NS_OK; } nsresult nsFtpState::BuildStreamConverter(nsIStreamListener** convertStreamListener) { nsresult rv; // setup a listener to push the data into. This listener sits inbetween the // unconverted data of fromType, and the final listener in the chain (in this case // the mListener). nsCOMPtr converterListener; nsCOMPtr scs = do_GetService(kStreamConverterServiceCID, &rv); if (NS_FAILED(rv)) return rv; rv = scs->AsyncConvertData("text/ftp-dir", APPLICATION_HTTP_INDEX_FORMAT, mChannel, mURL, getter_AddRefs(converterListener)); if (NS_FAILED(rv)) { LOG(("(%x) scs->AsyncConvertData failed (rv=%x)\n", this, rv)); return rv; } NS_ADDREF(*convertStreamListener = converterListener); return rv; } void nsFtpState::DataConnectionEstablished() { LOG(("(%x) Data Connection established.", this)); mWaitingForDConn = PR_FALSE; // If we no longer have a channel, we don't need this connection if (!mChannel) { LOG((" Ignoring data connection")); return; } // sending empty string with (mWaitingForDConn == PR_FALSE) will cause the // control socket to write out its buffer. nsCString a(""); SendFTPCommand(a); } void nsFtpState::DataConnectionComplete() { LOG(("(%x) Data Connection complete.", this)); if (mDPipe) { mDPipe->SetEventSink(nsnull, nsnull); mDPipe->Close(NS_ERROR_ABORT); mDPipe = 0; } } nsresult nsFtpState::SendFTPCommand(nsCString& command) { NS_ASSERTION(mControlConnection, "null control connection"); // we don't want to log the password: nsCAutoString logcmd(command); if (StringBeginsWith(command, NS_LITERAL_CSTRING("PASS "))) logcmd = "PASS xxxxx"; LOG(("(%x)(dwait=%d) Writing \"%s\"\n", this, mWaitingForDConn, logcmd.get())); nsCOMPtr ftpSink; mChannel->GetFTPEventSink(ftpSink); if (ftpSink) ftpSink->OnFTPControlLog(PR_FALSE, logcmd.get()); if (mControlConnection) { return mControlConnection->Write(command, mWaitingForDConn); } return NS_ERROR_FAILURE; } // Convert a unix-style filespec to VMS format // /foo/fred/barney/file.txt -> foo:[fred.barney]file.txt // /foo/file.txt -> foo:[000000]file.txt void nsFtpState::ConvertFilespecToVMS(nsCString& fileString) { int ntok=1; char *t, *nextToken; nsCAutoString fileStringCopy; // Get a writeable copy we can strtok with. fileStringCopy = fileString; t = nsCRT::strtok(fileStringCopy.BeginWriting(), "/", &nextToken); if (t) while (nsCRT::strtok(nextToken, "/", &nextToken)) ntok++; // count number of terms (tokens) LOG(("(%x) ConvertFilespecToVMS ntok: %d\n", this, ntok)); LOG(("(%x) ConvertFilespecToVMS from: \"%s\"\n", this, fileString.get())); if (fileString.First() == '/') { // absolute filespec // / -> [] // /a -> a (doesn't really make much sense) // /a/b -> a:[000000]b // /a/b/c -> a:[b]c // /a/b/c/d -> a:[b.c]d if (ntok == 1) { if (fileString.Length() == 1) { // Just a slash fileString.Truncate(); fileString.AppendLiteral("[]"); } else { // just copy the name part (drop the leading slash) fileStringCopy = fileString; fileString = Substring(fileStringCopy, 1, fileStringCopy.Length()-1); } } else { // Get another copy since the last one was written to. fileStringCopy = fileString; fileString.Truncate(); fileString.Append(nsCRT::strtok(fileStringCopy.BeginWriting(), "/", &nextToken)); fileString.AppendLiteral(":["); if (ntok > 2) { for (int i=2; i 2) fileString.Append('.'); fileString.Append(nsCRT::strtok(nextToken, "/", &nextToken)); } } else { fileString.AppendLiteral("000000"); } fileString.Append(']'); fileString.Append(nsCRT::strtok(nextToken, "/", &nextToken)); } } else { // relative filespec // a -> a // a/b -> [.a]b // a/b/c -> [.a.b]c if (ntok == 1) { // no slashes, just use the name as is } else { // Get another copy since the last one was written to. fileStringCopy = fileString; fileString.Truncate(); fileString.AppendLiteral("[."); fileString.Append(nsCRT::strtok(fileStringCopy.BeginWriting(), "/", &nextToken)); if (ntok > 2) { for (int i=2; i foo:[fred.barney.rubble] // /foo/fred -> foo:[fred] // /foo -> foo:[000000] // (null) -> (null) void nsFtpState::ConvertDirspecToVMS(nsCString& dirSpec) { LOG(("(%x) ConvertDirspecToVMS from: \"%s\"\n", this, dirSpec.get())); if (!dirSpec.IsEmpty()) { if (dirSpec.Last() != '/') dirSpec.Append('/'); // we can use the filespec routine if we make it look like a file name dirSpec.Append('x'); ConvertFilespecToVMS(dirSpec); dirSpec.Truncate(dirSpec.Length()-1); } LOG(("(%x) ConvertDirspecToVMS to: \"%s\"\n", this, dirSpec.get())); } // Convert an absolute VMS style dirspec to UNIX format void nsFtpState::ConvertDirspecFromVMS(nsCString& dirSpec) { LOG(("(%x) ConvertDirspecFromVMS from: \"%s\"\n", this, dirSpec.get())); if (dirSpec.IsEmpty()) { dirSpec.Insert('.', 0); } else { dirSpec.Insert('/', 0); dirSpec.ReplaceSubstring(":[", "/"); dirSpec.ReplaceChar('.', '/'); dirSpec.ReplaceChar(']', '/'); } LOG(("(%x) ConvertDirspecFromVMS to: \"%s\"\n", this, dirSpec.get())); }