2011-07-09 05:36:37 -04:00
|
|
|
/*
|
|
|
|
* libretroshare/src/pqi: p3peermgr.h
|
|
|
|
*
|
|
|
|
* 3P/PQI network interface for RetroShare.
|
|
|
|
*
|
|
|
|
* Copyright 2007-2011 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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MRK_PQI_PEER_MANAGER_HEADER
|
|
|
|
#define MRK_PQI_PEER_MANAGER_HEADER
|
|
|
|
|
|
|
|
#include "pqi/pqimonitor.h"
|
|
|
|
#include "pqi/pqiipset.h"
|
|
|
|
#include "pqi/pqiassist.h"
|
|
|
|
|
|
|
|
#include "pqi/p3cfgmgr.h"
|
|
|
|
|
|
|
|
#include "util/rsthreads.h"
|
|
|
|
|
|
|
|
/* RS_VIS_STATE_XXXX
|
|
|
|
* determines how public this peer wants to be...
|
|
|
|
*
|
|
|
|
* STD = advertise to Peers / DHT checking etc
|
|
|
|
* GRAY = share with friends / but not DHT
|
|
|
|
* DARK = hidden from all
|
|
|
|
* BROWN? = hidden from friends / but on DHT
|
|
|
|
*/
|
|
|
|
|
|
|
|
const uint32_t RS_VIS_STATE_NODISC = 0x0001;
|
|
|
|
const uint32_t RS_VIS_STATE_NODHT = 0x0002;
|
|
|
|
|
|
|
|
const uint32_t RS_VIS_STATE_STD = 0x0000;
|
|
|
|
const uint32_t RS_VIS_STATE_GRAY = RS_VIS_STATE_NODHT;
|
|
|
|
const uint32_t RS_VIS_STATE_DARK = RS_VIS_STATE_NODISC | RS_VIS_STATE_NODHT;
|
|
|
|
const uint32_t RS_VIS_STATE_BROWN = RS_VIS_STATE_NODISC;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Startup Modes (confirmed later) */
|
|
|
|
const uint32_t RS_NET_MODE_TRYMODE = 0x00f0;
|
|
|
|
|
|
|
|
const uint32_t RS_NET_MODE_TRY_EXT = 0x0010;
|
|
|
|
const uint32_t RS_NET_MODE_TRY_UPNP = 0x0020;
|
|
|
|
const uint32_t RS_NET_MODE_TRY_UDP = 0x0040;
|
|
|
|
|
|
|
|
/* Actual State */
|
|
|
|
const uint32_t RS_NET_MODE_ACTUAL = 0x000f;
|
|
|
|
|
|
|
|
const uint32_t RS_NET_MODE_UNKNOWN = 0x0000;
|
|
|
|
const uint32_t RS_NET_MODE_EXT = 0x0001;
|
|
|
|
const uint32_t RS_NET_MODE_UPNP = 0x0002;
|
|
|
|
const uint32_t RS_NET_MODE_UDP = 0x0004;
|
|
|
|
const uint32_t RS_NET_MODE_UNREACHABLE = 0x0008;
|
|
|
|
|
|
|
|
|
|
|
|
/* flags of peerStatus */
|
|
|
|
const uint32_t RS_NET_FLAGS_USE_DISC = 0x0001;
|
|
|
|
const uint32_t RS_NET_FLAGS_USE_DHT = 0x0002;
|
|
|
|
const uint32_t RS_NET_FLAGS_ONLINE = 0x0004;
|
|
|
|
const uint32_t RS_NET_FLAGS_EXTERNAL_ADDR = 0x0008;
|
|
|
|
const uint32_t RS_NET_FLAGS_STABLE_UDP = 0x0010;
|
|
|
|
const uint32_t RS_NET_FLAGS_TRUSTS_ME = 0x0020;
|
|
|
|
|
|
|
|
class peerState
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
peerState(); /* init */
|
|
|
|
|
|
|
|
std::string id;
|
|
|
|
std::string gpg_id;
|
|
|
|
|
|
|
|
uint32_t netMode; /* EXT / UPNP / UDP / INVALID */
|
|
|
|
uint32_t visState; /* STD, GRAY, DARK */
|
|
|
|
|
2011-07-09 14:39:34 -04:00
|
|
|
struct sockaddr_in localaddr;
|
|
|
|
struct sockaddr_in serveraddr;
|
|
|
|
std::string dyndns;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-09 14:39:34 -04:00
|
|
|
time_t lastcontact;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
|
|
|
/* list of addresses from various sources */
|
|
|
|
pqiIpAddrSet ipAddrs;
|
|
|
|
|
|
|
|
std::string location;
|
2011-07-09 14:39:34 -04:00
|
|
|
std::string name;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class RsPeerGroupItem;
|
|
|
|
class RsGroupInfo;
|
|
|
|
|
|
|
|
std::string textPeerState(peerState &state);
|
|
|
|
|
2011-07-09 14:39:34 -04:00
|
|
|
class p3LinkMgr;
|
|
|
|
class p3NetMgr;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
class p3LinkMgrIMPL;
|
|
|
|
class p3NetMgrIMPL;
|
2011-09-29 05:20:09 -04:00
|
|
|
class p3HistoryMgr;
|
2011-07-09 14:39:34 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
class p3PeerMgr
|
2011-07-09 05:36:37 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
p3PeerMgr() { return; }
|
|
|
|
virtual ~p3PeerMgr() { return; }
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
virtual bool addFriend(const std::string &ssl_id, const std::string &gpg_id, uint32_t netMode = RS_NET_MODE_UDP,
|
|
|
|
uint32_t visState = RS_VIS_STATE_STD , time_t lastContact = 0) = 0;
|
|
|
|
virtual bool removeFriend(const std::string &ssl_id) = 0;
|
2011-07-09 14:39:34 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
virtual bool isFriend(const std::string &ssl_id) = 0;
|
2011-07-09 14:39:34 -04:00
|
|
|
|
2011-08-07 17:11:00 -04:00
|
|
|
virtual bool getAssociatedPeers(const std::string &gpg_id, std::list<std::string> &ids) = 0;
|
|
|
|
virtual bool removeAllFriendLocations(const std::string &gpgid) = 0;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
/******************** Groups **********************/
|
|
|
|
/* This is solely used by p3peers - makes sense */
|
|
|
|
|
|
|
|
virtual bool addGroup(RsGroupInfo &groupInfo) = 0;
|
|
|
|
virtual bool editGroup(const std::string &groupId, RsGroupInfo &groupInfo) = 0;
|
|
|
|
virtual bool removeGroup(const std::string &groupId) = 0;
|
|
|
|
virtual bool getGroupInfo(const std::string &groupId, RsGroupInfo &groupInfo) = 0;
|
|
|
|
virtual bool getGroupInfoList(std::list<RsGroupInfo> &groupInfoList) = 0;
|
|
|
|
virtual bool assignPeersToGroup(const std::string &groupId, const std::list<std::string> &peerIds, bool assign) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/**************** Set Net Info ****************/
|
|
|
|
/*
|
|
|
|
* These functions are used by:
|
|
|
|
* 1) p3linkmgr
|
|
|
|
* 2) p3peers - reasonable
|
|
|
|
* 3) p3disc - reasonable
|
|
|
|
*/
|
2011-07-09 14:39:34 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
virtual bool setLocalAddress(const std::string &id, struct sockaddr_in addr) = 0;
|
|
|
|
virtual bool setExtAddress(const std::string &id, struct sockaddr_in addr) = 0;
|
|
|
|
virtual bool setDynDNS(const std::string &id, const std::string &dyndns) = 0;
|
2011-07-10 20:52:12 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
virtual bool setNetworkMode(const std::string &id, uint32_t netMode) = 0;
|
|
|
|
virtual bool setVisState(const std::string &id, uint32_t visState) = 0;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
virtual bool setLocation(const std::string &pid, const std::string &location) = 0;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
virtual bool updateCurrentAddress(const std::string& id, const pqiIpAddress &addr) = 0;
|
|
|
|
virtual bool updateLastContact(const std::string& id) = 0;
|
|
|
|
virtual bool updateAddressList(const std::string& id, const pqiIpAddrSet &addrs) = 0;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-08-02 15:05:27 -04:00
|
|
|
|
|
|
|
// THIS MUST ONLY BE CALLED BY NETMGR!!!!
|
|
|
|
virtual bool UpdateOwnAddress(const struct sockaddr_in &mLocalAddr, const struct sockaddr_in &mExtAddr) = 0;
|
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
/**************** Net Status Info ****************/
|
|
|
|
/*
|
|
|
|
* MUST RATIONALISE THE DATA FROM THESE FUNCTIONS
|
|
|
|
* These functions are used by:
|
|
|
|
* 1) p3face-config ... to remove!
|
|
|
|
* 2) p3peers - reasonable
|
|
|
|
* 3) p3disc - reasonable
|
|
|
|
*/
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
virtual bool getOwnNetStatus(peerState &state) = 0;
|
|
|
|
virtual bool getFriendNetStatus(const std::string &id, peerState &state) = 0;
|
|
|
|
virtual bool getOthersNetStatus(const std::string &id, peerState &state) = 0;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-08-07 17:11:00 -04:00
|
|
|
virtual bool getPeerName(const std::string &ssl_id, std::string &name) = 0;
|
|
|
|
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
/************* DEPRECIATED FUNCTIONS (TO REMOVE) ********/
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
// Single Use Function... shouldn't be here. used by p3serverconfig.cc
|
|
|
|
virtual bool haveOnceConnected() = 0;
|
2011-07-09 05:36:37 -04:00
|
|
|
|
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
/*************************************************************************************************/
|
|
|
|
/*************************************************************************************************/
|
|
|
|
/*************************************************************************************************/
|
|
|
|
/*************************************************************************************************/
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-11 14:48:56 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class p3PeerMgrIMPL: public p3PeerMgr, public p3Config
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/************************************************************************************************/
|
|
|
|
/* EXTERNAL INTERFACE */
|
|
|
|
/************************************************************************************************/
|
|
|
|
|
|
|
|
virtual bool addFriend(const std::string &ssl_id, const std::string &gpg_id, uint32_t netMode = RS_NET_MODE_UDP,
|
|
|
|
uint32_t visState = RS_VIS_STATE_STD , time_t lastContact = 0);
|
|
|
|
virtual bool removeFriend(const std::string &ssl_id);
|
|
|
|
|
|
|
|
virtual bool isFriend(const std::string &ssl_id);
|
|
|
|
|
2011-08-07 17:11:00 -04:00
|
|
|
virtual bool getAssociatedPeers(const std::string &gpg_id, std::list<std::string> &ids);
|
|
|
|
virtual bool removeAllFriendLocations(const std::string &gpgid);
|
|
|
|
|
2011-07-09 05:36:37 -04:00
|
|
|
|
|
|
|
/******************** Groups **********************/
|
2011-07-13 10:22:25 -04:00
|
|
|
/* This is solely used by p3peers - makes sense */
|
|
|
|
|
|
|
|
virtual bool addGroup(RsGroupInfo &groupInfo);
|
|
|
|
virtual bool editGroup(const std::string &groupId, RsGroupInfo &groupInfo);
|
|
|
|
virtual bool removeGroup(const std::string &groupId);
|
|
|
|
virtual bool getGroupInfo(const std::string &groupId, RsGroupInfo &groupInfo);
|
|
|
|
virtual bool getGroupInfoList(std::list<RsGroupInfo> &groupInfoList);
|
|
|
|
virtual bool assignPeersToGroup(const std::string &groupId, const std::list<std::string> &peerIds, bool assign);
|
|
|
|
|
|
|
|
|
|
|
|
/**************** Set Net Info ****************/
|
|
|
|
/*
|
|
|
|
* These functions are used by:
|
|
|
|
* 1) p3linkmgr
|
|
|
|
* 2) p3peers - reasonable
|
|
|
|
* 3) p3disc - reasonable
|
|
|
|
*/
|
|
|
|
|
|
|
|
virtual bool setLocalAddress(const std::string &id, struct sockaddr_in addr);
|
|
|
|
virtual bool setExtAddress(const std::string &id, struct sockaddr_in addr);
|
|
|
|
virtual bool setDynDNS(const std::string &id, const std::string &dyndns);
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
virtual bool setNetworkMode(const std::string &id, uint32_t netMode);
|
|
|
|
virtual bool setVisState(const std::string &id, uint32_t visState);
|
|
|
|
|
|
|
|
virtual bool setLocation(const std::string &pid, const std::string &location);
|
|
|
|
|
|
|
|
virtual bool updateCurrentAddress(const std::string& id, const pqiIpAddress &addr);
|
|
|
|
virtual bool updateLastContact(const std::string& id);
|
|
|
|
virtual bool updateAddressList(const std::string& id, const pqiIpAddrSet &addrs);
|
|
|
|
|
2011-08-02 15:05:27 -04:00
|
|
|
|
|
|
|
// THIS MUST ONLY BE CALLED BY NETMGR!!!!
|
|
|
|
virtual bool UpdateOwnAddress(const struct sockaddr_in &mLocalAddr, const struct sockaddr_in &mExtAddr);
|
2011-07-13 10:22:25 -04:00
|
|
|
/**************** Net Status Info ****************/
|
|
|
|
/*
|
|
|
|
* MUST RATIONALISE THE DATA FROM THESE FUNCTIONS
|
|
|
|
* These functions are used by:
|
|
|
|
* 1) p3face-config ... to remove!
|
|
|
|
* 2) p3peers - reasonable
|
|
|
|
* 3) p3disc - reasonable
|
|
|
|
*/
|
|
|
|
|
|
|
|
virtual bool getOwnNetStatus(peerState &state);
|
|
|
|
virtual bool getFriendNetStatus(const std::string &id, peerState &state);
|
|
|
|
virtual bool getOthersNetStatus(const std::string &id, peerState &state);
|
|
|
|
|
2011-08-07 17:11:00 -04:00
|
|
|
virtual bool getPeerName(const std::string &ssl_id, std::string &name);
|
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
|
|
|
|
/************* DEPRECIATED FUNCTIONS (TO REMOVE) ********/
|
|
|
|
|
|
|
|
// Single Use Function... shouldn't be here. used by p3serverconfig.cc
|
|
|
|
virtual bool haveOnceConnected();
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************************************************************/
|
|
|
|
/* Extra IMPL Functions (used by p3LinkMgr, p3NetMgr + Setup) */
|
|
|
|
/************************************************************************************************/
|
|
|
|
|
|
|
|
p3PeerMgrIMPL();
|
|
|
|
|
2011-09-29 05:20:09 -04:00
|
|
|
void setManagers(p3LinkMgrIMPL *linkMgr, p3NetMgrIMPL *netMgr, p3HistoryMgr *historyMgr);
|
2011-07-13 10:22:25 -04:00
|
|
|
|
|
|
|
void tick();
|
|
|
|
|
|
|
|
const std::string getOwnId();
|
|
|
|
void setOwnNetworkMode(uint32_t netMode);
|
|
|
|
void setOwnVisState(uint32_t visState);
|
|
|
|
|
|
|
|
int getConnectAddresses(const std::string &id,
|
|
|
|
struct sockaddr_in &lAddr, struct sockaddr_in &eAddr,
|
|
|
|
pqiIpAddrSet &histAddrs, std::string &dyndns);
|
2011-07-09 05:36:37 -04:00
|
|
|
|
2011-08-07 17:11:00 -04:00
|
|
|
|
|
|
|
|
2011-07-09 05:36:37 -04:00
|
|
|
protected:
|
|
|
|
/* Internal Functions */
|
2011-08-07 17:11:00 -04:00
|
|
|
|
|
|
|
bool removeUnusedLocations();
|
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
void printPeerLists(std::ostream &out);
|
2011-07-09 05:36:37 -04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/*****************************************************************/
|
|
|
|
/*********************** p3config ******************************/
|
|
|
|
/* Key Functions to be overloaded for Full Configuration */
|
|
|
|
virtual RsSerialiser *setupSerialiser();
|
|
|
|
virtual bool saveList(bool &cleanup, std::list<RsItem *>&);
|
|
|
|
virtual void saveDone();
|
|
|
|
virtual bool loadList(std::list<RsItem *>& load);
|
|
|
|
/*****************************************************************/
|
|
|
|
|
2011-07-09 14:39:34 -04:00
|
|
|
/* other important managers */
|
|
|
|
|
2011-07-13 10:22:25 -04:00
|
|
|
p3LinkMgrIMPL *mLinkMgr;
|
|
|
|
p3NetMgrIMPL *mNetMgr;
|
2011-09-29 05:20:09 -04:00
|
|
|
p3HistoryMgr *mHistoryMgr;
|
2011-07-09 14:39:34 -04:00
|
|
|
|
2011-07-09 05:36:37 -04:00
|
|
|
private:
|
|
|
|
RsMutex mPeerMtx; /* protects below */
|
|
|
|
|
|
|
|
bool mStatusChanged;
|
|
|
|
|
|
|
|
std::list<pqiMonitor *> clients;
|
|
|
|
|
|
|
|
peerState mOwnState;
|
|
|
|
|
|
|
|
std::map<std::string, peerState> mFriendList;
|
|
|
|
std::map<std::string, peerState> mOthersList;
|
|
|
|
|
|
|
|
std::list<RsPeerGroupItem *> groupList;
|
|
|
|
uint32_t lastGroupId;
|
|
|
|
|
|
|
|
std::list<RsItem *> saveCleanupList; /* TEMPORARY LIST WHEN SAVING */
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MRK_PQI_PEER_MANAGER_HEADER
|