2001-09-25 05:03:58 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-07-16 03:23:16 +04:00
|
|
|
*
|
2001-09-25 05:03:58 +04:00
|
|
|
* 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/
|
1999-07-16 03:23:16 +04:00
|
|
|
*
|
2001-09-25 05:03:58 +04:00
|
|
|
* 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.
|
1999-07-16 03:23:16 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2003-10-22 02:11:49 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-25 05:03:58 +04:00
|
|
|
* Netscape Communications Corporation.
|
2003-10-22 02:11:49 +04:00
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1999-2003
|
2001-09-25 05:03:58 +04:00
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:43:54 +03:00
|
|
|
*
|
2001-09-25 05:03:58 +04:00
|
|
|
* Contributor(s):
|
2003-10-22 02:11:49 +04:00
|
|
|
* Mitchell Stoltz <mstoltz@netscape.com>
|
|
|
|
* Christopher A. Aillon <christopher@aillon.com>
|
2001-09-25 05:03:58 +04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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 NPL, 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 NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-09-01 04:54:35 +04:00
|
|
|
|
|
|
|
/* Defines the abstract interface for a principal. */
|
|
|
|
|
2001-07-31 23:05:34 +04:00
|
|
|
#include "nsISerializable.idl"
|
1999-09-01 04:54:35 +04:00
|
|
|
|
1999-08-20 13:51:02 +04:00
|
|
|
%{C++
|
|
|
|
struct JSPrincipals;
|
|
|
|
%}
|
|
|
|
|
2003-10-22 02:11:49 +04:00
|
|
|
interface nsIURI;
|
|
|
|
|
1999-08-20 13:51:02 +04:00
|
|
|
[ptr] native JSPrincipals(JSPrincipals);
|
1999-07-24 07:58:23 +04:00
|
|
|
|
1999-07-16 03:23:16 +04:00
|
|
|
[uuid(ff9313d0-25e1-11d2-8160-006008119d7a)]
|
2003-07-24 09:15:20 +04:00
|
|
|
interface nsIPrincipal : nsISerializable
|
|
|
|
{
|
2003-10-22 02:11:49 +04:00
|
|
|
/**
|
|
|
|
* Values of capabilities for each principal. Order is
|
|
|
|
* significant: if an operation is performed on a set
|
|
|
|
* of capabilities, the minimum is computed.
|
|
|
|
*/
|
2001-07-31 23:05:34 +04:00
|
|
|
const short ENABLE_DENIED = 1;
|
|
|
|
const short ENABLE_UNKNOWN = 2;
|
|
|
|
const short ENABLE_WITH_USER_PERMISSION = 3;
|
|
|
|
const short ENABLE_GRANTED = 4;
|
1999-11-12 01:10:36 +03:00
|
|
|
|
2003-10-22 02:11:49 +04:00
|
|
|
/**
|
|
|
|
* Returns the security preferences associated with this principal.
|
|
|
|
* prefBranch will be set to the pref branch to which these preferences
|
|
|
|
* pertain. id is a pseudo-unique identifier, pertaining to either the
|
|
|
|
* certificateID or the origin. grantedList and deniedList are
|
|
|
|
* space-separated lists of capabilities which were explicitly granted
|
|
|
|
* or denied by a pref.
|
|
|
|
*/
|
|
|
|
void getPreferences(out string prefBranch, out string id,
|
2000-05-16 07:40:51 +04:00
|
|
|
out string grantedList, out string deniedList);
|
2000-04-26 07:50:07 +04:00
|
|
|
|
2003-10-22 02:11:49 +04:00
|
|
|
/**
|
|
|
|
* Returns whether the other principal is equivalent to this principal.
|
|
|
|
* Principals are considered equal if they are the same principal,
|
|
|
|
* they have the same origin, or have the same certificate ID
|
|
|
|
*/
|
|
|
|
boolean equals(in nsIPrincipal other);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a hash value for the principal.
|
|
|
|
*/
|
|
|
|
readonly attribute unsigned long hashValue;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the JS equivalent of the principal.
|
|
|
|
* @see JSPrincipals.h
|
|
|
|
*/
|
|
|
|
readonly attribute JSPrincipals jsPrincipals;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The domain security policy of the principal.
|
|
|
|
*/
|
|
|
|
// XXXcaa should this be here? The script security manager is the only
|
|
|
|
// thing that should care about this. Wouldn't storing this data in one
|
|
|
|
// of the hashtables in nsScriptSecurityManager be better?
|
|
|
|
attribute voidPtr securityPolicy;
|
|
|
|
|
|
|
|
// XXXcaa probably should be turned into {get|set}CapabilityFlags
|
|
|
|
short canEnableCapability(in string capability);
|
|
|
|
void setCanEnableCapability(in string capability, in short canEnable);
|
|
|
|
boolean isCapabilityEnabled(in string capability, in voidPtr annotation);
|
|
|
|
void enableCapability(in string capability, inout voidPtr annotation);
|
|
|
|
void revertCapability(in string capability, inout voidPtr annotation);
|
|
|
|
void disableCapability(in string capability, inout voidPtr annotation);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The codebase URI to which this principal pertains. This is
|
|
|
|
* generally the document URI.
|
|
|
|
*/
|
|
|
|
readonly attribute nsIURI URI;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The domain URI to which this principal pertains.
|
|
|
|
* This is congruent with HTMLDocument.domain, and may be null.
|
|
|
|
* Setting this has no effect on the URI.
|
|
|
|
*/
|
|
|
|
attribute nsIURI domain;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The origin of this principal's domain, if non-null, or its
|
|
|
|
* codebase URI otherwise. An origin is defined as:
|
|
|
|
* scheme + host + port.
|
|
|
|
*/
|
|
|
|
// XXXcaa this should probably be turned into an nsIURI.
|
|
|
|
// The system principal's origin should be some caps namespace
|
|
|
|
// with a chrome URI. All of chrome should probably be the same.
|
|
|
|
readonly attribute string origin;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this principal is associated with a certificate.
|
|
|
|
*/
|
|
|
|
readonly attribute boolean hasCertificate;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The fingerprint ID of this principal's certificate.
|
|
|
|
* Throws if there is no certificate associated with this principal.
|
|
|
|
*/
|
|
|
|
// XXXcaa kaie says this may not be unique. We should probably
|
|
|
|
// consider using something else for this....
|
|
|
|
readonly attribute string certificateID;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The common name for the certificate.
|
|
|
|
* This pertains to the certificate authority organization.
|
|
|
|
* Throws if there is no certificate associated with this principal.
|
|
|
|
*/
|
|
|
|
attribute string commonName;
|
1999-07-24 07:58:23 +04:00
|
|
|
};
|