mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 02:31:59 +00:00
391 lines
11 KiB
C++
391 lines
11 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
|
*
|
|
* 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.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-2000 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Norris Boyd
|
|
* Mitch Stoltz <mstoltz@netscape.com>
|
|
*/
|
|
|
|
/*describes principals which combine one or more principals*/
|
|
#include "nsAggregatePrincipal.h"
|
|
#include "nsIURI.h"
|
|
|
|
static NS_DEFINE_IID(kIAggregatePrincipalIID, NS_IAGGREGATEPRINCIPAL_IID);
|
|
|
|
NS_IMPL_QUERY_INTERFACE4(nsAggregatePrincipal, nsIAggregatePrincipal,
|
|
nsICertificatePrincipal, nsICodebasePrincipal, nsIPrincipal)
|
|
|
|
NSBASEPRINCIPALS_ADDREF(nsAggregatePrincipal);
|
|
NSBASEPRINCIPALS_RELEASE(nsAggregatePrincipal);
|
|
|
|
//////////////////////////////////////////////////
|
|
// Methods implementing nsICertificatePrincipal //
|
|
//////////////////////////////////////////////////
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::GetCertificateID(char** aCertificateID)
|
|
{
|
|
if (!mCertificate)
|
|
{
|
|
aCertificateID = nsnull;
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
nsCOMPtr<nsICertificatePrincipal> certificate = do_QueryInterface(mCertificate);
|
|
return certificate->GetCertificateID(aCertificateID);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::GetCommonName(char** aCommonName)
|
|
{
|
|
if (!mCertificate)
|
|
{
|
|
*aCommonName = nsnull;
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
nsCOMPtr<nsICertificatePrincipal> certificate = do_QueryInterface(mCertificate);
|
|
return certificate->GetCommonName(aCommonName);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::SetCommonName(const char* aCommonName)
|
|
{
|
|
if (!mCertificate)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsICertificatePrincipal> certificate = do_QueryInterface(mCertificate);
|
|
return certificate->SetCommonName(aCommonName);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::GetArchive(nsIZipReader** aArchive)
|
|
{
|
|
if (!mCertificate)
|
|
{
|
|
*aArchive = nsnull;
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
nsCOMPtr<nsICertificatePrincipal> certificate = do_QueryInterface(mCertificate);
|
|
return certificate->GetArchive(aArchive);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::SetArchive(nsIZipReader* aArchive)
|
|
{
|
|
if (!mCertificate)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsICertificatePrincipal> certificate = do_QueryInterface(mCertificate);
|
|
return certificate->SetArchive(aArchive);
|
|
}
|
|
|
|
///////////////////////////////////////////////
|
|
// Methods implementing nsICodebasePrincipal //
|
|
///////////////////////////////////////////////
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::GetURI(nsIURI** aURI)
|
|
{
|
|
if (!mCodebase)
|
|
{
|
|
*aURI = nsnull;
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
nsCOMPtr<nsICodebasePrincipal> codebase = do_QueryInterface(mCodebase);
|
|
return codebase->GetURI(aURI);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::GetOrigin(char** aOrigin)
|
|
{
|
|
if (!mCodebase)
|
|
{
|
|
*aOrigin = nsnull;
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
nsCOMPtr<nsICodebasePrincipal> codebase = do_QueryInterface(mCodebase);
|
|
return codebase->GetOrigin(aOrigin);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::SameOrigin(nsIPrincipal* other, PRBool* result)
|
|
{
|
|
if (!mCodebase)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsICodebasePrincipal> codebase = do_QueryInterface(mCodebase);
|
|
return codebase->SameOrigin(other, result);
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////
|
|
// Methods implementing nsIAggregatePrincipal //
|
|
////////////////////////////////////////////////
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::GetCertificate(nsIPrincipal** result)
|
|
{
|
|
*result = mCertificate;
|
|
NS_IF_ADDREF(*result);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::GetCodebase(nsIPrincipal** result)
|
|
{
|
|
*result = mCodebase;
|
|
NS_IF_ADDREF(*result);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::SetCertificate(nsIPrincipal* aCertificate)
|
|
{
|
|
nsresult rv;
|
|
//-- Make sure this really is a certificate principal
|
|
if (aCertificate)
|
|
{
|
|
nsCOMPtr<nsICertificatePrincipal> tempCertificate =
|
|
do_QueryInterface(aCertificate, &rv);
|
|
if (NS_FAILED(rv))
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
//-- If aCertificate is an aggregate, get its underlying certificate
|
|
nsCOMPtr<nsIAggregatePrincipal> agg =
|
|
do_QueryInterface(aCertificate, &rv);
|
|
if (NS_SUCCEEDED(rv))
|
|
{
|
|
nsCOMPtr<nsIPrincipal> underlying;
|
|
rv = agg->GetCertificate(getter_AddRefs(underlying));
|
|
if (NS_FAILED(rv)) return NS_ERROR_FAILURE;
|
|
mCertificate = underlying.get();
|
|
}
|
|
else
|
|
mCertificate = aCertificate;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::SetCodebase(nsIPrincipal* aCodebase)
|
|
{
|
|
nsresult rv;
|
|
//-- Make sure this really is a codebase principal
|
|
if (aCodebase)
|
|
{
|
|
nsCOMPtr<nsICodebasePrincipal> tempCodebase =
|
|
do_QueryInterface(aCodebase, &rv);
|
|
if (NS_FAILED(rv))
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
//-- If aCodebase is an aggregate, get its underlying codebase
|
|
nsCOMPtr<nsIAggregatePrincipal> agg =
|
|
do_QueryInterface(aCodebase, &rv);
|
|
if (NS_SUCCEEDED(rv))
|
|
{
|
|
nsCOMPtr<nsIPrincipal> underlying;
|
|
rv = agg->GetCodebase(getter_AddRefs(underlying));
|
|
if (NS_FAILED(rv)) return NS_ERROR_FAILURE;
|
|
mCodebase = underlying.get();
|
|
}
|
|
else
|
|
mCodebase = aCodebase;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::GetPrimaryChild(nsIPrincipal** aPrimaryChild)
|
|
{
|
|
//-- If a certificate is present, then that's the PrimaryChild principal.
|
|
// Otherwise we use the codebase.
|
|
if (mCertificate)
|
|
*aPrimaryChild = mCertificate.get();
|
|
else if (mCodebase)
|
|
*aPrimaryChild = mCodebase.get();
|
|
else
|
|
{
|
|
*aPrimaryChild = nsnull;
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
NS_IF_ADDREF(*aPrimaryChild);
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::Intersect(nsIPrincipal* other)
|
|
{
|
|
NS_ASSERTION(mCodebase, "Principal without codebase");
|
|
|
|
if (mCertificate)
|
|
{
|
|
PRBool sameCert = PR_FALSE;
|
|
if (NS_FAILED(mCertificate->Equals(other, &sameCert)))
|
|
return NS_ERROR_FAILURE;
|
|
if (!sameCert)
|
|
SetCertificate(nsnull);
|
|
}
|
|
return NS_OK;
|
|
}
|
|
|
|
///////////////////////////////////////
|
|
// Methods implementing nsIPrincipal //
|
|
///////////////////////////////////////
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::ToString(char **result)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->ToString(result);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::ToUserVisibleString(char **result)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->ToUserVisibleString(result);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::Equals(nsIPrincipal * other, PRBool * result)
|
|
{
|
|
*result = PR_FALSE;
|
|
if (this == other) {
|
|
*result = PR_TRUE;
|
|
return NS_OK;
|
|
}
|
|
if (!other)
|
|
return NS_OK;
|
|
|
|
nsresult rv;
|
|
nsCOMPtr<nsIAggregatePrincipal> otherAgg =
|
|
do_QueryInterface(other, &rv);
|
|
if (NS_FAILED(rv))
|
|
return NS_OK;
|
|
//-- Two aggregates are equal if both codebase and certificate are equal
|
|
PRBool certEqual = PR_TRUE;
|
|
if (mCertificate)
|
|
{
|
|
mCertificate->Equals(other, &certEqual);
|
|
if(NS_FAILED(rv)) return rv;
|
|
}
|
|
PRBool cbEqual = PR_TRUE;
|
|
if (mCodebase)
|
|
{
|
|
rv = mCodebase->Equals(other, &cbEqual);
|
|
if(NS_FAILED(rv)) return rv;
|
|
}
|
|
if (mCertificate || mCodebase) // At least one must be present
|
|
*result = certEqual && cbEqual;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::HashValue(PRUint32 *result)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->HashValue(result);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::CanEnableCapability(const char *capability,
|
|
PRInt16 *result)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->CanEnableCapability(capability, result);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::SetCanEnableCapability(const char *capability,
|
|
PRInt16 canEnable)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->SetCanEnableCapability(capability, canEnable);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::IsCapabilityEnabled(const char *capability, void *annotation,
|
|
PRBool *result)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->IsCapabilityEnabled(capability, annotation, result);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::EnableCapability(const char *capability, void **annotation)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->EnableCapability(capability, annotation);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::RevertCapability(const char *capability, void **annotation)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->RevertCapability(capability, annotation);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::DisableCapability(const char *capability, void **annotation)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->DisableCapability(capability, annotation);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsAggregatePrincipal::ToStreamableForm(char** aName, char** aData)
|
|
{
|
|
nsCOMPtr<nsIPrincipal> PrimaryChild;
|
|
if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild))))
|
|
return NS_ERROR_FAILURE;
|
|
return PrimaryChild->ToStreamableForm(aName, aData);
|
|
}
|
|
|
|
/////////////////////////////////////////////
|
|
// Constructor, Destructor, initialization //
|
|
/////////////////////////////////////////////
|
|
|
|
nsAggregatePrincipal::nsAggregatePrincipal()
|
|
{
|
|
NS_INIT_ISUPPORTS();
|
|
}
|
|
|
|
nsAggregatePrincipal::~nsAggregatePrincipal()
|
|
{
|
|
}
|