2018-05-28 16:03:39 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
* libretroshare/src/pqi: pqibin.h *
|
|
|
|
* *
|
|
|
|
* libretroshare: retroshare core library *
|
|
|
|
* *
|
|
|
|
* Copyright 2004-2006 by Robert Fernie <retroshare@lunamutt.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
|
|
* License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2007-11-14 22:18:48 -05:00
|
|
|
#ifndef PQI_BIN_INTERFACE_HEADER
|
|
|
|
#define PQI_BIN_INTERFACE_HEADER
|
|
|
|
|
2010-09-18 15:09:11 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
#include "pqi/pqi_base.h"
|
2008-01-25 01:36:40 -05:00
|
|
|
#include "pqi/pqihash.h"
|
2010-09-18 15:09:11 -04:00
|
|
|
|
2009-05-11 10:30:53 -04:00
|
|
|
#include <stdio.h>
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2010-04-15 06:53:00 -04:00
|
|
|
|
|
|
|
//! handles writing to binary files
|
|
|
|
/*!
|
|
|
|
* This allows for handling of binary file within Rs, In particular writing
|
|
|
|
* binary data to file declared in constructor
|
|
|
|
*/
|
2007-11-14 22:18:48 -05:00
|
|
|
class BinFileInterface: public BinInterface
|
|
|
|
{
|
|
|
|
public:
|
2008-01-25 01:36:40 -05:00
|
|
|
BinFileInterface(const char *fname, int flags);
|
2007-11-14 22:18:48 -05:00
|
|
|
virtual ~BinFileInterface();
|
|
|
|
|
|
|
|
virtual int tick() { return 1; }
|
|
|
|
|
|
|
|
virtual int senddata(void *data, int len);
|
|
|
|
virtual int readdata(void *data, int len);
|
|
|
|
virtual int netstatus() { return 1;}
|
|
|
|
virtual int isactive() { return (buf != NULL);}
|
2013-10-01 06:11:34 -04:00
|
|
|
virtual bool moretoread(uint32_t /* usec */ )
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2015-06-14 05:49:21 -04:00
|
|
|
if ((buf) && (bin_flags & BIN_FLAGS_READABLE))
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
if ((size - ftell(buf)) > 0)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-31 10:06:59 -04:00
|
|
|
virtual int close();
|
2013-10-01 06:11:34 -04:00
|
|
|
virtual bool cansend(uint32_t /* usec */)
|
|
|
|
{
|
2015-06-14 05:49:21 -04:00
|
|
|
return (bin_flags & BIN_FLAGS_WRITEABLE);
|
2013-10-01 06:11:34 -04:00
|
|
|
}
|
2008-02-05 08:45:04 -05:00
|
|
|
virtual bool bandwidthLimited() { return false; }
|
|
|
|
|
2010-04-15 06:54:54 -04:00
|
|
|
//! if HASHing is switched on
|
2014-03-17 16:56:06 -04:00
|
|
|
virtual RsFileHash gethash();
|
2008-02-05 08:45:04 -05:00
|
|
|
virtual uint64_t bytecount();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2010-09-18 15:09:11 -04:00
|
|
|
protected:
|
2016-06-02 20:23:22 -04:00
|
|
|
virtual uint64_t getFileSize();
|
2010-09-18 15:09:11 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
private:
|
|
|
|
int bin_flags;
|
|
|
|
FILE *buf;
|
2016-06-02 20:23:22 -04:00
|
|
|
uint64_t size;
|
2008-01-25 01:36:40 -05:00
|
|
|
pqihash *hash;
|
2008-02-05 08:45:04 -05:00
|
|
|
uint64_t bcount;
|
2007-11-14 22:18:48 -05:00
|
|
|
};
|
|
|
|
|
2010-09-18 15:09:11 -04:00
|
|
|
/*!
|
|
|
|
* use this for writing encrypted data to file using user's (ownid) ssl key
|
|
|
|
* hash for encrypted data is calculated, not the unencrypted data
|
|
|
|
*/
|
|
|
|
class BinEncryptedFileInterface : public BinFileInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
BinEncryptedFileInterface(const char *fname, int flags);
|
|
|
|
virtual ~BinEncryptedFileInterface();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* pls note if hashing is on, it is the hash of the encrypted data that is calculated
|
|
|
|
* also note, sif data is sent more than once, in a single instance of this object, then you will need to store the
|
|
|
|
* encrypted file size for each send externally as they are encrypted with different random keys.
|
|
|
|
* @param data data to be sent
|
|
|
|
* @param len length of data in bytes
|
|
|
|
* @return -1 if failed to write data, if not number bytes sent to file is returned
|
|
|
|
*/
|
|
|
|
int senddata(void *data, int len);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* uses the hash of the encrypted data
|
|
|
|
* @param location to place data
|
|
|
|
* @param the length of data to be read
|
|
|
|
* @return -1 if failed to write data, if not number of bytes read is returned
|
|
|
|
*/
|
|
|
|
int readdata(void *data, int len);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* this releases resources held by an instance
|
|
|
|
*/
|
|
|
|
int close();
|
|
|
|
|
|
|
|
uint64_t bytecount();
|
2013-10-01 06:11:34 -04:00
|
|
|
bool moretoread(uint32_t usec);
|
2010-09-18 15:09:11 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
char* data;
|
|
|
|
bool haveData;
|
2016-06-02 20:23:22 -04:00
|
|
|
uint64_t sizeData;
|
2010-09-18 15:09:11 -04:00
|
|
|
uint64_t cpyCount;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2010-04-15 06:53:00 -04:00
|
|
|
//! handles writing to reading/writing to memory
|
|
|
|
/*!
|
2010-04-15 06:54:54 -04:00
|
|
|
* This provide a memory interface for storing/retrieving information in memory
|
|
|
|
* to be read/sent elsewhere
|
2010-04-15 06:53:00 -04:00
|
|
|
*/
|
2007-11-14 22:18:48 -05:00
|
|
|
class BinMemInterface: public BinInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BinMemInterface(int defsize, int flags);
|
2008-02-08 07:39:40 -05:00
|
|
|
BinMemInterface(const void *data, const int size, int flags);
|
2007-11-14 22:18:48 -05:00
|
|
|
virtual ~BinMemInterface();
|
|
|
|
|
2008-02-08 07:39:40 -05:00
|
|
|
/* Extra Interfaces */
|
2007-11-14 22:18:48 -05:00
|
|
|
int fseek(int loc);
|
|
|
|
int memsize() { return recvsize; }
|
|
|
|
void *memptr() { return buf; }
|
|
|
|
|
2008-02-08 07:39:40 -05:00
|
|
|
/* file interface */
|
|
|
|
bool writetofile(const char *fname);
|
|
|
|
bool readfromfile(const char *fname);
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
virtual int tick() { return 1; }
|
|
|
|
|
|
|
|
virtual int senddata(void *data, int len);
|
|
|
|
virtual int readdata(void *data, int len);
|
|
|
|
virtual int netstatus() { return 1; }
|
|
|
|
virtual int isactive() { return 1; }
|
2013-10-01 06:11:34 -04:00
|
|
|
virtual bool moretoread(uint32_t /* usec */)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2015-06-14 05:49:21 -04:00
|
|
|
if ((buf) && (bin_flags & BIN_FLAGS_READABLE ))
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
if (readloc < recvsize)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-31 10:06:59 -04:00
|
|
|
virtual int close();
|
2013-10-01 06:11:34 -04:00
|
|
|
virtual bool cansend(uint32_t /* usec */)
|
|
|
|
{
|
2015-06-14 05:49:21 -04:00
|
|
|
return (bin_flags & BIN_FLAGS_WRITEABLE);
|
2013-10-01 06:11:34 -04:00
|
|
|
}
|
2008-02-05 08:45:04 -05:00
|
|
|
virtual bool bandwidthLimited() { return false; }
|
|
|
|
|
2014-03-17 16:56:06 -04:00
|
|
|
virtual RsFileHash gethash();
|
2008-02-05 08:45:04 -05:00
|
|
|
virtual uint64_t bytecount();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
int bin_flags;
|
|
|
|
void *buf;
|
|
|
|
int size;
|
|
|
|
int recvsize;
|
|
|
|
int readloc;
|
2008-01-25 01:36:40 -05:00
|
|
|
pqihash *hash;
|
2008-02-05 08:45:04 -05:00
|
|
|
uint64_t bcount;
|
2007-11-14 22:18:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-01-25 01:36:40 -05:00
|
|
|
class NetBinDummy: public NetBinInterface
|
|
|
|
{
|
|
|
|
public:
|
2014-03-17 16:56:06 -04:00
|
|
|
NetBinDummy(PQInterface *parent, const RsPeerId& id, uint32_t t);
|
2008-01-25 01:36:40 -05:00
|
|
|
virtual ~NetBinDummy() { return; }
|
|
|
|
|
|
|
|
// Net Interface
|
2013-09-13 10:35:19 -04:00
|
|
|
virtual int connect(const struct sockaddr_storage &raddr);
|
2008-01-25 01:36:40 -05:00
|
|
|
virtual int listen();
|
|
|
|
virtual int stoplistening();
|
|
|
|
virtual int disconnect();
|
|
|
|
virtual int reset();
|
2010-06-26 08:31:24 -04:00
|
|
|
virtual bool connect_parameter(uint32_t type, uint32_t value)
|
|
|
|
{
|
|
|
|
(void) type; /* suppress unused parameter warning */
|
|
|
|
(void) value; /* suppress unused parameter warning */
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-13 10:35:19 -04:00
|
|
|
virtual int getConnectAddress(struct sockaddr_storage &raddr)
|
2010-06-26 08:31:24 -04:00
|
|
|
{
|
|
|
|
(void) raddr; /* suppress unused parameter warning */
|
|
|
|
return 0;
|
|
|
|
}
|
2008-01-25 01:36:40 -05:00
|
|
|
|
|
|
|
// Bin Interface.
|
|
|
|
virtual int tick();
|
|
|
|
|
|
|
|
virtual int senddata(void *data, int len);
|
|
|
|
virtual int readdata(void *data, int len);
|
|
|
|
virtual int netstatus();
|
|
|
|
virtual int isactive();
|
2013-10-01 06:11:34 -04:00
|
|
|
virtual bool moretoread(uint32_t usec);
|
|
|
|
virtual bool cansend(uint32_t usec);
|
2008-03-31 10:06:59 -04:00
|
|
|
virtual int close();
|
|
|
|
|
2014-03-17 16:56:06 -04:00
|
|
|
virtual RsFileHash gethash();
|
2008-01-25 01:36:40 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
uint32_t type;
|
|
|
|
bool dummyConnected;
|
|
|
|
bool toConnect;
|
|
|
|
uint32_t connectDelta;
|
|
|
|
time_t connectTS;
|
|
|
|
};
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
#endif // PQI_BINARY_INTERFACES_HEADER
|
|
|
|
|