/* * Copyright (C) 2009 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "config.h" #if ENABLE(WORKERS) #include "WorkerContextExecutionProxy.h" #include "DOMCoreException.h" #include "DedicatedWorkerContext.h" #include "Event.h" #include "Notification.h" #include "NotificationCenter.h" #include "EventException.h" #include "MessagePort.h" #include "RangeException.h" #include "SharedWorker.h" #include "SharedWorkerContext.h" #include "V8Binding.h" #include "V8DOMMap.h" #include "V8Index.h" #include "V8Proxy.h" #include "V8WorkerContextEventListener.h" #if ENABLE(WEB_SOCKETS) #include "WebSocket.h" #endif #include "Worker.h" #include "WorkerContext.h" #include "WorkerLocation.h" #include "WorkerNavigator.h" #include "WorkerScriptController.h" #include "XMLHttpRequest.h" #include "XMLHttpRequestException.h" namespace WebCore { static void reportFatalErrorInV8(const char* location, const char* message) { // FIXME: We temporarily deal with V8 internal error situations such as out-of-memory by crashing the worker. CRASH(); } WorkerContextExecutionProxy::WorkerContextExecutionProxy(WorkerContext* workerContext) : m_workerContext(workerContext) , m_recursion(0) { initV8IfNeeded(); } WorkerContextExecutionProxy::~WorkerContextExecutionProxy() { dispose(); } void WorkerContextExecutionProxy::dispose() { // Detach all events from their JS wrappers. for (size_t eventIndex = 0; eventIndex < m_events.size(); ++eventIndex) { Event* event = m_events[eventIndex]; if (forgetV8EventObject(event)) event->deref(); } m_events.clear(); // Dispose the context. if (!m_context.IsEmpty()) { m_context.Dispose(); m_context.Clear(); } } WorkerContextExecutionProxy* WorkerContextExecutionProxy::retrieve() { // Happens on frame destruction, check otherwise GetCurrent() will crash. if (!v8::Context::InContext()) return 0; v8::Handle context = v8::Context::GetCurrent(); v8::Handle global = context->Global(); global = V8DOMWrapper::lookupDOMWrapper(V8ClassIndex::WORKERCONTEXT, global); // Return 0 if the current executing context is not the worker context. if (global.IsEmpty()) return 0; WorkerContext* workerContext = V8DOMWrapper::convertToNativeObject(V8ClassIndex::WORKERCONTEXT, global); return workerContext->script()->proxy(); } void WorkerContextExecutionProxy::initV8IfNeeded() { static bool v8Initialized = false; if (v8Initialized) return; // Tell V8 not to call the default OOM handler, binding code will handle it. v8::V8::IgnoreOutOfMemoryException(); v8::V8::SetFatalErrorHandler(reportFatalErrorInV8); #if PLATFORM(ANDROID) const int workerThreadPreemptionIntervalMs = 5; v8::Locker::StartPreemption(workerThreadPreemptionIntervalMs); #endif v8::ResourceConstraints resource_constraints; uint32_t here; resource_constraints.set_stack_limit(&here - kWorkerMaxStackSize / sizeof(uint32_t*)); v8::SetResourceConstraints(&resource_constraints); v8Initialized = true; } void WorkerContextExecutionProxy::initContextIfNeeded() { // Bail out if the context has already been initialized. if (!m_context.IsEmpty()) return; // Create a new environment v8::Persistent globalTemplate; m_context = v8::Context::New(0, globalTemplate); // Starting from now, use local context only. v8::Local context = v8::Local::New(m_context); v8::Context::Scope scope(context); // Allocate strings used during initialization. v8::Handle implicitProtoString = v8::String::New("__proto__"); // Create a new JS object and use it as the prototype for the shadow global object. V8ClassIndex::V8WrapperType contextType = V8ClassIndex::DEDICATEDWORKERCONTEXT; #if ENABLE(SHARED_WORKERS) if (!m_workerContext->isDedicatedWorkerContext()) contextType = V8ClassIndex::SHAREDWORKERCONTEXT; #endif v8::Handle workerContextConstructor = V8DOMWrapper::getConstructorForContext(contextType, context); v8::Local jsWorkerContext = SafeAllocation::newInstance(workerContextConstructor); // Bail out if allocation failed. if (jsWorkerContext.IsEmpty()) { dispose(); return; } // Wrap the object. V8DOMWrapper::setDOMWrapper(jsWorkerContext, V8ClassIndex::ToInt(contextType), m_workerContext); V8DOMWrapper::setJSWrapperForDOMObject(m_workerContext, v8::Persistent::New(jsWorkerContext)); m_workerContext->ref(); // Insert the object instance as the prototype of the shadow object. v8::Handle globalObject = m_context->Global(); globalObject->Set(implicitProtoString, jsWorkerContext); } v8::Handle WorkerContextExecutionProxy::convertToV8Object(V8ClassIndex::V8WrapperType type, void* impl) { if (!impl) return v8::Null(); if (type == V8ClassIndex::DEDICATEDWORKERCONTEXT #if ENABLE(SHARED_WORKERS) || type == V8ClassIndex::SHAREDWORKERCONTEXT #endif ) return convertWorkerContextToV8Object(static_cast(impl)); bool isActiveDomObject = false; switch (type) { #define MAKE_CASE(TYPE, NAME) case V8ClassIndex::TYPE: ACTIVE_DOM_OBJECT_TYPES(MAKE_CASE) isActiveDomObject = true; break; #undef MAKE_CASE default: break; } if (isActiveDomObject) { v8::Persistent result = getActiveDOMObjectMap().get(impl); if (!result.IsEmpty()) return result; v8::Local object = toV8(type, type, impl); switch (type) { #define MAKE_CASE(TYPE, NAME) \ case V8ClassIndex::TYPE: static_cast(impl)->ref(); break; ACTIVE_DOM_OBJECT_TYPES(MAKE_CASE) #undef MAKE_CASE default: ASSERT_NOT_REACHED(); } result = v8::Persistent::New(object); V8DOMWrapper::setJSWrapperForActiveDOMObject(impl, result); return result; } // Non DOM node v8::Persistent result = getDOMObjectMap().get(impl); if (result.IsEmpty()) { v8::Local object = toV8(type, type, impl); if (!object.IsEmpty()) { switch (type) { case V8ClassIndex::WORKERLOCATION: static_cast(impl)->ref(); break; case V8ClassIndex::WORKERNAVIGATOR: static_cast(impl)->ref(); break; #if ENABLE(NOTIFICATIONS) case V8ClassIndex::NOTIFICATIONCENTER: static_cast(impl)->ref(); break; case V8ClassIndex::NOTIFICATION: static_cast(impl)->ref(); break; #endif case V8ClassIndex::DOMCOREEXCEPTION: static_cast(impl)->ref(); break; case V8ClassIndex::RANGEEXCEPTION: static_cast(impl)->ref(); break; case V8ClassIndex::EVENTEXCEPTION: static_cast(impl)->ref(); break; case V8ClassIndex::XMLHTTPREQUESTEXCEPTION: static_cast(impl)->ref(); break; default: ASSERT(false); } result = v8::Persistent::New(object); V8DOMWrapper::setJSWrapperForDOMObject(impl, result); } } return result; } v8::Handle WorkerContextExecutionProxy::convertEventToV8Object(Event* event) { if (!event) return v8::Null(); v8::Handle wrapper = getDOMObjectMap().get(event); if (!wrapper.IsEmpty()) return wrapper; V8ClassIndex::V8WrapperType type = V8ClassIndex::EVENT; if (event->isMessageEvent()) type = V8ClassIndex::MESSAGEEVENT; v8::Handle result = toV8(type, V8ClassIndex::EVENT, event); if (result.IsEmpty()) { // Instantiation failed. Avoid updating the DOM object map and return null which // is already handled by callers of this function in case the event is null. return v8::Null(); } event->ref(); // fast ref V8DOMWrapper::setJSWrapperForDOMObject(event, v8::Persistent::New(result)); return result; } v8::Handle WorkerContextExecutionProxy::convertEventTargetToV8Object(EventTarget* target) { if (!target) return v8::Null(); DedicatedWorkerContext* workerContext = target->toDedicatedWorkerContext(); if (workerContext) return convertWorkerContextToV8Object(workerContext); #if ENABLE(SHARED_WORKERS) SharedWorkerContext* sharedWorkerContext = target->toSharedWorkerContext(); if (sharedWorkerContext) return convertWorkerContextToV8Object(sharedWorkerContext); #endif Worker* worker = target->toWorker(); if (worker) return convertToV8Object(V8ClassIndex::WORKER, worker); #if ENABLE(SHARED_WORKERS) SharedWorker* sharedWorker = target->toSharedWorker(); if (sharedWorker) return convertToV8Object(V8ClassIndex::SHAREDWORKER, sharedWorker); #endif XMLHttpRequest* xhr = target->toXMLHttpRequest(); if (xhr) return convertToV8Object(V8ClassIndex::XMLHTTPREQUEST, xhr); MessagePort* mp = target->toMessagePort(); if (mp) return convertToV8Object(V8ClassIndex::MESSAGEPORT, mp); ASSERT_NOT_REACHED(); return v8::Handle(); } v8::Handle WorkerContextExecutionProxy::convertWorkerContextToV8Object(WorkerContext* workerContext) { if (!workerContext) return v8::Null(); v8::Handle context = workerContext->script()->proxy()->context(); v8::Handle global = context->Global(); ASSERT(!global.IsEmpty()); return global; } v8::Local WorkerContextExecutionProxy::toV8(V8ClassIndex::V8WrapperType descriptorType, V8ClassIndex::V8WrapperType cptrType, void* impl) { v8::Local function; WorkerContextExecutionProxy* proxy = retrieve(); if (proxy) function = V8DOMWrapper::getConstructor(descriptorType, proxy->workerContext()); else function = V8DOMWrapper::getTemplate(descriptorType)->GetFunction(); v8::Local instance = SafeAllocation::newInstance(function); if (!instance.IsEmpty()) // Avoid setting the DOM wrapper for failed allocations. V8DOMWrapper::setDOMWrapper(instance, V8ClassIndex::ToInt(cptrType), impl); return instance; } bool WorkerContextExecutionProxy::forgetV8EventObject(Event* event) { if (getDOMObjectMap().contains(event)) { getDOMObjectMap().forget(event); return true; } return false; } ScriptValue WorkerContextExecutionProxy::evaluate(const String& script, const String& fileName, int baseLine, WorkerContextExecutionState* state) { v8::HandleScope hs; initContextIfNeeded(); v8::Context::Scope scope(m_context); v8::TryCatch exceptionCatcher; v8::Local scriptString = v8ExternalString(script); v8::Handle compiledScript = V8Proxy::compileScript(scriptString, fileName, baseLine); v8::Local result = runScript(compiledScript); if (exceptionCatcher.HasCaught()) { v8::Local message = exceptionCatcher.Message(); state->hadException = true; state->exception = ScriptValue(exceptionCatcher.Exception()); state->errorMessage = toWebCoreString(message->Get()); state->lineNumber = message->GetLineNumber(); state->sourceURL = toWebCoreString(message->GetScriptResourceName()); exceptionCatcher.Reset(); } else state->hadException = false; if (result.IsEmpty() || result->IsUndefined()) return ScriptValue(); return ScriptValue(result); } v8::Local WorkerContextExecutionProxy::runScript(v8::Handle script) { if (script.IsEmpty()) return v8::Local(); // Compute the source string and prevent against infinite recursion. if (m_recursion >= kMaxRecursionDepth) { v8::Local code = v8ExternalString("throw RangeError('Recursion too deep')"); script = V8Proxy::compileScript(code, "", 0); } if (V8Proxy::handleOutOfMemory()) ASSERT(script.IsEmpty()); if (script.IsEmpty()) return v8::Local(); // Run the script and keep track of the current recursion depth. v8::Local result; { m_recursion++; result = script->Run(); m_recursion--; } // Handle V8 internal error situation (Out-of-memory). if (result.IsEmpty()) return v8::Local(); return result; } PassRefPtr WorkerContextExecutionProxy::findOrCreateEventListener(v8::Local object, bool isInline, bool findOnly) { return findOnly ? V8EventListenerList::findWrapper(object, isInline) : V8EventListenerList::findOrCreateWrapper(object, isInline); } void WorkerContextExecutionProxy::trackEvent(Event* event) { m_events.append(event); } } // namespace WebCore #endif // ENABLE(WORKERS)