1999-12-18 23:29:29 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
1999-07-16 03:23:16 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03: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
|
|
|
*
|
1999-11-06 06:43:54 +03: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.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-07-16 03:23:16 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-07-16 03:23:16 +04:00
|
|
|
*/
|
|
|
|
|
1999-09-08 00:40:20 +04:00
|
|
|
#include "nsISupports.idl"
|
1999-09-08 01:26:56 +04:00
|
|
|
#include "nsIPrincipal.idl"
|
1999-07-16 03:23:16 +04:00
|
|
|
|
1999-12-18 23:29:29 +03:00
|
|
|
%{C++
|
|
|
|
#include "jspubtd.h"
|
|
|
|
%}
|
|
|
|
[ptr] native JSContextPtr(JSContext);
|
|
|
|
|
1999-07-16 03:23:16 +04:00
|
|
|
interface nsIURI;
|
|
|
|
|
2000-11-07 04:14:08 +03:00
|
|
|
[scriptable, uuid(58df5780-8006-11d2-bd91-00805f8ae3f4)]
|
1999-07-16 03:23:16 +04:00
|
|
|
interface nsIScriptSecurityManager : nsISupports
|
|
|
|
{
|
2000-02-24 01:34:40 +03:00
|
|
|
///////////////// Principals ///////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the principal of the innermost frame of the currently
|
|
|
|
* executing script. Will return null if there is no script
|
|
|
|
* currently executing.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
nsIPrincipal getSubjectPrincipal();
|
2000-02-24 01:34:40 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the all-powerful system principal.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
nsIPrincipal getSystemPrincipal();
|
2000-02-24 01:34:40 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a principal that can be QI'd to nsICodebasePrincipal and
|
|
|
|
* has the same origin as aURI.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
nsIPrincipal getCodebasePrincipal(in nsIURI aURI);
|
2000-02-24 01:34:40 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a principal that can be QI'd to nsICertificatePrincipal.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
nsIPrincipal getCertificatePrincipal(in string CertID);
|
2000-02-24 01:34:40 +03:00
|
|
|
|
|
|
|
///////////////// Security Checks //////////////////
|
|
|
|
|
1999-09-15 08:05:43 +04:00
|
|
|
/**
|
|
|
|
* Checks whether the currently executing script can access the given
|
|
|
|
* property.
|
|
|
|
*
|
1999-12-18 23:29:29 +03:00
|
|
|
* @param cx The current active JavaScript context
|
1999-09-15 08:05:43 +04:00
|
|
|
* @param obj The object that is being accessed
|
1999-11-20 10:28:34 +03:00
|
|
|
* @param prop The ordinal of the property being accessed (see nsDOMPropEnums.h)
|
1999-09-15 08:05:43 +04:00
|
|
|
* @param isWrite True if write access is being attempted
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
[noscript] void checkScriptAccess(in JSContextPtr cx, in voidPtr obj,
|
2000-02-02 03:22:58 +03:00
|
|
|
in long prop, in boolean isWrite);
|
1999-09-01 04:54:35 +04:00
|
|
|
|
1999-11-16 08:07:31 +03:00
|
|
|
/**
|
|
|
|
* Check that the script with context "cx" can load "uri".
|
|
|
|
*
|
|
|
|
* Will return error code NS_ERROR_DOM_BAD_URI if the load request
|
|
|
|
* should be denied.
|
2000-02-24 01:34:40 +03:00
|
|
|
*
|
|
|
|
* @param cx the JSContext of the script causing the load
|
|
|
|
* @param uri the URI that is being loaded
|
1999-11-16 08:07:31 +03:00
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
[noscript] void checkLoadURIFromScript(in JSContextPtr cx, in nsIURI uri);
|
1999-11-16 08:07:31 +03:00
|
|
|
|
2000-10-14 02:59:47 +04:00
|
|
|
/**
|
|
|
|
* Default CheckLoadURI permissions
|
|
|
|
*/
|
|
|
|
const unsigned long STANDARD = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the source is mail, disallow the load
|
|
|
|
*/
|
|
|
|
const unsigned long DISALLOW_FROM_MAIL = 1 << 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allow the loading of chrome URLs by non-chrome URLs
|
|
|
|
*/
|
|
|
|
const unsigned long ALLOW_CHROME = 1 << 1;
|
|
|
|
|
1999-11-16 08:07:31 +03:00
|
|
|
/**
|
|
|
|
* Check that content from "from" can load "uri".
|
|
|
|
*
|
|
|
|
* Will return error code NS_ERROR_DOM_BAD_URI if the load request
|
|
|
|
* should be denied.
|
2000-02-24 01:34:40 +03:00
|
|
|
*
|
|
|
|
* @param from the URI causing the load
|
|
|
|
* @param uri the URI that is being loaded
|
|
|
|
* @param disallowFromMail if true, return NS_ERROR_DOM_BAD_URI if 'from'
|
|
|
|
* is a URI associated with mail or news
|
1999-11-16 08:07:31 +03:00
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
void checkLoadURI(in nsIURI from, in nsIURI uri,
|
2000-10-14 02:59:47 +04:00
|
|
|
in unsigned long flags);
|
1999-09-01 04:54:35 +04:00
|
|
|
|
2001-04-17 05:21:44 +04:00
|
|
|
/**
|
|
|
|
* Same as CheckLoadURI but takes string arguments for ease of use by scripts
|
|
|
|
*/
|
|
|
|
void checkLoadURIStr(in string from, in string uri,
|
|
|
|
in unsigned long flags);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check that the function 'funObj' is allowed to run on 'targetObj'
|
|
|
|
*
|
|
|
|
* Will return error code NS_ERROR_DOM_SECURITY_ERR if the function
|
|
|
|
* should not run
|
|
|
|
*
|
|
|
|
* @param cx The current active JavaScript context.
|
|
|
|
* @param funObj The function trying to run..
|
|
|
|
* @param targetObj The object the function will run on.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
[noscript] void checkFunctionAccess(in JSContextPtr cx, in voidPtr funObj,
|
2000-11-07 04:14:08 +03:00
|
|
|
in voidPtr targetObj);
|
2000-06-21 04:21:50 +04:00
|
|
|
|
1999-12-02 01:23:22 +03:00
|
|
|
/**
|
2000-02-24 01:34:40 +03:00
|
|
|
* Return true if content from the given principal is allowed to
|
|
|
|
* execute scripts.
|
1999-12-02 01:23:22 +03:00
|
|
|
*/
|
2001-03-23 07:22:56 +03:00
|
|
|
[noscript] boolean canExecuteScripts(in JSContextPtr cx, in nsIPrincipal principal);
|
1999-09-18 00:13:52 +04:00
|
|
|
|
2000-02-24 01:34:40 +03:00
|
|
|
|
|
|
|
///////////////// Capabilities /////////////////////
|
2000-05-16 07:40:51 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Request that 'capability' can be enabled by scripts or applets running
|
|
|
|
* with 'principal'. Will prompt user if necessary. Returns
|
|
|
|
* nsIPrincipal::ENABLE_GRANTED or nsIPrincipal::ENABLE_DENIED based on user's choice.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
void requestCapability(in nsIPrincipal principal, in string capability, out short result);
|
2000-02-24 01:34:40 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if the currently executing script has 'capability' enabled.
|
|
|
|
*/
|
1999-10-29 02:09:03 +04:00
|
|
|
boolean IsCapabilityEnabled(in string capability);
|
|
|
|
|
2000-02-24 01:34:40 +03:00
|
|
|
/**
|
|
|
|
* Enable 'capability' in the innermost frame of the currently executing
|
|
|
|
* script.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
void enableCapability(in string capability);
|
1999-09-15 08:05:43 +04:00
|
|
|
|
2000-02-24 01:34:40 +03:00
|
|
|
/**
|
|
|
|
* Remove 'capability' from the innermost frame of the currently executing
|
|
|
|
* script. Any setting of 'capability' from enclosing frames thus comes into
|
|
|
|
* effect.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
void revertCapability(in string capability);
|
1999-09-15 08:05:43 +04:00
|
|
|
|
2000-02-24 01:34:40 +03:00
|
|
|
/**
|
|
|
|
* Disable 'capability' in the innermost frame of the currently executing
|
|
|
|
* script.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
void disableCapability(in string capability);
|
2000-04-26 07:50:07 +04:00
|
|
|
|
|
|
|
//////////////// Master Certificate Functions ////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allow 'certificateID' to enable 'capability.' Can only be performed
|
|
|
|
* by code signed by the system certificate.
|
|
|
|
*/
|
2001-03-02 03:09:20 +03:00
|
|
|
void setCanEnableCapability(in string certificateID, in string capability,
|
2000-04-26 07:50:07 +04:00
|
|
|
in short canEnable);
|
2001-03-02 03:09:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
//////////////// Temporary ///////////////////////////////////////
|
|
|
|
/**
|
|
|
|
* Checks whether the currently executing script can load the given URL
|
|
|
|
* (special case for XMLHttpRequest)
|
|
|
|
*
|
|
|
|
* @param cx The current active JavaScript context
|
|
|
|
* @param url The url that is being accessed
|
|
|
|
* @param prop The ordinal of the property being accessed (see nsDOMPropEnums.h)
|
|
|
|
* @param isWrite True if write access is being attempted
|
|
|
|
*/
|
|
|
|
[noscript] void checkScriptAccessToURL(in JSContextPtr cx, in string url,
|
|
|
|
in long prop, in boolean isWrite);
|
1999-07-16 03:23:16 +04:00
|
|
|
};
|
1999-08-20 13:51:02 +04:00
|
|
|
|
1999-07-16 03:23:16 +04:00
|
|
|
%{C++
|
2000-09-14 03:57:52 +04:00
|
|
|
#define NS_SCRIPTSECURITYMANAGER_CONTRACTID "@mozilla.org/scriptsecuritymanager;1"
|
1999-08-20 13:51:02 +04:00
|
|
|
#define NS_SCRIPTSECURITYMANAGER_CLASSNAME "scriptsecuritymanager"
|
1999-09-01 04:54:35 +04:00
|
|
|
%}
|