2009-05-20 22:21:51 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-31 09:33:35 +00: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/. */
|
2009-05-20 22:21:51 +00:00
|
|
|
|
|
|
|
#ifndef __NSCLIENTAUTHREMEMBER_H__
|
|
|
|
#define __NSCLIENTAUTHREMEMBER_H__
|
|
|
|
|
2011-04-29 19:21:57 +00:00
|
|
|
#include "mozilla/ReentrantMonitor.h"
|
2009-05-20 22:21:51 +00:00
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsIX509Cert.h"
|
|
|
|
#include "nsNSSCertificate.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsWeakReference.h"
|
2012-07-19 04:37:09 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-05-20 22:21:51 +00:00
|
|
|
|
|
|
|
class nsClientAuthRemember
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
nsClientAuthRemember()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsClientAuthRemember(const nsClientAuthRemember &other)
|
|
|
|
{
|
|
|
|
this->operator=(other);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsClientAuthRemember &operator=(const nsClientAuthRemember &other)
|
|
|
|
{
|
|
|
|
mAsciiHost = other.mAsciiHost;
|
|
|
|
mFingerprint = other.mFingerprint;
|
|
|
|
mDBKey = other.mDBKey;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCString mAsciiHost;
|
|
|
|
nsCString mFingerprint;
|
|
|
|
nsCString mDBKey;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// hash entry class
|
2012-07-19 04:37:09 +00:00
|
|
|
class nsClientAuthRememberEntry MOZ_FINAL : public PLDHashEntryHdr
|
2009-05-20 22:21:51 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Hash methods
|
|
|
|
typedef const char* KeyType;
|
|
|
|
typedef const char* KeyTypePointer;
|
|
|
|
|
|
|
|
// do nothing with aHost - we require mHead to be set before we're live!
|
|
|
|
nsClientAuthRememberEntry(KeyTypePointer aHostWithCertUTF8)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsClientAuthRememberEntry(const nsClientAuthRememberEntry& toCopy)
|
|
|
|
{
|
|
|
|
mSettings = toCopy.mSettings;
|
|
|
|
}
|
|
|
|
|
|
|
|
~nsClientAuthRememberEntry()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyType GetKey() const
|
|
|
|
{
|
|
|
|
return HostWithCertPtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyTypePointer GetKeyPointer() const
|
|
|
|
{
|
|
|
|
return HostWithCertPtr();
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool KeyEquals(KeyTypePointer aKey) const
|
2009-05-20 22:21:51 +00:00
|
|
|
{
|
|
|
|
return !strcmp(HostWithCertPtr(), aKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
static KeyTypePointer KeyToPointer(KeyType aKey)
|
|
|
|
{
|
|
|
|
return aKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashNumber HashKey(KeyTypePointer aKey)
|
|
|
|
{
|
|
|
|
// PL_DHashStringKey doesn't use the table parameter, so we can safely
|
2012-07-30 14:20:58 +00:00
|
|
|
// pass nullptr
|
|
|
|
return PL_DHashStringKey(nullptr, aKey);
|
2009-05-20 22:21:51 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
enum { ALLOW_MEMMOVE = false };
|
2009-05-20 22:21:51 +00:00
|
|
|
|
|
|
|
// get methods
|
|
|
|
inline const nsCString &HostWithCert() const { return mHostWithCert; }
|
|
|
|
|
|
|
|
inline KeyTypePointer HostWithCertPtr() const
|
|
|
|
{
|
|
|
|
return mHostWithCert.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsClientAuthRemember mSettings;
|
|
|
|
nsCString mHostWithCert;
|
|
|
|
};
|
|
|
|
|
2012-07-19 04:37:09 +00:00
|
|
|
class nsClientAuthRememberService MOZ_FINAL : public nsIObserver,
|
|
|
|
public nsSupportsWeakReference
|
2009-05-20 22:21:51 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
nsClientAuthRememberService();
|
|
|
|
~nsClientAuthRememberService();
|
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
static void GetHostWithCert(const nsACString & aHostName,
|
|
|
|
const nsACString & nickname, nsACString& _retval);
|
|
|
|
|
|
|
|
nsresult RememberDecision(const nsACString & aHostName,
|
|
|
|
CERTCertificate *aServerCert, CERTCertificate *aClientCert);
|
|
|
|
nsresult HasRememberedDecision(const nsACString & aHostName,
|
|
|
|
CERTCertificate *aServerCert,
|
2011-09-29 06:19:26 +00:00
|
|
|
nsACString & aCertDBKey, bool *_retval);
|
2009-05-20 22:21:51 +00:00
|
|
|
|
|
|
|
void ClearRememberedDecisions();
|
|
|
|
|
|
|
|
protected:
|
2011-04-29 19:21:57 +00:00
|
|
|
mozilla::ReentrantMonitor monitor;
|
2009-05-20 22:21:51 +00:00
|
|
|
nsTHashtable<nsClientAuthRememberEntry> mSettingsTable;
|
|
|
|
|
|
|
|
void RemoveAllFromMemory();
|
|
|
|
nsresult AddEntryToList(const nsACString &host,
|
|
|
|
const nsACString &server_fingerprint,
|
|
|
|
const nsACString &db_key);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|