Skip to content

Commit

Permalink
Bug 1744460 part 1 - Move woff2 memory estimation code outside rlbox …
Browse files Browse the repository at this point in the history
…sandbox r=bholley

Differential Revision: https://phabricator.services.mozilla.com/D133009
  • Loading branch information
shravanrn committed Dec 9, 2021
1 parent 49ed81f commit d37cf39
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 50 deletions.
97 changes: 55 additions & 42 deletions gfx/ots/RLBoxWOFF2Host.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "mozilla/ClearOnShutdown.h"
#include "mozilla/RLBoxUtils.h"
#include "mozilla/ScopeExit.h"
#include "opentype-sanitiser.h" // For ots_ntohl

using namespace rlbox;
using namespace mozilla;
Expand Down Expand Up @@ -92,6 +93,45 @@ RLBoxWOFF2SandboxData::~RLBoxWOFF2SandboxData() {
MOZ_COUNT_DTOR(RLBoxWOFF2SandboxData);
}

static bool Woff2SizeValidator(size_t aLength, size_t aSize) {
if (aSize < aLength) {
NS_WARNING("Size of decompressed WOFF 2.0 is less than compressed size");
return false;
} else if (aSize == 0) {
NS_WARNING("Size of decompressed WOFF 2.0 is set to 0");
return false;
} else if (aSize > OTS_MAX_DECOMPRESSED_FILE_SIZE) {
NS_WARNING(
nsPrintfCString("Size of decompressed WOFF 2.0 font exceeds %gMB",
OTS_MAX_DECOMPRESSED_FILE_SIZE / (1024.0 * 1024.0))
.get());
return false;
}
return true;
}

// Code replicated from modules/woff2/src/woff2_dec.cc
// This is used both to compute the expected size of the Woff2 RLBox sandbox
// as well as internally by WOFF2 as a performance hint
static uint32_t ComputeWOFF2FinalSize(const uint8_t* aData, size_t aLength) {
// Expected size is stored as a 4 byte value starting from the 17th byte
if (aLength < 20) {
return 0;
}

uint32_t decompressedSize = 0;
const void* location = &(aData[16]);
std::memcpy(&decompressedSize, location, sizeof(decompressedSize));
decompressedSize = ots_ntohl(decompressedSize);

if(!Woff2SizeValidator(aLength, decompressedSize)) {
return 0;
}

return decompressedSize;
}


template <typename T>
using TransferBufferToWOFF2 =
mozilla::RLBoxTransferBufferToSandbox<T, rlbox_woff2_sandbox_type>;
Expand All @@ -111,6 +151,9 @@ bool RLBoxProcessWOFF2(ots::FontFile* aHeader, ots::OTSStream* aOutput,
// index (7).
NS_ENSURE_TRUE(aLength >= 8, false);

uint32_t expectedSize = ComputeWOFF2FinalSize(aData, aLength);
NS_ENSURE_TRUE(expectedSize > 0, false);

auto sandboxPoolData = RLBoxWOFF2SandboxPool::sSingleton->PopOrCreate();
NS_ENSURE_TRUE(sandboxPoolData, false);

Expand All @@ -126,38 +169,6 @@ bool RLBoxProcessWOFF2(ots::FontFile* aHeader, ots::OTSStream* aOutput,
sandbox, reinterpret_cast<const char*>(aData), aLength);
NS_ENSURE_TRUE(*data, false);

// Validator for the decompression size.
// Returns the size and sets validateOK to true if size is valid (and false
// otherwise).
bool validateOK = false;
auto sizeValidator = [aLength, &validateOK](auto size) {
validateOK = false;
if (size < aLength) {
NS_WARNING("Size of decompressed WOFF 2.0 is less than compressed size");
} else if (size == 0) {
NS_WARNING("Size of decompressed WOFF 2.0 is set to 0");
} else if (size > OTS_MAX_DECOMPRESSED_FILE_SIZE) {
NS_WARNING(
nsPrintfCString("Size of decompressed WOFF 2.0 font exceeds %gMB",
OTS_MAX_DECOMPRESSED_FILE_SIZE / (1024.0 * 1024.0))
.get());
} else {
validateOK = true;
}
return size;
};

// Get the (estimated) decompression size and validate it.

unsigned long decompressedSize =
sandbox
->invoke_sandbox_function(RLBoxComputeWOFF2FinalSize, *data, aLength)
.copy_and_verify(sizeValidator);

if (NS_WARN_IF(!validateOK)) {
return false;
}

// Perform the actual conversion to TTF.

auto sizep = WOFF2Alloc<unsigned long>(sandbox);
Expand All @@ -167,7 +178,7 @@ bool RLBoxProcessWOFF2(ots::FontFile* aHeader, ots::OTSStream* aOutput,

if (!sandbox
->invoke_sandbox_function(RLBoxConvertWOFF2ToTTF, *data, aLength,
decompressedSize, sizep.get(),
expectedSize, sizep.get(),
bufOwnerString.get(), bufp.get())
.unverified_safe_because(
"The ProcessTT* functions validate the decompressed data.")) {
Expand All @@ -182,26 +193,28 @@ bool RLBoxProcessWOFF2(ots::FontFile* aHeader, ots::OTSStream* aOutput,

// Get the actual decompression size and validate it.
// We need to validate the size again. RLBoxConvertWOFF2ToTTF works even if
// the computed size (with RLBoxComputeWOFF2FinalSize) is wrong, so we can't
// trust the decompressedSize to be the same as size sizep.
unsigned long size = (*sizep.get()).copy_and_verify(sizeValidator);
// the computed size (with ComputeWOFF2FinalSize) is wrong, so we can't
// trust the expectedSize to be the same as size sizep.
bool validateOK = false;
unsigned long actualSize = (*sizep.get()).copy_and_verify([&](unsigned long val){
validateOK = Woff2SizeValidator(aLength, val);
return val;
});

if (NS_WARN_IF(!validateOK)) {
return false;
}
NS_ENSURE_TRUE(validateOK, false);

const uint8_t* decompressed = reinterpret_cast<const uint8_t*>(
(*bufp.get())
.unverified_safe_pointer_because(
size, "Only care that the buffer is within sandbox boundary."));
actualSize, "Only care that the buffer is within sandbox boundary."));

// Since ProcessTT* memcpy from the buffer, make sure it's not null.
NS_ENSURE_TRUE(decompressed, false);

if (aData[4] == 't' && aData[5] == 't' && aData[6] == 'c' &&
aData[7] == 'f') {
return aProcessTTC(aHeader, aOutput, decompressed, size, aIndex);
return aProcessTTC(aHeader, aOutput, decompressed, actualSize, aIndex);
}
ots::Font font(aHeader);
return aProcessTTF(aHeader, &font, aOutput, decompressed, size, 0);
return aProcessTTF(aHeader, &font, aOutput, decompressed, actualSize, 0);
}
6 changes: 0 additions & 6 deletions modules/woff2/RLBoxWOFF2Sandbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ void RLBoxDeleteWOFF2String(void** aStr) {
delete buf;
}

unsigned long RLBoxComputeWOFF2FinalSize(const char* aData,
unsigned long aLength) {
return woff2::ComputeWOFF2FinalSize(reinterpret_cast<const uint8_t*>(aData),
aLength);
}

BrotliDecompressCallback* sRLBoxBrotliDecompressCallback = nullptr;

void RegisterWOFF2Callback(BrotliDecompressCallback* aCallback) {
Expand Down
2 changes: 0 additions & 2 deletions modules/woff2/RLBoxWOFF2Sandbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ extern "C" {
// we're using unsigned long instead of size_t and char instead of uint8_t.

// Since RLBox doesn't support C++ APIs, we expose C wrappers for the WOFF2.
unsigned long RLBoxComputeWOFF2FinalSize(const char* aData,
unsigned long aLength);
bool RLBoxConvertWOFF2ToTTF(const char* aData, unsigned long aLength,
unsigned long aDecompressedSize,
unsigned long* aResultSize, void** aResultOwningStr,
Expand Down

0 comments on commit d37cf39

Please sign in to comment.