mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
421 lines
18 KiB
C++
421 lines
18 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* vim:set et cin ts=4 sw=4 sts=4: */
|
|
/* ***** 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.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Netscape Communications.
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Darin Fisher <darin@netscape.com> (original author)
|
|
* Christian Biesinger <cbiesinger@web.de>
|
|
*
|
|
* 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 ***** */
|
|
|
|
#ifndef nsHttpChannel_h__
|
|
#define nsHttpChannel_h__
|
|
|
|
#include "nsHttpTransaction.h"
|
|
#include "nsHttpRequestHead.h"
|
|
#include "nsHttpAuthCache.h"
|
|
#include "nsHashPropertyBag.h"
|
|
#include "nsInputStreamPump.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "nsString.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsInt64.h"
|
|
|
|
#include "nsIHttpChannel.h"
|
|
#include "nsIHttpChannelInternal.h"
|
|
#include "nsIHttpHeaderVisitor.h"
|
|
#include "nsIHttpEventSink.h"
|
|
#include "nsIChannelEventSink.h"
|
|
#include "nsIStreamListener.h"
|
|
#include "nsIIOService.h"
|
|
#include "nsIURI.h"
|
|
#include "nsILoadGroup.h"
|
|
#include "nsIInterfaceRequestor.h"
|
|
#include "nsIInterfaceRequestorUtils.h"
|
|
#include "nsIInputStream.h"
|
|
#include "nsIProgressEventSink.h"
|
|
#include "nsICachingChannel.h"
|
|
#include "nsICacheSession.h"
|
|
#include "nsICacheEntryDescriptor.h"
|
|
#include "nsICacheListener.h"
|
|
#include "nsIApplicationCache.h"
|
|
#include "nsIApplicationCacheChannel.h"
|
|
#include "nsIEncodedChannel.h"
|
|
#include "nsITransport.h"
|
|
#include "nsIUploadChannel.h"
|
|
#include "nsIUploadChannel2.h"
|
|
#include "nsIStringEnumerator.h"
|
|
#include "nsIOutputStream.h"
|
|
#include "nsIAsyncInputStream.h"
|
|
#include "nsIPrompt.h"
|
|
#include "nsIResumableChannel.h"
|
|
#include "nsISupportsPriority.h"
|
|
#include "nsIProtocolProxyCallback.h"
|
|
#include "nsICancelable.h"
|
|
#include "nsIProxiedChannel.h"
|
|
#include "nsITraceableChannel.h"
|
|
#include "nsIAuthPromptCallback.h"
|
|
|
|
class nsHttpResponseHead;
|
|
class nsAHttpConnection;
|
|
class nsIHttpAuthenticator;
|
|
class nsProxyInfo;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// nsHttpChannel
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class nsHttpChannel : public nsHashPropertyBag
|
|
, public nsIHttpChannel
|
|
, public nsIHttpChannelInternal
|
|
, public nsIStreamListener
|
|
, public nsICachingChannel
|
|
, public nsIUploadChannel
|
|
, public nsIUploadChannel2
|
|
, public nsICacheListener
|
|
, public nsIEncodedChannel
|
|
, public nsITransportEventSink
|
|
, public nsIResumableChannel
|
|
, public nsISupportsPriority
|
|
, public nsIProtocolProxyCallback
|
|
, public nsIProxiedChannel
|
|
, public nsITraceableChannel
|
|
, public nsIApplicationCacheChannel
|
|
, public nsIAuthPromptCallback
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_NSIREQUEST
|
|
NS_DECL_NSICHANNEL
|
|
NS_DECL_NSIHTTPCHANNEL
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
NS_DECL_NSISTREAMLISTENER
|
|
NS_DECL_NSICACHINGCHANNEL
|
|
NS_DECL_NSIUPLOADCHANNEL
|
|
NS_DECL_NSIUPLOADCHANNEL2
|
|
NS_DECL_NSICACHELISTENER
|
|
NS_DECL_NSIENCODEDCHANNEL
|
|
NS_DECL_NSIHTTPCHANNELINTERNAL
|
|
NS_DECL_NSITRANSPORTEVENTSINK
|
|
NS_DECL_NSIRESUMABLECHANNEL
|
|
NS_DECL_NSISUPPORTSPRIORITY
|
|
NS_DECL_NSIPROTOCOLPROXYCALLBACK
|
|
NS_DECL_NSIPROXIEDCHANNEL
|
|
NS_DECL_NSITRACEABLECHANNEL
|
|
NS_DECL_NSIAPPLICATIONCACHECONTAINER
|
|
NS_DECL_NSIAPPLICATIONCACHECHANNEL
|
|
NS_DECL_NSIAUTHPROMPTCALLBACK
|
|
|
|
nsHttpChannel();
|
|
virtual ~nsHttpChannel();
|
|
|
|
nsresult Init(nsIURI *uri,
|
|
PRUint8 capabilities,
|
|
nsProxyInfo* proxyInfo);
|
|
|
|
public: /* internal; workaround lame compilers */
|
|
typedef void (nsHttpChannel:: *nsAsyncCallback)(void);
|
|
|
|
private:
|
|
|
|
// Helper function to simplify getting notification callbacks.
|
|
template <class T>
|
|
void GetCallback(nsCOMPtr<T> &aResult)
|
|
{
|
|
NS_QueryNotificationCallbacks(mCallbacks, mLoadGroup,
|
|
NS_GET_TEMPLATE_IID(T),
|
|
getter_AddRefs(aResult));
|
|
}
|
|
|
|
// AsyncCall may be used to call a member function asynchronously.
|
|
// retval isn't refcounted and is set only when event was successfully
|
|
// posted, the event is returned for the purpose of cancelling when needed
|
|
nsresult AsyncCall(nsAsyncCallback funcPtr,
|
|
nsRunnableMethod<nsHttpChannel> **retval = nsnull);
|
|
|
|
PRBool RequestIsConditional();
|
|
nsresult Connect(PRBool firstTime = PR_TRUE);
|
|
nsresult AsyncAbort(nsresult status);
|
|
// Send OnStartRequest/OnStopRequest to our listener, if any.
|
|
void HandleAsyncNotifyListener();
|
|
void DoNotifyListener();
|
|
nsresult SetupTransaction();
|
|
void AddCookiesToRequest();
|
|
nsresult ApplyContentConversions();
|
|
nsresult CallOnStartRequest();
|
|
nsresult ProcessResponse();
|
|
nsresult ProcessNormal();
|
|
nsresult ProcessNotModified();
|
|
nsresult ProcessRedirection(PRUint32 httpStatus);
|
|
PRBool ShouldSSLProxyResponseContinue(PRUint32 httpStatus);
|
|
nsresult ProcessFailedSSLConnect(PRUint32 httpStatus);
|
|
nsresult ProcessAuthentication(PRUint32 httpStatus);
|
|
nsresult ProcessFallback(PRBool *fallingBack);
|
|
PRBool ResponseWouldVary();
|
|
|
|
// redirection specific methods
|
|
void HandleAsyncRedirect();
|
|
void HandleAsyncNotModified();
|
|
void HandleAsyncFallback();
|
|
nsresult PromptTempRedirect();
|
|
nsresult SetupReplacementChannel(nsIURI *, nsIChannel *, PRBool preserveMethod);
|
|
|
|
// proxy specific methods
|
|
nsresult ProxyFailover();
|
|
nsresult DoReplaceWithProxy(nsIProxyInfo *);
|
|
void HandleAsyncReplaceWithProxy();
|
|
nsresult ResolveProxy();
|
|
|
|
// cache specific methods
|
|
nsresult OpenCacheEntry(PRBool offline, PRBool *delayed);
|
|
nsresult OpenOfflineCacheEntryForWriting();
|
|
nsresult GenerateCacheKey(PRUint32 postID, nsACString &key);
|
|
nsresult UpdateExpirationTime();
|
|
nsresult CheckCache();
|
|
nsresult ShouldUpdateOfflineCacheEntry(PRBool *shouldCacheForOfflineUse);
|
|
nsresult ReadFromCache();
|
|
void CloseCacheEntry(PRBool doomOnFailure);
|
|
void CloseOfflineCacheEntry();
|
|
nsresult InitCacheEntry();
|
|
nsresult InitOfflineCacheEntry();
|
|
nsresult AddCacheEntryHeaders(nsICacheEntryDescriptor *entry);
|
|
nsresult StoreAuthorizationMetaData(nsICacheEntryDescriptor *entry);
|
|
nsresult FinalizeCacheEntry();
|
|
nsresult InstallCacheListener(PRUint32 offset = 0);
|
|
nsresult InstallOfflineCacheListener();
|
|
void MaybeInvalidateCacheEntryForSubsequentGet();
|
|
nsCacheStoragePolicy DetermineStoragePolicy();
|
|
void AsyncOnExamineCachedResponse();
|
|
|
|
// Handle the bogus Content-Encoding Apache sometimes sends
|
|
void ClearBogusContentEncodingIfNeeded();
|
|
|
|
// byte range request specific methods
|
|
nsresult SetupByteRangeRequest(PRUint32 partialLen);
|
|
nsresult ProcessPartialContent();
|
|
nsresult OnDoneReadingPartialCacheEntry(PRBool *streamDone);
|
|
|
|
// auth specific methods
|
|
nsresult PrepareForAuthentication(PRBool proxyAuth);
|
|
nsresult GenCredsAndSetEntry(nsIHttpAuthenticator *, PRBool proxyAuth, const char *scheme, const char *host, PRInt32 port, const char *dir, const char *realm, const char *challenge, const nsHttpAuthIdentity &ident, nsCOMPtr<nsISupports> &session, char **result);
|
|
nsresult GetAuthenticator(const char *challenge, nsCString &scheme, nsIHttpAuthenticator **auth);
|
|
void ParseRealm(const char *challenge, nsACString &realm);
|
|
void GetIdentityFromURI(PRUint32 authFlags, nsHttpAuthIdentity&);
|
|
/**
|
|
* Following three methods return NS_ERROR_IN_PROGRESS when
|
|
* nsIAuthPrompt2.asyncPromptAuth method is called. This result indicates
|
|
* the user's decision will be gathered in a callback and is not an actual
|
|
* error.
|
|
*/
|
|
nsresult GetCredentials(const char *challenges, PRBool proxyAuth, nsAFlatCString &creds);
|
|
nsresult GetCredentialsForChallenge(const char *challenge, const char *scheme, PRBool proxyAuth, nsIHttpAuthenticator *auth, nsAFlatCString &creds);
|
|
nsresult PromptForIdentity(PRUint32 level, PRBool proxyAuth, const char *realm, const char *authType, PRUint32 authFlags, nsHttpAuthIdentity &);
|
|
|
|
PRBool ConfirmAuth(const nsString &bundleKey, PRBool doYesNoPrompt);
|
|
void CheckForSuperfluousAuth();
|
|
void SetAuthorizationHeader(nsHttpAuthCache *, nsHttpAtom header, const char *scheme, const char *host, PRInt32 port, const char *path, nsHttpAuthIdentity &ident);
|
|
void AddAuthorizationHeaders();
|
|
nsresult GetCurrentPath(nsACString &);
|
|
/**
|
|
* Return all information needed to build authorization information,
|
|
* all paramters except proxyAuth are out parameters. proxyAuth specifies
|
|
* with what authorization we work (WWW or proxy).
|
|
*/
|
|
nsresult GetAuthorizationMembers(PRBool proxyAuth, nsCSubstring& scheme, const char*& host, PRInt32& port, nsCSubstring& path, nsHttpAuthIdentity*& ident, nsISupports**& continuationState);
|
|
nsresult DoAuthRetry(nsAHttpConnection *);
|
|
PRBool MustValidateBasedOnQueryUrl();
|
|
/**
|
|
* Method called to resume suspended transaction after we got credentials
|
|
* from the user. Called from OnAuthAvailable callback or OnAuthCancelled
|
|
* when credentials for next challenge were obtained synchronously.
|
|
*/
|
|
nsresult ContinueOnAuthAvailable(const nsCSubstring& creds);
|
|
|
|
private:
|
|
nsCOMPtr<nsIURI> mOriginalURI;
|
|
nsCOMPtr<nsIURI> mURI;
|
|
nsCOMPtr<nsIURI> mDocumentURI;
|
|
nsCOMPtr<nsIStreamListener> mListener;
|
|
nsCOMPtr<nsISupports> mListenerContext;
|
|
nsCOMPtr<nsILoadGroup> mLoadGroup;
|
|
nsCOMPtr<nsISupports> mOwner;
|
|
nsCOMPtr<nsIInterfaceRequestor> mCallbacks;
|
|
nsCOMPtr<nsIProgressEventSink> mProgressSink;
|
|
nsCOMPtr<nsIInputStream> mUploadStream;
|
|
nsCOMPtr<nsIURI> mReferrer;
|
|
nsCOMPtr<nsISupports> mSecurityInfo;
|
|
nsCOMPtr<nsICancelable> mProxyRequest;
|
|
|
|
nsHttpRequestHead mRequestHead;
|
|
nsHttpResponseHead *mResponseHead;
|
|
|
|
nsRefPtr<nsInputStreamPump> mTransactionPump;
|
|
nsHttpTransaction *mTransaction; // hard ref
|
|
nsHttpConnectionInfo *mConnectionInfo; // hard ref
|
|
|
|
nsCString mSpec; // ASCII encoded URL spec
|
|
|
|
PRUint32 mLoadFlags;
|
|
PRUint32 mStatus;
|
|
PRUint64 mLogicalOffset;
|
|
PRUint8 mCaps;
|
|
PRInt16 mPriority;
|
|
|
|
nsCString mContentTypeHint;
|
|
nsCString mContentCharsetHint;
|
|
nsCString mUserSetCookieHeader;
|
|
|
|
// cache specific data
|
|
nsCOMPtr<nsICacheEntryDescriptor> mCacheEntry;
|
|
nsRefPtr<nsInputStreamPump> mCachePump;
|
|
nsHttpResponseHead *mCachedResponseHead;
|
|
nsCacheAccessMode mCacheAccess;
|
|
PRUint32 mPostID;
|
|
PRUint32 mRequestTime;
|
|
|
|
nsCOMPtr<nsICacheEntryDescriptor> mOfflineCacheEntry;
|
|
nsCacheAccessMode mOfflineCacheAccess;
|
|
nsCString mOfflineCacheClientID;
|
|
|
|
nsCOMPtr<nsIApplicationCache> mApplicationCache;
|
|
|
|
// auth specific data
|
|
nsISupports *mProxyAuthContinuationState;
|
|
nsCString mProxyAuthType;
|
|
nsISupports *mAuthContinuationState;
|
|
nsCString mAuthType;
|
|
nsHttpAuthIdentity mIdent;
|
|
nsHttpAuthIdentity mProxyIdent;
|
|
|
|
// Reference to the prompt wating in prompt queue. The channel is
|
|
// responsible to call its cancel method when user in any way cancels
|
|
// this request.
|
|
nsCOMPtr<nsICancelable> mAsyncPromptAuthCancelable;
|
|
// Saved in GetCredentials when prompt is asynchronous, the first challenge
|
|
// we obtained from the server with 401/407 response, will be processed in
|
|
// OnAuthAvailable callback.
|
|
nsCString mCurrentChallenge;
|
|
// Saved in GetCredentials when prompt is asynchronous, remaning challenges
|
|
// we have to process when user cancels the auth dialog for the current
|
|
// challenge.
|
|
nsCString mRemainingChallenges;
|
|
|
|
// Resumable channel specific data
|
|
nsCString mEntityID;
|
|
PRUint64 mStartPos;
|
|
|
|
// Function pointer that can be set to indicate that we got suspended while
|
|
// waiting on an AsyncCall. When we get resumed we should AsyncCall this
|
|
// function.
|
|
nsAsyncCallback mPendingAsyncCallOnResume;
|
|
|
|
// Proxy info to replace with
|
|
nsCOMPtr<nsIProxyInfo> mTargetProxyInfo;
|
|
|
|
// Suspend counter. This is used if someone tries to suspend/resume us
|
|
// before we have either a cache pump or a transaction pump.
|
|
PRUint32 mSuspendCount;
|
|
|
|
// redirection specific data.
|
|
PRUint8 mRedirectionLimit;
|
|
|
|
// If the channel is associated with a cache, and the URI matched
|
|
// a fallback namespace, this will hold the key for the fallback
|
|
// cache entry.
|
|
nsCString mFallbackKey;
|
|
|
|
// state flags
|
|
PRUint32 mIsPending : 1;
|
|
PRUint32 mWasOpened : 1;
|
|
PRUint32 mApplyConversion : 1;
|
|
PRUint32 mAllowPipelining : 1;
|
|
PRUint32 mCachedContentIsValid : 1;
|
|
PRUint32 mCachedContentIsPartial : 1;
|
|
PRUint32 mResponseHeadersModified : 1;
|
|
PRUint32 mCanceled : 1;
|
|
PRUint32 mTransactionReplaced : 1;
|
|
PRUint32 mUploadStreamHasHeaders : 1;
|
|
PRUint32 mAuthRetryPending : 1;
|
|
// True when we need to authenticate to proxy, i.e. when we get 407
|
|
// response. Used in OnAuthAvailable and OnAuthCancelled callbacks.
|
|
PRUint32 mProxyAuth : 1;
|
|
PRUint32 mTriedProxyAuth : 1;
|
|
PRUint32 mTriedHostAuth : 1;
|
|
PRUint32 mSuppressDefensiveAuth : 1;
|
|
PRUint32 mResuming : 1;
|
|
PRUint32 mInitedCacheEntry : 1;
|
|
PRUint32 mCacheForOfflineUse : 1;
|
|
// True if mCacheForOfflineUse was set because we were caching
|
|
// opportunistically.
|
|
PRUint32 mCachingOpportunistically : 1;
|
|
// True if we are loading a fallback cache entry from the
|
|
// application cache.
|
|
PRUint32 mFallbackChannel : 1;
|
|
PRUint32 mInheritApplicationCache : 1;
|
|
PRUint32 mChooseApplicationCache : 1;
|
|
PRUint32 mLoadedFromApplicationCache : 1;
|
|
PRUint32 mTracingEnabled : 1;
|
|
PRUint32 mForceAllowThirdPartyCookie : 1;
|
|
// True if consumer added its own If-None-Match or If-Modified-Since
|
|
// headers. In such a case we must not override them in the cache code
|
|
// and also we want to pass possible 304 code response through.
|
|
PRUint32 mCustomConditionalRequest : 1;
|
|
|
|
class nsContentEncodings : public nsIUTF8StringEnumerator
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIUTF8STRINGENUMERATOR
|
|
|
|
nsContentEncodings(nsIHttpChannel* aChannel, const char* aEncodingHeader);
|
|
virtual ~nsContentEncodings();
|
|
|
|
private:
|
|
nsresult PrepareForNext(void);
|
|
|
|
// We do not own the buffer. The channel owns it.
|
|
const char* mEncodingHeader;
|
|
const char* mCurStart; // points to start of current header
|
|
const char* mCurEnd; // points to end of current header
|
|
|
|
// Hold a ref to our channel so that it can't go away and take the
|
|
// header with it.
|
|
nsCOMPtr<nsIHttpChannel> mChannel;
|
|
|
|
PRPackedBool mReady;
|
|
};
|
|
};
|
|
|
|
#endif // nsHttpChannel_h__
|