mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
13ac670eec
Added warning in p3ConfigMgr::addConfiguration when a config type is used twice. Removed checkbox for "Experimental Features" in general page without function. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6027 b45a01b8-16f6-495d-af2f-9b41ad6348cc
410 lines
10 KiB
C++
410 lines
10 KiB
C++
/*
|
|
* libretroshare/src/pqi: p3cfgmgr.h
|
|
*
|
|
* 3P/PQI network interface for RetroShare.
|
|
*
|
|
* 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".
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
#ifndef P3_CONFIG_MGR_HEADER
|
|
#define P3_CONFIG_MGR_HEADER
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
#include "pqi/pqi_base.h"
|
|
#include "pqi/pqiindic.h"
|
|
#include "pqi/pqinetwork.h"
|
|
#include "util/rsthreads.h"
|
|
#include "pqi/pqibin.h"
|
|
|
|
/***** Configuration Management *****
|
|
*
|
|
* we need to store:
|
|
* (1) Certificates.
|
|
* (2) List of Friends / Net Configuration
|
|
* (3) Stun List. / DHT peers.
|
|
* (4) general config.
|
|
*
|
|
*
|
|
* At top level we need:
|
|
*
|
|
* - type / filename / size / hash -
|
|
* and the file signed...
|
|
*
|
|
*
|
|
*/
|
|
|
|
/**** THESE are STORED in CONFIGURATION FILES....
|
|
* Cannot be changed
|
|
*
|
|
*********************/
|
|
|
|
const uint32_t CONFIG_TYPE_GENERAL = 0x0001;
|
|
const uint32_t CONFIG_TYPE_PEERS = 0x0002;
|
|
const uint32_t CONFIG_TYPE_FSERVER = 0x0003;
|
|
const uint32_t CONFIG_TYPE_MSGS = 0x0004;
|
|
const uint32_t CONFIG_TYPE_CACHE_OLDID = 0x0005;
|
|
const uint32_t CONFIG_TYPE_AUTHGPG = 0x0006;
|
|
|
|
/* new FileTransfer */
|
|
const uint32_t CONFIG_TYPE_FT_SHARED = 0x0007;
|
|
const uint32_t CONFIG_TYPE_FT_EXTRA_LIST= 0x0008;
|
|
const uint32_t CONFIG_TYPE_FT_CONTROL = 0x0009;
|
|
const uint32_t CONFIG_TYPE_FT_DWLQUEUE = 0x000A;
|
|
|
|
const uint32_t CONFIG_TYPE_P3DISC = 0x000B;
|
|
const uint32_t CONFIG_TYPE_AUTHSSL = 0x000C;
|
|
|
|
/* wish these ids where higher...
|
|
* may move when switch to v0.5
|
|
*/
|
|
const uint32_t CONFIG_TYPE_CHAT = 0x0012;
|
|
const uint32_t CONFIG_TYPE_STATUS = 0x0013;
|
|
const uint32_t CONFIG_TYPE_PLUGINS = 0x0014;
|
|
const uint32_t CONFIG_TYPE_HISTORY = 0x0015;
|
|
|
|
/// turtle router
|
|
const uint32_t CONFIG_TYPE_TURTLE = 0x0020;
|
|
|
|
/// dht (relay stuff mainly)
|
|
const uint32_t CONFIG_TYPE_BITDHT = 0x0030;
|
|
|
|
/* standard services */
|
|
const uint32_t CONFIG_TYPE_QBLOG = 0x0101;
|
|
const uint32_t CONFIG_TYPE_FORUMS = 0x0102;
|
|
const uint32_t CONFIG_TYPE_CHANNELS = 0x0103;
|
|
|
|
|
|
|
|
/* CACHE ID Must be at the END so that other configurations
|
|
* are loaded First (Cache Config --> Cache Loading)
|
|
*/
|
|
const uint32_t CONFIG_TYPE_CACHE = 0xff01;
|
|
|
|
class p3ConfigMgr;
|
|
|
|
|
|
|
|
//! abstract class for configuration saving
|
|
/*!
|
|
* Aim is that active objects in retroshare can dervie from this class
|
|
* and implement their method of saving and loading their configuration
|
|
*/
|
|
class pqiConfig
|
|
{
|
|
public:
|
|
pqiConfig(uint32_t t);
|
|
virtual ~pqiConfig();
|
|
|
|
/**
|
|
* loads configuration of object
|
|
* @param loadHash This is the hash that will be compared to confirm saved configuration has not
|
|
* been tampered with
|
|
*/
|
|
virtual bool loadConfiguration(std::string &loadHash) = 0;
|
|
|
|
/**
|
|
* save configuration of object
|
|
*/
|
|
virtual bool saveConfiguration() = 0;
|
|
|
|
/**
|
|
* The type of configuration, see ids where this class is declared
|
|
* @see p3cfgmgr.h
|
|
*/
|
|
uint32_t Type();
|
|
|
|
/**
|
|
* The name of the configuration file
|
|
*/
|
|
const std::string& Filename();
|
|
|
|
/**
|
|
* The hash computed for this configuration, can use this to compare to externally stored hash
|
|
* for validation checking
|
|
*/
|
|
const std::string& Hash();
|
|
|
|
protected:
|
|
|
|
/**
|
|
* Checks if configuration has changed
|
|
*/
|
|
virtual void IndicateConfigChanged();
|
|
void setHash(const std::string& h);
|
|
|
|
RsMutex cfgMtx;
|
|
|
|
static bool globalConfigType;
|
|
|
|
private:
|
|
|
|
/**
|
|
* This sets the name of the pqi configuation file
|
|
*/
|
|
void setFilename(const std::string& name);
|
|
|
|
/**
|
|
* @param an index for the Confind which contains list of configuarations that can be tracked
|
|
*/
|
|
bool HasConfigChanged(uint16_t idx);
|
|
|
|
Indicator ConfInd;
|
|
|
|
uint32_t type;
|
|
std::string filename;
|
|
std::string hash;
|
|
|
|
|
|
friend class p3ConfigMgr;
|
|
/* so it can access:
|
|
* setFilename() and HasConfigChanged()
|
|
*/
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/***********************************************************************************************/
|
|
|
|
/*!
|
|
* MUTEX NOTE
|
|
* Class data is protected by mutex's so that anyone can call these
|
|
* functions, at any time.
|
|
*/
|
|
|
|
class p3ConfigMgr
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* @param bdir base directory: where config files will be saved
|
|
* @param fname file name for global configuration
|
|
* @param signame file name for global signature
|
|
*/
|
|
p3ConfigMgr(std::string bdir, std::string fname, std::string signame);
|
|
|
|
/**
|
|
* checks and update all added configurations
|
|
* @see rsserver
|
|
*/
|
|
void tick();
|
|
|
|
/**
|
|
* save all added configuation including configuration files
|
|
* creates global signature file
|
|
*/
|
|
void saveConfiguration();
|
|
|
|
/**
|
|
* loads all configurations
|
|
*/
|
|
void loadConfiguration();
|
|
|
|
/**
|
|
* @param file The name for new configuration
|
|
* @param conf to the configuration to use
|
|
*/
|
|
void addConfiguration(std::string file, pqiConfig *conf);
|
|
|
|
/* saves config, and disables further saving
|
|
* used for exiting the system
|
|
*/
|
|
void completeConfiguration();
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
* this checks for the global config file and signature and determines class's mode of operation
|
|
* @return global file rs-v0.#.cfg and rs-v0.#.sgn are present
|
|
* @deprecated
|
|
*/
|
|
bool checkForGlobalSigConfig();
|
|
|
|
/**
|
|
* removes theoldconfiguration type
|
|
* @deprecated
|
|
*/
|
|
void removeOldConfigType();
|
|
|
|
/**
|
|
* to save old style global-signature configuration files
|
|
* @deprecated
|
|
*/
|
|
void globalSaveConfig();
|
|
|
|
/**
|
|
* to load up old style global-signature config files
|
|
* @deprecated
|
|
*/
|
|
void globalLoadConfig();
|
|
|
|
/**
|
|
* saves configuration of pqiconfigs in object configs
|
|
*/
|
|
void saveConfig();
|
|
|
|
/**
|
|
*
|
|
*/
|
|
void loadConfig();
|
|
|
|
/**
|
|
* checks if signature and configuration file's signature matches
|
|
* @return false if signature file does not match configuration file's signature
|
|
*/
|
|
bool getSignAttempt(std::string& metaConfigFname, std::string& metaSignFname, BinMemInterface* membio);
|
|
|
|
/**
|
|
* takes current configuration which is stored in back-up file, and moves it to actual config file
|
|
* then stores data that was in actual config file into back-up, Corresponding signatures and handled
|
|
* simlarly in parallel
|
|
*@param fname the name of the first configuration file checked
|
|
*@param fname_backup the seconf file, backup, checked if first file does not exist or is corrupted
|
|
*@param sign file name in which signature is kept
|
|
*@param sign_backup file name in which signature which correspond to backup config is kept
|
|
*@param configbio to write config to file
|
|
*@param signbio to write signature config to file
|
|
*/
|
|
bool backedUpFileSave(const std::string& fname, const std::string& fname_backup,const std::string& sign,
|
|
const std::string& sign_backup, BinMemInterface* configbio, BinMemInterface* signbio);
|
|
|
|
const std::string basedir;
|
|
const std::string metafname;
|
|
const std::string metasigfname;
|
|
|
|
RsMutex cfgMtx; /* below is protected */
|
|
|
|
bool oldConfigType;
|
|
bool mConfigSaveActive;
|
|
std::map<uint32_t, pqiConfig *> configs;
|
|
};
|
|
|
|
|
|
|
|
/***************************************************************************************************/
|
|
|
|
|
|
//! abstract class for configuration saving, aimed at rs services that uses RsItem config data
|
|
/*!
|
|
* The aim of this class is to provide a way for rs services and object to save particular
|
|
* configurations an items (and load them up as well).
|
|
*/
|
|
class p3Config: public pqiConfig
|
|
{
|
|
public:
|
|
|
|
p3Config(uint32_t t);
|
|
|
|
virtual bool loadConfiguration(std::string &loadHash);
|
|
virtual bool saveConfiguration();
|
|
|
|
|
|
protected:
|
|
|
|
/* Key Functions to be overloaded for Full Configuration */
|
|
virtual RsSerialiser *setupSerialiser() = 0;
|
|
|
|
/**
|
|
* saves list of derived object
|
|
* @param cleanup this inform you if you need to call saveDone() to unlock/allow
|
|
* access to resources pointed to by handles (list) returned by function: thus false, call saveDone after returned list finished with
|
|
* and vice versa
|
|
* @return list of config items derived object wants to saves
|
|
*/
|
|
virtual bool saveList(bool &cleanup, std::list<RsItem *>&) = 0;
|
|
|
|
/**
|
|
* loads up list of configs items for derived object
|
|
* @param load list of config items to load up
|
|
*/
|
|
virtual bool loadList(std::list<RsItem *>& load) = 0;
|
|
|
|
/**
|
|
* callback for mutex unlocking
|
|
* in derived classes (should only be needed if cleanup = false)
|
|
*/
|
|
virtual void saveDone() { return; }
|
|
|
|
private:
|
|
|
|
/**
|
|
* takes current configuration which is stored in back-up file, and moves it to actual config file
|
|
* then stores data that was in actual config file into back-up, This is an rs specific solution
|
|
* @param fname the name of the first configuration file checked
|
|
* @param fname_backup the seconf file, backup, checked if first file does not exist or is corrupted
|
|
*/
|
|
bool backedUpFileSave(const std::string& fname, const std::string& fname_backup, std::list<RsItem* >& toSave,
|
|
bool cleanup);
|
|
|
|
/*
|
|
* for retrieving hash files
|
|
*/
|
|
bool getHashAttempt(const std::string& loadHash, std::string& hashstr, const std::string& fname, std::list<RsItem *>& load);
|
|
|
|
bool loadConfig();
|
|
bool saveConfig();
|
|
|
|
bool loadGlobalConfig(std::string& hash);
|
|
bool saveGlobalConfig();
|
|
|
|
bool loadAttempt(const std::string&,const std::string&, std::list<RsItem *>& load);
|
|
|
|
}; /* end of p3Config */
|
|
|
|
|
|
class p3GeneralConfig: public p3Config
|
|
{
|
|
public:
|
|
p3GeneralConfig();
|
|
|
|
// General Configuration System
|
|
std::string getSetting(const std::string &opt);
|
|
void setSetting(const std::string &opt, const std::string &val);
|
|
|
|
protected:
|
|
|
|
/* Key Functions to be overloaded for Full Configuration */
|
|
virtual RsSerialiser *setupSerialiser();
|
|
virtual bool saveList(bool &cleanup, std::list<RsItem* >&);
|
|
virtual bool loadList(std::list<RsItem *>& );
|
|
|
|
private:
|
|
|
|
/* protected by pqiConfig mutex as well! */
|
|
std::map<std::string, std::string> settings;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // P3_CONFIG_MGR_HEADER
|