2007-11-15 23:45:00 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* libretroshare/src/serialiser: rsserial.cc
|
|
|
|
*
|
|
|
|
* RetroShare Serialiser.
|
|
|
|
*
|
|
|
|
* Copyright 2007-2008 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "serialiser/rsbaseserial.h"
|
|
|
|
#include "serialiser/rsserial.h"
|
|
|
|
|
|
|
|
#include <map>
|
2008-03-31 10:06:59 -04:00
|
|
|
#include <iostream>
|
2007-11-15 23:45:00 -05:00
|
|
|
|
2008-03-31 10:06:59 -04:00
|
|
|
/***
|
2007-11-21 23:04:13 -05:00
|
|
|
#define RSSERIAL_DEBUG 1
|
2008-03-31 10:06:59 -04:00
|
|
|
***/
|
2007-11-21 23:04:13 -05:00
|
|
|
|
|
|
|
#ifdef RSSERIAL_DEBUG
|
2007-12-11 19:54:42 -05:00
|
|
|
#include <sstream>
|
2007-11-21 23:04:13 -05:00
|
|
|
#endif
|
2007-11-15 23:45:00 -05:00
|
|
|
|
|
|
|
RsItem::RsItem(uint32_t t)
|
|
|
|
:type(t)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RsItem::RsItem(uint8_t ver, uint8_t cls, uint8_t t, uint8_t subtype)
|
|
|
|
{
|
|
|
|
type = (ver << 24) + (cls << 16) + (t << 8) + subtype;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RsItem::~RsItem()
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t RsItem::PacketId()
|
|
|
|
{
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t RsItem::PacketVersion()
|
|
|
|
{
|
|
|
|
return (type >> 24);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t RsItem::PacketClass()
|
|
|
|
{
|
|
|
|
return (type >> 16) & 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t RsItem::PacketType()
|
|
|
|
{
|
|
|
|
return (type >> 8) & 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t RsItem::PacketSubType()
|
|
|
|
{
|
|
|
|
return (type & 0xFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
/* For Service Packets */
|
|
|
|
RsItem::RsItem(uint8_t ver, uint16_t service, uint8_t subtype)
|
|
|
|
{
|
|
|
|
type = (ver << 24) + (service << 8) + subtype;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t RsItem::PacketService()
|
|
|
|
{
|
|
|
|
return (type >> 8) & 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-15 23:45:00 -05:00
|
|
|
|
|
|
|
RsSerialType::RsSerialType(uint32_t t)
|
|
|
|
:type(t & 0xFFFFFF00)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RsSerialType::RsSerialType(uint8_t ver, uint8_t cls, uint8_t t)
|
|
|
|
{
|
|
|
|
type = (ver << 24) + (cls << 16) + (t << 8);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
RsSerialType::RsSerialType(uint8_t ver, uint16_t service)
|
|
|
|
{
|
|
|
|
type = (ver << 24) + (service << 8);
|
|
|
|
return;
|
|
|
|
}
|
2007-11-15 23:45:00 -05:00
|
|
|
|
|
|
|
RsSerialType::~RsSerialType()
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t RsSerialType::size(RsItem *)
|
|
|
|
{
|
|
|
|
#ifdef RSSERIAL_DEBUG
|
|
|
|
std::cerr << "RsSerialType::size()" << std::endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* base size: type + length */
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RsSerialType::serialise(RsItem *item, void *data, uint32_t *size)
|
|
|
|
{
|
|
|
|
#ifdef RSSERIAL_DEBUG
|
|
|
|
std::cerr << "RsSerialType::serialise()" << std::endl;
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
RsItem * RsSerialType::deserialise(void *data, uint32_t *size)
|
|
|
|
{
|
|
|
|
#ifdef RSSERIAL_DEBUG
|
|
|
|
std::cerr << "RsSerialType::deserialise()" << std::endl;
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t RsSerialType::PacketId()
|
|
|
|
{
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RsSerialiser::RsSerialiser()
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RsSerialiser::~RsSerialiser()
|
|
|
|
{
|
|
|
|
/* clean up the map */
|
|
|
|
std::map<uint32_t, RsSerialType *>::iterator it;
|
|
|
|
for(it = serialisers.begin(); it != serialisers.end(); it++)
|
|
|
|
{
|
|
|
|
delete (it->second);
|
|
|
|
}
|
|
|
|
serialisers.clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool RsSerialiser::addSerialType(RsSerialType *serialiser)
|
|
|
|
{
|
2007-11-21 23:04:13 -05:00
|
|
|
uint32_t type = (serialiser->PacketId() & 0xFFFFFF00);
|
2007-11-15 23:45:00 -05:00
|
|
|
std::map<uint32_t, RsSerialType *>::iterator it;
|
|
|
|
if (serialisers.end() != (it = serialisers.find(type)))
|
|
|
|
{
|
|
|
|
#ifdef RSSERIAL_DEBUG
|
|
|
|
std::cerr << "RsSerialiser::addSerialType() Error Serialiser already exists!";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
#endif
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
serialisers[type] = serialiser;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t RsSerialiser::size(RsItem *item)
|
|
|
|
{
|
|
|
|
/* find the type */
|
2007-11-21 23:04:13 -05:00
|
|
|
uint32_t type = (item->PacketId() & 0xFFFFFF00);
|
2007-11-15 23:45:00 -05:00
|
|
|
std::map<uint32_t, RsSerialType *>::iterator it;
|
|
|
|
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
2007-12-11 19:54:42 -05:00
|
|
|
/* remove 8 more bits -> try again */
|
|
|
|
type &= 0xFFFF0000;
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
|
|
|
/* one more try */
|
|
|
|
type &= 0xFF000000;
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
|
|
|
|
2007-11-15 23:45:00 -05:00
|
|
|
#ifdef RSSERIAL_DEBUG
|
2007-12-11 19:54:42 -05:00
|
|
|
std::cerr << "RsSerialiser::size() serialiser missing!";
|
2008-02-04 12:55:13 -05:00
|
|
|
|
|
|
|
std::ostringstream out;
|
|
|
|
out << std::hex << item->PacketId();
|
|
|
|
|
|
|
|
std::cerr << "RsSerialiser::size() PacketId: ";
|
|
|
|
std::cerr << out.str();
|
2007-12-11 19:54:42 -05:00
|
|
|
std::cerr << std::endl;
|
2007-11-15 23:45:00 -05:00
|
|
|
#endif
|
2007-12-11 19:54:42 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2007-11-15 23:45:00 -05:00
|
|
|
}
|
|
|
|
|
2007-11-21 23:04:13 -05:00
|
|
|
#ifdef RSSERIAL_DEBUG
|
2007-12-11 19:54:42 -05:00
|
|
|
std::ostringstream out;
|
|
|
|
out << std::hex << "RsSerialiser::size() Item->PacketId(): " << item->PacketId();
|
|
|
|
out << " matched to Serialiser Type: " << type;
|
|
|
|
std::cerr << out.str() << std::endl;
|
2007-11-21 23:04:13 -05:00
|
|
|
#endif
|
|
|
|
|
2007-11-15 23:45:00 -05:00
|
|
|
return (it->second)->size(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RsSerialiser::serialise (RsItem *item, void *data, uint32_t *size)
|
|
|
|
{
|
|
|
|
/* find the type */
|
|
|
|
uint32_t type = (item->PacketId() & 0xFFFFFF00);
|
|
|
|
std::map<uint32_t, RsSerialType *>::iterator it;
|
|
|
|
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
2007-12-11 19:54:42 -05:00
|
|
|
/* remove 8 more bits -> try again */
|
|
|
|
type &= 0xFFFF0000;
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
|
|
|
/* one more try */
|
|
|
|
type &= 0xFF000000;
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
|
|
|
|
2007-11-15 23:45:00 -05:00
|
|
|
#ifdef RSSERIAL_DEBUG
|
2007-12-11 19:54:42 -05:00
|
|
|
std::cerr << "RsSerialiser::serialise() serialiser missing!";
|
2008-02-04 12:55:13 -05:00
|
|
|
std::ostringstream out;
|
|
|
|
out << std::hex << item->PacketId();
|
|
|
|
|
|
|
|
std::cerr << "RsSerialiser::serialise() PacketId: ";
|
|
|
|
std::cerr << out.str();
|
2007-12-11 19:54:42 -05:00
|
|
|
std::cerr << std::endl;
|
2007-11-15 23:45:00 -05:00
|
|
|
#endif
|
2007-12-11 19:54:42 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2007-11-15 23:45:00 -05:00
|
|
|
}
|
|
|
|
|
2007-11-21 23:04:13 -05:00
|
|
|
#ifdef RSSERIAL_DEBUG
|
2007-12-11 19:54:42 -05:00
|
|
|
std::ostringstream out;
|
|
|
|
out << std::hex << "RsSerialiser::serialise() Item->PacketId(): " << item->PacketId();
|
|
|
|
out << " matched to Serialiser Type: " << type;
|
|
|
|
std::cerr << out.str() << std::endl;
|
2007-11-21 23:04:13 -05:00
|
|
|
#endif
|
|
|
|
|
2007-11-15 23:45:00 -05:00
|
|
|
return (it->second)->serialise(item, data, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RsItem * RsSerialiser::deserialise(void *data, uint32_t *size)
|
|
|
|
{
|
|
|
|
/* find the type */
|
|
|
|
if (*size < 8)
|
|
|
|
{
|
|
|
|
#ifdef RSSERIAL_DEBUG
|
|
|
|
std::cerr << "RsSerialiser::deserialise() Not Enough Data(1)";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t type = (getRsItemId(data) & 0xFFFFFF00);
|
|
|
|
uint32_t pkt_size = getRsItemSize(data);
|
|
|
|
|
|
|
|
if (pkt_size < *size)
|
|
|
|
{
|
|
|
|
#ifdef RSSERIAL_DEBUG
|
|
|
|
std::cerr << "RsSerialiser::deserialise() Not Enough Data(2)";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* store the packet size to return the amount we should use up */
|
|
|
|
*size = pkt_size;
|
|
|
|
|
|
|
|
std::map<uint32_t, RsSerialType *>::iterator it;
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
2007-12-11 19:54:42 -05:00
|
|
|
/* remove 8 more bits -> try again */
|
|
|
|
type &= 0xFFFF0000;
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
|
|
|
/* one more try */
|
|
|
|
type &= 0xFF000000;
|
|
|
|
if (serialisers.end() == (it = serialisers.find(type)))
|
|
|
|
{
|
|
|
|
|
2007-11-15 23:45:00 -05:00
|
|
|
#ifdef RSSERIAL_DEBUG
|
2007-12-11 19:54:42 -05:00
|
|
|
std::cerr << "RsSerialiser::deserialise() deserialiser missing!";
|
2008-02-04 12:55:13 -05:00
|
|
|
std::ostringstream out;
|
|
|
|
out << std::hex << getRsItemId(data);
|
|
|
|
|
|
|
|
std::cerr << "RsSerialiser::deserialise() PacketId: ";
|
|
|
|
std::cerr << out.str();
|
2007-12-11 19:54:42 -05:00
|
|
|
std::cerr << std::endl;
|
2007-11-15 23:45:00 -05:00
|
|
|
#endif
|
2007-12-11 19:54:42 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2007-11-15 23:45:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
RsItem *item = (it->second)->deserialise(data, &pkt_size);
|
|
|
|
if (!item)
|
|
|
|
{
|
2007-12-11 19:54:42 -05:00
|
|
|
#ifdef RSSERIAL_DEBUG
|
|
|
|
std::cerr << "RsSerialiser::deserialise() Failed!";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
#endif
|
2007-11-15 23:45:00 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pkt_size != *size)
|
|
|
|
{
|
|
|
|
#ifdef RSSERIAL_DEBUG
|
|
|
|
std::cerr << "RsSerialiser::deserialise() Warning: size mismatch!";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool setRsItemHeader(void *data, uint32_t size, uint32_t type, uint32_t pktsize)
|
|
|
|
{
|
|
|
|
if (size < 8)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
uint32_t offset = 0;
|
|
|
|
bool ok = true;
|
|
|
|
ok &= setRawUInt32(data, 8, &offset, type);
|
|
|
|
ok &= setRawUInt32(data, 8, &offset, pktsize);
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t getRsItemId(void *data)
|
|
|
|
{
|
2009-02-22 12:36:39 -05:00
|
|
|
uint32_t type = 0;
|
2007-11-15 23:45:00 -05:00
|
|
|
uint32_t offset = 0;
|
|
|
|
getRawUInt32(data, 4, &offset, &type);
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t getRsItemSize(void *data)
|
|
|
|
{
|
2009-02-22 12:36:39 -05:00
|
|
|
uint32_t size = 0;
|
2007-11-15 23:45:00 -05:00
|
|
|
uint32_t offset = 4;
|
|
|
|
getRawUInt32(data, 8, &offset, &size);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t getRsItemVersion(uint32_t type)
|
|
|
|
{
|
|
|
|
return (type >> 24);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t getRsItemClass(uint32_t type)
|
|
|
|
{
|
|
|
|
return (type >> 16) & 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t getRsItemType(uint32_t type)
|
|
|
|
{
|
|
|
|
return (type >> 8) & 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t getRsItemSubType(uint32_t type)
|
|
|
|
{
|
|
|
|
return (type & 0xFF);
|
|
|
|
}
|
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
uint16_t getRsItemService(uint32_t type)
|
|
|
|
{
|
|
|
|
return (type >> 8) & 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::ostream &printRsItemBase(std::ostream &out, std::string clsName, uint16_t indent)
|
|
|
|
{
|
|
|
|
printIndent(out, indent);
|
|
|
|
out << "RsItem: " << clsName << " ####################################";
|
|
|
|
out << std::endl;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream &printRsItemEnd(std::ostream &out, std::string clsName, uint16_t indent)
|
|
|
|
{
|
|
|
|
printIndent(out, indent);
|
|
|
|
out << "###################### " << clsName << " #####################";
|
|
|
|
out << std::endl;
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostream &RsRawItem::print(std::ostream &out, uint16_t indent)
|
|
|
|
{
|
|
|
|
printRsItemBase(out, "RsRawItem", indent);
|
|
|
|
printIndent(out, indent);
|
|
|
|
out << "Size: " << len << std::endl;
|
|
|
|
printRsItemEnd(out, "RsRawItem", indent);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t getRsPktMaxSize()
|
|
|
|
{
|
2008-03-31 10:06:59 -04:00
|
|
|
//return 65535; /* 2^16 (old artifical low size) */
|
|
|
|
//return 1048575; /* 2^20 -1 (Too Big! - must remove fixed static buffers first) */
|
|
|
|
/* Remember that every pqistreamer allocates an input buffer of this size!
|
|
|
|
* So don't make it too big!
|
|
|
|
*/
|
|
|
|
return 262143; /* 2^18 -1 */
|
2007-12-11 19:54:42 -05:00
|
|
|
}
|
2007-11-15 23:45:00 -05:00
|
|
|
|
|
|
|
|
2007-12-11 19:54:42 -05:00
|
|
|
uint32_t getRsPktBaseSize()
|
|
|
|
{
|
|
|
|
return 8; /* 4 + 4 */
|
|
|
|
}
|
2007-11-15 23:45:00 -05:00
|
|
|
|