| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #include "stdafx.h"
- #include "core/AtomLockGuids.h"
- unsigned int MessageBase::s_messageCount = 0;
- LPCWSTR hostName = L"ch.exe";
- extern "C"
- HRESULT __stdcall OnChakraCoreLoadedEntry(TestHooks& testHooks)
- {
- return ChakraRTInterface::OnChakraCoreLoaded(testHooks);
- }
- JsRuntimeAttributes jsrtAttributes = JsRuntimeAttributeAllowScriptInterrupt;
- LPCWSTR JsErrorCodeToString(JsErrorCode jsErrorCode)
- {
- switch (jsErrorCode)
- {
- case JsNoError:
- return L"JsNoError";
- break;
- case JsErrorInvalidArgument:
- return L"JsErrorInvalidArgument";
- break;
- case JsErrorNullArgument:
- return L"JsErrorNullArgument";
- break;
- case JsErrorNoCurrentContext:
- return L"JsErrorNoCurrentContext";
- break;
- case JsErrorInExceptionState:
- return L"JsErrorInExceptionState";
- break;
- case JsErrorNotImplemented:
- return L"JsErrorNotImplemented";
- break;
- case JsErrorWrongThread:
- return L"JsErrorWrongThread";
- break;
- case JsErrorRuntimeInUse:
- return L"JsErrorRuntimeInUse";
- break;
- case JsErrorBadSerializedScript:
- return L"JsErrorBadSerializedScript";
- break;
- case JsErrorInDisabledState:
- return L"JsErrorInDisabledState";
- break;
- case JsErrorCannotDisableExecution:
- return L"JsErrorCannotDisableExecution";
- break;
- case JsErrorHeapEnumInProgress:
- return L"JsErrorHeapEnumInProgress";
- break;
- case JsErrorOutOfMemory:
- return L"JsErrorOutOfMemory";
- break;
- case JsErrorScriptException:
- return L"JsErrorScriptException";
- break;
- case JsErrorScriptCompile:
- return L"JsErrorScriptCompile";
- break;
- case JsErrorScriptTerminated:
- return L"JsErrorScriptTerminated";
- break;
- case JsErrorFatal:
- return L"JsErrorFatal";
- break;
- default:
- return L"<unknown>";
- break;
- }
- }
- #define IfJsErrorFailLog(expr) do { JsErrorCode jsErrorCode = expr; if ((jsErrorCode) != JsNoError) { fwprintf(stderr, L"ERROR: " TEXT(#expr) L" failed. JsErrorCode=0x%x (%s)\n", jsErrorCode, JsErrorCodeToString(jsErrorCode)); fflush(stderr); goto Error; } } while (0)
- int HostExceptionFilter(int exceptionCode, _EXCEPTION_POINTERS *ep)
- {
- ChakraRTInterface::NotifyUnhandledException(ep);
- bool crashOnException = false;
- ChakraRTInterface::GetCrashOnExceptionFlag(&crashOnException);
- if (exceptionCode == EXCEPTION_BREAKPOINT || (crashOnException && exceptionCode != 0xE06D7363))
- {
- return EXCEPTION_CONTINUE_SEARCH;
- }
- fwprintf(stderr, L"FATAL ERROR: %ls failed due to exception code %x\n", hostName, exceptionCode);
- fflush(stderr);
- return EXCEPTION_EXECUTE_HANDLER;
- }
- void __stdcall PrintUsageFormat()
- {
- wprintf(L"\nUsage: ch.exe [flaglist] filename\n");
- }
- void __stdcall PrintUsage()
- {
- PrintUsageFormat();
- wprintf(L"Try 'ch.exe -?' for help\n");
- }
- // On success the param byteCodeBuffer will be allocated in the function.
- // The caller of this function should de-allocate the memory.
- HRESULT GetSerializedBuffer(LPCOLESTR fileContents, __out BYTE **byteCodeBuffer, __out DWORD *byteCodeBufferSize)
- {
- HRESULT hr = S_OK;
- *byteCodeBuffer = nullptr;
- *byteCodeBufferSize = 0;
- BYTE *bcBuffer = nullptr;
- DWORD bcBufferSize = 0;
- IfJsErrorFailLog(ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &bcBufferSize));
- // Above call will return the size of the buffer only, once succeed we need to allocate memory of that much and call it again.
- if (bcBufferSize == 0)
- {
- AssertMsg(false, "bufferSize should not be zero");
- IfFailGo(E_FAIL);
- }
- bcBuffer = new BYTE[bcBufferSize];
- DWORD newBcBufferSize = bcBufferSize;
- IfJsErrorFailLog(ChakraRTInterface::JsSerializeScript(fileContents, bcBuffer, &newBcBufferSize));
- Assert(bcBufferSize == newBcBufferSize);
- Error:
- if (hr != S_OK)
- {
- // In the failure release the buffer
- if (bcBuffer != nullptr)
- {
- delete[] bcBuffer;
- }
- }
- else
- {
- *byteCodeBuffer = bcBuffer;
- *byteCodeBufferSize = bcBufferSize;
- }
- return hr;
- }
- HRESULT CreateLibraryByteCodeHeader(LPCOLESTR fileContents, BYTE * contentsRaw, DWORD lengthBytes, LPCWSTR bcFullPath, LPCWSTR libraryNameWide)
- {
- HRESULT hr = S_OK;
- HANDLE bcFileHandle = nullptr;
- BYTE *bcBuffer = nullptr;
- DWORD bcBufferSize = 0;
- IfFailGo(GetSerializedBuffer(fileContents, &bcBuffer, &bcBufferSize));
- bcFileHandle = CreateFile(bcFullPath, GENERIC_WRITE, FILE_SHARE_DELETE, nullptr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr);
- if (bcFileHandle == INVALID_HANDLE_VALUE)
- {
- IfFailGo(E_FAIL);
- }
- DWORD written;
- // For validating the header file against the library file
- auto outputStr =
- "//-------------------------------------------------------------------------------------------------------\r\n"
- "// Copyright (C) Microsoft. All rights reserved.\r\n"
- "// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.\r\n"
- "//-------------------------------------------------------------------------------------------------------\r\n"
- "#if 0\r\n";
- IfFalseGo(WriteFile(bcFileHandle, outputStr, (DWORD)strlen(outputStr), &written, nullptr));
- IfFalseGo(WriteFile(bcFileHandle, contentsRaw, lengthBytes, &written, nullptr));
- if (lengthBytes < 2 || contentsRaw[lengthBytes - 2] != '\r' || contentsRaw[lengthBytes - 1] != '\n')
- {
- outputStr = "\r\n#endif\r\n";
- }
- else
- {
- outputStr = "#endif\r\n";
- }
- IfFalseGo(WriteFile(bcFileHandle, outputStr, (DWORD)strlen(outputStr), &written, nullptr));
- // Write out the bytecode
- outputStr = "namespace Js\r\n{\r\n const char Library_Bytecode_";
- IfFalseGo(WriteFile(bcFileHandle, outputStr, (DWORD)strlen(outputStr), &written, nullptr));
- size_t convertedChars;
- char libraryNameNarrow[MAX_PATH + 1];
- IfFalseGo((wcstombs_s(&convertedChars, libraryNameNarrow, libraryNameWide, _TRUNCATE) == 0));
- IfFalseGo(WriteFile(bcFileHandle, libraryNameNarrow, (DWORD)strlen(libraryNameNarrow), &written, nullptr));
- outputStr = "[] = {\r\n/* 00000000 */";
- IfFalseGo(WriteFile(bcFileHandle, outputStr, (DWORD)strlen(outputStr), &written, nullptr));
- for (unsigned int i = 0; i < bcBufferSize; i++)
- {
- char scratch[6];
- auto scratchLen = sizeof(scratch);
- int num = _snprintf_s(scratch, scratchLen, " 0x%02X", bcBuffer[i]);
- Assert(num == 5);
- IfFalseGo(WriteFile(bcFileHandle, scratch, (DWORD)(scratchLen - 1), &written, nullptr));
- // Add a comma and a space if this is not the last item
- if (i < bcBufferSize - 1)
- {
- char commaSpace[2];
- _snprintf_s(commaSpace, sizeof(commaSpace), ","); // close quote, new line, offset and open quote
- IfFalseGo(WriteFile(bcFileHandle, commaSpace, (DWORD)strlen(commaSpace), &written, nullptr));
- }
- // Add a line break every 16 scratches, primarily so the compiler doesn't complain about the string being too long.
- // Also, won't add for the last scratch
- if (i % 16 == 15 && i < bcBufferSize - 1)
- {
- char offset[17];
- _snprintf_s(offset, sizeof(offset), "\r\n/* %08X */", i + 1); // close quote, new line, offset and open quote
- IfFalseGo(WriteFile(bcFileHandle, offset, (DWORD)strlen(offset), &written, nullptr));
- }
- }
- outputStr = "};\r\n\r\n";
- IfFalseGo(WriteFile(bcFileHandle, outputStr, (DWORD)strlen(outputStr), &written, nullptr));
- outputStr = "}\r\n";
- IfFalseGo(WriteFile(bcFileHandle, outputStr, (DWORD)strlen(outputStr), &written, nullptr));
- Error:
- if (bcFileHandle != nullptr)
- {
- CloseHandle(bcFileHandle);
- }
- if (bcBuffer != nullptr)
- {
- delete[] bcBuffer;
- }
- return hr;
- }
- static void CALLBACK PromiseContinuationCallback(JsValueRef task, void *callbackState)
- {
- Assert(task != JS_INVALID_REFERENCE);
- Assert(callbackState != JS_INVALID_REFERENCE);
- MessageQueue * messageQueue = (MessageQueue *)callbackState;
- WScriptJsrt::CallbackMessage *msg = new WScriptJsrt::CallbackMessage(0, task);
- messageQueue->Push(msg);
- }
- HRESULT RunScript(LPCWSTR fileName, LPCWSTR fileContents, BYTE *bcBuffer, wchar_t *fullPath)
- {
- HRESULT hr = S_OK;
- MessageQueue * messageQueue = new MessageQueue();
- WScriptJsrt::AddMessageQueue(messageQueue);
- IfJsErrorFailLog(ChakraRTInterface::JsSetPromiseContinuationCallback(PromiseContinuationCallback, (void*)messageQueue));
- Assert(fileContents != nullptr || bcBuffer != nullptr);
- JsErrorCode runScript;
- if (bcBuffer != nullptr)
- {
- runScript = ChakraRTInterface::JsRunSerializedScript(fileContents, bcBuffer, WScriptJsrt::GetNextSourceContext(), fullPath, nullptr /*result*/);
- }
- else
- {
- runScript = ChakraRTInterface::JsRunScript(fileContents, WScriptJsrt::GetNextSourceContext(), fullPath, nullptr /*result*/);
- }
- if (runScript != JsNoError)
- {
- WScriptJsrt::PrintException(fileName, runScript);
- }
- else
- {
- // Repeatedly flush the message queue until it's empty. It is necessary to loop on this
- // because setTimeout can add scripts to execute.
- do
- {
- IfFailGo(messageQueue->ProcessAll(fileName));
- } while (!messageQueue->IsEmpty());
- }
- Error:
- if (messageQueue != nullptr)
- {
- delete messageQueue;
- }
- return hr;
- }
- HRESULT CreateAndRunSerializedScript(LPCWSTR fileName, LPCWSTR fileContents, wchar_t *fullPath)
- {
- HRESULT hr = S_OK;
- JsRuntimeHandle runtime = JS_INVALID_RUNTIME_HANDLE;
- JsContextRef context = JS_INVALID_REFERENCE, current = JS_INVALID_REFERENCE;
- BYTE *bcBuffer = nullptr;
- DWORD bcBufferSize = 0;
- IfFailGo(GetSerializedBuffer(fileContents, &bcBuffer, &bcBufferSize));
- // Bytecode buffer is created in one runtime and will be executed on different runtime.
- IfJsErrorFailLog(ChakraRTInterface::JsCreateRuntime(jsrtAttributes, nullptr, &runtime));
- IfJsErrorFailLog(ChakraRTInterface::JsCreateContext(runtime, &context));
- IfJsErrorFailLog(ChakraRTInterface::JsGetCurrentContext(¤t));
- IfJsErrorFailLog(ChakraRTInterface::JsSetCurrentContext(context));
- // Initialized the WScript object on the new context
- if (!WScriptJsrt::Initialize())
- {
- IfFailGo(E_FAIL);
- }
- IfFailGo(RunScript(fileName, fileContents, bcBuffer, fullPath));
- Error:
- if (bcBuffer != nullptr)
- {
- delete[] bcBuffer;
- }
- if (current != JS_INVALID_REFERENCE)
- {
- ChakraRTInterface::JsSetCurrentContext(current);
- }
- if (runtime != JS_INVALID_RUNTIME_HANDLE)
- {
- ChakraRTInterface::JsDisposeRuntime(runtime);
- }
- return hr;
- }
- HRESULT ExecuteTest(LPCWSTR fileName)
- {
- HRESULT hr = S_OK;
- LPCWSTR fileContents = nullptr;
- JsRuntimeHandle runtime = JS_INVALID_RUNTIME_HANDLE;
- bool isUtf8 = false;
- LPCOLESTR contentsRaw = nullptr;
- UINT lengthBytes = 0;
- hr = Helpers::LoadScriptFromFile(fileName, fileContents, &isUtf8, &contentsRaw, &lengthBytes);
- contentsRaw; lengthBytes; // Unused for now.
- IfFailGo(hr);
- if (HostConfigFlags::flags.GenerateLibraryByteCodeHeaderIsEnabled)
- {
- jsrtAttributes = (JsRuntimeAttributes)(jsrtAttributes | JsRuntimeAttributeSerializeLibraryByteCode);
- }
- IfJsErrorFailLog(ChakraRTInterface::JsCreateRuntime(jsrtAttributes, nullptr, &runtime));
- JsContextRef context = JS_INVALID_REFERENCE;
- IfJsErrorFailLog(ChakraRTInterface::JsCreateContext(runtime, &context));
- IfJsErrorFailLog(ChakraRTInterface::JsSetCurrentContext(context));
- if (!WScriptJsrt::Initialize())
- {
- IfFailGo(E_FAIL);
- }
- wchar_t fullPath[_MAX_PATH];
- if (_wfullpath(fullPath, fileName, _MAX_PATH) == nullptr)
- {
- IfFailGo(E_FAIL);
- }
- // canonicalize that path name to lower case for the profile storage
- size_t len = wcslen(fullPath);
- for (size_t i = 0; i < len; i++)
- {
- fullPath[i] = towlower(fullPath[i]);
- }
- if (HostConfigFlags::flags.GenerateLibraryByteCodeHeaderIsEnabled)
- {
- if (isUtf8)
- {
- if (HostConfigFlags::flags.GenerateLibraryByteCodeHeader != nullptr && *HostConfigFlags::flags.GenerateLibraryByteCodeHeader != L'\0')
- {
- WCHAR libraryName[_MAX_PATH];
- WCHAR ext[_MAX_EXT];
- _wsplitpath_s(fullPath, NULL, 0, NULL, 0, libraryName, _countof(libraryName), ext, _countof(ext));
- IfFailGo(CreateLibraryByteCodeHeader(fileContents, (BYTE*)contentsRaw, lengthBytes, HostConfigFlags::flags.GenerateLibraryByteCodeHeader, libraryName));
- }
- else
- {
- fwprintf(stderr, L"FATAL ERROR: -GenerateLibraryByteCodeHeader must provide the file name, i.e., -GenerateLibraryByteCodeHeader:<bytecode file name>, exiting\n");
- IfFailGo(E_FAIL);
- }
- }
- else
- {
- fwprintf(stderr, L"FATAL ERROR: GenerateLibraryByteCodeHeader flag can only be used on UTF8 file, exiting\n");
- IfFailGo(E_FAIL);
- }
- }
- else if (HostConfigFlags::flags.SerializedIsEnabled)
- {
- if (isUtf8)
- {
- CreateAndRunSerializedScript(fileName, fileContents, fullPath);
- }
- else
- {
- fwprintf(stderr, L"FATAL ERROR: Serialized flag can only be used on UTF8 file, exiting\n");
- IfFailGo(E_FAIL);
- }
- }
- else
- {
- IfFailGo(RunScript(fileName, fileContents, nullptr, fullPath));
- }
- Error:
- ChakraRTInterface::JsSetCurrentContext(nullptr);
- if (runtime != JS_INVALID_RUNTIME_HANDLE)
- {
- ChakraRTInterface::JsDisposeRuntime(runtime);
- }
- _flushall();
- return hr;
- }
- HRESULT ExecuteTestWithMemoryCheck(BSTR fileName)
- {
- HRESULT hr = E_FAIL;
- #ifdef CHECK_MEMORY_LEAK
- // Always check memory leak, unless user specified the flag already
- if (!ChakraRTInterface::IsEnabledCheckMemoryFlag())
- {
- ChakraRTInterface::SetCheckMemoryLeakFlag(true);
- }
- // Disable the output in case an unhandled exception happens
- // We will re-enable it if there is no unhandled exceptions
- ChakraRTInterface::SetEnableCheckMemoryLeakOutput(false);
- #endif
- __try
- {
- hr = ExecuteTest(fileName);
- }
- __except (HostExceptionFilter(GetExceptionCode(), GetExceptionInformation()))
- {
- _flushall();
- // Exception happened, so we probably didn't clean up properly,
- // Don't exit normally, just terminate
- TerminateProcess(::GetCurrentProcess(), GetExceptionCode());
- }
- _flushall();
- #ifdef CHECK_MEMORY_LEAK
- ChakraRTInterface::SetEnableCheckMemoryLeakOutput(true);
- #endif
- return hr;
- }
- unsigned int WINAPI StaticThreadProc(void *lpParam)
- {
- ChakraRTInterface::ArgInfo* argInfo = static_cast<ChakraRTInterface::ArgInfo* >(lpParam);
- _endthreadex(ExecuteTestWithMemoryCheck(*(argInfo->filename)));
- return 0;
- }
- int _cdecl wmain(int argc, __in_ecount(argc) LPWSTR argv[])
- {
- if (argc < 2)
- {
- PrintUsage();
- return EXIT_FAILURE;
- }
- HostConfigFlags::pfnPrintUsage = PrintUsageFormat;
- ATOM lock = ::AddAtom(szChakraCoreLock);
- AssertMsg(lock, "failed to lock chakracore.dll");
- HostConfigFlags::HandleArgsFlag(argc, argv);
- CComBSTR fileName;
- ChakraRTInterface::ArgInfo argInfo = { argc, argv, PrintUsage, &fileName.m_str };
- HINSTANCE chakraLibrary = ChakraRTInterface::LoadChakraDll(argInfo);
- if (chakraLibrary != nullptr)
- {
- HANDLE threadHandle;
- threadHandle = reinterpret_cast<HANDLE>(_beginthreadex(0, 0, &StaticThreadProc, &argInfo, STACK_SIZE_PARAM_IS_A_RESERVATION, 0));
- if (threadHandle != nullptr)
- {
- DWORD waitResult = WaitForSingleObject(threadHandle, INFINITE);
- Assert(waitResult == WAIT_OBJECT_0);
- CloseHandle(threadHandle);
- }
- else
- {
- fwprintf(stderr, L"FATAL ERROR: failed to create worker thread error code %d, exiting\n", errno);
- AssertMsg(false, "failed to create worker thread");
- }
- ChakraRTInterface::UnloadChakraDll(chakraLibrary);
- }
- return 0;
- }
|