mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
142 lines
4.7 KiB
Plaintext
142 lines
4.7 KiB
Plaintext
/* 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
interface nsIURI;
|
|
interface nsIHttpChannel;
|
|
interface nsIDocShell;
|
|
|
|
/**
|
|
* nsIContentSecurityPolicy
|
|
* Describes an XPCOM component used to model an enforce CSPs.
|
|
*/
|
|
|
|
[scriptable, uuid(AB36A2BF-CB32-4AA6-AB41-6B4E4444A221)]
|
|
interface nsIContentSecurityPolicy : nsISupports
|
|
{
|
|
|
|
/**
|
|
* Set to true when the CSP has been read in and parsed and is ready to
|
|
* enforce. This is a barrier for the nsDocument so it doesn't load any
|
|
* sub-content until either it knows that a CSP is ready or will not be used.
|
|
*/
|
|
attribute boolean isInitialized;
|
|
|
|
/**
|
|
* When set to true, content load-blocking and fail-closed are disabled: CSP
|
|
* will ONLY send reports, and not modify behavior.
|
|
*/
|
|
attribute boolean reportOnlyMode;
|
|
|
|
/**
|
|
* A read-only string version of the policy for debugging.
|
|
*/
|
|
readonly attribute AString policy;
|
|
|
|
/**
|
|
* Whether this policy allows in-page script.
|
|
*/
|
|
readonly attribute boolean allowsInlineScript;
|
|
|
|
/**
|
|
* whether this policy allows eval and eval-like functions
|
|
* such as setTimeout("code string", time).
|
|
*/
|
|
readonly attribute boolean allowsEval;
|
|
|
|
/**
|
|
* Log policy violation on the Error Console and send a report if a report-uri
|
|
* is present in the policy
|
|
*
|
|
* @param violationType
|
|
* one of the VIOLATION_TYPE_* constants, e.g. inline-script or eval
|
|
* @param sourceFile
|
|
* name of the source file containing the violation (if available)
|
|
* @param contentSample
|
|
* sample of the violating content (to aid debugging)
|
|
* @param lineNum
|
|
* source line number of the violation (if available)
|
|
*/
|
|
void logViolationDetails(in unsigned short violationType,
|
|
in AString sourceFile,
|
|
in AString scriptSample,
|
|
in int32_t lineNum);
|
|
|
|
const unsigned short VIOLATION_TYPE_INLINE_SCRIPT = 1;
|
|
const unsigned short VIOLATION_TYPE_EVAL = 2;
|
|
|
|
/**
|
|
* Manually triggers violation report sending given a URI and reason.
|
|
* The URI may be null, in which case "self" is sent.
|
|
* @param blockedURI
|
|
* the URI that violated the policy
|
|
* @param violatedDirective
|
|
* the directive that was violated.
|
|
* @param scriptSample
|
|
* a sample of the violating inline script
|
|
* @param lineNum
|
|
* source line number of the violation (if available)
|
|
* @return
|
|
* nothing.
|
|
*/
|
|
void sendReports(in AString blockedURI,
|
|
in AString violatedDirective,
|
|
in AString scriptSample,
|
|
in int32_t lineNum);
|
|
|
|
/**
|
|
* Called after the CSP object is created to fill in the appropriate request
|
|
* and request header information needed in case a report needs to be sent.
|
|
*/
|
|
void scanRequestData(in nsIHttpChannel aChannel);
|
|
|
|
/**
|
|
* Updates the policy currently stored in the CSP to be "refined" or
|
|
* tightened by the one specified in the string policyString.
|
|
*/
|
|
void refinePolicy(in AString policyString, in nsIURI selfURI);
|
|
|
|
/**
|
|
* Verifies ancestry as permitted by the policy.
|
|
*
|
|
* Calls to this may trigger violation reports when queried, so
|
|
* this value should not be cached.
|
|
*
|
|
* @param docShell
|
|
* containing the protected resource
|
|
* @return
|
|
* true if the frame's ancestors are all permitted by policy
|
|
*/
|
|
boolean permitsAncestry(in nsIDocShell docShell);
|
|
|
|
/**
|
|
* Delegate method called by the service when sub-elements of the protected
|
|
* document are being loaded. Given a bit of information about the request,
|
|
* decides whether or not the policy is satisfied.
|
|
*
|
|
* Calls to this may trigger violation reports when queried, so
|
|
* this value should not be cached.
|
|
*/
|
|
short shouldLoad(in unsigned long aContentType,
|
|
in nsIURI aContentLocation,
|
|
in nsIURI aRequestOrigin,
|
|
in nsISupports aContext,
|
|
in ACString aMimeTypeGuess,
|
|
in nsISupports aExtra);
|
|
|
|
/**
|
|
* Delegate method called by the service when sub-elements of the protected
|
|
* document are being processed. Given a bit of information about the request,
|
|
* decides whether or not the policy is satisfied.
|
|
*/
|
|
short shouldProcess(in unsigned long aContentType,
|
|
in nsIURI aContentLocation,
|
|
in nsIURI aRequestOrigin,
|
|
in nsISupports aContext,
|
|
in ACString aMimeType,
|
|
in nsISupports aExtra);
|
|
|
|
};
|