1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "gin/public/isolate_holder.h"
10 #include "base/files/memory_mapped_file.h"
11 #include "base/logging.h"
12 #include "base/message_loop/message_loop.h"
13 #include "base/rand_util.h"
14 #include "base/strings/sys_string_conversions.h"
15 #include "base/sys_info.h"
16 #include "crypto/sha2.h"
17 #include "gin/array_buffer.h"
18 #include "gin/debug_impl.h"
19 #include "gin/function_template.h"
20 #include "gin/per_isolate_data.h"
21 #include "gin/public/v8_platform.h"
22 #include "gin/run_microtasks_observer.h"
24 #if defined(V8_USE_EXTERNAL_STARTUP_DATA)
25 #if defined(OS_MACOSX)
26 #include "base/mac/foundation_util.h"
28 #include "base/path_service.h"
29 #endif // V8_USE_EXTERNAL_STARTUP_DATA
35 v8::ArrayBuffer::Allocator
* g_array_buffer_allocator
= NULL
;
37 bool GenerateEntropy(unsigned char* buffer
, size_t amount
) {
38 base::RandBytes(buffer
, amount
);
42 base::MemoryMappedFile
* g_mapped_natives
= NULL
;
43 base::MemoryMappedFile
* g_mapped_snapshot
= NULL
;
45 #if defined(V8_USE_EXTERNAL_STARTUP_DATA)
46 bool MapV8Files(base::FilePath
* natives_path
,
47 base::FilePath
* snapshot_path
,
50 base::MemoryMappedFile::Region natives_region
=
51 base::MemoryMappedFile::Region::kWholeFile
,
52 base::MemoryMappedFile::Region snapshot_region
=
53 base::MemoryMappedFile::Region::kWholeFile
) {
54 int flags
= base::File::FLAG_OPEN
| base::File::FLAG_READ
;
56 g_mapped_natives
= new base::MemoryMappedFile
;
57 if (!g_mapped_natives
->IsValid()) {
60 ? !g_mapped_natives
->Initialize(base::File(*natives_path
, flags
),
62 : !g_mapped_natives
->Initialize(base::File(natives_fd
),
65 if (!g_mapped_natives
->Initialize(base::File(*natives_path
, flags
),
68 delete g_mapped_natives
;
69 g_mapped_natives
= NULL
;
70 LOG(FATAL
) << "Couldn't mmap v8 natives data file";
75 g_mapped_snapshot
= new base::MemoryMappedFile
;
76 if (!g_mapped_snapshot
->IsValid()) {
79 ? !g_mapped_snapshot
->Initialize(base::File(*snapshot_path
, flags
),
81 : !g_mapped_snapshot
->Initialize(base::File(snapshot_fd
),
84 if (!g_mapped_snapshot
->Initialize(base::File(*snapshot_path
, flags
),
87 delete g_mapped_snapshot
;
88 g_mapped_snapshot
= NULL
;
89 LOG(ERROR
) << "Couldn't mmap v8 snapshot data file";
97 #if defined(V8_VERIFY_EXTERNAL_STARTUP_DATA)
98 bool VerifyV8SnapshotFile(base::MemoryMappedFile
* snapshot_file
,
99 const unsigned char* fingerprint
) {
100 unsigned char output
[crypto::kSHA256Length
];
101 crypto::SHA256HashString(
102 base::StringPiece(reinterpret_cast<const char*>(snapshot_file
->data()),
103 snapshot_file
->length()),
104 output
, sizeof(output
));
105 return !memcmp(fingerprint
, output
, sizeof(output
));
107 #endif // V8_VERIFY_EXTERNAL_STARTUP_DATA
109 #if !defined(OS_MACOSX)
110 const int v8_snapshot_dir
=
111 #if defined(OS_ANDROID)
112 base::DIR_ANDROID_APP_DATA
;
113 #elif defined(OS_POSIX)
115 #elif defined(OS_WIN)
120 #endif // V8_USE_EXTERNAL_STARTUP_DATA
124 #if defined(V8_USE_EXTERNAL_STARTUP_DATA)
126 #if defined(V8_VERIFY_EXTERNAL_STARTUP_DATA)
127 // Defined in gen/gin/v8_snapshot_fingerprint.cc
128 extern const unsigned char g_natives_fingerprint
[];
129 extern const unsigned char g_snapshot_fingerprint
[];
130 #endif // V8_VERIFY_EXTERNAL_STARTUP_DATA
132 const char IsolateHolder::kNativesFileName
[] = "natives_blob.bin";
133 const char IsolateHolder::kSnapshotFileName
[] = "snapshot_blob.bin";
136 bool IsolateHolder::LoadV8Snapshot() {
137 if (g_mapped_natives
&& g_mapped_snapshot
)
140 #if !defined(OS_MACOSX)
141 base::FilePath data_path
;
142 PathService::Get(v8_snapshot_dir
, &data_path
);
143 DCHECK(!data_path
.empty());
145 base::FilePath natives_path
= data_path
.AppendASCII(kNativesFileName
);
146 base::FilePath snapshot_path
= data_path
.AppendASCII(kSnapshotFileName
);
147 #else // !defined(OS_MACOSX)
148 base::ScopedCFTypeRef
<CFStringRef
> natives_file_name(
149 base::SysUTF8ToCFStringRef(kNativesFileName
));
150 base::FilePath natives_path
= base::mac::PathForFrameworkBundleResource(
152 base::ScopedCFTypeRef
<CFStringRef
> snapshot_file_name(
153 base::SysUTF8ToCFStringRef(kSnapshotFileName
));
154 base::FilePath snapshot_path
= base::mac::PathForFrameworkBundleResource(
156 DCHECK(!natives_path
.empty());
157 DCHECK(!snapshot_path
.empty());
158 #endif // !defined(OS_MACOSX)
160 if (!MapV8Files(&natives_path
, &snapshot_path
))
163 #if defined(V8_VERIFY_EXTERNAL_STARTUP_DATA)
164 return VerifyV8SnapshotFile(g_mapped_natives
, g_natives_fingerprint
) &&
165 VerifyV8SnapshotFile(g_mapped_snapshot
, g_snapshot_fingerprint
);
168 #endif // V8_VERIFY_EXTERNAL_STARTUP_DATA
172 bool IsolateHolder::LoadV8SnapshotFd(int natives_fd
,
173 int64 natives_offset
,
176 int64 snapshot_offset
,
177 int64 snapshot_size
) {
178 if (g_mapped_natives
&& g_mapped_snapshot
)
181 base::MemoryMappedFile::Region natives_region
=
182 base::MemoryMappedFile::Region::kWholeFile
;
183 if (natives_size
!= 0 || natives_offset
!= 0) {
185 base::MemoryMappedFile::Region(natives_offset
, natives_size
);
188 base::MemoryMappedFile::Region snapshot_region
=
189 base::MemoryMappedFile::Region::kWholeFile
;
190 if (natives_size
!= 0 || natives_offset
!= 0) {
192 base::MemoryMappedFile::Region(snapshot_offset
, snapshot_size
);
196 NULL
, NULL
, natives_fd
, snapshot_fd
, natives_region
, snapshot_region
);
198 #endif // V8_USE_EXTERNAL_STARTUP_DATA
201 void IsolateHolder::GetV8ExternalSnapshotData(const char** natives_data_out
,
202 int* natives_size_out
,
203 const char** snapshot_data_out
,
204 int* snapshot_size_out
) {
205 if (!g_mapped_natives
|| !g_mapped_snapshot
) {
206 *natives_data_out
= *snapshot_data_out
= NULL
;
207 *natives_size_out
= *snapshot_size_out
= 0;
210 *natives_data_out
= reinterpret_cast<const char*>(g_mapped_natives
->data());
211 *snapshot_data_out
= reinterpret_cast<const char*>(g_mapped_snapshot
->data());
212 *natives_size_out
= static_cast<int>(g_mapped_natives
->length());
213 *snapshot_size_out
= static_cast<int>(g_mapped_snapshot
->length());
216 IsolateHolder::IsolateHolder() {
217 CHECK(g_array_buffer_allocator
)
218 << "You need to invoke gin::IsolateHolder::Initialize first";
219 v8::Isolate::CreateParams params
;
220 params
.entry_hook
= DebugImpl::GetFunctionEntryHook();
221 params
.code_event_handler
= DebugImpl::GetJitCodeEventHandler();
222 params
.constraints
.ConfigureDefaults(base::SysInfo::AmountOfPhysicalMemory(),
223 base::SysInfo::AmountOfVirtualMemory(),
224 base::SysInfo::NumberOfProcessors());
225 isolate_
= v8::Isolate::New(params
);
226 isolate_data_
.reset(new PerIsolateData(isolate_
, g_array_buffer_allocator
));
231 isolate_
->GetCodeRange(&code_range
, &size
);
232 Debug::CodeRangeCreatedCallback callback
=
233 DebugImpl::GetCodeRangeCreatedCallback();
234 if (code_range
&& size
&& callback
)
235 callback(code_range
, size
);
240 IsolateHolder::~IsolateHolder() {
241 if (task_observer_
.get())
242 base::MessageLoop::current()->RemoveTaskObserver(task_observer_
.get());
247 isolate_
->GetCodeRange(&code_range
, &size
);
248 Debug::CodeRangeDeletedCallback callback
=
249 DebugImpl::GetCodeRangeDeletedCallback();
250 if (code_range
&& callback
)
251 callback(code_range
);
254 isolate_data_
.reset();
259 void IsolateHolder::Initialize(ScriptMode mode
,
260 v8::ArrayBuffer::Allocator
* allocator
) {
262 static bool v8_is_initialized
= false;
263 if (v8_is_initialized
)
265 v8::V8::InitializePlatform(V8Platform::Get());
266 v8::V8::SetArrayBufferAllocator(allocator
);
267 g_array_buffer_allocator
= allocator
;
268 if (mode
== gin::IsolateHolder::kStrictMode
) {
269 static const char v8_flags
[] = "--use_strict";
270 v8::V8::SetFlagsFromString(v8_flags
, sizeof(v8_flags
) - 1);
272 v8::V8::SetEntropySource(&GenerateEntropy
);
273 #if defined(V8_USE_EXTERNAL_STARTUP_DATA)
274 v8::StartupData natives
;
275 natives
.data
= reinterpret_cast<const char*>(g_mapped_natives
->data());
276 natives
.raw_size
= static_cast<int>(g_mapped_natives
->length());
277 v8::V8::SetNativesDataBlob(&natives
);
279 v8::StartupData snapshot
;
280 snapshot
.data
= reinterpret_cast<const char*>(g_mapped_snapshot
->data());
281 snapshot
.raw_size
= static_cast<int>(g_mapped_snapshot
->length());
282 v8::V8::SetSnapshotDataBlob(&snapshot
);
283 #endif // V8_USE_EXTERNAL_STARTUP_DATA
284 v8::V8::Initialize();
285 v8_is_initialized
= true;
288 void IsolateHolder::AddRunMicrotasksObserver() {
289 DCHECK(!task_observer_
.get());
290 task_observer_
.reset(new RunMicrotasksObserver(isolate_
));;
291 base::MessageLoop::current()->AddTaskObserver(task_observer_
.get());
294 void IsolateHolder::RemoveRunMicrotasksObserver() {
295 DCHECK(task_observer_
.get());
296 base::MessageLoop::current()->RemoveTaskObserver(task_observer_
.get());
297 task_observer_
.reset();