mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Make DirStub serialization consistent on all architectures
Thanks elRepo.io developers to detect and report this bug with detail https://gitlab.com/elRepo.io/elRepo.io-android/-/issues/52
This commit is contained in:
parent
b805cce58d
commit
a9fe1ba6de
@ -3,7 +3,9 @@
|
|||||||
* *
|
* *
|
||||||
* libretroshare: retroshare core library *
|
* libretroshare: retroshare core library *
|
||||||
* *
|
* *
|
||||||
* Copyright 2004-2006 by Robert Fernie <retroshare@lunamutt.com> *
|
* Copyright (C) 2004-2006 Robert Fernie <retroshare@lunamutt.com> *
|
||||||
|
* Copyright (C) 2018-2021 Gioacchino Mazzurco <gio@eigenlab.org> *
|
||||||
|
* Copyright (C) 2020-2021 Asociación Civil Altermundi <info@altermundi.net> *
|
||||||
* *
|
* *
|
||||||
* This program is free software: you can redistribute it and/or modify *
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* it under the terms of the GNU Lesser General Public License as *
|
* it under the terms of the GNU Lesser General Public License as *
|
||||||
@ -135,17 +137,10 @@ struct PeerBandwidthLimits : RsSerializable
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
//class SearchRequest // unused stuff.
|
|
||||||
//{
|
|
||||||
// public:
|
|
||||||
// int searchId;
|
|
||||||
// RsCertId toId; /* all zeros for everyone! */
|
|
||||||
// std::list<Condition> tests;
|
|
||||||
//};
|
|
||||||
|
|
||||||
|
|
||||||
/********************** For FileCache Interface *****************/
|
/********************** For FileCache Interface *****************/
|
||||||
|
|
||||||
|
/* G10h4ck: Having this kind of stuff on public headers is pretty dangerous for
|
||||||
|
* name space pollution, a C++11 enum class should be used instad ASAP */
|
||||||
#define DIR_TYPE_UNKNOWN 0x00
|
#define DIR_TYPE_UNKNOWN 0x00
|
||||||
#define DIR_TYPE_ROOT 0x01
|
#define DIR_TYPE_ROOT 0x01
|
||||||
#define DIR_TYPE_PERSON 0x02
|
#define DIR_TYPE_PERSON 0x02
|
||||||
@ -258,7 +253,10 @@ struct DirStub : RsSerializable
|
|||||||
|
|
||||||
uint8_t type;
|
uint8_t type;
|
||||||
std::string name;
|
std::string name;
|
||||||
void *ref;
|
|
||||||
|
/* G10h4ck do we still need to keep this as void* instead of uint64_t for
|
||||||
|
* retroshare-gui sake? */
|
||||||
|
void* ref;
|
||||||
|
|
||||||
/// @see RsSerializable
|
/// @see RsSerializable
|
||||||
void serial_process(RsGenericSerializer::SerializeJob j,
|
void serial_process(RsGenericSerializer::SerializeJob j,
|
||||||
@ -267,29 +265,12 @@ struct DirStub : RsSerializable
|
|||||||
RS_SERIAL_PROCESS(type);
|
RS_SERIAL_PROCESS(type);
|
||||||
RS_SERIAL_PROCESS(name);
|
RS_SERIAL_PROCESS(name);
|
||||||
|
|
||||||
#if defined(__GNUC__) && !defined(__clang__)
|
/* Enforce serialization as uint64_t because void* changes size (usually
|
||||||
# pragma GCC diagnostic ignored "-Wstrict-aliasing"
|
* 4 bytes on 32bit arch and 8 bytes on 64bit archs) depending on
|
||||||
#endif // defined(__GNUC__) && !defined(__clang__)
|
* architectures and make JSON API behave inconsistenly. */
|
||||||
// (Cyril) We have to do this because on some systems (MacOS) uintptr_t is unsigned long which is not well defined. It is always
|
uint64_t handle = reinterpret_cast<uint64_t>(ref);
|
||||||
// preferable to force type serialization to the correct size rather than letting the compiler choose for us.
|
RS_SERIAL_PROCESS(handle);
|
||||||
// /!\ This structure cannot be sent over the network. The serialization would be inconsistent.
|
ref = reinterpret_cast<void*>(handle);
|
||||||
|
|
||||||
if(sizeof(ref) == 4)
|
|
||||||
{
|
|
||||||
std::uint32_t& handle(reinterpret_cast<std::uint32_t&>(ref));
|
|
||||||
RS_SERIAL_PROCESS(handle);
|
|
||||||
}
|
|
||||||
else if(sizeof(ref) == 8)
|
|
||||||
{
|
|
||||||
std::uint64_t& handle(reinterpret_cast<std::uint64_t&>(ref));
|
|
||||||
RS_SERIAL_PROCESS(handle);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
std::cerr << __PRETTY_FUNCTION__ << ": cannot serialize raw pointer of size " << sizeof(ref) << std::endl;
|
|
||||||
|
|
||||||
#if defined(__GNUC__) && !defined(__clang__)
|
|
||||||
# pragma GCC diagnostic pop
|
|
||||||
#endif // defined(__GNUC__) && !defined(__clang__)
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -330,9 +311,9 @@ struct DirDetails : RsSerializable
|
|||||||
void serial_process(RsGenericSerializer::SerializeJob j,
|
void serial_process(RsGenericSerializer::SerializeJob j,
|
||||||
RsGenericSerializer::SerializeContext& ctx) override
|
RsGenericSerializer::SerializeContext& ctx) override
|
||||||
{
|
{
|
||||||
/* Enforce serialization as uint64_t because void* changes size
|
/* Enforce serialization as uint64_t because void* changes size (usually
|
||||||
* depending (usually 4 bytes on 32bit arch and 8 bytes on 64bit archs)
|
* 4 bytes on 32bit arch and 8 bytes on 64bit archs) depending on
|
||||||
*/
|
* architectures and make JSON API behave inconsistenly. */
|
||||||
uint64_t handle = reinterpret_cast<uint64_t>(ref);
|
uint64_t handle = reinterpret_cast<uint64_t>(ref);
|
||||||
RS_SERIAL_PROCESS(handle);
|
RS_SERIAL_PROCESS(handle);
|
||||||
ref = reinterpret_cast<void*>(handle);
|
ref = reinterpret_cast<void*>(handle);
|
||||||
@ -347,7 +328,7 @@ struct DirDetails : RsSerializable
|
|||||||
RS_SERIAL_PROCESS(name);
|
RS_SERIAL_PROCESS(name);
|
||||||
RS_SERIAL_PROCESS(hash);
|
RS_SERIAL_PROCESS(hash);
|
||||||
RS_SERIAL_PROCESS(path);
|
RS_SERIAL_PROCESS(path);
|
||||||
RS_SERIAL_PROCESS(size);
|
RS_SERIAL_PROCESS(size);
|
||||||
RS_SERIAL_PROCESS(mtime);
|
RS_SERIAL_PROCESS(mtime);
|
||||||
RS_SERIAL_PROCESS(flags);
|
RS_SERIAL_PROCESS(flags);
|
||||||
RS_SERIAL_PROCESS(max_mtime);
|
RS_SERIAL_PROCESS(max_mtime);
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* RetroShare debugging utilities *
|
* RetroShare debugging utilities *
|
||||||
* *
|
* *
|
||||||
* Copyright (C) 2004-2008 Robert Fernie <retroshare@lunamutt.com> *
|
* Copyright (C) 2004-2008 Robert Fernie <retroshare@lunamutt.com> *
|
||||||
* Copyright (C) 2019-2021 Gioacchino Mazzurco <gio@eigenlab.org> *
|
* Copyright (C) 2019-2021 Gioacchino Mazzurco <gio@eigenlab.org> *
|
||||||
* Copyright (C) 2020-2021 Asociación Civil Altermundi <info@altermundi.net> *
|
* Copyright (C) 2020-2021 Asociación Civil Altermundi <info@altermundi.net> *
|
||||||
* *
|
* *
|
||||||
* This program is free software: you can redistribute it and/or modify *
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
|
Loading…
Reference in New Issue
Block a user