1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
/*
* Copyright (C) 2013-2021 Apple 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:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 APPLE INC. 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"
#include "JSArrayBufferView.h"
#include "GenericTypedArrayViewInlines.h"
#include "JSCInlines.h"
#include "JSGenericTypedArrayViewInlines.h"
#include "JSTypedArrays.h"
#include "TypedArrayController.h"
#include "TypedArrays.h"
#include <wtf/Gigacage.h>
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
namespace JSC {
const ClassInfo JSArrayBufferView::s_info = {
"ArrayBufferView"_s, &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(JSArrayBufferView)
};
const ASCIILiteral typedArrayBufferHasBeenDetachedErrorMessage { "Underlying ArrayBuffer has been detached from the view or out-of-bounds"_s };
JSArrayBufferView::ConstructionContext::ConstructionContext(Structure* structure, size_t length, void* vector)
: m_structure(structure)
, m_vector(vector)
, m_length(length)
, m_byteOffset(0)
, m_mode(FastTypedArray)
, m_butterfly(nullptr)
{
ASSERT(!isResizableOrGrowableSharedTypedArrayIncludingDataView(structure->classInfoForCells()));
ASSERT(!Gigacage::isEnabled() || (Gigacage::contains(vector) && Gigacage::contains(static_cast<const uint8_t*>(vector) + length - 1)));
RELEASE_ASSERT(length <= fastSizeLimit);
}
JSArrayBufferView::ConstructionContext::ConstructionContext(VM& vm, Structure* structure, size_t length, unsigned elementSize, InitializationMode mode)
: m_structure(nullptr)
, m_length(length)
, m_byteOffset(0)
, m_butterfly(nullptr)
{
ASSERT(!isResizableOrGrowableSharedTypedArrayIncludingDataView(structure->classInfoForCells()));
if (length <= fastSizeLimit) {
// Attempt GC allocation.
void* temp;
size_t size = sizeOf(length, elementSize);
temp = vm.primitiveGigacageAuxiliarySpace().allocate(vm, size, nullptr, AllocationFailureMode::ReturnNull);
if (!temp)
return;
m_structure = structure;
m_vector = VectorType(temp);
m_mode = FastTypedArray;
if (mode == ZeroFill) {
uint64_t* asWords = static_cast<uint64_t*>(vector());
for (unsigned i = size / sizeof(uint64_t); i--;)
asWords[i] = 0;
}
return;
}
CheckedSize size = length;
size *= elementSize;
if (size.hasOverflowed() || size > MAX_ARRAY_BUFFER_SIZE)
return;
void* memory = nullptr;
if (mode == ZeroFill)
memory = Gigacage::tryZeroedMalloc(Gigacage::Primitive, size.value());
else
memory = Gigacage::tryMalloc(Gigacage::Primitive, size.value());
m_vector = VectorType(memory);
if (!m_vector)
return;
vm.heap.reportExtraMemoryAllocated(static_cast<JSCell*>(nullptr), size.value());
m_structure = structure;
m_mode = OversizeTypedArray;
}
JSArrayBufferView::ConstructionContext::ConstructionContext(VM& vm, Structure* structure, RefPtr<ArrayBuffer>&& arrayBuffer, size_t byteOffset, std::optional<size_t> length)
: m_structure(structure)
, m_length(length.value_or(0))
, m_byteOffset(byteOffset)
, m_mode(WastefulTypedArray)
{
if (!arrayBuffer->isResizableOrGrowableShared())
m_mode = WastefulTypedArray;
else {
if (arrayBuffer->isGrowableShared())
m_mode = length ? GrowableSharedWastefulTypedArray : GrowableSharedAutoLengthWastefulTypedArray;
else
m_mode = length ? ResizableNonSharedWastefulTypedArray : ResizableNonSharedAutoLengthWastefulTypedArray;
}
#if ASSERT_ENABLED
if (!length)
ASSERT(arrayBuffer->isResizableOrGrowableShared());
if (JSC::isResizableOrGrowableShared(m_mode))
ASSERT(isResizableOrGrowableSharedTypedArrayIncludingDataView(structure->classInfoForCells()));
else
ASSERT(!isResizableOrGrowableSharedTypedArrayIncludingDataView(structure->classInfoForCells()));
#endif
m_vector = VectorType(static_cast<uint8_t*>(arrayBuffer->data()) + byteOffset);
IndexingHeader indexingHeader;
indexingHeader.setArrayBuffer(arrayBuffer.get());
m_butterfly = Butterfly::create(vm, nullptr, 0, 0, true, indexingHeader, 0);
}
JSArrayBufferView::ConstructionContext::ConstructionContext(Structure* structure, RefPtr<ArrayBuffer>&& arrayBuffer, size_t byteOffset, std::optional<size_t> length, DataViewTag)
: m_structure(structure)
, m_length(length.value_or(0))
, m_byteOffset(byteOffset)
, m_mode(DataViewMode)
, m_butterfly(nullptr)
{
if (!arrayBuffer->isResizableOrGrowableShared())
m_mode = DataViewMode;
else {
if (arrayBuffer->isGrowableShared())
m_mode = length ? GrowableSharedDataViewMode : GrowableSharedAutoLengthDataViewMode;
else
m_mode = length ? ResizableNonSharedDataViewMode : ResizableNonSharedAutoLengthDataViewMode;
}
#if ASSERT_ENABLED
if (!length)
ASSERT(arrayBuffer->isResizableOrGrowableShared());
if (JSC::isResizableOrGrowableShared(m_mode))
ASSERT(isResizableOrGrowableSharedTypedArrayIncludingDataView(structure->classInfoForCells()));
else
ASSERT(!isResizableOrGrowableSharedTypedArrayIncludingDataView(structure->classInfoForCells()));
#endif
m_vector = VectorType(static_cast<uint8_t*>(arrayBuffer->data()) + byteOffset);
}
JSArrayBufferView::JSArrayBufferView(VM& vm, ConstructionContext& context)
: Base(vm, context.structure(), nullptr)
, m_length(context.length())
, m_byteOffset(context.byteOffset())
, m_mode(context.mode())
{
setButterfly(vm, context.butterfly());
m_vector.setWithoutBarrier(context.vector());
}
void JSArrayBufferView::finishCreation(VM& vm)
{
Base::finishCreation(vm);
ASSERT(jsDynamicCast<JSArrayBufferView*>(this));
switch (m_mode) {
case FastTypedArray:
return;
case OversizeTypedArray:
vm.heap.addFinalizer(this, finalize);
return;
case WastefulTypedArray:
case ResizableNonSharedWastefulTypedArray:
case ResizableNonSharedAutoLengthWastefulTypedArray:
case GrowableSharedWastefulTypedArray:
case GrowableSharedAutoLengthWastefulTypedArray:
vm.heap.addReference(this, butterfly()->indexingHeader()->arrayBuffer());
return;
case DataViewMode:
case ResizableNonSharedDataViewMode:
case ResizableNonSharedAutoLengthDataViewMode:
case GrowableSharedDataViewMode:
case GrowableSharedAutoLengthDataViewMode:
ASSERT(!butterfly());
vm.heap.addReference(this, jsCast<JSDataView*>(this)->possiblySharedBuffer());
return;
}
RELEASE_ASSERT_NOT_REACHED();
}
template<typename Visitor>
void JSArrayBufferView::visitChildrenImpl(JSCell* cell, Visitor& visitor)
{
JSArrayBufferView* thisObject = jsCast<JSArrayBufferView*>(cell);
ASSERT_GC_OBJECT_INHERITS(thisObject, info());
Base::visitChildren(cell, visitor);
if (thisObject->hasArrayBuffer()) {
WTF::loadLoadFence();
ArrayBuffer* buffer = thisObject->possiblySharedBuffer();
RELEASE_ASSERT(buffer);
visitor.addOpaqueRoot(buffer);
}
}
DEFINE_VISIT_CHILDREN(JSArrayBufferView);
ArrayBuffer* JSArrayBufferView::unsharedBuffer()
{
ArrayBuffer* result = possiblySharedBuffer();
RELEASE_ASSERT(!result || !result->isShared());
return result;
}
void JSArrayBufferView::finalize(JSCell* cell)
{
JSArrayBufferView* thisObject = static_cast<JSArrayBufferView*>(cell);
// This JSArrayBufferView could be an OversizeTypedArray that was converted
// to a WastefulTypedArray via slowDownAndWasteMemory(). Hence, it is possible
// to get to this finalizer and found the mode to be WastefulTypedArray.
ASSERT(thisObject->m_mode == OversizeTypedArray || thisObject->hasArrayBuffer());
if (thisObject->m_mode == OversizeTypedArray)
Gigacage::free(Gigacage::Primitive, thisObject->vector());
}
JSArrayBuffer* JSArrayBufferView::unsharedJSBuffer(JSGlobalObject* globalObject)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (ArrayBuffer* buffer = unsharedBuffer())
return vm.m_typedArrayController->toJS(globalObject, this->globalObject(), buffer);
scope.throwException(globalObject, createOutOfMemoryError(globalObject));
return nullptr;
}
JSArrayBuffer* JSArrayBufferView::possiblySharedJSBuffer(JSGlobalObject* globalObject)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (ArrayBuffer* buffer = possiblySharedBuffer())
return vm.m_typedArrayController->toJS(globalObject, this->globalObject(), buffer);
scope.throwException(globalObject, createOutOfMemoryError(globalObject));
return nullptr;
}
void JSArrayBufferView::detachFromArrayBuffer()
{
Locker locker { cellLock() };
RELEASE_ASSERT(hasArrayBuffer());
RELEASE_ASSERT(!isShared());
m_length = 0;
m_byteOffset = 0;
m_vector.clear();
globalObject()->notifyArrayBufferDetaching();
}
ArrayBuffer* JSArrayBufferView::slowDownAndWasteMemory()
{
ASSERT(!hasArrayBuffer());
// We play this game because we want this to be callable even from places that
// don't have access to CallFrame* or the VM, and we only allocate so little
// memory here that it's not necessary to trigger a GC - just accounting what
// we have done is good enough. The sort of bizarre exception to the "allocating
// little memory" is when we transfer a backing buffer into the C heap; this
// will temporarily get counted towards heap footprint (incorrectly, in the case
// of adopting an oversize typed array) but we don't GC here anyway. That's
// almost certainly fine. The worst case is if you created a ton of fast typed
// arrays, and did nothing but caused all of them to slow down and waste memory.
// In that case, your memory footprint will double before the GC realizes what's
// up. But if you do *anything* to trigger a GC watermark check, it will know
// that you *had* done those allocations and it will GC appropriately.
Heap* heap = Heap::heap(this);
VM& vm = heap->vm();
DeferGCForAWhile deferGC(vm);
RELEASE_ASSERT(!hasIndexingHeader());
Structure* structure = this->structure();
RefPtr<ArrayBuffer> buffer;
switch (m_mode) {
case FastTypedArray: {
buffer = ArrayBuffer::tryCreate(span());
if (!buffer)
return nullptr;
break;
}
case OversizeTypedArray: {
// FIXME: consider doing something like "subtracting" from extra memory
// cost, since right now this case will cause the GC to think that we reallocated
// the whole buffer.
buffer = ArrayBuffer::createAdopted(span());
break;
}
default:
RELEASE_ASSERT_NOT_REACHED();
break;
}
RELEASE_ASSERT(buffer);
// Don't create bufferfly until we know we have an ArrayBuffer.
setButterfly(vm, Butterfly::createOrGrowArrayRight(
butterfly(), vm, this, structure,
structure->outOfLineCapacity(), false, 0, 0));
{
Locker locker { cellLock() };
butterfly()->indexingHeader()->setArrayBuffer(buffer.get());
m_vector.setWithoutBarrier(buffer->data());
WTF::storeStoreFence();
m_mode = WastefulTypedArray; // There is no possibility that FastTypedArray or OversizeTypedArray becomes resizable ones since resizable ones do not start with FastTypedArray or OversizeTypedArray.
}
heap->addReference(this, buffer.get());
return buffer.get();
}
// Allocates the full-on native buffer and moves data into the C heap if
// necessary. Note that this never allocates in the GC heap.
RefPtr<ArrayBufferView> JSArrayBufferView::possiblySharedImpl()
{
ArrayBuffer* buffer = possiblySharedBuffer();
if (!buffer)
return nullptr;
size_t byteOffset = this->byteOffsetRaw();
size_t length = this->lengthRaw();
switch (type()) {
#define FACTORY(type) \
case type ## ArrayType: \
return type ## Array::wrappedAs(*buffer, byteOffset, isAutoLength() ? std::nullopt : std::optional { length });
FOR_EACH_TYPED_ARRAY_TYPE_EXCLUDING_DATA_VIEW(FACTORY)
#undef FACTORY
case DataViewType:
return DataView::wrappedAs(*buffer, byteOffset, isAutoLength() ? std::nullopt : std::optional { length });
default:
RELEASE_ASSERT_NOT_REACHED();
return nullptr;
}
}
bool JSArrayBufferView::isIteratorProtocolFastAndNonObservable()
{
// Excluding DataView.
if (!isTypedArrayType(type()))
return false;
JSGlobalObject* globalObject = this->globalObject();
TypedArrayType typedArrayType = JSC::typedArrayType(type());
if (!globalObject->isTypedArrayPrototypeIteratorProtocolFastAndNonObservable(typedArrayType))
return false;
VM& vm = globalObject->vm();
Structure* structure = this->structure();
// This is the fast case. Many TypedArrays will be an original typed array structure.
if (globalObject->isOriginalTypedArrayStructure(structure, true) || globalObject->isOriginalTypedArrayStructure(structure, false))
return true;
if (getPrototypeDirect() != globalObject->typedArrayPrototype(typedArrayType))
return false;
if (getDirectOffset(vm, vm.propertyNames->iteratorSymbol) != invalidOffset)
return false;
return true;
}
} // namespace JSC
namespace WTF {
using namespace JSC;
void printInternal(PrintStream& out, TypedArrayMode mode)
{
switch (mode) {
case FastTypedArray:
out.print("FastTypedArray");
return;
case OversizeTypedArray:
out.print("OversizeTypedArray");
return;
case WastefulTypedArray:
out.print("WastefulTypedArray");
return;
case ResizableNonSharedWastefulTypedArray:
out.print("ResizableNonSharedWastefulTypedArray");
return;
case ResizableNonSharedAutoLengthWastefulTypedArray:
out.print("ResizableNonSharedAutoLengthWastefulTypedArray");
return;
case GrowableSharedWastefulTypedArray:
out.print("GrowableSharedWastefulTypedArray");
return;
case GrowableSharedAutoLengthWastefulTypedArray:
out.print("GrowableSharedAutoLengthWastefulTypedArray");
return;
case DataViewMode:
out.print("DataViewMode");
return;
case ResizableNonSharedDataViewMode:
out.print("ResizableNonSharedDataViewMode");
return;
case ResizableNonSharedAutoLengthDataViewMode:
out.print("ResizableNonSharedAutoLengthDataViewMode");
return;
case GrowableSharedDataViewMode:
out.print("GrowableSharedDataViewMode");
return;
case GrowableSharedAutoLengthDataViewMode:
out.print("GrowableSharedAutoLengthDataViewMode");
return;
}
RELEASE_ASSERT_NOT_REACHED();
}
} // namespace WTF
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
|