Bug 1893155 - Part 6: Correct constant for minimum epoch day. r=spidermonkey-reviewer...
[gecko.git] / startupcache / StartupCache.cpp
blob9c066a195123c8ba27a8d8441565f498558a930d
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "prio.h"
8 #include "PLDHashTable.h"
9 #include "mozilla/IOInterposer.h"
10 #include "mozilla/AutoMemMap.h"
11 #include "mozilla/IOBuffers.h"
12 #include "mozilla/MemoryReporting.h"
13 #include "mozilla/MemUtils.h"
14 #include "mozilla/MmapFaultHandler.h"
15 #include "mozilla/ResultExtensions.h"
16 #include "mozilla/scache/StartupCache.h"
17 #include "mozilla/ScopeExit.h"
18 #include "mozilla/Try.h"
20 #include "nsClassHashtable.h"
21 #include "nsComponentManagerUtils.h"
22 #include "nsCRT.h"
23 #include "nsDirectoryServiceUtils.h"
24 #include "nsIClassInfo.h"
25 #include "nsIFile.h"
26 #include "nsIObserver.h"
27 #include "nsIOutputStream.h"
28 #include "nsISupports.h"
29 #include "nsITimer.h"
30 #include "mozilla/Omnijar.h"
31 #include "prenv.h"
32 #include "mozilla/Telemetry.h"
33 #include "nsThreadUtils.h"
34 #include "nsXULAppAPI.h"
35 #include "nsIProtocolHandler.h"
36 #include "GeckoProfiler.h"
37 #include "nsAppRunner.h"
38 #include "xpcpublic.h"
39 #ifdef MOZ_BACKGROUNDTASKS
40 # include "mozilla/BackgroundTasks.h"
41 #endif
43 #if defined(XP_WIN)
44 # include <windows.h>
45 #endif
47 #ifdef IS_BIG_ENDIAN
48 # define SC_ENDIAN "big"
49 #else
50 # define SC_ENDIAN "little"
51 #endif
53 #if PR_BYTES_PER_WORD == 4
54 # define SC_WORDSIZE "4"
55 #else
56 # define SC_WORDSIZE "8"
57 #endif
59 using namespace mozilla::Compression;
61 namespace mozilla {
62 namespace scache {
64 MOZ_DEFINE_MALLOC_SIZE_OF(StartupCacheMallocSizeOf)
66 NS_IMETHODIMP
67 StartupCache::CollectReports(nsIHandleReportCallback* aHandleReport,
68 nsISupports* aData, bool aAnonymize) {
69 MutexAutoLock lock(mTableLock);
70 MOZ_COLLECT_REPORT(
71 "explicit/startup-cache/mapping", KIND_NONHEAP, UNITS_BYTES,
72 mCacheData.nonHeapSizeOfExcludingThis(),
73 "Memory used to hold the mapping of the startup cache from file. "
74 "This memory is likely to be swapped out shortly after start-up.");
76 MOZ_COLLECT_REPORT("explicit/startup-cache/data", KIND_HEAP, UNITS_BYTES,
77 HeapSizeOfIncludingThis(StartupCacheMallocSizeOf),
78 "Memory used by the startup cache for things other than "
79 "the file mapping.");
81 return NS_OK;
84 static const uint8_t MAGIC[] = "startupcache0002";
85 // This is a heuristic value for how much to reserve for mTable to avoid
86 // rehashing. This is not a hard limit in release builds, but it is in
87 // debug builds as it should be stable. If we exceed this number we should
88 // just increase it.
89 static const size_t STARTUP_CACHE_RESERVE_CAPACITY = 450;
90 // This is a hard limit which we will assert on, to ensure that we don't
91 // have some bug causing runaway cache growth.
92 static const size_t STARTUP_CACHE_MAX_CAPACITY = 5000;
94 // Not const because we change it for gtests.
95 static uint8_t STARTUP_CACHE_WRITE_TIMEOUT = 60;
97 #define STARTUP_CACHE_NAME "startupCache." SC_WORDSIZE "." SC_ENDIAN
99 static inline Result<Ok, nsresult> Write(PRFileDesc* fd, const void* data,
100 int32_t len) {
101 if (PR_Write(fd, data, len) != len) {
102 return Err(NS_ERROR_FAILURE);
104 return Ok();
107 static inline Result<Ok, nsresult> Seek(PRFileDesc* fd, int32_t offset) {
108 if (PR_Seek(fd, offset, PR_SEEK_SET) == -1) {
109 return Err(NS_ERROR_FAILURE);
111 return Ok();
114 static nsresult MapLZ4ErrorToNsresult(size_t aError) {
115 return NS_ERROR_FAILURE;
118 StartupCache* StartupCache::GetSingletonNoInit() {
119 return StartupCache::gStartupCache;
122 StartupCache* StartupCache::GetSingleton() {
123 #ifdef MOZ_BACKGROUNDTASKS
124 if (BackgroundTasks::IsBackgroundTaskMode()) {
125 return nullptr;
127 #endif
129 if (!gStartupCache) {
130 if (!XRE_IsParentProcess()) {
131 return nullptr;
133 #ifdef MOZ_DISABLE_STARTUPCACHE
134 return nullptr;
135 #else
136 StartupCache::InitSingleton();
137 #endif
140 return StartupCache::gStartupCache;
143 void StartupCache::DeleteSingleton() { StartupCache::gStartupCache = nullptr; }
145 nsresult StartupCache::InitSingleton() {
146 nsresult rv;
147 StartupCache::gStartupCache = new StartupCache();
149 rv = StartupCache::gStartupCache->Init();
150 if (NS_FAILED(rv)) {
151 StartupCache::gStartupCache = nullptr;
153 return rv;
156 StaticRefPtr<StartupCache> StartupCache::gStartupCache;
157 bool StartupCache::gShutdownInitiated;
158 bool StartupCache::gIgnoreDiskCache;
159 bool StartupCache::gFoundDiskCacheOnInit;
161 NS_IMPL_ISUPPORTS(StartupCache, nsIMemoryReporter)
163 StartupCache::StartupCache()
164 : mTableLock("StartupCache::mTableLock"),
165 mDirty(false),
166 mWrittenOnce(false),
167 mCurTableReferenced(false),
168 mRequestedCount(0),
169 mCacheEntriesBaseOffset(0) {}
171 StartupCache::~StartupCache() { UnregisterWeakMemoryReporter(this); }
173 nsresult StartupCache::Init() {
174 // workaround for bug 653936
175 nsCOMPtr<nsIProtocolHandler> jarInitializer(
176 do_GetService(NS_NETWORK_PROTOCOL_CONTRACTID_PREFIX "jar"));
178 nsresult rv;
180 if (mozilla::RunningGTest()) {
181 STARTUP_CACHE_WRITE_TIMEOUT = 3;
184 // This allows to override the startup cache filename
185 // which is useful from xpcshell, when there is no ProfLDS directory to keep
186 // cache in.
187 char* env = PR_GetEnv("MOZ_STARTUP_CACHE");
188 if (env && *env) {
189 rv = NS_NewLocalFile(NS_ConvertUTF8toUTF16(env), false,
190 getter_AddRefs(mFile));
191 } else {
192 nsCOMPtr<nsIFile> file;
193 rv = NS_GetSpecialDirectory("ProfLDS", getter_AddRefs(file));
194 if (NS_FAILED(rv)) {
195 // return silently, this will fail in mochitests's xpcshell process.
196 return rv;
199 rv = file->AppendNative("startupCache"_ns);
200 NS_ENSURE_SUCCESS(rv, rv);
202 // Try to create the directory if it's not there yet
203 rv = file->Create(nsIFile::DIRECTORY_TYPE, 0777);
204 if (NS_FAILED(rv) && rv != NS_ERROR_FILE_ALREADY_EXISTS) return rv;
206 rv = file->AppendNative(nsLiteralCString(STARTUP_CACHE_NAME));
208 NS_ENSURE_SUCCESS(rv, rv);
210 mFile = file;
213 NS_ENSURE_TRUE(mFile, NS_ERROR_UNEXPECTED);
215 mObserverService = do_GetService("@mozilla.org/observer-service;1");
217 if (!mObserverService) {
218 NS_WARNING("Could not get observerService.");
219 return NS_ERROR_UNEXPECTED;
222 mListener = new StartupCacheListener();
223 rv = mObserverService->AddObserver(mListener, NS_XPCOM_SHUTDOWN_OBSERVER_ID,
224 false);
225 NS_ENSURE_SUCCESS(rv, rv);
226 rv = mObserverService->AddObserver(mListener, "startupcache-invalidate",
227 false);
228 NS_ENSURE_SUCCESS(rv, rv);
229 rv = mObserverService->AddObserver(mListener, "intl:app-locales-changed",
230 false);
231 NS_ENSURE_SUCCESS(rv, rv);
234 MutexAutoLock lock(mTableLock);
235 auto result = LoadArchive();
236 rv = result.isErr() ? result.unwrapErr() : NS_OK;
239 gFoundDiskCacheOnInit = rv != NS_ERROR_FILE_NOT_FOUND;
241 // Sometimes we don't have a cache yet, that's ok.
242 // If it's corrupted, just remove it and start over.
243 if (gIgnoreDiskCache || (NS_FAILED(rv) && rv != NS_ERROR_FILE_NOT_FOUND)) {
244 NS_WARNING("Failed to load startupcache file correctly, removing!");
245 InvalidateCache();
248 RegisterWeakMemoryReporter(this);
249 mDecompressionContext = MakeUnique<LZ4FrameDecompressionContext>(true);
251 return NS_OK;
254 void StartupCache::StartPrefetchMemory() {
256 MonitorAutoLock lock(mPrefetchComplete);
257 mPrefetchInProgress = true;
259 NS_DispatchBackgroundTask(NewRunnableMethod<uint8_t*, size_t>(
260 "StartupCache::ThreadedPrefetch", this, &StartupCache::ThreadedPrefetch,
261 mCacheData.get<uint8_t>().get(), mCacheData.size()));
265 * LoadArchive can only be called from the main thread.
267 Result<Ok, nsresult> StartupCache::LoadArchive() {
268 MOZ_ASSERT(NS_IsMainThread(), "Can only load startup cache on main thread");
269 if (gIgnoreDiskCache) return Err(NS_ERROR_FAILURE);
271 MOZ_TRY(mCacheData.init(mFile));
272 auto size = mCacheData.size();
273 if (CanPrefetchMemory()) {
274 StartPrefetchMemory();
277 uint32_t headerSize;
278 if (size < sizeof(MAGIC) + sizeof(headerSize)) {
279 return Err(NS_ERROR_UNEXPECTED);
282 auto data = mCacheData.get<uint8_t>();
283 auto end = data + size;
285 MMAP_FAULT_HANDLER_BEGIN_BUFFER(data.get(), size)
287 if (memcmp(MAGIC, data.get(), sizeof(MAGIC))) {
288 return Err(NS_ERROR_UNEXPECTED);
290 data += sizeof(MAGIC);
292 headerSize = LittleEndian::readUint32(data.get());
293 data += sizeof(headerSize);
295 if (headerSize > end - data) {
296 MOZ_ASSERT(false, "StartupCache file is corrupt.");
297 return Err(NS_ERROR_UNEXPECTED);
300 Range<uint8_t> header(data, data + headerSize);
301 data += headerSize;
303 mCacheEntriesBaseOffset = sizeof(MAGIC) + sizeof(headerSize) + headerSize;
305 if (!mTable.reserve(STARTUP_CACHE_RESERVE_CAPACITY)) {
306 return Err(NS_ERROR_UNEXPECTED);
308 auto cleanup = MakeScopeExit([&]() {
309 mTableLock.AssertCurrentThreadOwns();
310 WaitOnPrefetch();
311 mTable.clear();
312 mCacheData.reset();
314 loader::InputBuffer buf(header);
316 uint32_t currentOffset = 0;
317 while (!buf.finished()) {
318 uint32_t offset = 0;
319 uint32_t compressedSize = 0;
320 uint32_t uncompressedSize = 0;
321 nsCString key;
322 buf.codeUint32(offset);
323 buf.codeUint32(compressedSize);
324 buf.codeUint32(uncompressedSize);
325 buf.codeString(key);
327 if (offset + compressedSize > end - data) {
328 MOZ_ASSERT(false, "StartupCache file is corrupt.");
329 return Err(NS_ERROR_UNEXPECTED);
332 // Make sure offsets match what we'd expect based on script ordering and
333 // size, as a basic sanity check.
334 if (offset != currentOffset) {
335 return Err(NS_ERROR_UNEXPECTED);
337 currentOffset += compressedSize;
339 // We could use mTable.putNew if we knew the file we're loading weren't
340 // corrupt. However, we don't know that, so check if the key already
341 // exists. If it does, we know the file must be corrupt.
342 decltype(mTable)::AddPtr p = mTable.lookupForAdd(key);
343 if (p) {
344 return Err(NS_ERROR_UNEXPECTED);
347 if (!mTable.add(
348 p, key,
349 StartupCacheEntry(offset, compressedSize, uncompressedSize))) {
350 return Err(NS_ERROR_UNEXPECTED);
354 if (buf.error()) {
355 return Err(NS_ERROR_UNEXPECTED);
358 cleanup.release();
361 MMAP_FAULT_HANDLER_CATCH(Err(NS_ERROR_UNEXPECTED))
363 return Ok();
366 bool StartupCache::HasEntry(const char* id) {
367 AUTO_PROFILER_LABEL("StartupCache::HasEntry", OTHER);
369 MOZ_ASSERT(NS_IsMainThread(), "Startup cache only available on main thread");
371 MutexAutoLock lock(mTableLock);
372 return mTable.has(nsDependentCString(id));
375 nsresult StartupCache::GetBuffer(const char* id, const char** outbuf,
376 uint32_t* length)
377 MOZ_NO_THREAD_SAFETY_ANALYSIS {
378 AUTO_PROFILER_LABEL("StartupCache::GetBuffer", OTHER);
380 NS_ASSERTION(NS_IsMainThread(),
381 "Startup cache only available on main thread");
383 Telemetry::LABELS_STARTUP_CACHE_REQUESTS label =
384 Telemetry::LABELS_STARTUP_CACHE_REQUESTS::Miss;
385 auto telemetry =
386 MakeScopeExit([&label] { Telemetry::AccumulateCategorical(label); });
388 MutexAutoLock lock(mTableLock);
389 decltype(mTable)::Ptr p = mTable.lookup(nsDependentCString(id));
390 if (!p) {
391 return NS_ERROR_NOT_AVAILABLE;
394 auto& value = p->value();
395 if (value.mData) {
396 label = Telemetry::LABELS_STARTUP_CACHE_REQUESTS::HitMemory;
397 } else {
398 if (!mCacheData.initialized()) {
399 return NS_ERROR_NOT_AVAILABLE;
401 // It is impossible for a write to be pending here. This is because
402 // we just checked mCacheData.initialized(), and this is reset before
403 // writing to the cache. It's not re-initialized unless we call
404 // LoadArchive(), either from Init() (which must have already happened) or
405 // InvalidateCache(). InvalidateCache() locks the mutex, so a write can't be
406 // happening.
407 // Also, WriteToDisk() requires mTableLock, so while it's writing we can't
408 // be here.
410 size_t totalRead = 0;
411 size_t totalWritten = 0;
412 Span<const char> compressed = Span(
413 mCacheData.get<char>().get() + mCacheEntriesBaseOffset + value.mOffset,
414 value.mCompressedSize);
415 value.mData = UniqueFreePtr<char[]>(reinterpret_cast<char*>(
416 malloc(sizeof(char) * value.mUncompressedSize)));
417 Span<char> uncompressed = Span(value.mData.get(), value.mUncompressedSize);
418 MMAP_FAULT_HANDLER_BEGIN_BUFFER(uncompressed.Elements(),
419 uncompressed.Length())
420 bool finished = false;
421 while (!finished) {
422 auto result = mDecompressionContext->Decompress(
423 uncompressed.From(totalWritten), compressed.From(totalRead));
424 if (NS_WARN_IF(result.isErr())) {
425 value.mData = nullptr;
426 MutexAutoUnlock unlock(mTableLock);
427 InvalidateCache();
428 return NS_ERROR_FAILURE;
430 auto decompressionResult = result.unwrap();
431 totalRead += decompressionResult.mSizeRead;
432 totalWritten += decompressionResult.mSizeWritten;
433 finished = decompressionResult.mFinished;
436 MMAP_FAULT_HANDLER_CATCH(NS_ERROR_FAILURE)
438 label = Telemetry::LABELS_STARTUP_CACHE_REQUESTS::HitDisk;
441 if (!value.mRequested) {
442 value.mRequested = true;
443 value.mRequestedOrder = ++mRequestedCount;
444 MOZ_ASSERT(mRequestedCount <= mTable.count(),
445 "Somehow we requested more StartupCache items than exist.");
446 ResetStartupWriteTimerCheckingReadCount();
449 // Track that something holds a reference into mTable, so we know to hold
450 // onto it in case the cache is invalidated.
451 mCurTableReferenced = true;
452 *outbuf = value.mData.get();
453 *length = value.mUncompressedSize;
454 return NS_OK;
457 // Makes a copy of the buffer, client retains ownership of inbuf.
458 nsresult StartupCache::PutBuffer(const char* id, UniqueFreePtr<char[]>&& inbuf,
459 uint32_t len) MOZ_NO_THREAD_SAFETY_ANALYSIS {
460 NS_ASSERTION(NS_IsMainThread(),
461 "Startup cache only available on main thread");
462 if (StartupCache::gShutdownInitiated) {
463 return NS_ERROR_NOT_AVAILABLE;
466 // Try to gain the table write lock. If the background task to write the
467 // cache is running, this will fail.
468 MutexAutoTryLock lock(mTableLock);
469 if (!lock) {
470 return NS_ERROR_NOT_AVAILABLE;
472 mTableLock.AssertCurrentThreadOwns();
473 bool exists = mTable.has(nsDependentCString(id));
474 if (exists) {
475 NS_WARNING("Existing entry in StartupCache.");
476 // Double-caching is undesirable but not an error.
477 return NS_OK;
480 // putNew returns false on alloc failure - in the very unlikely event we hit
481 // that and aren't going to crash elsewhere, there's no reason we need to
482 // crash here.
483 if (mTable.putNew(nsCString(id), StartupCacheEntry(std::move(inbuf), len,
484 ++mRequestedCount))) {
485 return ResetStartupWriteTimer();
487 MOZ_DIAGNOSTIC_ASSERT(mTable.count() < STARTUP_CACHE_MAX_CAPACITY,
488 "Too many StartupCache entries.");
489 return NS_OK;
492 size_t StartupCache::HeapSizeOfIncludingThis(
493 mozilla::MallocSizeOf aMallocSizeOf) const {
494 // This function could measure more members, but they haven't been found by
495 // DMD to be significant. They can be added later if necessary.
497 size_t n = aMallocSizeOf(this);
499 n += mTable.shallowSizeOfExcludingThis(aMallocSizeOf);
500 for (auto iter = mTable.iter(); !iter.done(); iter.next()) {
501 if (iter.get().value().mData) {
502 n += aMallocSizeOf(iter.get().value().mData.get());
504 n += iter.get().key().SizeOfExcludingThisIfUnshared(aMallocSizeOf);
507 return n;
511 * WriteToDisk writes the cache out to disk. Callers of WriteToDisk need to call
512 * WaitOnWriteComplete to make sure there isn't a write
513 * happening on another thread.
514 * We own the mTableLock here.
516 Result<Ok, nsresult> StartupCache::WriteToDisk() {
517 if (!mDirty || mWrittenOnce) {
518 return Ok();
521 if (!mFile) {
522 return Err(NS_ERROR_UNEXPECTED);
525 AutoFDClose raiiFd;
526 MOZ_TRY(mFile->OpenNSPRFileDesc(PR_WRONLY | PR_CREATE_FILE | PR_TRUNCATE,
527 0644, getter_Transfers(raiiFd)));
528 const auto fd = raiiFd.get();
530 nsTArray<StartupCacheEntry::KeyValuePair> entries(mTable.count());
531 for (auto iter = mTable.iter(); !iter.done(); iter.next()) {
532 if (iter.get().value().mRequested) {
533 StartupCacheEntry::KeyValuePair kv(&iter.get().key(),
534 &iter.get().value());
535 entries.AppendElement(kv);
539 if (entries.IsEmpty()) {
540 return Ok();
543 entries.Sort(StartupCacheEntry::Comparator());
544 loader::OutputBuffer buf;
545 for (auto& e : entries) {
546 auto* key = e.first;
547 auto* value = e.second;
548 auto uncompressedSize = value->mUncompressedSize;
549 // Set the mHeaderOffsetInFile so we can go back and edit the offset.
550 value->mHeaderOffsetInFile = buf.cursor();
551 // Write a 0 offset/compressed size as a placeholder until we get the real
552 // offset after compressing.
553 buf.codeUint32(0);
554 buf.codeUint32(0);
555 buf.codeUint32(uncompressedSize);
556 buf.codeString(*key);
559 uint8_t headerSize[4];
560 LittleEndian::writeUint32(headerSize, buf.cursor());
562 MOZ_TRY(Write(fd, MAGIC, sizeof(MAGIC)));
563 MOZ_TRY(Write(fd, headerSize, sizeof(headerSize)));
564 size_t headerStart = sizeof(MAGIC) + sizeof(headerSize);
565 size_t dataStart = headerStart + buf.cursor();
566 MOZ_TRY(Seek(fd, dataStart));
568 size_t offset = 0;
570 const size_t chunkSize = 1024 * 16;
571 LZ4FrameCompressionContext ctx(6, /* aCompressionLevel */
572 chunkSize, /* aReadBufLen */
573 true, /* aChecksum */
574 true); /* aStableSrc */
575 size_t writeBufLen = ctx.GetRequiredWriteBufferLength();
576 auto writeBuffer = MakeUnique<char[]>(writeBufLen);
577 auto writeSpan = Span(writeBuffer.get(), writeBufLen);
579 for (auto& e : entries) {
580 auto value = e.second;
581 value->mOffset = offset;
582 Span<const char> result;
583 MOZ_TRY_VAR(result,
584 ctx.BeginCompressing(writeSpan).mapErr(MapLZ4ErrorToNsresult));
585 MOZ_TRY(Write(fd, result.Elements(), result.Length()));
586 offset += result.Length();
588 for (size_t i = 0; i < value->mUncompressedSize; i += chunkSize) {
589 size_t size = std::min(chunkSize, value->mUncompressedSize - i);
590 char* uncompressed = value->mData.get() + i;
591 MOZ_TRY_VAR(result, ctx.ContinueCompressing(Span(uncompressed, size))
592 .mapErr(MapLZ4ErrorToNsresult));
593 MOZ_TRY(Write(fd, result.Elements(), result.Length()));
594 offset += result.Length();
597 MOZ_TRY_VAR(result, ctx.EndCompressing().mapErr(MapLZ4ErrorToNsresult));
598 MOZ_TRY(Write(fd, result.Elements(), result.Length()));
599 offset += result.Length();
600 value->mCompressedSize = offset - value->mOffset;
601 MOZ_TRY(Seek(fd, dataStart + offset));
604 for (auto& e : entries) {
605 auto value = e.second;
606 uint8_t* headerEntry = buf.Get() + value->mHeaderOffsetInFile;
607 LittleEndian::writeUint32(headerEntry, value->mOffset);
608 LittleEndian::writeUint32(headerEntry + sizeof(value->mOffset),
609 value->mCompressedSize);
611 MOZ_TRY(Seek(fd, headerStart));
612 MOZ_TRY(Write(fd, buf.Get(), buf.cursor()));
614 mDirty = false;
615 mWrittenOnce = true;
617 return Ok();
620 void StartupCache::InvalidateCache(bool memoryOnly) {
621 WaitOnPrefetch();
622 // Ensure we're not writing using mTable...
623 MutexAutoLock lock(mTableLock);
625 mWrittenOnce = false;
626 if (memoryOnly) {
627 // This should only be called in tests.
628 auto writeResult = WriteToDisk();
629 if (NS_WARN_IF(writeResult.isErr())) {
630 gIgnoreDiskCache = true;
631 return;
634 if (mCurTableReferenced) {
635 // There should be no way for this assert to fail other than a user manually
636 // sending startupcache-invalidate messages through the Browser Toolbox. If
637 // something knowingly invalidates the cache, the event can be counted with
638 // mAllowedInvalidationsCount.
639 MOZ_DIAGNOSTIC_ASSERT(
640 xpc::IsInAutomation() ||
641 // The allowed invalidations can grow faster than the old tables, so
642 // guard against incorrect unsigned subtraction.
643 mAllowedInvalidationsCount > mOldTables.Length() ||
644 // Now perform the real check.
645 mOldTables.Length() - mAllowedInvalidationsCount < 10,
646 "Startup cache invalidated too many times.");
647 mOldTables.AppendElement(std::move(mTable));
648 mCurTableReferenced = false;
649 } else {
650 mTable.clear();
652 mRequestedCount = 0;
653 if (!memoryOnly) {
654 mCacheData.reset();
655 nsresult rv = mFile->Remove(false);
656 if (NS_FAILED(rv) && rv != NS_ERROR_FILE_NOT_FOUND) {
657 gIgnoreDiskCache = true;
658 return;
661 gIgnoreDiskCache = false;
662 auto result = LoadArchive();
663 if (NS_WARN_IF(result.isErr())) {
664 gIgnoreDiskCache = true;
668 void StartupCache::CountAllowedInvalidation() { mAllowedInvalidationsCount++; }
670 void StartupCache::MaybeInitShutdownWrite() {
671 if (mTimer) {
672 mTimer->Cancel();
674 gShutdownInitiated = true;
676 MaybeWriteOffMainThread();
679 void StartupCache::EnsureShutdownWriteComplete() {
680 MutexAutoLock lock(mTableLock);
681 // If we've already written or there's nothing to write,
682 // we don't need to do anything. This is the common case.
683 if (mWrittenOnce || (mCacheData.initialized() && !ShouldCompactCache())) {
684 return;
686 // Otherwise, ensure the write happens. The timer should have been cancelled
687 // already in MaybeInitShutdownWrite.
689 // We got the lock. Keep the following in sync with
690 // MaybeWriteOffMainThread:
691 WaitOnPrefetch();
692 mDirty = true;
693 mCacheData.reset();
694 // Most of this should be redundant given MaybeWriteOffMainThread should
695 // have run before now.
697 auto writeResult = WriteToDisk();
698 Unused << NS_WARN_IF(writeResult.isErr());
699 // We've had the lock, and `WriteToDisk()` sets mWrittenOnce and mDirty
700 // when done, and checks for them when starting, so we don't need to do
701 // anything else.
704 void StartupCache::IgnoreDiskCache() {
705 gIgnoreDiskCache = true;
706 if (gStartupCache) gStartupCache->InvalidateCache();
709 bool StartupCache::GetIgnoreDiskCache() { return gIgnoreDiskCache; }
711 void StartupCache::WaitOnPrefetch() {
712 // This can't be called from within ThreadedPrefetch()
713 MonitorAutoLock lock(mPrefetchComplete);
714 while (mPrefetchInProgress) {
715 mPrefetchComplete.Wait();
719 void StartupCache::ThreadedPrefetch(uint8_t* aStart, size_t aSize) {
720 // Always notify of completion, even if MMAP_FAULT_HANDLER_CATCH()
721 // early-returns.
722 auto notifyPrefetchComplete = MakeScopeExit([&] {
723 MonitorAutoLock lock(mPrefetchComplete);
724 mPrefetchInProgress = false;
725 mPrefetchComplete.NotifyAll();
728 // PrefetchMemory does madvise/equivalent, but doesn't access the memory
729 // pointed to by aStart
730 MMAP_FAULT_HANDLER_BEGIN_BUFFER(aStart, aSize)
731 PrefetchMemory(aStart, aSize);
732 MMAP_FAULT_HANDLER_CATCH()
735 // mTableLock must be held
736 bool StartupCache::ShouldCompactCache() {
737 // If we've requested less than 4/5 of the startup cache, then we should
738 // probably compact it down. This can happen quite easily after the first run,
739 // which seems to request quite a few more things than subsequent runs.
740 CheckedInt<uint32_t> threshold = CheckedInt<uint32_t>(mTable.count()) * 4 / 5;
741 MOZ_RELEASE_ASSERT(threshold.isValid(), "Runaway StartupCache size");
742 return mRequestedCount < threshold.value();
746 * The write-thread is spawned on a timeout(which is reset with every write).
747 * This can avoid a slow shutdown.
749 void StartupCache::WriteTimeout(nsITimer* aTimer, void* aClosure) {
751 * It is safe to use the pointer passed in aClosure to reference the
752 * StartupCache object because the timer's lifetime is tightly coupled to
753 * the lifetime of the StartupCache object; this timer is canceled in the
754 * StartupCache destructor, guaranteeing that this function runs if and only
755 * if the StartupCache object is valid.
757 StartupCache* startupCacheObj = static_cast<StartupCache*>(aClosure);
758 startupCacheObj->MaybeWriteOffMainThread();
762 * See StartupCache::WriteTimeout above - this is just the non-static body.
764 void StartupCache::MaybeWriteOffMainThread() {
766 MutexAutoLock lock(mTableLock);
767 if (mWrittenOnce || (mCacheData.initialized() && !ShouldCompactCache())) {
768 return;
771 // Keep this code in sync with EnsureShutdownWriteComplete.
772 WaitOnPrefetch();
774 MutexAutoLock lock(mTableLock);
775 mDirty = true;
776 mCacheData.reset();
779 RefPtr<StartupCache> self = this;
780 nsCOMPtr<nsIRunnable> runnable =
781 NS_NewRunnableFunction("StartupCache::Write", [self]() mutable {
782 MutexAutoLock lock(self->mTableLock);
783 auto result = self->WriteToDisk();
784 Unused << NS_WARN_IF(result.isErr());
786 NS_DispatchBackgroundTask(runnable.forget(), NS_DISPATCH_EVENT_MAY_BLOCK);
789 // We don't want to refcount StartupCache, so we'll just
790 // hold a ref to this and pass it to observerService instead.
791 NS_IMPL_ISUPPORTS(StartupCacheListener, nsIObserver)
793 nsresult StartupCacheListener::Observe(nsISupports* subject, const char* topic,
794 const char16_t* data) {
795 StartupCache* sc = StartupCache::GetSingleton();
796 if (!sc) return NS_OK;
798 if (strcmp(topic, NS_XPCOM_SHUTDOWN_OBSERVER_ID) == 0) {
799 // Do not leave the thread running past xpcom shutdown
800 sc->WaitOnPrefetch();
801 StartupCache::gShutdownInitiated = true;
802 // Note that we don't do anything special for the background write
803 // task; we expect the threadpool to finish running any tasks already
804 // posted to it prior to shutdown. FastShutdown will call
805 // EnsureShutdownWriteComplete() to ensure any pending writes happen
806 // in that case.
807 } else if (strcmp(topic, "startupcache-invalidate") == 0) {
808 sc->InvalidateCache(data && nsCRT::strcmp(data, u"memoryOnly") == 0);
809 } else if (strcmp(topic, "intl:app-locales-changed") == 0) {
810 // Live language switching invalidates the startup cache due to the history
811 // sidebar retaining localized strings in its internal SQL query. This
812 // should be a relatively rare event, but a user could do it an arbitrary
813 // number of times.
814 sc->CountAllowedInvalidation();
816 return NS_OK;
819 nsresult StartupCache::GetDebugObjectOutputStream(
820 nsIObjectOutputStream* aStream, nsIObjectOutputStream** aOutStream) {
821 NS_ENSURE_ARG_POINTER(aStream);
822 #ifdef DEBUG
823 auto* stream = new StartupCacheDebugOutputStream(aStream, &mWriteObjectMap);
824 NS_ADDREF(*aOutStream = stream);
825 #else
826 NS_ADDREF(*aOutStream = aStream);
827 #endif
829 return NS_OK;
832 nsresult StartupCache::ResetStartupWriteTimerCheckingReadCount() {
833 nsresult rv = NS_OK;
834 if (!mTimer)
835 mTimer = NS_NewTimer();
836 else
837 rv = mTimer->Cancel();
838 NS_ENSURE_SUCCESS(rv, rv);
839 // Wait for the specified timeout, then write out the cache.
840 mTimer->InitWithNamedFuncCallback(
841 StartupCache::WriteTimeout, this, STARTUP_CACHE_WRITE_TIMEOUT * 1000,
842 nsITimer::TYPE_ONE_SHOT, "StartupCache::WriteTimeout");
843 return NS_OK;
846 // For test code only
847 nsresult StartupCache::ResetStartupWriteTimerAndLock() {
848 MutexAutoLock lock(mTableLock);
849 return ResetStartupWriteTimer();
852 nsresult StartupCache::ResetStartupWriteTimer() {
853 mDirty = true;
854 nsresult rv = NS_OK;
855 if (!mTimer)
856 mTimer = NS_NewTimer();
857 else
858 rv = mTimer->Cancel();
859 NS_ENSURE_SUCCESS(rv, rv);
860 // Wait for the specified timeout, then write out the cache.
861 mTimer->InitWithNamedFuncCallback(
862 StartupCache::WriteTimeout, this, STARTUP_CACHE_WRITE_TIMEOUT * 1000,
863 nsITimer::TYPE_ONE_SHOT, "StartupCache::WriteTimeout");
864 return NS_OK;
867 // Used only in tests:
868 bool StartupCache::StartupWriteComplete() {
869 // Need to have written to disk and not added new things since;
870 MutexAutoLock lock(mTableLock);
871 return !mDirty && mWrittenOnce;
874 // StartupCacheDebugOutputStream implementation
875 #ifdef DEBUG
876 NS_IMPL_ISUPPORTS(StartupCacheDebugOutputStream, nsIObjectOutputStream,
877 nsIBinaryOutputStream, nsIOutputStream)
879 bool StartupCacheDebugOutputStream::CheckReferences(nsISupports* aObject) {
880 nsresult rv;
882 nsCOMPtr<nsIClassInfo> classInfo = do_QueryInterface(aObject);
883 if (!classInfo) {
884 NS_ERROR("aObject must implement nsIClassInfo");
885 return false;
888 uint32_t flags;
889 rv = classInfo->GetFlags(&flags);
890 NS_ENSURE_SUCCESS(rv, false);
891 if (flags & nsIClassInfo::SINGLETON) return true;
893 bool inserted = mObjectMap->EnsureInserted(aObject);
894 if (!inserted) {
895 NS_ERROR(
896 "non-singleton aObject is referenced multiple times in this"
897 "serialization, we don't support that.");
900 return inserted;
903 // nsIObjectOutputStream implementation
904 nsresult StartupCacheDebugOutputStream::WriteObject(nsISupports* aObject,
905 bool aIsStrongRef) {
906 nsCOMPtr<nsISupports> rootObject(do_QueryInterface(aObject));
908 NS_ASSERTION(rootObject.get() == aObject,
909 "bad call to WriteObject -- call WriteCompoundObject!");
910 bool check = CheckReferences(aObject);
911 NS_ENSURE_TRUE(check, NS_ERROR_FAILURE);
912 return mBinaryStream->WriteObject(aObject, aIsStrongRef);
915 nsresult StartupCacheDebugOutputStream::WriteSingleRefObject(
916 nsISupports* aObject) {
917 nsCOMPtr<nsISupports> rootObject(do_QueryInterface(aObject));
919 NS_ASSERTION(rootObject.get() == aObject,
920 "bad call to WriteSingleRefObject -- call WriteCompoundObject!");
921 bool check = CheckReferences(aObject);
922 NS_ENSURE_TRUE(check, NS_ERROR_FAILURE);
923 return mBinaryStream->WriteSingleRefObject(aObject);
926 nsresult StartupCacheDebugOutputStream::WriteCompoundObject(
927 nsISupports* aObject, const nsIID& aIID, bool aIsStrongRef) {
928 nsCOMPtr<nsISupports> rootObject(do_QueryInterface(aObject));
930 nsCOMPtr<nsISupports> roundtrip;
931 rootObject->QueryInterface(aIID, getter_AddRefs(roundtrip));
932 NS_ASSERTION(roundtrip.get() == aObject,
933 "bad aggregation or multiple inheritance detected by call to "
934 "WriteCompoundObject!");
936 bool check = CheckReferences(aObject);
937 NS_ENSURE_TRUE(check, NS_ERROR_FAILURE);
938 return mBinaryStream->WriteCompoundObject(aObject, aIID, aIsStrongRef);
941 nsresult StartupCacheDebugOutputStream::WriteID(nsID const& aID) {
942 return mBinaryStream->WriteID(aID);
945 char* StartupCacheDebugOutputStream::GetBuffer(uint32_t aLength,
946 uint32_t aAlignMask) {
947 return mBinaryStream->GetBuffer(aLength, aAlignMask);
950 void StartupCacheDebugOutputStream::PutBuffer(char* aBuffer, uint32_t aLength) {
951 mBinaryStream->PutBuffer(aBuffer, aLength);
953 #endif // DEBUG
955 } // namespace scache
956 } // namespace mozilla