2004-09-01 19:55:58 +00:00
|
|
|
/* vim:set ts=4 sw=4 sts=4 et cin: */
|
2003-09-11 20:32:33 +00:00
|
|
|
/* ***** 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 IBM Corporation.
|
|
|
|
* Portions created by IBM Corporation are Copyright (C) 2003
|
|
|
|
* IBM Corporation. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* IBM Corp.
|
|
|
|
*
|
|
|
|
* 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 "nsDNSService2.h"
|
2005-04-06 01:33:28 +00:00
|
|
|
#include "nsIDNSRecord.h"
|
|
|
|
#include "nsIDNSListener.h"
|
|
|
|
#include "nsICancelable.h"
|
2003-09-11 20:32:33 +00:00
|
|
|
#include "nsIProxyObjectManager.h"
|
|
|
|
#include "nsIPrefService.h"
|
|
|
|
#include "nsIPrefBranch.h"
|
2005-02-25 20:46:35 +00:00
|
|
|
#include "nsIPrefBranch2.h"
|
2003-09-11 20:32:33 +00:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsAutoLock.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsNetCID.h"
|
|
|
|
#include "nsNetError.h"
|
|
|
|
#include "prsystem.h"
|
|
|
|
#include "prnetdb.h"
|
|
|
|
#include "prmon.h"
|
|
|
|
#include "prio.h"
|
2004-03-09 20:31:54 +00:00
|
|
|
#include "plstr.h"
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
static const char kPrefDnsCacheEntries[] = "network.dnsCacheEntries";
|
|
|
|
static const char kPrefDnsCacheExpiration[] = "network.dnsCacheExpiration";
|
|
|
|
static const char kPrefEnableIDN[] = "network.enableIDN";
|
2004-03-09 20:31:54 +00:00
|
|
|
static const char kPrefIPv4OnlyDomains[] = "network.dns.ipv4OnlyDomains";
|
|
|
|
static const char kPrefDisableIPv6[] = "network.dns.disableIPv6";
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class nsDNSRecord : public nsIDNSRecord
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDNSRECORD
|
|
|
|
|
2003-10-07 05:11:41 +00:00
|
|
|
nsDNSRecord(nsHostRecord *hostRecord)
|
|
|
|
: mHostRecord(hostRecord)
|
2003-09-11 20:32:33 +00:00
|
|
|
, mIter(nsnull)
|
2007-12-11 21:45:42 +00:00
|
|
|
, mIterGenCnt(-1)
|
2003-09-11 20:32:33 +00:00
|
|
|
, mDone(PR_FALSE) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~nsDNSRecord() {}
|
|
|
|
|
2003-10-07 05:11:41 +00:00
|
|
|
nsRefPtr<nsHostRecord> mHostRecord;
|
|
|
|
void *mIter;
|
2007-12-11 21:45:42 +00:00
|
|
|
int mIterGenCnt; // the generation count of
|
|
|
|
// mHostRecord->addr_info when we
|
|
|
|
// start iterating
|
2003-10-07 05:11:41 +00:00
|
|
|
PRBool mDone;
|
2003-09-11 20:32:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(nsDNSRecord, nsIDNSRecord)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSRecord::GetCanonicalName(nsACString &result)
|
|
|
|
{
|
2004-09-01 19:55:58 +00:00
|
|
|
// this method should only be called if we have a CNAME
|
|
|
|
NS_ENSURE_TRUE(mHostRecord->flags & nsHostResolver::RES_CANON_NAME,
|
|
|
|
NS_ERROR_NOT_AVAILABLE);
|
|
|
|
|
2003-10-07 05:11:41 +00:00
|
|
|
// if the record is for an IP address literal, then the canonical
|
|
|
|
// host name is the IP address literal.
|
|
|
|
const char *cname;
|
2007-12-11 21:45:42 +00:00
|
|
|
PR_Lock(mHostRecord->addr_info_lock);
|
2004-04-17 00:57:26 +00:00
|
|
|
if (mHostRecord->addr_info)
|
|
|
|
cname = PR_GetCanonNameFromAddrInfo(mHostRecord->addr_info);
|
2003-10-07 05:11:41 +00:00
|
|
|
else
|
|
|
|
cname = mHostRecord->host;
|
|
|
|
result.Assign(cname);
|
2007-12-11 21:45:42 +00:00
|
|
|
PR_Unlock(mHostRecord->addr_info_lock);
|
2003-09-11 20:32:33 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSRecord::GetNextAddr(PRUint16 port, PRNetAddr *addr)
|
|
|
|
{
|
2003-10-07 05:11:41 +00:00
|
|
|
// not a programming error to poke the DNS record when it has no more
|
|
|
|
// entries. just fail without any debug warnings. this enables consumers
|
2003-09-11 20:32:33 +00:00
|
|
|
// to enumerate the DNS record without calling HasMore.
|
|
|
|
if (mDone)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
2007-12-11 21:45:42 +00:00
|
|
|
PR_Lock(mHostRecord->addr_info_lock);
|
2004-04-17 00:57:26 +00:00
|
|
|
if (mHostRecord->addr_info) {
|
2003-10-07 05:11:41 +00:00
|
|
|
if (!mIter)
|
2007-12-11 21:45:42 +00:00
|
|
|
mIterGenCnt = mHostRecord->addr_info_gencnt;
|
|
|
|
else if (mIterGenCnt != mHostRecord->addr_info_gencnt) {
|
|
|
|
// mHostRecord->addr_info has changed, so mIter is invalid.
|
|
|
|
// Restart the iteration. Alternatively, we could just fail.
|
|
|
|
mIter = nsnull;
|
|
|
|
mIterGenCnt = mHostRecord->addr_info_gencnt;
|
|
|
|
}
|
|
|
|
mIter = PR_EnumerateAddrInfo(mIter, mHostRecord->addr_info, port, addr);
|
|
|
|
PR_Unlock(mHostRecord->addr_info_lock);
|
|
|
|
if (!mIter) {
|
|
|
|
mDone = PR_TRUE;
|
2003-10-07 05:11:41 +00:00
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
2007-12-11 21:45:42 +00:00
|
|
|
}
|
2003-10-07 05:11:41 +00:00
|
|
|
}
|
|
|
|
else {
|
2007-12-11 21:45:42 +00:00
|
|
|
PR_Unlock(mHostRecord->addr_info_lock);
|
|
|
|
NS_ASSERTION(mHostRecord->addr, "no addr");
|
2003-10-07 05:11:41 +00:00
|
|
|
memcpy(addr, mHostRecord->addr, sizeof(PRNetAddr));
|
|
|
|
// set given port
|
|
|
|
port = PR_htons(port);
|
|
|
|
if (addr->raw.family == PR_AF_INET)
|
|
|
|
addr->inet.port = port;
|
|
|
|
else
|
|
|
|
addr->ipv6.port = port;
|
2007-12-11 21:45:42 +00:00
|
|
|
mDone = PR_TRUE; // no iterations
|
2003-10-07 05:11:41 +00:00
|
|
|
}
|
|
|
|
|
2003-09-11 20:32:33 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSRecord::GetNextAddrAsString(nsACString &result)
|
|
|
|
{
|
|
|
|
PRNetAddr addr;
|
|
|
|
nsresult rv = GetNextAddr(0, &addr);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
char buf[64];
|
|
|
|
if (PR_NetAddrToString(&addr, buf, sizeof(buf)) == PR_SUCCESS) {
|
|
|
|
result.Assign(buf);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
NS_ERROR("PR_NetAddrToString failed unexpectedly");
|
|
|
|
return NS_ERROR_FAILURE; // conversion failed for some reason
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSRecord::HasMore(PRBool *result)
|
|
|
|
{
|
2003-10-07 05:11:41 +00:00
|
|
|
if (mDone)
|
|
|
|
*result = PR_FALSE;
|
|
|
|
else {
|
|
|
|
// unfortunately, NSPR does not provide a way for us to determine if
|
|
|
|
// there is another address other than to simply get the next address.
|
|
|
|
void *iterCopy = mIter;
|
|
|
|
PRNetAddr addr;
|
|
|
|
*result = NS_SUCCEEDED(GetNextAddr(0, &addr));
|
|
|
|
mIter = iterCopy; // backup iterator
|
|
|
|
mDone = PR_FALSE;
|
|
|
|
}
|
2003-09-11 20:32:33 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSRecord::Rewind()
|
|
|
|
{
|
|
|
|
mIter = nsnull;
|
2007-12-11 21:45:42 +00:00
|
|
|
mIterGenCnt = -1;
|
2003-09-11 20:32:33 +00:00
|
|
|
mDone = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2003-10-07 05:11:41 +00:00
|
|
|
class nsDNSAsyncRequest : public nsResolveHostCallback
|
2005-04-06 01:33:28 +00:00
|
|
|
, public nsICancelable
|
2003-09-11 20:32:33 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
2005-04-06 01:33:28 +00:00
|
|
|
NS_DECL_NSICANCELABLE
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
nsDNSAsyncRequest(nsHostResolver *res,
|
|
|
|
const nsACString &host,
|
2004-09-01 19:55:58 +00:00
|
|
|
nsIDNSListener *listener,
|
|
|
|
PRUint16 flags,
|
|
|
|
PRUint16 af)
|
2003-09-11 20:32:33 +00:00
|
|
|
: mResolver(res)
|
|
|
|
, mHost(host)
|
2004-09-01 19:55:58 +00:00
|
|
|
, mListener(listener)
|
|
|
|
, mFlags(flags)
|
|
|
|
, mAF(af) {}
|
|
|
|
~nsDNSAsyncRequest() {}
|
2003-09-11 20:32:33 +00:00
|
|
|
|
2003-10-07 05:11:41 +00:00
|
|
|
void OnLookupComplete(nsHostResolver *, nsHostRecord *, nsresult);
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
nsRefPtr<nsHostResolver> mResolver;
|
|
|
|
nsCString mHost; // hostname we're resolving
|
|
|
|
nsCOMPtr<nsIDNSListener> mListener;
|
2004-09-01 19:55:58 +00:00
|
|
|
PRUint16 mFlags;
|
|
|
|
PRUint16 mAF;
|
2003-09-11 20:32:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDNSAsyncRequest::OnLookupComplete(nsHostResolver *resolver,
|
2003-10-07 05:11:41 +00:00
|
|
|
nsHostRecord *hostRecord,
|
|
|
|
nsresult status)
|
2003-09-11 20:32:33 +00:00
|
|
|
{
|
2003-10-07 05:11:41 +00:00
|
|
|
// need to have an owning ref when we issue the callback to enable
|
|
|
|
// the caller to be able to addref/release multiple times without
|
|
|
|
// destroying the record prematurely.
|
|
|
|
nsCOMPtr<nsIDNSRecord> rec;
|
|
|
|
if (NS_SUCCEEDED(status)) {
|
|
|
|
NS_ASSERTION(hostRecord, "no host record");
|
|
|
|
rec = new nsDNSRecord(hostRecord);
|
2003-09-11 20:32:33 +00:00
|
|
|
if (!rec)
|
|
|
|
status = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
mListener->OnLookupComplete(this, rec, status);
|
|
|
|
mListener = nsnull;
|
|
|
|
|
|
|
|
// release the reference to ourselves that was added before we were
|
|
|
|
// handed off to the host resolver.
|
|
|
|
NS_RELEASE_THIS();
|
|
|
|
}
|
|
|
|
|
2005-04-06 01:33:28 +00:00
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(nsDNSAsyncRequest, nsICancelable)
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-04-06 01:33:28 +00:00
|
|
|
nsDNSAsyncRequest::Cancel(nsresult reason)
|
2003-09-11 20:32:33 +00:00
|
|
|
{
|
2005-04-06 01:33:28 +00:00
|
|
|
NS_ENSURE_ARG(NS_FAILED(reason));
|
|
|
|
mResolver->DetachCallback(mHost.get(), mFlags, mAF, this, reason);
|
2003-09-11 20:32:33 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2003-10-07 05:11:41 +00:00
|
|
|
class nsDNSSyncRequest : public nsResolveHostCallback
|
2003-09-11 20:32:33 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDNSSyncRequest(PRMonitor *mon)
|
|
|
|
: mDone(PR_FALSE)
|
|
|
|
, mStatus(NS_OK)
|
|
|
|
, mMonitor(mon) {}
|
|
|
|
virtual ~nsDNSSyncRequest() {}
|
|
|
|
|
2003-10-07 05:11:41 +00:00
|
|
|
void OnLookupComplete(nsHostResolver *, nsHostRecord *, nsresult);
|
2003-09-11 20:32:33 +00:00
|
|
|
|
2003-10-07 05:11:41 +00:00
|
|
|
PRBool mDone;
|
|
|
|
nsresult mStatus;
|
|
|
|
nsRefPtr<nsHostRecord> mHostRecord;
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
private:
|
2003-10-07 05:11:41 +00:00
|
|
|
PRMonitor *mMonitor;
|
2003-09-11 20:32:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDNSSyncRequest::OnLookupComplete(nsHostResolver *resolver,
|
2003-10-07 05:11:41 +00:00
|
|
|
nsHostRecord *hostRecord,
|
|
|
|
nsresult status)
|
2003-09-11 20:32:33 +00:00
|
|
|
{
|
|
|
|
// store results, and wake up nsDNSService::Resolve to process results.
|
|
|
|
PR_EnterMonitor(mMonitor);
|
|
|
|
mDone = PR_TRUE;
|
|
|
|
mStatus = status;
|
2003-10-07 05:11:41 +00:00
|
|
|
mHostRecord = hostRecord;
|
2003-09-11 20:32:33 +00:00
|
|
|
PR_Notify(mMonitor);
|
|
|
|
PR_ExitMonitor(mMonitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
nsDNSService::nsDNSService()
|
|
|
|
: mLock(nsnull)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDNSService::~nsDNSService()
|
|
|
|
{
|
|
|
|
if (mLock)
|
|
|
|
PR_DestroyLock(mLock);
|
|
|
|
}
|
|
|
|
|
2005-04-06 01:33:28 +00:00
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS3(nsDNSService, nsIDNSService, nsPIDNSService,
|
|
|
|
nsIObserver)
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSService::Init()
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(!mResolver, NS_ERROR_ALREADY_INITIALIZED);
|
|
|
|
|
|
|
|
PRBool firstTime = (mLock == nsnull);
|
|
|
|
|
|
|
|
// prefs
|
|
|
|
PRUint32 maxCacheEntries = 20;
|
2003-11-03 05:55:07 +00:00
|
|
|
PRUint32 maxCacheLifetime = 1; // minutes
|
2003-09-11 20:32:33 +00:00
|
|
|
PRBool enableIDN = PR_TRUE;
|
2004-03-09 20:31:54 +00:00
|
|
|
PRBool disableIPv6 = PR_FALSE;
|
|
|
|
nsAdoptingCString ipv4OnlyDomains;
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
// read prefs
|
2005-02-25 20:46:35 +00:00
|
|
|
nsCOMPtr<nsIPrefBranch2> prefs = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
2003-09-11 20:32:33 +00:00
|
|
|
if (prefs) {
|
|
|
|
PRInt32 val;
|
|
|
|
if (NS_SUCCEEDED(prefs->GetIntPref(kPrefDnsCacheEntries, &val)))
|
2004-03-09 20:31:54 +00:00
|
|
|
maxCacheEntries = (PRUint32) val;
|
2003-09-11 20:32:33 +00:00
|
|
|
if (NS_SUCCEEDED(prefs->GetIntPref(kPrefDnsCacheExpiration, &val)))
|
2004-03-09 20:31:54 +00:00
|
|
|
maxCacheLifetime = val / 60; // convert from seconds to minutes
|
2003-09-11 20:32:33 +00:00
|
|
|
|
2004-03-09 20:31:54 +00:00
|
|
|
// ASSUMPTION: pref branch does not modify out params on failure
|
|
|
|
prefs->GetBoolPref(kPrefEnableIDN, &enableIDN);
|
|
|
|
prefs->GetBoolPref(kPrefDisableIPv6, &disableIPv6);
|
|
|
|
prefs->GetCharPref(kPrefIPv4OnlyDomains, getter_Copies(ipv4OnlyDomains));
|
|
|
|
}
|
2003-09-11 20:32:33 +00:00
|
|
|
|
|
|
|
if (firstTime) {
|
|
|
|
mLock = PR_NewLock();
|
|
|
|
if (!mLock)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2004-03-09 20:31:54 +00:00
|
|
|
|
2003-09-11 20:32:33 +00:00
|
|
|
// register as prefs observer
|
2006-05-10 17:30:15 +00:00
|
|
|
if (prefs) {
|
|
|
|
prefs->AddObserver(kPrefDnsCacheEntries, this, PR_FALSE);
|
|
|
|
prefs->AddObserver(kPrefDnsCacheExpiration, this, PR_FALSE);
|
|
|
|
prefs->AddObserver(kPrefEnableIDN, this, PR_FALSE);
|
|
|
|
prefs->AddObserver(kPrefIPv4OnlyDomains, this, PR_FALSE);
|
|
|
|
prefs->AddObserver(kPrefDisableIPv6, this, PR_FALSE);
|
|
|
|
}
|
2003-09-11 20:32:33 +00:00
|
|
|
}
|
|
|
|
|
2004-03-09 20:31:54 +00:00
|
|
|
// we have to null out mIDN since we might be getting re-initialized
|
|
|
|
// as a result of a pref change.
|
|
|
|
nsCOMPtr<nsIIDNService> idn;
|
|
|
|
if (enableIDN)
|
|
|
|
idn = do_GetService(NS_IDNSERVICE_CONTRACTID);
|
|
|
|
|
|
|
|
nsRefPtr<nsHostResolver> res;
|
|
|
|
nsresult rv = nsHostResolver::Create(maxCacheEntries,
|
|
|
|
maxCacheLifetime,
|
|
|
|
getter_AddRefs(res));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
// now, set all of our member variables while holding the lock
|
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
mResolver = res;
|
|
|
|
mIDN = idn;
|
|
|
|
mIPv4OnlyDomains = ipv4OnlyDomains; // exchanges buffer ownership
|
|
|
|
mDisableIPv6 = disableIPv6;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
2003-09-11 20:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSService::Shutdown()
|
|
|
|
{
|
|
|
|
nsRefPtr<nsHostResolver> res;
|
|
|
|
{
|
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
res = mResolver;
|
|
|
|
mResolver = nsnull;
|
|
|
|
}
|
|
|
|
if (res)
|
|
|
|
res->Shutdown();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2006-05-10 17:30:15 +00:00
|
|
|
nsDNSService::AsyncResolve(const nsACString &hostname,
|
|
|
|
PRUint32 flags,
|
|
|
|
nsIDNSListener *listener,
|
|
|
|
nsIEventTarget *target,
|
|
|
|
nsICancelable **result)
|
2003-09-11 20:32:33 +00:00
|
|
|
{
|
|
|
|
// grab reference to global host resolver and IDN service. beware
|
|
|
|
// simultaneous shutdown!!
|
|
|
|
nsRefPtr<nsHostResolver> res;
|
|
|
|
nsCOMPtr<nsIIDNService> idn;
|
|
|
|
{
|
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
res = mResolver;
|
|
|
|
idn = mIDN;
|
|
|
|
}
|
|
|
|
NS_ENSURE_TRUE(res, NS_ERROR_OFFLINE);
|
|
|
|
|
|
|
|
const nsACString *hostPtr = &hostname;
|
|
|
|
|
|
|
|
nsresult rv;
|
2003-10-07 05:11:41 +00:00
|
|
|
nsCAutoString hostACE;
|
2003-09-11 20:32:33 +00:00
|
|
|
if (idn && !IsASCII(hostname)) {
|
2003-10-07 05:11:41 +00:00
|
|
|
if (NS_SUCCEEDED(idn->ConvertUTF8toACE(hostname, hostACE)))
|
|
|
|
hostPtr = &hostACE;
|
2003-09-11 20:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDNSListener> listenerProxy;
|
2006-05-10 17:30:15 +00:00
|
|
|
if (target) {
|
|
|
|
rv = NS_GetProxyForObject(target,
|
2003-09-11 20:32:33 +00:00
|
|
|
NS_GET_IID(nsIDNSListener),
|
|
|
|
listener,
|
2006-05-10 17:30:15 +00:00
|
|
|
NS_PROXY_ASYNC | NS_PROXY_ALWAYS,
|
2003-09-11 20:32:33 +00:00
|
|
|
getter_AddRefs(listenerProxy));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
listener = listenerProxy;
|
|
|
|
}
|
|
|
|
|
2004-09-01 19:55:58 +00:00
|
|
|
PRUint16 af = GetAFForLookup(*hostPtr);
|
|
|
|
|
|
|
|
nsDNSAsyncRequest *req =
|
|
|
|
new nsDNSAsyncRequest(res, *hostPtr, listener, flags, af);
|
2003-09-11 20:32:33 +00:00
|
|
|
if (!req)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(*result = req);
|
|
|
|
|
|
|
|
// addref for resolver; will be released when OnLookupComplete is called.
|
|
|
|
NS_ADDREF(req);
|
2004-09-01 19:55:58 +00:00
|
|
|
rv = res->ResolveHost(req->mHost.get(), flags, af, req);
|
2003-09-11 20:32:33 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_RELEASE(req);
|
|
|
|
NS_RELEASE(*result);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSService::Resolve(const nsACString &hostname,
|
2004-09-01 19:55:58 +00:00
|
|
|
PRUint32 flags,
|
2003-09-11 20:32:33 +00:00
|
|
|
nsIDNSRecord **result)
|
|
|
|
{
|
|
|
|
// grab reference to global host resolver and IDN service. beware
|
|
|
|
// simultaneous shutdown!!
|
|
|
|
nsRefPtr<nsHostResolver> res;
|
|
|
|
nsCOMPtr<nsIIDNService> idn;
|
|
|
|
{
|
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
res = mResolver;
|
|
|
|
idn = mIDN;
|
|
|
|
}
|
|
|
|
NS_ENSURE_TRUE(res, NS_ERROR_OFFLINE);
|
|
|
|
|
|
|
|
const nsACString *hostPtr = &hostname;
|
|
|
|
|
|
|
|
nsresult rv;
|
2003-10-07 05:11:41 +00:00
|
|
|
nsCAutoString hostACE;
|
2003-09-11 20:32:33 +00:00
|
|
|
if (idn && !IsASCII(hostname)) {
|
2003-10-07 05:11:41 +00:00
|
|
|
if (NS_SUCCEEDED(idn->ConvertUTF8toACE(hostname, hostACE)))
|
|
|
|
hostPtr = &hostACE;
|
2003-09-11 20:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// sync resolve: since the host resolver only works asynchronously, we need
|
|
|
|
// to use a mutex and a condvar to wait for the result. however, since the
|
|
|
|
// result may be in the resolvers cache, we might get called back recursively
|
2005-11-25 21:57:13 +00:00
|
|
|
// on the same thread. so, our mutex needs to be re-entrant. in other words,
|
2003-09-11 20:32:33 +00:00
|
|
|
// we need to use a monitor! ;-)
|
|
|
|
//
|
|
|
|
|
|
|
|
PRMonitor *mon = PR_NewMonitor();
|
|
|
|
if (!mon)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
PR_EnterMonitor(mon);
|
|
|
|
nsDNSSyncRequest syncReq(mon);
|
|
|
|
|
2004-03-09 20:31:54 +00:00
|
|
|
PRUint16 af = GetAFForLookup(*hostPtr);
|
|
|
|
|
2004-09-01 19:55:58 +00:00
|
|
|
rv = res->ResolveHost(PromiseFlatCString(*hostPtr).get(), flags, af, &syncReq);
|
2003-09-11 20:32:33 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
// wait for result
|
|
|
|
while (!syncReq.mDone)
|
|
|
|
PR_Wait(mon, PR_INTERVAL_NO_TIMEOUT);
|
|
|
|
|
|
|
|
if (NS_FAILED(syncReq.mStatus))
|
|
|
|
rv = syncReq.mStatus;
|
|
|
|
else {
|
2003-10-07 05:11:41 +00:00
|
|
|
NS_ASSERTION(syncReq.mHostRecord, "no host record");
|
|
|
|
nsDNSRecord *rec = new nsDNSRecord(syncReq.mHostRecord);
|
2003-09-11 20:32:33 +00:00
|
|
|
if (!rec)
|
|
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
else
|
|
|
|
NS_ADDREF(*result = rec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_ExitMonitor(mon);
|
|
|
|
PR_DestroyMonitor(mon);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSService::GetMyHostName(nsACString &result)
|
|
|
|
{
|
|
|
|
char name[100];
|
|
|
|
if (PR_GetSystemInfo(PR_SI_HOSTNAME, name, sizeof(name)) == PR_SUCCESS) {
|
|
|
|
result = name;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDNSService::Observe(nsISupports *subject, const char *topic, const PRUnichar *data)
|
|
|
|
{
|
|
|
|
// we are only getting called if a preference has changed.
|
|
|
|
NS_ASSERTION(strcmp(topic, NS_PREFBRANCH_PREFCHANGE_TOPIC_ID) == 0,
|
|
|
|
"unexpected observe call");
|
|
|
|
|
|
|
|
//
|
|
|
|
// Shutdown and this function are both only called on the UI thread, so we don't
|
|
|
|
// have to worry about mResolver being cleared out from under us.
|
|
|
|
//
|
|
|
|
// NOTE Shutting down and reinitializing the service like this is obviously
|
|
|
|
// suboptimal if Observe gets called several times in a row, but we don't
|
|
|
|
// expect that to be the case.
|
|
|
|
//
|
|
|
|
|
|
|
|
if (mResolver) {
|
|
|
|
Shutdown();
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2004-03-09 20:31:54 +00:00
|
|
|
|
|
|
|
PRUint16
|
|
|
|
nsDNSService::GetAFForLookup(const nsACString &host)
|
|
|
|
{
|
|
|
|
if (mDisableIPv6)
|
|
|
|
return PR_AF_INET;
|
|
|
|
|
|
|
|
nsAutoLock lock(mLock);
|
|
|
|
|
|
|
|
PRUint16 af = PR_AF_UNSPEC;
|
|
|
|
|
|
|
|
if (!mIPv4OnlyDomains.IsEmpty()) {
|
|
|
|
const char *domain, *domainEnd, *end;
|
|
|
|
PRUint32 hostLen, domainLen;
|
|
|
|
|
|
|
|
// see if host is in one of the IPv4-only domains
|
|
|
|
domain = mIPv4OnlyDomains.BeginReading();
|
|
|
|
domainEnd = mIPv4OnlyDomains.EndReading();
|
|
|
|
|
|
|
|
nsACString::const_iterator hostStart;
|
|
|
|
host.BeginReading(hostStart);
|
|
|
|
hostLen = host.Length();
|
|
|
|
|
|
|
|
do {
|
|
|
|
// skip any whitespace
|
|
|
|
while (*domain == ' ' || *domain == '\t')
|
|
|
|
++domain;
|
|
|
|
|
|
|
|
// find end of this domain in the string
|
|
|
|
end = strchr(domain, ',');
|
|
|
|
if (!end)
|
|
|
|
end = domainEnd;
|
|
|
|
|
|
|
|
// to see if the hostname is in the domain, check if the domain
|
|
|
|
// matches the end of the hostname.
|
|
|
|
domainLen = end - domain;
|
|
|
|
if (domainLen && hostLen >= domainLen) {
|
|
|
|
const char *hostTail = hostStart.get() + hostLen - domainLen;
|
|
|
|
if (PL_strncasecmp(domain, hostTail, domainLen) == 0) {
|
|
|
|
// now, make sure either that the hostname is a direct match or
|
|
|
|
// that the hostname begins with a dot.
|
|
|
|
if (hostLen == domainLen ||
|
|
|
|
*hostTail == '.' || *(hostTail - 1) == '.') {
|
|
|
|
af = PR_AF_INET;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
domain = end + 1;
|
|
|
|
} while (*end);
|
|
|
|
}
|
|
|
|
|
|
|
|
return af;
|
|
|
|
}
|