2006-06-13 03:07:47 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2006-06-27 17:51:42 +00:00
|
|
|
/* vim: set ts=2 sw=2 et tw=78: */
|
2012-05-21 11:12:37 +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/. */
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
2013-03-22 00:05:20 +00:00
|
|
|
#include "nsIDocument.h"
|
2006-06-13 03:07:47 +00:00
|
|
|
#include "nsIScriptTimeoutHandler.h"
|
|
|
|
#include "nsIXPConnect.h"
|
|
|
|
#include "nsJSUtils.h"
|
|
|
|
#include "nsContentUtils.h"
|
2012-07-27 14:03:27 +00:00
|
|
|
#include "nsError.h"
|
2008-01-30 02:11:48 +00:00
|
|
|
#include "nsGlobalWindow.h"
|
2010-03-08 08:24:50 +00:00
|
|
|
#include "nsIContentSecurityPolicy.h"
|
2012-06-15 02:31:55 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-10-26 13:32:10 +00:00
|
|
|
#include "mozilla/Likely.h"
|
2013-01-15 12:22:03 +00:00
|
|
|
#include <algorithm>
|
2013-01-03 19:02:36 +00:00
|
|
|
#include "mozilla/dom/FunctionBinding.h"
|
2013-09-06 17:50:24 +00:00
|
|
|
#include "nsAXPCNativeCallContext.h"
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
static const char kSetIntervalStr[] = "setInterval";
|
|
|
|
static const char kSetTimeoutStr[] = "setTimeout";
|
|
|
|
|
2013-10-08 15:51:42 +00:00
|
|
|
using namespace mozilla;
|
2013-01-03 19:02:36 +00:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
// Our JS nsIScriptTimeoutHandler implementation.
|
2012-06-15 02:31:55 +00:00
|
|
|
class nsJSScriptTimeoutHandler MOZ_FINAL : public nsIScriptTimeoutHandler
|
2006-06-13 03:07:47 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// nsISupports
|
2007-03-08 11:17:16 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2007-10-29 13:45:07 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsJSScriptTimeoutHandler)
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
nsJSScriptTimeoutHandler();
|
2013-10-08 15:51:42 +00:00
|
|
|
// This will call SwapElements on aArguments with an empty array.
|
|
|
|
nsJSScriptTimeoutHandler(nsGlobalWindow *aWindow, Function& aFunction,
|
|
|
|
FallibleTArray<JS::Heap<JS::Value> >& aArguments,
|
|
|
|
ErrorResult& aError);
|
|
|
|
nsJSScriptTimeoutHandler(JSContext* aCx, nsGlobalWindow *aWindow,
|
|
|
|
const nsAString& aExpression, bool* aAllowEval,
|
|
|
|
ErrorResult& aError);
|
2006-06-13 03:07:47 +00:00
|
|
|
~nsJSScriptTimeoutHandler();
|
|
|
|
|
2014-01-04 15:02:17 +00:00
|
|
|
virtual const char16_t *GetHandlerText();
|
2013-01-03 19:02:36 +00:00
|
|
|
virtual Function* GetCallback()
|
|
|
|
{
|
|
|
|
return mFunction;
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
2013-01-03 19:02:36 +00:00
|
|
|
virtual void GetLocation(const char **aFileName, uint32_t *aLineNo)
|
|
|
|
{
|
2006-06-13 03:07:47 +00:00
|
|
|
*aFileName = mFileName.get();
|
|
|
|
*aLineNo = mLineNo;
|
|
|
|
}
|
|
|
|
|
2013-01-03 19:02:36 +00:00
|
|
|
virtual const nsTArray<JS::Value>& GetArgs()
|
|
|
|
{
|
|
|
|
return mArgs;
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
nsresult Init(nsGlobalWindow *aWindow, bool *aIsInterval,
|
2013-10-08 15:51:42 +00:00
|
|
|
int32_t *aInterval, bool* aAllowEval);
|
2007-03-08 11:17:16 +00:00
|
|
|
|
|
|
|
void ReleaseJSObjects();
|
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
private:
|
|
|
|
// filename, line number and JS language version string of the
|
|
|
|
// caller of setTimeout()
|
2008-07-17 15:05:20 +00:00
|
|
|
nsCString mFileName;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mLineNo;
|
2013-06-18 10:00:37 +00:00
|
|
|
nsTArray<JS::Heap<JS::Value> > mArgs;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2013-10-08 15:51:42 +00:00
|
|
|
// The expression to evaluate or function to call. If mFunction is non-null
|
|
|
|
// it should be used, else use mExpr.
|
|
|
|
nsString mExpr;
|
2013-01-03 19:02:36 +00:00
|
|
|
nsRefPtr<Function> mFunction;
|
2006-06-13 03:07:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// nsJSScriptTimeoutHandler
|
|
|
|
// QueryInterface implementation for nsJSScriptTimeoutHandler
|
2013-08-02 01:29:05 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsJSScriptTimeoutHandler)
|
|
|
|
|
2010-11-08 15:02:49 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsJSScriptTimeoutHandler)
|
2007-03-08 11:17:16 +00:00
|
|
|
tmp->ReleaseJSObjects();
|
2010-11-08 15:02:49 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
2009-02-27 14:48:26 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INTERNAL(nsJSScriptTimeoutHandler)
|
2012-10-26 13:32:10 +00:00
|
|
|
if (MOZ_UNLIKELY(cb.WantDebugInfo())) {
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString name("nsJSScriptTimeoutHandler");
|
2013-10-08 15:51:42 +00:00
|
|
|
if (tmp->mFunction) {
|
2013-01-03 19:02:36 +00:00
|
|
|
JSFunction* fun =
|
|
|
|
JS_GetObjectFunction(js::UncheckedUnwrap(tmp->mFunction->Callable()));
|
2011-11-07 12:55:59 +00:00
|
|
|
if (fun && JS_GetFunctionId(fun)) {
|
2011-03-14 20:59:53 +00:00
|
|
|
JSFlatString *funId = JS_ASSERT_STRING_IS_FLAT(JS_GetFunctionId(fun));
|
2013-10-28 14:04:12 +00:00
|
|
|
size_t size = 1 + JS_PutEscapedFlatString(nullptr, 0, funId, 0);
|
2012-08-27 17:41:04 +00:00
|
|
|
char *funIdName = new char[size];
|
|
|
|
if (funIdName) {
|
|
|
|
JS_PutEscapedFlatString(funIdName, size, funId, 0);
|
|
|
|
name.AppendLiteral(" [");
|
|
|
|
name.Append(funIdName);
|
|
|
|
delete[] funIdName;
|
|
|
|
name.AppendLiteral("]");
|
2010-10-28 15:15:53 +00:00
|
|
|
}
|
2009-02-27 14:48:26 +00:00
|
|
|
}
|
2013-10-08 15:51:42 +00:00
|
|
|
} else {
|
|
|
|
name.AppendLiteral(" [");
|
|
|
|
name.Append(tmp->mFileName);
|
|
|
|
name.AppendLiteral(":");
|
|
|
|
name.AppendInt(tmp->mLineNo);
|
|
|
|
name.AppendLiteral("]");
|
2009-02-27 14:48:26 +00:00
|
|
|
}
|
2012-08-27 17:41:04 +00:00
|
|
|
cb.DescribeRefCountedNode(tmp->mRefCnt.get(), name.get());
|
2009-02-27 14:48:26 +00:00
|
|
|
}
|
|
|
|
else {
|
2011-06-23 21:10:52 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_DESCRIBE(nsJSScriptTimeoutHandler,
|
|
|
|
tmp->mRefCnt.get())
|
2009-02-27 14:48:26 +00:00
|
|
|
}
|
|
|
|
|
2013-10-08 15:51:42 +00:00
|
|
|
if (tmp->mFunction) {
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mFunction)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
|
|
|
}
|
2007-03-08 11:17:16 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
2007-10-29 13:45:07 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(nsJSScriptTimeoutHandler)
|
2013-01-03 19:02:36 +00:00
|
|
|
for (uint32_t i = 0; i < tmp->mArgs.Length(); ++i) {
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_JSVAL_MEMBER_CALLBACK(mArgs[i])
|
|
|
|
}
|
2007-10-29 13:45:07 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
|
|
|
|
2007-04-25 16:35:27 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsJSScriptTimeoutHandler)
|
2006-06-13 03:07:47 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptTimeoutHandler)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2007-03-08 11:17:16 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsJSScriptTimeoutHandler)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsJSScriptTimeoutHandler)
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2013-10-08 15:51:42 +00:00
|
|
|
static bool
|
|
|
|
CheckCSPForEval(JSContext* aCx, nsGlobalWindow* aWindow, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
// if CSP is enabled, and setTimeout/setInterval was called with a string,
|
|
|
|
// disable the registration and log an error
|
|
|
|
nsCOMPtr<nsIDocument> doc = aWindow->GetExtantDoc();
|
|
|
|
if (!doc) {
|
|
|
|
// if there's no document, we don't have to do anything.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContentSecurityPolicy> csp;
|
|
|
|
aError = doc->NodePrincipal()->GetCsp(getter_AddRefs(csp));
|
|
|
|
if (aError.Failed()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!csp) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool allowsEval = true;
|
|
|
|
bool reportViolation = false;
|
|
|
|
aError = csp->GetAllowsEval(&reportViolation, &allowsEval);
|
|
|
|
if (aError.Failed()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reportViolation) {
|
|
|
|
// TODO : need actual script sample in violation report.
|
|
|
|
NS_NAMED_LITERAL_STRING(scriptSample,
|
|
|
|
"call to eval() or related function blocked by CSP");
|
|
|
|
|
|
|
|
// Get the calling location.
|
|
|
|
uint32_t lineNum = 0;
|
|
|
|
const char *fileName;
|
|
|
|
nsAutoString fileNameString;
|
|
|
|
if (nsJSUtils::GetCallingLocation(aCx, &fileName, &lineNum)) {
|
|
|
|
AppendUTF8toUTF16(fileName, fileNameString);
|
|
|
|
} else {
|
|
|
|
fileNameString.AssignLiteral("unknown");
|
|
|
|
}
|
|
|
|
|
|
|
|
csp->LogViolationDetails(nsIContentSecurityPolicy::VIOLATION_TYPE_EVAL,
|
2014-01-02 19:14:06 +00:00
|
|
|
fileNameString, scriptSample, lineNum,
|
|
|
|
EmptyString(), EmptyString());
|
2013-10-08 15:51:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return allowsEval;
|
|
|
|
}
|
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
nsJSScriptTimeoutHandler::nsJSScriptTimeoutHandler() :
|
2013-10-08 15:51:42 +00:00
|
|
|
mLineNo(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsJSScriptTimeoutHandler::nsJSScriptTimeoutHandler(nsGlobalWindow *aWindow,
|
|
|
|
Function& aFunction,
|
|
|
|
FallibleTArray<JS::Heap<JS::Value> >& aArguments,
|
|
|
|
ErrorResult& aError) :
|
|
|
|
mLineNo(0),
|
|
|
|
mFunction(&aFunction)
|
|
|
|
{
|
|
|
|
if (!aWindow->GetContextInternal() || !aWindow->FastGetGlobalJSObject()) {
|
|
|
|
// This window was already closed, or never properly initialized,
|
|
|
|
// don't let a timer be scheduled on such a window.
|
|
|
|
aError.Throw(NS_ERROR_NOT_INITIALIZED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::HoldJSObjects(this);
|
|
|
|
mArgs.SwapElements(aArguments);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsJSScriptTimeoutHandler::nsJSScriptTimeoutHandler(JSContext* aCx,
|
|
|
|
nsGlobalWindow *aWindow,
|
|
|
|
const nsAString& aExpression,
|
|
|
|
bool* aAllowEval,
|
|
|
|
ErrorResult& aError) :
|
2006-06-13 03:07:47 +00:00
|
|
|
mLineNo(0),
|
2013-10-08 15:51:42 +00:00
|
|
|
mExpr(aExpression)
|
2006-06-13 03:07:47 +00:00
|
|
|
{
|
2013-10-08 15:51:42 +00:00
|
|
|
if (!aWindow->GetContextInternal() || !aWindow->FastGetGlobalJSObject()) {
|
|
|
|
// This window was already closed, or never properly initialized,
|
|
|
|
// don't let a timer be scheduled on such a window.
|
|
|
|
aError.Throw(NS_ERROR_NOT_INITIALIZED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aAllowEval = CheckCSPForEval(aCx, aWindow, aError);
|
|
|
|
if (aError.Failed() || !*aAllowEval) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the calling location.
|
|
|
|
const char *filename;
|
|
|
|
if (nsJSUtils::GetCallingLocation(aCx, &filename, &mLineNo)) {
|
|
|
|
mFileName.Assign(filename);
|
|
|
|
}
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsJSScriptTimeoutHandler::~nsJSScriptTimeoutHandler()
|
2007-03-08 11:17:16 +00:00
|
|
|
{
|
|
|
|
ReleaseJSObjects();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsJSScriptTimeoutHandler::ReleaseJSObjects()
|
2006-06-13 03:07:47 +00:00
|
|
|
{
|
2013-10-08 15:51:42 +00:00
|
|
|
if (mFunction) {
|
2013-01-03 19:02:36 +00:00
|
|
|
mFunction = nullptr;
|
|
|
|
mArgs.Clear();
|
2013-10-08 15:51:42 +00:00
|
|
|
mozilla::DropJSObjects(this);
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2011-09-29 06:19:26 +00:00
|
|
|
nsJSScriptTimeoutHandler::Init(nsGlobalWindow *aWindow, bool *aIsInterval,
|
2013-10-08 15:51:42 +00:00
|
|
|
int32_t *aInterval, bool *aAllowEval)
|
2006-06-13 03:07:47 +00:00
|
|
|
{
|
2013-01-03 19:02:36 +00:00
|
|
|
if (!aWindow->GetContextInternal() || !aWindow->FastGetGlobalJSObject()) {
|
2006-06-13 03:07:47 +00:00
|
|
|
// This window was already closed, or never properly initialized,
|
|
|
|
// don't let a timer be scheduled on such a window.
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
nsAXPCNativeCallContext *ncc = nullptr;
|
2006-06-13 03:07:47 +00:00
|
|
|
nsresult rv = nsContentUtils::XPConnect()->
|
2008-01-15 15:50:57 +00:00
|
|
|
GetCurrentNativeCallContext(&ncc);
|
2006-06-13 03:07:47 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!ncc)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
JSContext *cx = nullptr;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t argc;
|
2013-04-11 22:52:10 +00:00
|
|
|
JS::Value *argv = nullptr;
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
ncc->GetArgc(&argc);
|
|
|
|
ncc->GetArgvPtr(&argv);
|
|
|
|
|
2013-05-04 07:52:57 +00:00
|
|
|
JS::Rooted<JSFlatString*> expr(cx);
|
|
|
|
JS::Rooted<JSObject*> funobj(cx);
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
if (argc < 1) {
|
2010-03-08 08:24:50 +00:00
|
|
|
::JS_ReportError(cx, "Function %s requires at least 2 parameter",
|
2007-07-03 22:38:04 +00:00
|
|
|
*aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
2007-06-15 21:47:37 +00:00
|
|
|
return NS_ERROR_DOM_TYPE_ERR;
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
|
Bug 708735 - Use <stdint.h> types in JSAPI and throughout SpiderMonkey. Continue to provide the {u,}int{8,16,32,64} and JS{Uint,Int}{8,16,32,64} integer types through a single header, however, for a simpler backout strategy -- and also to ease the transition for embedders. r=timeless on switching the jsd API to use the <stdint.h> types, r=luke, r=dmandelin
2011-12-09 03:54:10 +00:00
|
|
|
int32_t interval = 0;
|
2013-08-15 21:41:51 +00:00
|
|
|
if (argc > 1) {
|
|
|
|
JS::Rooted<JS::Value> arg(cx, argv[1]);
|
|
|
|
|
|
|
|
if (!JS::ToInt32(cx, arg, &interval)) {
|
|
|
|
::JS_ReportError(cx,
|
|
|
|
"Second argument to %s must be a millisecond interval",
|
|
|
|
aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
|
|
|
return NS_ERROR_DOM_TYPE_ERR;
|
|
|
|
}
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
|
2007-07-03 22:38:04 +00:00
|
|
|
if (argc == 1) {
|
|
|
|
// If no interval was specified, treat this like a timeout, to avoid
|
|
|
|
// setting an interval of 0 milliseconds.
|
2011-10-17 14:59:28 +00:00
|
|
|
*aIsInterval = false;
|
2007-07-03 22:38:04 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 01:19:07 +00:00
|
|
|
JS::Rooted<JS::Value> arg(cx, argv[0]);
|
|
|
|
switch (::JS_TypeOfValue(cx, arg)) {
|
2006-06-13 03:07:47 +00:00
|
|
|
case JSTYPE_FUNCTION:
|
2014-01-15 01:19:07 +00:00
|
|
|
funobj = &arg.toObject();
|
2006-06-13 03:07:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case JSTYPE_STRING:
|
|
|
|
case JSTYPE_OBJECT:
|
2010-12-03 08:24:17 +00:00
|
|
|
{
|
2013-11-16 12:31:36 +00:00
|
|
|
JSString *str = JS::ToString(cx, arg);
|
2010-12-03 08:24:17 +00:00
|
|
|
if (!str)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
expr = ::JS_FlattenString(cx, str);
|
|
|
|
if (!expr)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2014-01-15 01:19:07 +00:00
|
|
|
argv[0] = JS::StringValue(str);
|
2010-12-03 08:24:17 +00:00
|
|
|
}
|
2006-06-13 03:07:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
::JS_ReportError(cx, "useless %s call (missing quotes around argument?)",
|
2007-07-03 22:38:04 +00:00
|
|
|
*aIsInterval ? kSetIntervalStr : kSetTimeoutStr);
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2006-06-27 17:51:42 +00:00
|
|
|
// Return an error that nsGlobalWindow can recognize and turn into NS_OK.
|
|
|
|
return NS_ERROR_DOM_TYPE_ERR;
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (expr) {
|
2013-10-08 15:51:42 +00:00
|
|
|
// if CSP is enabled, and setTimeout/setInterval was called with a string,
|
|
|
|
// disable the registration and log an error
|
|
|
|
ErrorResult error;
|
|
|
|
*aAllowEval = CheckCSPForEval(cx, aWindow, error);
|
|
|
|
if (error.Failed() || !*aAllowEval) {
|
|
|
|
return error.ErrorCode();
|
|
|
|
}
|
2013-10-26 15:02:20 +00:00
|
|
|
|
2013-10-08 15:51:42 +00:00
|
|
|
mExpr.Append(JS_GetFlatStringChars(expr),
|
|
|
|
JS_GetStringLength(JS_FORGET_STRING_FLATNESS(expr)));
|
2007-09-15 16:51:12 +00:00
|
|
|
|
|
|
|
// Get the calling location.
|
|
|
|
const char *filename;
|
2011-04-07 21:25:32 +00:00
|
|
|
if (nsJSUtils::GetCallingLocation(cx, &filename, &mLineNo)) {
|
2007-09-15 16:51:12 +00:00
|
|
|
mFileName.Assign(filename);
|
|
|
|
}
|
2006-06-13 03:07:47 +00:00
|
|
|
} else if (funobj) {
|
2013-10-08 15:51:42 +00:00
|
|
|
*aAllowEval = true;
|
|
|
|
|
2013-08-16 20:10:17 +00:00
|
|
|
mozilla::HoldJSObjects(this);
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2013-12-12 01:51:58 +00:00
|
|
|
mFunction = new Function(funobj, GetIncumbentGlobal());
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2012-02-07 20:28:08 +00:00
|
|
|
// Create our arg array. argc is the number of arguments passed
|
|
|
|
// to setTimeout or setInterval; the first two are our callback
|
|
|
|
// and the delay, so only arguments after that need to go in our
|
|
|
|
// array.
|
2013-01-15 12:22:03 +00:00
|
|
|
// std::max(argc - 2, 0) wouldn't work right because argc is unsigned.
|
2013-01-03 19:02:36 +00:00
|
|
|
uint32_t argCount = std::max(argc, 2u) - 2;
|
2013-06-18 10:00:37 +00:00
|
|
|
|
|
|
|
FallibleTArray<JS::Heap<JS::Value> > args;
|
2013-01-03 19:02:36 +00:00
|
|
|
if (!args.SetCapacity(argCount)) {
|
|
|
|
// No need to drop here, since we already have a non-null mFunction
|
2006-06-13 03:07:47 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2013-01-03 19:02:36 +00:00
|
|
|
for (uint32_t idx = 0; idx < argCount; ++idx) {
|
|
|
|
*args.AppendElement() = argv[idx + 2];
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
2013-01-03 19:02:36 +00:00
|
|
|
args.SwapElements(mArgs);
|
2006-06-13 03:07:47 +00:00
|
|
|
} else {
|
|
|
|
NS_WARNING("No func and no expr - why are we here?");
|
|
|
|
}
|
|
|
|
*aInterval = interval;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t *
|
2006-06-13 03:07:47 +00:00
|
|
|
nsJSScriptTimeoutHandler::GetHandlerText()
|
|
|
|
{
|
2013-10-08 15:51:42 +00:00
|
|
|
NS_ASSERTION(!mFunction, "No expression, so no handler text!");
|
|
|
|
return mExpr.get();
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
|
2008-01-30 02:11:48 +00:00
|
|
|
nsresult NS_CreateJSTimeoutHandler(nsGlobalWindow *aWindow,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool *aIsInterval,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t *aInterval,
|
2006-06-13 03:07:47 +00:00
|
|
|
nsIScriptTimeoutHandler **aRet)
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
*aRet = nullptr;
|
2013-01-03 19:02:36 +00:00
|
|
|
nsRefPtr<nsJSScriptTimeoutHandler> handler = new nsJSScriptTimeoutHandler();
|
2013-10-08 15:51:42 +00:00
|
|
|
bool allowEval;
|
|
|
|
nsresult rv = handler->Init(aWindow, aIsInterval, aInterval, &allowEval);
|
|
|
|
if (NS_FAILED(rv) || !allowEval) {
|
2006-06-13 03:07:47 +00:00
|
|
|
return rv;
|
|
|
|
}
|
2007-08-09 22:19:59 +00:00
|
|
|
|
2013-01-03 19:02:36 +00:00
|
|
|
handler.forget(aRet);
|
2007-08-09 22:19:59 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
2013-10-08 15:51:42 +00:00
|
|
|
|
|
|
|
already_AddRefed<nsIScriptTimeoutHandler>
|
|
|
|
NS_CreateJSTimeoutHandler(nsGlobalWindow *aWindow, Function& aFunction,
|
|
|
|
const Sequence<JS::Value>& aArguments,
|
|
|
|
ErrorResult& aError)
|
|
|
|
{
|
|
|
|
FallibleTArray<JS::Heap<JS::Value> > args;
|
|
|
|
if (!args.AppendElements(aArguments)) {
|
|
|
|
aError.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<nsJSScriptTimeoutHandler> handler =
|
|
|
|
new nsJSScriptTimeoutHandler(aWindow, aFunction, args, aError);
|
|
|
|
return aError.Failed() ? nullptr : handler.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsIScriptTimeoutHandler>
|
|
|
|
NS_CreateJSTimeoutHandler(JSContext* aCx, nsGlobalWindow *aWindow,
|
|
|
|
const nsAString& aExpression, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
ErrorResult rv;
|
|
|
|
bool allowEval = false;
|
|
|
|
nsRefPtr<nsJSScriptTimeoutHandler> handler =
|
|
|
|
new nsJSScriptTimeoutHandler(aCx, aWindow, aExpression, &allowEval, rv);
|
|
|
|
if (rv.Failed() || !allowEval) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return handler.forget();
|
|
|
|
}
|