/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "nsMsgProtocol.h" #include "msgCore.h" #include "nsString.h" #include "nsMemory.h" #include "nsIMsgMailNewsUrl.h" #include "nsIMsgMailSession.h" #include "nsIStreamTransportService.h" #include "nsISocketTransportService.h" #include "nsISocketTransport.h" #include "nsITLSSocketControl.h" #include "nsITransportSecurityInfo.h" #include "nsILoadGroup.h" #include "nsILoadInfo.h" #include "nsIIOService.h" #include "nsNetUtil.h" #include "nsIFileURL.h" #include "nsIMsgWindow.h" #include "nsIWebProgressListener.h" #include "nsIPipe.h" #include "nsIPrompt.h" #include "prprf.h" #include "plbase64.h" #include "nsIStringBundle.h" #include "nsIProxyInfo.h" #include "nsThreadUtils.h" #include "nsDirectoryServiceDefs.h" #include "nsMsgUtils.h" #include "nsILineInputStream.h" #include "nsIAsyncInputStream.h" #include "nsIMsgIncomingServer.h" #include "nsIInputStreamPump.h" #include "nsICancelable.h" #include "nsMimeTypes.h" #include "mozilla/Components.h" #include "mozilla/Preferences.h" #include "mozilla/ProfilerMarkers.h" #include "mozilla/SlicedInputStream.h" #include "nsContentSecurityManager.h" #include "nsPrintfCString.h" using namespace mozilla; NS_IMPL_ISUPPORTS_INHERITED(nsMsgProtocol, nsHashPropertyBag, nsIMailChannel, nsIChannel, nsIStreamListener, nsIRequestObserver, nsIRequest) static char16_t* FormatStringWithHostNameByName(const char16_t* stringName, nsIMsgMailNewsUrl* msgUri); nsMsgProtocol::nsMsgProtocol(nsIURI* aURL) { m_flags = 0; mLoadFlags = 0; m_socketIsOpen = false; mContentLength = -1; m_isChannel = false; mContentDisposition = nsIChannel::DISPOSITION_INLINE; mSuppressListenerNotifications = false; InitFromURI(aURL); } nsresult nsMsgProtocol::InitFromURI(nsIURI* aUrl) { m_url = aUrl; // Reset channel data in case the object is reused and initialised again. mCharset.Truncate(); return NS_OK; } nsMsgProtocol::~nsMsgProtocol() {} static int32_t gSocketTimeout = 60; nsresult nsMsgProtocol::GetQoSBits(uint8_t* aQoSBits) { NS_ENSURE_ARG_POINTER(aQoSBits); const char* protocol = GetType(); if (!protocol) return NS_ERROR_NOT_IMPLEMENTED; nsAutoCString prefName("mail."); prefName.Append(protocol); prefName.AppendLiteral(".qos"); int32_t val = Preferences::GetInt(prefName.get()); *aQoSBits = (uint8_t)std::clamp(val, 0, 0xff); return NS_OK; } nsresult nsMsgProtocol::GetFileFromURL(nsIURI* aURL, nsIFile** aResult) { NS_ENSURE_ARG_POINTER(aURL); NS_ENSURE_ARG_POINTER(aResult); // extract the file path from the uri... nsAutoCString urlSpec; aURL->GetPathQueryRef(urlSpec); urlSpec.InsertLiteral("file://", 0); nsresult rv; // dougt - there should be an easier way! nsCOMPtr uri; if (NS_FAILED(rv = NS_NewURI(getter_AddRefs(uri), urlSpec.get()))) return rv; nsCOMPtr fileURL = do_QueryInterface(uri); if (!fileURL) return NS_ERROR_FAILURE; return fileURL->GetFile(aResult); // dougt } nsresult nsMsgProtocol::OpenFileSocket(nsIURI* aURL) { // mscott - file needs to be encoded directly into aURL. I should be able to // get rid of this method completely. nsresult rv = NS_OK; nsCOMPtr file; rv = GetFileFromURL(aURL, getter_AddRefs(file)); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr stream; rv = NS_NewLocalFileInputStream(getter_AddRefs(stream), file); if (NS_FAILED(rv)) return rv; // create input stream transport nsCOMPtr sts = mozilla::components::StreamTransport::Service(); rv = sts->CreateInputTransport(stream, true, getter_AddRefs(m_transport)); m_socketIsOpen = false; return rv; } nsresult nsMsgProtocol::CloseSocket() { nsresult rv = NS_OK; // release all of our socket state m_socketIsOpen = false; m_outputStream = nullptr; // we need to call Cancel so that we remove the socket transport from the // mActiveTransportList. see bug #30648 if (m_request) { rv = m_request->Cancel(NS_BINDING_ABORTED); } m_request = nullptr; if (m_transport) { m_transport->Close(NS_BINDING_ABORTED); m_transport = nullptr; } return rv; } /* * Writes the data contained in dataBuffer into the current output stream. It * also informs the transport layer that this data is now available for * transmission. Returns a positive number for success, 0 for failure (not all * the bytes were written to the stream, etc). We need to make another pass * through this file to install an error system (mscott) * * No logging is done in the base implementation, so aSuppressLogging is * ignored. */ // Whenever data arrives from the connection, core netlib notifices the protocol // by calling OnDataAvailable. We then read and process the incoming data from // the input stream. NS_IMETHODIMP nsMsgProtocol::OnDataAvailable(nsIRequest* request, nsIInputStream* inStr, uint64_t sourceOffset, uint32_t count) { AUTO_PROFILER_LABEL("nsMsgProtocol::OnDataAvailable", MAILNEWS); // right now, this really just means turn around and churn through the state // machine nsCOMPtr uri; GetURI(getter_AddRefs(uri)); return ProcessProtocolState(uri, inStr, sourceOffset, count); } NS_IMETHODIMP nsMsgProtocol::OnStartRequest(nsIRequest* request) { nsresult rv = NS_OK; nsCOMPtr uri; GetURI(getter_AddRefs(uri)); if (uri) { nsCOMPtr aMsgUrl = do_QueryInterface(uri); rv = aMsgUrl->SetUrlState(true, NS_OK); if (m_loadGroup) m_loadGroup->AddRequest(static_cast(this), nullptr /* context isupports */); } // if we are set up as a channel, we should notify our channel listener that // we are starting... so pass in ourself as the channel and not the underlying // socket or file channel the protocol happens to be using if (!mSuppressListenerNotifications && m_channelListener) { m_isChannel = true; rv = m_channelListener->OnStartRequest(this); } nsCOMPtr strans = do_QueryInterface(m_transport); if (strans) strans->SetTimeout(nsISocketTransport::TIMEOUT_READ_WRITE, gSocketTimeout); NS_ENSURE_SUCCESS(rv, rv); return rv; } void nsMsgProtocol::ShowAlertMessage(nsIMsgMailNewsUrl* aMsgUrl, nsresult aStatus) { const char16_t* errorString = nullptr; switch (aStatus) { case NS_ERROR_UNKNOWN_HOST: case NS_ERROR_UNKNOWN_PROXY_HOST: errorString = u"unknownHostError"; break; case NS_ERROR_CONNECTION_REFUSED: case NS_ERROR_PROXY_CONNECTION_REFUSED: errorString = u"connectionRefusedError"; break; case NS_ERROR_NET_TIMEOUT: errorString = u"netTimeoutError"; break; case NS_ERROR_NET_RESET: errorString = u"netResetError"; break; case NS_ERROR_NET_INTERRUPT: errorString = u"netInterruptError"; break; case NS_ERROR_OFFLINE: // Don't alert when offline as that is already displayed in the UI. return; default: nsPrintfCString msg( "Unexpected status passed to ShowAlertMessage: %" PRIx32, static_cast(aStatus)); NS_WARNING(msg.get()); return; } nsString errorMsg; errorMsg.Adopt(FormatStringWithHostNameByName(errorString, aMsgUrl)); if (errorMsg.IsEmpty()) { errorMsg.AssignLiteral(u"[StringID "); errorMsg.Append(errorString); errorMsg.AppendLiteral(u"?]"); } nsCOMPtr mailSession = mozilla::components::MailSession::Service(); // If there's a message window on the URI, then we should alert the user. // Otherwise (i.e. if the getter for `msgWindow` raised // `NS_ERROR_NULL_POINTER`), this is a background operation and we should // tell the mail session to only call the listeners but not alert. bool silent = false; nsCOMPtr msgWindow; nsresult rv = aMsgUrl->GetMsgWindow(getter_AddRefs(msgWindow)); if (rv == NS_ERROR_NULL_POINTER) { silent = true; } else { NS_ENSURE_SUCCESS_VOID(rv); } mailSession->AlertUser(errorMsg, aMsgUrl, silent); } // stop binding is a "notification" informing us that the stream associated with // aURL is going away. NS_IMETHODIMP nsMsgProtocol::OnStopRequest(nsIRequest* request, nsresult aStatus) { AUTO_PROFILER_LABEL("nsMsgProtocol::OnStopRequest", MAILNEWS); nsresult rv = NS_OK; // if we are set up as a channel, we should notify our channel listener that // we are starting... so pass in ourself as the channel and not the underlying // socket or file channel the protocol happens to be using if (!mSuppressListenerNotifications && m_channelListener) { rv = m_channelListener->OnStopRequest(this, aStatus); } nsCOMPtr uri; GetURI(getter_AddRefs(uri)); if (uri) { nsCOMPtr msgUrl = do_QueryInterface(uri); rv = msgUrl->SetUrlState(false, aStatus); // Always returns NS_OK. if (m_loadGroup) m_loadGroup->RemoveRequest(static_cast(this), nullptr, aStatus); // !m_isChannel because if we're set up as a channel, then the remove // request above will handle alerting the user, so we don't need to. // // !NS_BINDING_ABORTED because we don't want to see an alert if the user // cancelled the operation. also, we'll get here because we call Cancel() // to force removal of the nsSocketTransport. see CloseSocket() // bugs #30775 and #30648 relate to this if (!m_isChannel && NS_FAILED(aStatus) && (aStatus != NS_BINDING_ABORTED)) ShowAlertMessage(msgUrl, aStatus); } // if we have a mailnews url. // Drop notification callbacks to prevent cycles. mCallbacks = nullptr; m_channelListener = nullptr; // Call CloseSocket(), in case we got here because the server dropped the // connection while reading, and we never get a chance to get back into // the protocol state machine via OnDataAvailable. if (m_socketIsOpen) CloseSocket(); return rv; } nsresult nsMsgProtocol::LoadUrl(nsIURI* aURL, nsISupports* aConsumer) { // nsMsgProtocol implements nsIChannel, and all channels are required to // have non-null loadInfo. So if it's still unset, we've not been correctly // initialised. MOZ_ASSERT(m_loadInfo); // okay now kick us off to the next state... // our first state is a process state so drive the state machine... nsresult rv = NS_OK; nsCOMPtr aMsgUrl = do_QueryInterface(aURL, &rv); if (NS_SUCCEEDED(rv) && aMsgUrl) { bool msgIsInLocalCache; aMsgUrl->GetMsgIsInLocalCache(&msgIsInLocalCache); // Set the url as a url currently being run... rv = aMsgUrl->SetUrlState(true, NS_OK); // if the url is given a stream consumer then we should use it to forward // calls to... if (!m_channelListener && aConsumer) // if we don't have a registered listener already { m_channelListener = do_QueryInterface(aConsumer); m_isChannel = true; } if (!m_socketIsOpen) { if (m_transport) { // open buffered, asynchronous input stream nsCOMPtr stream; rv = m_transport->OpenInputStream(0, 0, 0, getter_AddRefs(stream)); if (NS_FAILED(rv)) return rv; nsCOMPtr pump; rv = NS_NewInputStreamPump(getter_AddRefs(pump), stream.forget()); if (NS_FAILED(rv)) return rv; m_request = pump; // keep a reference to the pump so we can cancel it // Put us in a state where we are always notified of incoming data. // OnDataAvailable() will be called when that happens, which will // pass that data into ProcessProtocolState(). rv = pump->AsyncRead(this); NS_ASSERTION(NS_SUCCEEDED(rv), "AsyncRead failed"); m_socketIsOpen = true; // mark the channel as open } } else if (!msgIsInLocalCache) { // The connection is already open so we should begin processing our url. rv = ProcessProtocolState(aURL, nullptr, 0, 0); } } return rv; } /////////////////////////////////////////////////////////////////////// // The rest of this file is mostly nsIChannel mumbo jumbo stuff /////////////////////////////////////////////////////////////////////// nsresult nsMsgProtocol::SetUrl(nsIURI* aURL) { m_url = aURL; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetLoadGroup(nsILoadGroup* aLoadGroup) { m_loadGroup = aLoadGroup; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetTRRMode(nsIRequest::TRRMode* aTRRMode) { return GetTRRModeImpl(aTRRMode); } NS_IMETHODIMP nsMsgProtocol::SetTRRMode(nsIRequest::TRRMode aTRRMode) { return SetTRRModeImpl(aTRRMode); } NS_IMETHODIMP nsMsgProtocol::GetOriginalURI(nsIURI** aURI) { NS_IF_ADDREF(*aURI = m_originalUrl ? m_originalUrl : m_url); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetOriginalURI(nsIURI* aURI) { m_originalUrl = aURI; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetURI(nsIURI** aURI) { NS_IF_ADDREF(*aURI = m_url); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::Open(nsIInputStream** _retval) { nsCOMPtr listener; nsresult rv = nsContentSecurityManager::doContentSecurityCheck(this, listener); NS_ENSURE_SUCCESS(rv, rv); return NS_ImplementChannelOpen(this, _retval); } NS_IMETHODIMP nsMsgProtocol::AsyncOpen(nsIStreamListener* aListener) { mLoadFlags |= nsIChannel::LOAD_REPLACE; nsCOMPtr listener = aListener; nsresult rv = nsContentSecurityManager::doContentSecurityCheck(this, listener); NS_ENSURE_SUCCESS(rv, rv); int32_t port; rv = m_url->GetPort(&port); if (NS_FAILED(rv)) return rv; nsAutoCString scheme; rv = m_url->GetScheme(scheme); if (NS_FAILED(rv)) return rv; rv = NS_CheckPortSafety(port, scheme.get()); if (NS_FAILED(rv)) return rv; // set the stream listener and then load the url m_isChannel = true; m_channelListener = listener; return LoadUrl(m_url, nullptr); } NS_IMETHODIMP nsMsgProtocol::GetLoadFlags(nsLoadFlags* aLoadFlags) { *aLoadFlags = mLoadFlags; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetLoadFlags(nsLoadFlags aLoadFlags) { mLoadFlags = aLoadFlags; return NS_OK; // don't fail when trying to set this } NS_IMETHODIMP nsMsgProtocol::GetContentType(nsACString& aContentType) { // as url dispatching matures, we'll be intelligent and actually start // opening the url before specifying the content type. This will allow // us to optimize the case where the message url actual refers to // a part in the message that has a content type that is not message/rfc822 if (mContentType.IsEmpty()) aContentType.AssignLiteral("message/rfc822"); else aContentType = mContentType; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetContentType(const nsACString& aContentType) { nsAutoCString charset; nsresult rv = NS_ParseResponseContentType(aContentType, mContentType, charset); if (NS_FAILED(rv) || mContentType.IsEmpty()) mContentType.AssignLiteral(UNKNOWN_CONTENT_TYPE); return rv; } NS_IMETHODIMP nsMsgProtocol::GetContentCharset(nsACString& aContentCharset) { aContentCharset.Assign(mCharset); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetContentCharset( const nsACString& aContentCharset) { mCharset.Assign(aContentCharset); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetContentDisposition(uint32_t* aContentDisposition) { *aContentDisposition = mContentDisposition; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetContentDisposition(uint32_t aContentDisposition) { mContentDisposition = aContentDisposition; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetContentDispositionFilename( nsAString& aContentDispositionFilename) { return NS_ERROR_NOT_AVAILABLE; } NS_IMETHODIMP nsMsgProtocol::SetContentDispositionFilename( const nsAString& aContentDispositionFilename) { return NS_ERROR_NOT_AVAILABLE; } NS_IMETHODIMP nsMsgProtocol::GetContentDispositionHeader( nsACString& aContentDispositionHeader) { return NS_ERROR_NOT_AVAILABLE; } NS_IMETHODIMP nsMsgProtocol::GetContentLength(int64_t* aContentLength) { *aContentLength = mContentLength; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetContentLength(int64_t aContentLength) { mContentLength = aContentLength; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetSecurityInfo( nsITransportSecurityInfo** secInfo) { *secInfo = nullptr; if (m_transport) { nsCOMPtr strans = do_QueryInterface(m_transport); if (strans) { nsCOMPtr tlsSocketControl; if (NS_SUCCEEDED( strans->GetTlsSocketControl(getter_AddRefs(tlsSocketControl)))) { nsCOMPtr transportSecInfo; if (NS_SUCCEEDED(tlsSocketControl->GetSecurityInfo( getter_AddRefs(transportSecInfo)))) { transportSecInfo.forget(secInfo); } } } } return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetName(nsACString& result) { if (m_url) return m_url->GetSpec(result); result.Truncate(); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetOwner(nsISupports** aPrincipal) { NS_IF_ADDREF(*aPrincipal = mOwner); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetOwner(nsISupports* aPrincipal) { mOwner = aPrincipal; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetLoadGroup(nsILoadGroup** aLoadGroup) { NS_IF_ADDREF(*aLoadGroup = m_loadGroup); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetLoadInfo(nsILoadInfo** aLoadInfo) { NS_IF_ADDREF(*aLoadInfo = m_loadInfo); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetLoadInfo(nsILoadInfo* aLoadInfo) { m_loadInfo = aLoadInfo; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetNotificationCallbacks( nsIInterfaceRequestor** aNotificationCallbacks) { NS_IF_ADDREF(*aNotificationCallbacks = mCallbacks.get()); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::SetNotificationCallbacks( nsIInterfaceRequestor* aNotificationCallbacks) { mCallbacks = aNotificationCallbacks; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetIsDocument(bool* aIsDocument) { return NS_GetIsDocumentChannel(this, aIsDocument); } //////////////////////////////////////////////////////////////////////////////// // From nsIRequest //////////////////////////////////////////////////////////////////////////////// NS_IMETHODIMP nsMsgProtocol::IsPending(bool* result) { *result = m_channelListener != nullptr; return NS_OK; } NS_IMETHODIMP nsMsgProtocol::GetStatus(nsresult* status) { if (m_request) return m_request->GetStatus(status); *status = NS_OK; return *status; } NS_IMETHODIMP nsMsgProtocol::SetCanceledReason(const nsACString& aReason) { return SetCanceledReasonImpl(aReason); } NS_IMETHODIMP nsMsgProtocol::GetCanceledReason(nsACString& aReason) { return GetCanceledReasonImpl(aReason); } NS_IMETHODIMP nsMsgProtocol::CancelWithReason(nsresult aStatus, const nsACString& aReason) { return CancelWithReasonImpl(aStatus, aReason); } NS_IMETHODIMP nsMsgProtocol::Cancel(nsresult status) { if (m_proxyRequest) m_proxyRequest->Cancel(status); if (m_request) return m_request->Cancel(status); NS_WARNING("no request to cancel"); return NS_ERROR_NOT_AVAILABLE; } NS_IMETHODIMP nsMsgProtocol::GetCanceled(bool* aCanceled) { nsresult status = NS_ERROR_FAILURE; GetStatus(&status); *aCanceled = NS_FAILED(status); return NS_OK; } NS_IMETHODIMP nsMsgProtocol::Suspend() { if (m_request) return m_request->Suspend(); NS_WARNING("no request to suspend"); return NS_ERROR_NOT_AVAILABLE; } NS_IMETHODIMP nsMsgProtocol::Resume() { if (m_request) return m_request->Resume(); NS_WARNING("no request to resume"); return NS_ERROR_NOT_AVAILABLE; } nsresult nsMsgProtocol::DoGSSAPIStep1(const nsACString& service, const char* username, nsCString& response) { nsresult rv; // if this fails, then it means that we cannot do GSSAPI SASL. m_authModule = nsIAuthModule::CreateInstance("sasl-gssapi"); m_authModule->Init(service, nsIAuthModule::REQ_DEFAULT, u""_ns, NS_ConvertUTF8toUTF16(username), u""_ns); void* outBuf; uint32_t outBufLen; rv = m_authModule->GetNextToken((void*)nullptr, 0, &outBuf, &outBufLen); if (NS_SUCCEEDED(rv) && outBuf) { char* base64Str = PL_Base64Encode((char*)outBuf, outBufLen, nullptr); if (base64Str) response.Adopt(base64Str); else rv = NS_ERROR_OUT_OF_MEMORY; free(outBuf); } return rv; } nsresult nsMsgProtocol::DoGSSAPIStep2(nsCString& commandResponse, nsCString& response) { nsresult rv; void *inBuf, *outBuf; uint32_t inBufLen, outBufLen; uint32_t len = commandResponse.Length(); // Cyrus SASL may send us zero length tokens (grrrr) if (len > 0) { // decode into the input secbuffer inBufLen = (len * 3) / 4; // sufficient size (see plbase64.h) inBuf = moz_xmalloc(inBufLen); if (!inBuf) return NS_ERROR_OUT_OF_MEMORY; // strip off any padding (see bug 230351) const char* challenge = commandResponse.get(); while (challenge[len - 1] == '=') len--; // We need to know the exact length of the decoded string to give to // the GSSAPI libraries. But NSPR's base64 routine doesn't seem capable // of telling us that. So, we figure it out for ourselves. // For every 4 characters, add 3 to the destination // If there are 3 remaining, add 2 // If there are 2 remaining, add 1 // 1 remaining is an error inBufLen = (len / 4) * 3 + ((len % 4 == 3) ? 2 : 0) + ((len % 4 == 2) ? 1 : 0); rv = (PL_Base64Decode(challenge, len, (char*)inBuf)) ? m_authModule->GetNextToken(inBuf, inBufLen, &outBuf, &outBufLen) : NS_ERROR_FAILURE; free(inBuf); } else { rv = m_authModule->GetNextToken(NULL, 0, &outBuf, &outBufLen); } if (NS_SUCCEEDED(rv)) { // And in return, we may need to send Cyrus zero length tokens back if (outBuf) { char* base64Str = PL_Base64Encode((char*)outBuf, outBufLen, nullptr); if (base64Str) response.Adopt(base64Str); else rv = NS_ERROR_OUT_OF_MEMORY; } else response.Adopt((char*)moz_xmemdup("", 1)); } return rv; } nsresult nsMsgProtocol::DoNtlmStep1(const nsACString& username, const nsAString& password, nsCString& response) { nsresult rv; m_authModule = nsIAuthModule::CreateInstance("ntlm"); m_authModule->Init(""_ns, 0, u""_ns, NS_ConvertUTF8toUTF16(username), PromiseFlatString(password)); void* outBuf; uint32_t outBufLen; rv = m_authModule->GetNextToken((void*)nullptr, 0, &outBuf, &outBufLen); if (NS_SUCCEEDED(rv) && outBuf) { char* base64Str = PL_Base64Encode((char*)outBuf, outBufLen, nullptr); if (base64Str) response.Adopt(base64Str); else rv = NS_ERROR_OUT_OF_MEMORY; free(outBuf); } return rv; } nsresult nsMsgProtocol::DoNtlmStep2(nsCString& commandResponse, nsCString& response) { nsresult rv; void *inBuf, *outBuf; uint32_t inBufLen, outBufLen; uint32_t len = commandResponse.Length(); // decode into the input secbuffer inBufLen = (len * 3) / 4; // sufficient size (see plbase64.h) inBuf = moz_xmalloc(inBufLen); if (!inBuf) return NS_ERROR_OUT_OF_MEMORY; // strip off any padding (see bug 230351) const char* challenge = commandResponse.get(); while (challenge[len - 1] == '=') len--; rv = (PL_Base64Decode(challenge, len, (char*)inBuf)) ? m_authModule->GetNextToken(inBuf, inBufLen, &outBuf, &outBufLen) : NS_ERROR_FAILURE; free(inBuf); if (NS_SUCCEEDED(rv) && outBuf) { char* base64Str = PL_Base64Encode((char*)outBuf, outBufLen, nullptr); if (base64Str) response.Adopt(base64Str); else rv = NS_ERROR_OUT_OF_MEMORY; } if (NS_FAILED(rv)) response = "*"; return rv; } char16_t* FormatStringWithHostNameByName(const char16_t* stringName, nsIMsgMailNewsUrl* msgUri) { if (!msgUri) return nullptr; nsresult rv; nsCOMPtr sBundleService = mozilla::components::StringBundle::Service(); NS_ENSURE_TRUE(sBundleService, nullptr); nsCOMPtr sBundle; rv = sBundleService->CreateBundle(MSGS_URL, getter_AddRefs(sBundle)); NS_ENSURE_SUCCESS(rv, nullptr); nsCOMPtr server; rv = msgUri->GetServer(getter_AddRefs(server)); NS_ENSURE_SUCCESS(rv, nullptr); nsCString hostName; rv = server->GetHostName(hostName); NS_ENSURE_SUCCESS(rv, nullptr); AutoTArray params; CopyASCIItoUTF16(hostName, *params.AppendElement()); nsAutoString str; rv = sBundle->FormatStringFromName(NS_ConvertUTF16toUTF8(stringName).get(), params, str); NS_ENSURE_SUCCESS(rv, nullptr); return ToNewUnicode(str); } // vim: ts=2 sw=2