2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsProtocolProxyService_h__
|
|
|
|
#define nsProtocolProxyService_h__
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2009-02-22 17:05:28 -08:00
|
|
|
#include "nsTArray.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIPrefBranch.h"
|
|
|
|
#include "nsIProtocolProxyService2.h"
|
|
|
|
#include "nsIProtocolProxyFilter.h"
|
|
|
|
#include "nsIProxyAutoConfig.h"
|
2008-01-29 10:38:15 -08:00
|
|
|
#include "nsISystemProxySettings.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIProxyInfo.h"
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsPACMan.h"
|
|
|
|
#include "prtime.h"
|
|
|
|
#include "prmem.h"
|
|
|
|
#include "prio.h"
|
2012-06-05 20:18:25 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
typedef nsDataHashtable<nsCStringHashKey, PRUint32> nsFailedProxyTable;
|
|
|
|
|
|
|
|
class nsProxyInfo;
|
|
|
|
struct nsProtocolInfo;
|
|
|
|
|
2012-06-05 20:18:25 -07:00
|
|
|
class nsProtocolProxyService MOZ_FINAL : public nsIProtocolProxyService2
|
|
|
|
, public nsIObserver
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPROTOCOLPROXYSERVICE2
|
|
|
|
NS_DECL_NSIPROTOCOLPROXYSERVICE
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
nsProtocolProxyService() NS_HIDDEN;
|
|
|
|
|
|
|
|
NS_HIDDEN_(nsresult) Init();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
friend class nsAsyncResolveRequest;
|
|
|
|
|
|
|
|
~nsProtocolProxyService() NS_HIDDEN;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called whenever a preference may have changed or
|
|
|
|
* to initialize all preferences.
|
|
|
|
*
|
|
|
|
* @param prefs
|
|
|
|
* This must be a pointer to the root pref branch.
|
|
|
|
* @param name
|
|
|
|
* This can be the name of a fully-qualified preference, or it can
|
|
|
|
* be null, in which case all preferences will be initialized.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) PrefsChanged(nsIPrefBranch *prefs, const char *name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called to create a nsProxyInfo instance from the given
|
|
|
|
* PAC-style proxy string. It parses up to the end of the string, or to
|
|
|
|
* the next ';' character.
|
|
|
|
*
|
|
|
|
* @param proxy
|
|
|
|
* The PAC-style proxy string to parse. This must not be null.
|
2011-05-13 10:53:27 -07:00
|
|
|
* @param aResolveFlags
|
|
|
|
* The flags passed to Resolve or AsyncResolve that are stored in
|
|
|
|
* proxyInfo.
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param result
|
|
|
|
* Upon return this points to a newly allocated nsProxyInfo or null
|
|
|
|
* if the proxy string was invalid.
|
|
|
|
*
|
|
|
|
* @return A pointer beyond the parsed proxy string (never null).
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(const char *) ExtractProxyInfo(const char *proxy,
|
2011-05-13 10:53:27 -07:00
|
|
|
PRUint32 aResolveFlags,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsProxyInfo **result);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the specified PAC file.
|
|
|
|
*
|
|
|
|
* @param pacURI
|
|
|
|
* The URI spec of the PAC file to load.
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_HIDDEN_(nsresult) ConfigureFromPAC(const nsCString &pacURI, bool forceReload);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This method builds a list of nsProxyInfo objects from the given PAC-
|
|
|
|
* style string.
|
|
|
|
*
|
|
|
|
* @param pacString
|
|
|
|
* The PAC-style proxy string to parse. This may be empty.
|
2011-05-13 10:53:27 -07:00
|
|
|
* @param aResolveFlags
|
|
|
|
* The flags passed to Resolve or AsyncResolve that are stored in
|
|
|
|
* proxyInfo.
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param result
|
|
|
|
* The resulting list of proxy info objects.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) ProcessPACString(const nsCString &pacString,
|
2011-05-13 10:53:27 -07:00
|
|
|
PRUint32 aResolveFlags,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIProxyInfo **result);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method generates a string valued identifier for the given
|
|
|
|
* nsProxyInfo object.
|
|
|
|
*
|
|
|
|
* @param pi
|
|
|
|
* The nsProxyInfo object from which to generate the key.
|
|
|
|
* @param result
|
|
|
|
* Upon return, this parameter holds the generated key.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) GetProxyKey(nsProxyInfo *pi, nsCString &result);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Seconds since start of session.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(PRUint32) SecondsSinceSessionStart();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method removes the specified proxy from the disabled list.
|
|
|
|
*
|
|
|
|
* @param pi
|
|
|
|
* The nsProxyInfo object identifying the proxy to enable.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) EnableProxy(nsProxyInfo *pi);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method adds the specified proxy to the disabled list.
|
|
|
|
*
|
|
|
|
* @param pi
|
|
|
|
* The nsProxyInfo object identifying the proxy to disable.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) DisableProxy(nsProxyInfo *pi);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method tests to see if the given proxy is disabled.
|
|
|
|
*
|
|
|
|
* @param pi
|
|
|
|
* The nsProxyInfo object identifying the proxy to test.
|
|
|
|
*
|
|
|
|
* @return True if the specified proxy is disabled.
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_HIDDEN_(bool) IsProxyDisabled(nsProxyInfo *pi);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This method queries the protocol handler for the given scheme to check
|
|
|
|
* for the protocol flags and default port.
|
|
|
|
*
|
|
|
|
* @param uri
|
|
|
|
* The URI to query.
|
|
|
|
* @param info
|
|
|
|
* Holds information about the protocol upon return. Pass address
|
|
|
|
* of structure when you call this method. This parameter must not
|
|
|
|
* be null.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(nsresult) GetProtocolInfo(nsIURI *uri, nsProtocolInfo *result);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is an internal version nsIProtocolProxyService::newProxyInfo
|
|
|
|
* that expects a string literal for the type.
|
|
|
|
*
|
|
|
|
* @param type
|
|
|
|
* The proxy type.
|
|
|
|
* @param host
|
|
|
|
* The proxy host name (UTF-8 ok).
|
|
|
|
* @param port
|
|
|
|
* The proxy port number.
|
|
|
|
* @param flags
|
|
|
|
* The proxy flags (nsIProxyInfo::flags).
|
|
|
|
* @param timeout
|
|
|
|
* The failover timeout for this proxy.
|
|
|
|
* @param next
|
|
|
|
* The next proxy to try if this one fails.
|
2011-05-13 10:53:27 -07:00
|
|
|
* @param aResolveFlags
|
|
|
|
* The flags passed to resolve (from nsIProtocolProxyService).
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param result
|
|
|
|
* The resulting nsIProxyInfo object.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(nsresult) NewProxyInfo_Internal(const char *type,
|
|
|
|
const nsACString &host,
|
|
|
|
PRInt32 port,
|
|
|
|
PRUint32 flags,
|
|
|
|
PRUint32 timeout,
|
|
|
|
nsIProxyInfo *next,
|
2011-05-13 10:53:27 -07:00
|
|
|
PRUint32 aResolveFlags,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIProxyInfo **result);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is an internal version of Resolve that does not query PAC.
|
|
|
|
* It performs all of the built-in processing, and reports back to the
|
|
|
|
* caller with either the proxy info result or a flag to instruct the
|
|
|
|
* caller to use PAC instead.
|
|
|
|
*
|
|
|
|
* @param uri
|
|
|
|
* The URI to test.
|
|
|
|
* @param info
|
|
|
|
* Information about the URI's protocol.
|
2010-06-17 11:33:42 -07:00
|
|
|
* @param flags
|
|
|
|
* The flags passed to either the resolve or the asyncResolve method.
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param usePAC
|
|
|
|
* If this flag is set upon return, then PAC should be queried to
|
|
|
|
* resolve the proxy info.
|
|
|
|
* @param result
|
|
|
|
* The resulting proxy info or null.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(nsresult) Resolve_Internal(nsIURI *uri,
|
|
|
|
const nsProtocolInfo &info,
|
2010-06-17 11:33:42 -07:00
|
|
|
PRUint32 flags,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *usePAC,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIProxyInfo **result);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method applies the registered filters to the given proxy info
|
|
|
|
* list, and returns a possibly modified list.
|
|
|
|
*
|
|
|
|
* @param uri
|
|
|
|
* The URI corresponding to this proxy info list.
|
|
|
|
* @param info
|
|
|
|
* Information about the URI's protocol.
|
|
|
|
* @param proxyInfo
|
|
|
|
* The proxy info list to be modified. This is an inout param.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) ApplyFilters(nsIURI *uri, const nsProtocolInfo &info,
|
|
|
|
nsIProxyInfo **proxyInfo);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is a simple wrapper around ApplyFilters that takes the
|
|
|
|
* proxy info list inout param as a nsCOMPtr.
|
|
|
|
*/
|
|
|
|
inline void ApplyFilters(nsIURI *uri, const nsProtocolInfo &info,
|
|
|
|
nsCOMPtr<nsIProxyInfo> &proxyInfo)
|
|
|
|
{
|
|
|
|
nsIProxyInfo *pi = nsnull;
|
|
|
|
proxyInfo.swap(pi);
|
|
|
|
ApplyFilters(uri, info, &pi);
|
|
|
|
proxyInfo.swap(pi);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method prunes out disabled and disallowed proxies from a given
|
|
|
|
* proxy info list.
|
|
|
|
*
|
|
|
|
* @param info
|
|
|
|
* Information about the URI's protocol.
|
|
|
|
* @param proxyInfo
|
|
|
|
* The proxy info list to be modified. This is an inout param.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) PruneProxyInfo(const nsProtocolInfo &info,
|
|
|
|
nsIProxyInfo **proxyInfo);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method populates mHostFiltersArray from the given string.
|
|
|
|
*
|
|
|
|
* @param hostFilters
|
|
|
|
* A "no-proxy-for" exclusion list.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) LoadHostFilters(const char *hostFilters);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method checks the given URI against mHostFiltersArray.
|
|
|
|
*
|
|
|
|
* @param uri
|
|
|
|
* The URI to test.
|
|
|
|
* @param defaultPort
|
|
|
|
* The default port for the given URI.
|
|
|
|
*
|
|
|
|
* @return True if the URI can use the specified proxy.
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_HIDDEN_(bool) CanUseProxy(nsIURI *uri, PRInt32 defaultPort);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
public:
|
|
|
|
// The Sun Forte compiler and others implement older versions of the
|
|
|
|
// C++ standard's rules on access and nested classes. These structs
|
|
|
|
// need to be public in order to deal with those compilers.
|
|
|
|
|
|
|
|
struct HostInfoIP {
|
|
|
|
PRUint16 family;
|
|
|
|
PRUint16 mask_len;
|
|
|
|
PRIPv6Addr addr; // possibly IPv4-mapped address
|
|
|
|
};
|
|
|
|
|
|
|
|
struct HostInfoName {
|
|
|
|
char *host;
|
|
|
|
PRUint32 host_len;
|
|
|
|
};
|
|
|
|
|
2009-05-06 14:26:33 -07:00
|
|
|
protected:
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// simplified array of filters defined by this struct
|
|
|
|
struct HostInfo {
|
2011-09-28 23:19:26 -07:00
|
|
|
bool is_ipaddr;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 port;
|
|
|
|
union {
|
|
|
|
HostInfoIP ip;
|
|
|
|
HostInfoName name;
|
|
|
|
};
|
|
|
|
|
|
|
|
HostInfo()
|
2011-10-17 07:59:28 -07:00
|
|
|
: is_ipaddr(false)
|
2007-03-22 10:30:00 -07:00
|
|
|
{ /* other members intentionally uninitialized */ }
|
|
|
|
~HostInfo() {
|
|
|
|
if (!is_ipaddr && name.host)
|
|
|
|
nsMemory::Free(name.host);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// This structure is allocated for each registered nsIProtocolProxyFilter.
|
|
|
|
struct FilterLink {
|
|
|
|
struct FilterLink *next;
|
|
|
|
PRUint32 position;
|
|
|
|
nsCOMPtr<nsIProtocolProxyFilter> filter;
|
|
|
|
|
|
|
|
FilterLink(PRUint32 p, nsIProtocolProxyFilter *f)
|
|
|
|
: next(nsnull), position(p), filter(f) {}
|
|
|
|
|
|
|
|
// Chain deletion to simplify cleaning up the filter links
|
|
|
|
~FilterLink() { if (next) delete next; }
|
|
|
|
};
|
|
|
|
|
2011-09-21 12:13:45 -07:00
|
|
|
// Indicates if local hosts (plain hostnames, no dots) should use the proxy
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mFilterLocalHosts;
|
2011-09-21 12:13:45 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Holds an array of HostInfo objects
|
2009-02-22 17:05:28 -08:00
|
|
|
nsTArray<nsAutoPtr<HostInfo> > mHostFiltersArray;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Points to the start of a sorted by position, singly linked list
|
|
|
|
// of FilterLink objects.
|
|
|
|
FilterLink *mFilters;
|
|
|
|
|
2010-06-17 11:33:42 -07:00
|
|
|
PRUint32 mProxyConfig;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCString mHTTPProxyHost;
|
|
|
|
PRInt32 mHTTPProxyPort;
|
|
|
|
|
|
|
|
nsCString mFTPProxyHost;
|
|
|
|
PRInt32 mFTPProxyPort;
|
|
|
|
|
|
|
|
nsCString mHTTPSProxyHost;
|
|
|
|
PRInt32 mHTTPSProxyPort;
|
|
|
|
|
|
|
|
nsCString mSOCKSProxyHost;
|
|
|
|
PRInt32 mSOCKSProxyPort;
|
|
|
|
PRInt32 mSOCKSProxyVersion;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mSOCKSProxyRemoteDNS;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsRefPtr<nsPACMan> mPACMan; // non-null if we are using PAC
|
2008-01-29 10:38:15 -08:00
|
|
|
nsCOMPtr<nsISystemProxySettings> mSystemProxySettings;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRTime mSessionStart;
|
|
|
|
nsFailedProxyTable mFailedProxies;
|
|
|
|
PRInt32 mFailedProxyTimeout;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !nsProtocolProxyService_h__
|