2020-05-22 13:18:41 +00:00
|
|
|
/*
|
2024-01-31 20:41:21 +00:00
|
|
|
* Copyright (c) 2013-2024, The PurpleI2P Project
|
2020-05-22 13:18:41 +00:00
|
|
|
*
|
|
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
|
|
*
|
|
|
|
* See full license text in LICENSE file at top of project tree
|
|
|
|
*/
|
|
|
|
|
2015-03-24 16:47:57 +00:00
|
|
|
#ifndef PROFILING_H__
|
|
|
|
#define PROFILING_H__
|
|
|
|
|
|
|
|
#include <memory>
|
2015-03-31 01:05:04 +00:00
|
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
2015-03-24 16:47:57 +00:00
|
|
|
#include "Identity.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
2018-01-06 03:48:51 +00:00
|
|
|
{
|
2015-03-24 22:48:16 +00:00
|
|
|
// sections
|
|
|
|
const char PEER_PROFILE_SECTION_PARTICIPATION[] = "participation";
|
2015-06-05 19:55:21 +00:00
|
|
|
const char PEER_PROFILE_SECTION_USAGE[] = "usage";
|
2018-01-06 03:48:51 +00:00
|
|
|
// params
|
2015-03-31 01:05:04 +00:00
|
|
|
const char PEER_PROFILE_LAST_UPDATE_TIME[] = "lastupdatetime";
|
2023-02-06 18:19:41 +00:00
|
|
|
const char PEER_PROFILE_LAST_UNREACHABLE_TIME[] = "lastunreachabletime";
|
2015-03-24 22:48:16 +00:00
|
|
|
const char PEER_PROFILE_PARTICIPATION_AGREED[] = "agreed";
|
|
|
|
const char PEER_PROFILE_PARTICIPATION_DECLINED[] = "declined";
|
2018-01-06 03:48:51 +00:00
|
|
|
const char PEER_PROFILE_PARTICIPATION_NON_REPLIED[] = "nonreplied";
|
2015-06-05 19:55:21 +00:00
|
|
|
const char PEER_PROFILE_USAGE_TAKEN[] = "taken";
|
|
|
|
const char PEER_PROFILE_USAGE_REJECTED[] = "rejected";
|
2023-05-05 20:14:54 +00:00
|
|
|
const char PEER_PROFILE_USAGE_CONNECTED[] = "connected";
|
|
|
|
|
2023-02-11 21:22:02 +00:00
|
|
|
const int PEER_PROFILE_EXPIRATION_TIMEOUT = 36; // in hours (1.5 days)
|
2023-08-26 14:57:05 +00:00
|
|
|
const int PEER_PROFILE_AUTOCLEAN_TIMEOUT = 3 * 3600; // in seconds (3 hours)
|
2023-02-11 21:22:02 +00:00
|
|
|
const int PEER_PROFILE_AUTOCLEAN_VARIANCE = 3600; // in seconds (1 hour)
|
2023-01-20 20:34:40 +00:00
|
|
|
const int PEER_PROFILE_DECLINED_RECENTLY_INTERVAL = 150; // in seconds (2.5 minutes)
|
2023-02-11 21:22:02 +00:00
|
|
|
const int PEER_PROFILE_PERSIST_INTERVAL = 3300; // in seconds (55 minutes)
|
2024-01-31 20:41:21 +00:00
|
|
|
const int PEER_PROFILE_UNREACHABLE_INTERVAL = 480; // in seconds (8 minutes)
|
2023-05-05 21:30:44 +00:00
|
|
|
const int PEER_PROFILE_USEFUL_THRESHOLD = 3;
|
2023-02-11 06:41:51 +00:00
|
|
|
|
2015-03-24 16:47:57 +00:00
|
|
|
class RouterProfile
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2016-12-31 01:09:41 +00:00
|
|
|
RouterProfile ();
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2016-12-31 01:09:41 +00:00
|
|
|
void Save (const IdentHash& identHash);
|
|
|
|
void Load (const IdentHash& identHash);
|
2015-03-28 00:34:31 +00:00
|
|
|
|
2015-06-05 19:55:21 +00:00
|
|
|
bool IsBad ();
|
2023-02-06 18:19:41 +00:00
|
|
|
bool IsUnreachable ();
|
2023-05-05 20:14:54 +00:00
|
|
|
bool IsReal () const { return m_HasConnected || m_NumTunnelsAgreed > 0 || m_NumTunnelsDeclined > 0; }
|
2023-02-11 06:41:51 +00:00
|
|
|
|
2015-03-24 22:48:16 +00:00
|
|
|
void TunnelBuildResponse (uint8_t ret);
|
2015-03-28 20:09:34 +00:00
|
|
|
void TunnelNonReplied ();
|
2015-03-31 01:05:04 +00:00
|
|
|
|
2023-07-17 22:44:51 +00:00
|
|
|
void Unreachable (bool unreachable);
|
2023-05-05 20:14:54 +00:00
|
|
|
void Connected ();
|
2023-02-11 06:41:51 +00:00
|
|
|
|
2023-02-11 21:22:02 +00:00
|
|
|
boost::posix_time::ptime GetLastUpdateTime () const { return m_LastUpdateTime; };
|
|
|
|
bool IsUpdated () const { return m_IsUpdated; };
|
2023-05-06 07:59:40 +00:00
|
|
|
|
|
|
|
bool IsUseful() const;
|
2023-02-11 21:22:02 +00:00
|
|
|
|
2015-03-31 01:05:04 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
void UpdateTime ();
|
2015-03-31 21:13:01 +00:00
|
|
|
|
|
|
|
bool IsAlwaysDeclining () const { return !m_NumTunnelsAgreed && m_NumTunnelsDeclined >= 5; };
|
2015-06-05 19:55:21 +00:00
|
|
|
bool IsLowPartcipationRate () const;
|
|
|
|
bool IsLowReplyRate () const;
|
2023-01-20 20:34:40 +00:00
|
|
|
bool IsDeclinedRecently ();
|
2018-01-06 03:48:51 +00:00
|
|
|
|
|
|
|
private:
|
2015-03-24 16:47:57 +00:00
|
|
|
|
2023-01-20 20:34:40 +00:00
|
|
|
boost::posix_time::ptime m_LastUpdateTime; // TODO: use std::chrono
|
2023-02-11 21:22:02 +00:00
|
|
|
bool m_IsUpdated;
|
2023-02-06 18:19:41 +00:00
|
|
|
uint64_t m_LastDeclineTime, m_LastUnreachableTime; // in seconds
|
2015-03-24 16:47:57 +00:00
|
|
|
// participation
|
|
|
|
uint32_t m_NumTunnelsAgreed;
|
2018-01-06 03:48:51 +00:00
|
|
|
uint32_t m_NumTunnelsDeclined;
|
2015-03-28 20:09:34 +00:00
|
|
|
uint32_t m_NumTunnelsNonReplied;
|
2015-06-05 19:55:21 +00:00
|
|
|
// usage
|
|
|
|
uint32_t m_NumTimesTaken;
|
2018-01-06 03:48:51 +00:00
|
|
|
uint32_t m_NumTimesRejected;
|
2023-05-06 20:43:09 +00:00
|
|
|
bool m_HasConnected; // successful trusted(incoming or NTCP2) connection
|
2018-01-06 03:48:51 +00:00
|
|
|
};
|
2015-03-24 16:47:57 +00:00
|
|
|
|
2018-01-06 03:48:51 +00:00
|
|
|
std::shared_ptr<RouterProfile> GetRouterProfile (const IdentHash& identHash);
|
2024-03-03 12:42:39 +00:00
|
|
|
bool IsRouterBanned (const IdentHash& identHash); // check only existing profiles
|
2016-02-20 01:00:00 +00:00
|
|
|
void InitProfilesStorage ();
|
2015-04-11 19:39:23 +00:00
|
|
|
void DeleteObsoleteProfiles ();
|
2023-02-11 21:22:02 +00:00
|
|
|
void SaveProfiles ();
|
|
|
|
void PersistProfiles ();
|
2018-01-06 03:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-24 16:47:57 +00:00
|
|
|
|
|
|
|
#endif
|