mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 13:23:56 -07:00
The first header was used to include the SpiderMonkey JS API at once, with safeguards and preprocessor defines. Nowadays, SpiderMonkey provides modular headers allowing us to include what we use, refs #8086. Some defines have to be moved to compiler options but it is apparently a mistake from the SM developers: https://bugzilla.mozilla.org/show_bug.cgi?id=1987876
523 lines
16 KiB
C++
523 lines
16 KiB
C++
/* Copyright (C) 2025 Wildfire Games.
|
|
* This file is part of 0 A.D.
|
|
*
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "precompiled.h"
|
|
|
|
#include "StdDeserializer.h"
|
|
|
|
#include "lib/alignment.h"
|
|
#include "lib/byte_order.h"
|
|
#include "lib/debug.h"
|
|
#include "lib/utf8.h"
|
|
#include "ps/CStr.h"
|
|
#include "scriptinterface/FunctionWrapper.h"
|
|
#include "scriptinterface/ScriptInterface.h"
|
|
#include "scriptinterface/ScriptRequest.h"
|
|
#include "simulation2/serialization/ISerializer.h"
|
|
#include "simulation2/serialization/SerializedScriptTypes.h"
|
|
#include "simulation2/serialization/StdSerializer.h"
|
|
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <istream>
|
|
#include <js/Array.h>
|
|
#include <js/ArrayBuffer.h>
|
|
#include <js/CallAndConstruct.h>
|
|
#include <js/ComparisonOperators.h>
|
|
#include <js/GCAPI.h>
|
|
#include <js/MapAndSet.h>
|
|
#include <js/PropertyAndElement.h>
|
|
#include <js/RootingAPI.h>
|
|
#include <js/String.h>
|
|
#include <js/TracingAPI.h>
|
|
#include <js/ValueArray.h>
|
|
#include <js/experimental/TypedData.h>
|
|
#include <jsapi.h>
|
|
#include <jspubtd.h>
|
|
|
|
class JSObject;
|
|
|
|
CStdDeserializer::CStdDeserializer(const ScriptInterface& scriptInterface, std::istream& stream) :
|
|
m_ScriptInterface(scriptInterface), m_Stream(stream)
|
|
{
|
|
ScriptRequest rq(m_ScriptInterface);
|
|
JS_AddExtraGCRootsTracer(rq.cx, CStdDeserializer::Trace, this);
|
|
m_SerializePropId = JS::PropertyKey::fromPinnedString(JS_AtomizeAndPinString(rq.cx, "Serialize"));
|
|
m_DeserializePropId = JS::PropertyKey::fromPinnedString(JS_AtomizeAndPinString(rq.cx, "Deserialize"));
|
|
|
|
// Insert a dummy object in front, as valid tags start at 1.
|
|
m_ScriptBackrefs.emplace_back(nullptr);
|
|
}
|
|
|
|
CStdDeserializer::~CStdDeserializer()
|
|
{
|
|
JS_RemoveExtraGCRootsTracer(ScriptRequest(m_ScriptInterface).cx, CStdDeserializer::Trace, this);
|
|
}
|
|
|
|
void CStdDeserializer::Trace(JSTracer *trc, void *data)
|
|
{
|
|
reinterpret_cast<CStdDeserializer*>(data)->TraceMember(trc);
|
|
}
|
|
|
|
void CStdDeserializer::TraceMember(JSTracer *trc)
|
|
{
|
|
for (JS::Heap<JSObject*>& backref : m_ScriptBackrefs)
|
|
JS::TraceEdge(trc, &backref, "StdDeserializer::m_ScriptBackrefs");
|
|
}
|
|
|
|
void CStdDeserializer::Get([[maybe_unused]] const char* name, u8* data, size_t len)
|
|
{
|
|
#if DEBUG_SERIALIZER_ANNOTATE
|
|
std::string strName;
|
|
char c = m_Stream.get();
|
|
ENSURE(c == '<');
|
|
while (1)
|
|
{
|
|
c = m_Stream.get();
|
|
if (c == '>')
|
|
break;
|
|
else
|
|
strName += c;
|
|
}
|
|
ENSURE(strName == name);
|
|
#endif
|
|
m_Stream.read((char*)data, (std::streamsize)len);
|
|
if (!m_Stream.good())
|
|
{
|
|
// hit eof before len, or other errors
|
|
// NOTE: older libc++ versions incorrectly set eofbit on the last char; test gcount as a workaround
|
|
// see https://llvm.org/bugs/show_bug.cgi?id=9335
|
|
if (m_Stream.bad() || m_Stream.fail() || (m_Stream.eof() && m_Stream.gcount() != (std::streamsize)len))
|
|
throw PSERROR_Deserialize_ReadFailed();
|
|
}
|
|
}
|
|
|
|
std::istream& CStdDeserializer::GetStream()
|
|
{
|
|
return m_Stream;
|
|
}
|
|
|
|
void CStdDeserializer::RequireBytesInStream(size_t numBytes)
|
|
{
|
|
// It would be nice to do:
|
|
// if (numBytes > (size_t)m_Stream.rdbuf()->in_avail())
|
|
// throw PSERROR_Deserialize_OutOfBounds("RequireBytesInStream");
|
|
// but that doesn't work (at least on MSVC) since in_avail isn't
|
|
// guaranteed to return the actual number of bytes available; see e.g.
|
|
// http://social.msdn.microsoft.com/Forums/en/vclanguage/thread/13009a88-933f-4be7-bf3d-150e425e66a6#70ea562d-8605-4742-8851-1bae431ce6ce
|
|
|
|
// Instead we'll just verify that it's not an extremely large number:
|
|
if (numBytes > 64*MiB)
|
|
throw PSERROR_Deserialize_OutOfBounds("RequireBytesInStream");
|
|
}
|
|
|
|
void CStdDeserializer::AddScriptBackref(JS::HandleObject obj)
|
|
{
|
|
m_ScriptBackrefs.push_back(JS::Heap<JSObject*>(obj));
|
|
}
|
|
|
|
void CStdDeserializer::GetScriptBackref(size_t tag, JS::MutableHandleObject ret)
|
|
{
|
|
ENSURE(m_ScriptBackrefs.size() > tag);
|
|
ret.set(m_ScriptBackrefs[tag]);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
JS::Value CStdDeserializer::ReadScriptVal(const char* /*name*/, JS::HandleObject preexistingObject)
|
|
{
|
|
ScriptRequest rq(m_ScriptInterface);
|
|
|
|
uint8_t type;
|
|
NumberU8_Unbounded("type", type);
|
|
switch (type)
|
|
{
|
|
case SCRIPT_TYPE_VOID:
|
|
return JS::UndefinedValue();
|
|
|
|
case SCRIPT_TYPE_NULL:
|
|
return JS::NullValue();
|
|
|
|
case SCRIPT_TYPE_ARRAY:
|
|
case SCRIPT_TYPE_OBJECT:
|
|
case SCRIPT_TYPE_OBJECT_PROTOTYPE:
|
|
{
|
|
JS::RootedObject obj(rq.cx);
|
|
if (type == SCRIPT_TYPE_ARRAY)
|
|
{
|
|
u32 length;
|
|
NumberU32_Unbounded("array length", length);
|
|
obj.set(JS::NewArrayObject(rq.cx, length));
|
|
}
|
|
else if (type == SCRIPT_TYPE_OBJECT)
|
|
{
|
|
obj.set(JS_NewPlainObject(rq.cx));
|
|
}
|
|
else // SCRIPT_TYPE_OBJECT_PROTOTYPE
|
|
{
|
|
CStrW prototypeName;
|
|
String("proto", prototypeName, 0, 256);
|
|
|
|
// If an object was passed, no need to construct a new one.
|
|
if (preexistingObject != nullptr)
|
|
obj.set(preexistingObject);
|
|
else
|
|
{
|
|
JS::RootedValue constructor(rq.cx);
|
|
if (!ScriptInterface::GetGlobalProperty(rq, prototypeName.ToUTF8(), &constructor))
|
|
throw PSERROR_Deserialize_ScriptError("Deserializer failed to get constructor object");
|
|
|
|
JS::RootedObject newObj(rq.cx);
|
|
if (!JS::Construct(rq.cx, constructor, JS::HandleValueArray::empty(), &newObj))
|
|
throw PSERROR_Deserialize_ScriptError("Deserializer failed to construct object");
|
|
obj.set(newObj);
|
|
}
|
|
|
|
JS::RootedObject prototype(rq.cx);
|
|
JS_GetPrototype(rq.cx, obj, &prototype);
|
|
SPrototypeSerialization info = GetPrototypeInfo(rq, prototype, m_SerializePropId, m_DeserializePropId);
|
|
|
|
if (preexistingObject != nullptr && prototypeName != info.name)
|
|
throw PSERROR_Deserialize_ScriptError("Deserializer failed: incorrect pre-existing object");
|
|
|
|
|
|
if (info.hasCustomDeserialize)
|
|
{
|
|
AddScriptBackref(obj);
|
|
|
|
// If Serialize is null, we'll still call Deserialize but with undefined argument
|
|
JS::RootedValue data(rq.cx);
|
|
if (!info.hasNullSerialize)
|
|
ScriptVal("data", &data);
|
|
|
|
JS::RootedValue objVal(rq.cx, JS::ObjectValue(*obj));
|
|
ScriptFunction::CallVoid(rq, objVal, "Deserialize", data);
|
|
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
else if (info.hasNullSerialize)
|
|
{
|
|
// If we serialized null, this means we're pretty much a default-constructed object.
|
|
// Nothing to do.
|
|
AddScriptBackref(obj);
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
}
|
|
|
|
if (!obj)
|
|
throw PSERROR_Deserialize_ScriptError("Deserializer failed to create new object");
|
|
|
|
AddScriptBackref(obj);
|
|
|
|
uint32_t numProps;
|
|
NumberU32_Unbounded("num props", numProps);
|
|
bool isLatin1;
|
|
for (uint32_t i = 0; i < numProps; ++i)
|
|
{
|
|
Bool("isLatin1", isLatin1);
|
|
if (isLatin1)
|
|
{
|
|
std::vector<JS::Latin1Char> propname;
|
|
ReadStringLatin1("prop name", propname);
|
|
JS::RootedValue propval(rq.cx, ReadScriptVal("prop value", nullptr));
|
|
|
|
std::u16string prp(propname.begin(), propname.end());;
|
|
// TODO: Should ask upstream about getting a variant of JS_SetProperty with a length param.
|
|
if (!JS_SetUCProperty(rq.cx, obj, (const char16_t*)prp.data(), prp.length(), propval))
|
|
throw PSERROR_Deserialize_ScriptError();
|
|
}
|
|
else
|
|
{
|
|
std::u16string propname;
|
|
ReadStringUTF16("prop name", propname);
|
|
JS::RootedValue propval(rq.cx, ReadScriptVal("prop value", nullptr));
|
|
|
|
if (!JS_SetUCProperty(rq.cx, obj, (const char16_t*)propname.data(), propname.length(), propval))
|
|
throw PSERROR_Deserialize_ScriptError();
|
|
}
|
|
}
|
|
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
case SCRIPT_TYPE_STRING:
|
|
{
|
|
JS::RootedString str(rq.cx);
|
|
ScriptString("string", &str);
|
|
return JS::StringValue(str);
|
|
}
|
|
case SCRIPT_TYPE_INT:
|
|
{
|
|
int32_t value;
|
|
NumberI32("value", value, JSVAL_INT_MIN, JSVAL_INT_MAX);
|
|
return JS::NumberValue(value);
|
|
}
|
|
case SCRIPT_TYPE_DOUBLE:
|
|
{
|
|
double value;
|
|
NumberDouble_Unbounded("value", value);
|
|
JS::RootedValue rval(rq.cx, JS::NumberValue(value));
|
|
if (rval.isNull())
|
|
throw PSERROR_Deserialize_ScriptError("JS_NewNumberValue failed");
|
|
return rval;
|
|
}
|
|
case SCRIPT_TYPE_BOOLEAN:
|
|
{
|
|
uint8_t value;
|
|
NumberU8("value", value, 0, 1);
|
|
return JS::BooleanValue(value ? true : false);
|
|
}
|
|
case SCRIPT_TYPE_BACKREF:
|
|
{
|
|
i32 tag;
|
|
NumberI32("tag", tag, 0, JSVAL_INT_MAX);
|
|
JS::RootedObject obj(rq.cx);
|
|
GetScriptBackref(tag, &obj);
|
|
if (!obj)
|
|
throw PSERROR_Deserialize_ScriptError("Invalid backref tag");
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
case SCRIPT_TYPE_OBJECT_NUMBER:
|
|
{
|
|
double value;
|
|
NumberDouble_Unbounded("value", value);
|
|
JS::RootedValue val(rq.cx, JS::NumberValue(value));
|
|
|
|
JS::RootedObject ctorobj(rq.cx);
|
|
if (!JS_GetClassObject(rq.cx, JSProto_Number, &ctorobj))
|
|
throw PSERROR_Deserialize_ScriptError("JS_GetClassObject failed");
|
|
JS::RootedValue protoval(rq.cx, JS::ObjectOrNullValue(ctorobj));
|
|
|
|
JS::RootedObject obj(rq.cx);
|
|
if (!JS::Construct(rq.cx, protoval, JS::HandleValueArray(val), &obj))
|
|
throw PSERROR_Deserialize_ScriptError("JS_New failed");
|
|
AddScriptBackref(obj);
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
case SCRIPT_TYPE_OBJECT_STRING:
|
|
{
|
|
JS::RootedString str(rq.cx);
|
|
ScriptString("value", &str);
|
|
if (!str)
|
|
throw PSERROR_Deserialize_ScriptError();
|
|
JS::RootedValue val(rq.cx, JS::StringValue(str));
|
|
|
|
JS::RootedObject ctorobj(rq.cx);
|
|
if (!JS_GetClassObject(rq.cx, JSProto_String, &ctorobj))
|
|
throw PSERROR_Deserialize_ScriptError("JS_GetClassObject failed");
|
|
JS::RootedValue protoval(rq.cx, JS::ObjectOrNullValue(ctorobj));
|
|
|
|
JS::RootedObject obj(rq.cx);
|
|
if (!JS::Construct(rq.cx, protoval, JS::HandleValueArray(val), &obj))
|
|
throw PSERROR_Deserialize_ScriptError("JS_New failed");
|
|
AddScriptBackref(obj);
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
case SCRIPT_TYPE_OBJECT_BOOLEAN:
|
|
{
|
|
bool value;
|
|
Bool("value", value);
|
|
JS::RootedValue val(rq.cx, JS::BooleanValue(value));
|
|
|
|
JS::RootedObject ctorobj(rq.cx);
|
|
if (!JS_GetClassObject(rq.cx, JSProto_Boolean, &ctorobj))
|
|
throw PSERROR_Deserialize_ScriptError("JS_GetClassObject failed");
|
|
JS::RootedValue protoval(rq.cx, JS::ObjectOrNullValue(ctorobj));
|
|
|
|
JS::RootedObject obj(rq.cx);
|
|
if (!JS::Construct(rq.cx, protoval, JS::HandleValueArray(val), &obj))
|
|
throw PSERROR_Deserialize_ScriptError("JS_New failed");
|
|
AddScriptBackref(obj);
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
case SCRIPT_TYPE_TYPED_ARRAY:
|
|
{
|
|
u8 arrayType;
|
|
u32 byteOffset, length;
|
|
NumberU8_Unbounded("array type", arrayType);
|
|
NumberU32_Unbounded("byte offset", byteOffset);
|
|
NumberU32_Unbounded("length", length);
|
|
|
|
// To match the serializer order, we reserve the typed array's backref tag here
|
|
JS::RootedObject arrayObj(rq.cx);
|
|
AddScriptBackref(arrayObj);
|
|
|
|
// Get buffer object
|
|
JS::RootedValue bufferVal(rq.cx, ReadScriptVal("buffer", nullptr));
|
|
|
|
if (!bufferVal.isObject())
|
|
throw PSERROR_Deserialize_ScriptError();
|
|
|
|
JS::RootedObject bufferObj(rq.cx, &bufferVal.toObject());
|
|
if (!JS::IsArrayBufferObject(bufferObj))
|
|
throw PSERROR_Deserialize_ScriptError("js_IsArrayBuffer failed");
|
|
|
|
switch(arrayType)
|
|
{
|
|
case SCRIPT_TYPED_ARRAY_INT8:
|
|
arrayObj = JS_NewInt8ArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
case SCRIPT_TYPED_ARRAY_UINT8:
|
|
arrayObj = JS_NewUint8ArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
case SCRIPT_TYPED_ARRAY_INT16:
|
|
arrayObj = JS_NewInt16ArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
case SCRIPT_TYPED_ARRAY_UINT16:
|
|
arrayObj = JS_NewUint16ArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
case SCRIPT_TYPED_ARRAY_INT32:
|
|
arrayObj = JS_NewInt32ArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
case SCRIPT_TYPED_ARRAY_UINT32:
|
|
arrayObj = JS_NewUint32ArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
case SCRIPT_TYPED_ARRAY_FLOAT32:
|
|
arrayObj = JS_NewFloat32ArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
case SCRIPT_TYPED_ARRAY_FLOAT64:
|
|
arrayObj = JS_NewFloat64ArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
case SCRIPT_TYPED_ARRAY_UINT8_CLAMPED:
|
|
arrayObj = JS_NewUint8ClampedArrayWithBuffer(rq.cx, bufferObj, byteOffset, length);
|
|
break;
|
|
default:
|
|
throw PSERROR_Deserialize_ScriptError("Failed to deserialize unrecognized typed array view");
|
|
}
|
|
if (!arrayObj)
|
|
throw PSERROR_Deserialize_ScriptError("js_CreateTypedArrayWithBuffer failed");
|
|
|
|
return JS::ObjectValue(*arrayObj);
|
|
}
|
|
case SCRIPT_TYPE_ARRAY_BUFFER:
|
|
{
|
|
u32 length;
|
|
NumberU32_Unbounded("buffer length", length);
|
|
|
|
#if BYTE_ORDER != LITTLE_ENDIAN
|
|
#error TODO: need to convert JS ArrayBuffer data from little-endian
|
|
#endif
|
|
void* bufferData = js_malloc(length);
|
|
ENSURE(bufferData);
|
|
RawBytes("buffer data", (u8*)bufferData, length);
|
|
|
|
mozilla::UniquePtr<void, JS::FreePolicy> contents{ bufferData };
|
|
JS::RootedObject bufferObj(rq.cx, JS::NewArrayBufferWithContents(rq.cx, length, std::move(contents)));
|
|
AddScriptBackref(bufferObj);
|
|
|
|
return JS::ObjectValue(*bufferObj);
|
|
}
|
|
case SCRIPT_TYPE_OBJECT_MAP:
|
|
{
|
|
JS::RootedObject obj(rq.cx, JS::NewMapObject(rq.cx));
|
|
AddScriptBackref(obj);
|
|
|
|
u32 mapSize;
|
|
NumberU32_Unbounded("map size", mapSize);
|
|
|
|
for (u32 i=0; i<mapSize; ++i)
|
|
{
|
|
JS::RootedValue key(rq.cx, ReadScriptVal("map key", nullptr));
|
|
JS::RootedValue value(rq.cx, ReadScriptVal("map value", nullptr));
|
|
JS::MapSet(rq.cx, obj, key, value);
|
|
}
|
|
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
case SCRIPT_TYPE_OBJECT_SET:
|
|
{
|
|
JS::RootedObject obj(rq.cx, JS::NewSetObject(rq.cx));
|
|
AddScriptBackref(obj);
|
|
|
|
u32 setSize;
|
|
NumberU32_Unbounded("set size", setSize);
|
|
|
|
for (u32 i=0; i<setSize; ++i)
|
|
{
|
|
JS::RootedValue value(rq.cx, ReadScriptVal("set value", nullptr));
|
|
JS::SetAdd(rq.cx, obj, value);
|
|
}
|
|
|
|
return JS::ObjectValue(*obj);
|
|
}
|
|
default:
|
|
throw PSERROR_Deserialize_OutOfBounds();
|
|
}
|
|
}
|
|
|
|
void CStdDeserializer::ReadStringLatin1(const char* name, std::vector<JS::Latin1Char>& str)
|
|
{
|
|
uint32_t len;
|
|
NumberU32_Unbounded("string length", len);
|
|
RequireBytesInStream(len);
|
|
str.resize(len);
|
|
Get(name, (u8*)str.data(), len);
|
|
}
|
|
|
|
void CStdDeserializer::ReadStringUTF16(const char* name, std::u16string& str)
|
|
{
|
|
uint32_t len;
|
|
NumberU32_Unbounded("string length", len);
|
|
RequireBytesInStream(len*2);
|
|
str.resize(len);
|
|
Get(name, (u8*)str.data(), len*2);
|
|
}
|
|
|
|
void CStdDeserializer::ScriptString(const char* name, JS::MutableHandleString out)
|
|
{
|
|
#if BYTE_ORDER != LITTLE_ENDIAN
|
|
#error TODO: probably need to convert JS strings from little-endian
|
|
#endif
|
|
|
|
ScriptRequest rq(m_ScriptInterface);
|
|
|
|
bool isLatin1;
|
|
Bool("isLatin1", isLatin1);
|
|
if (isLatin1)
|
|
{
|
|
std::vector<JS::Latin1Char> str;
|
|
ReadStringLatin1(name, str);
|
|
|
|
out.set(JS_NewStringCopyN(rq.cx, (const char*)str.data(), str.size()));
|
|
if (!out)
|
|
throw PSERROR_Deserialize_ScriptError("JS_NewStringCopyN failed");
|
|
}
|
|
else
|
|
{
|
|
std::u16string str;
|
|
ReadStringUTF16(name, str);
|
|
|
|
out.set(JS_NewUCStringCopyN(rq.cx, (const char16_t*)str.data(), str.length()));
|
|
if (!out)
|
|
throw PSERROR_Deserialize_ScriptError("JS_NewUCStringCopyN failed");
|
|
}
|
|
}
|
|
|
|
void CStdDeserializer::ScriptVal(const char* name, JS::MutableHandleValue out)
|
|
{
|
|
out.set(ReadScriptVal(name, nullptr));
|
|
}
|
|
|
|
void CStdDeserializer::ScriptObjectAssign(const char* name, JS::HandleValue objVal)
|
|
{
|
|
ScriptRequest rq(m_ScriptInterface);
|
|
|
|
if (!objVal.isObject())
|
|
throw PSERROR_Deserialize_ScriptError();
|
|
|
|
JS::RootedObject obj(rq.cx, &objVal.toObject());
|
|
ReadScriptVal(name, obj);
|
|
}
|