Bitcoin Core  25.99.0
P2P Digital Currency
net_permissions.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2022 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #include <netaddress.h>
6 
7 #include <string>
8 #include <type_traits>
9 #include <vector>
10 
11 #ifndef BITCOIN_NET_PERMISSIONS_H
12 #define BITCOIN_NET_PERMISSIONS_H
13 
14 struct bilingual_str;
15 
16 extern const std::vector<std::string> NET_PERMISSIONS_DOC;
17 
18 enum class NetPermissionFlags : uint32_t {
19  None = 0,
20  // Can query bloomfilter even if -peerbloomfilters is false
21  BloomFilter = (1U << 1),
22  // Relay and accept transactions from this peer, even if -blocksonly is true
23  // This peer is also not subject to limits on how many transaction INVs are tracked
24  Relay = (1U << 3),
25  // Always relay transactions from this peer, even if already in mempool
26  // Keep parameter interaction: forcerelay implies relay
27  ForceRelay = (1U << 2) | Relay,
28  // Allow getheaders during IBD and block-download after maxuploadtarget limit
29  Download = (1U << 6),
30  // Can't be banned/disconnected/discouraged for misbehavior
31  NoBan = (1U << 4) | Download,
32  // Can query the mempool
33  Mempool = (1U << 5),
34  // Can request addrs without hitting a privacy-preserving cache, and send us
35  // unlimited amounts of addrs.
36  Addr = (1U << 7),
37 
38  // True if the user did not specifically set fine-grained permissions with
39  // the -whitebind or -whitelist configuration options.
40  Implicit = (1U << 31),
42 };
44 {
45  using t = typename std::underlying_type<NetPermissionFlags>::type;
46  return static_cast<NetPermissionFlags>(static_cast<t>(a) | static_cast<t>(b));
47 }
48 
50 {
51 public:
53  static std::vector<std::string> ToStrings(NetPermissionFlags flags);
55  {
56  using t = typename std::underlying_type<NetPermissionFlags>::type;
57  return (static_cast<t>(flags) & static_cast<t>(f)) == static_cast<t>(f);
58  }
60  {
61  flags = flags | f;
62  }
69  {
71  using t = typename std::underlying_type<NetPermissionFlags>::type;
72  flags = static_cast<NetPermissionFlags>(static_cast<t>(flags) & ~static_cast<t>(f));
73  }
74 };
75 
77 {
78 public:
79  static bool TryParse(const std::string& str, NetWhitebindPermissions& output, bilingual_str& error);
81 };
82 
84 {
85 public:
86  static bool TryParse(const std::string& str, NetWhitelistPermissions& output, bilingual_str& error);
88 };
89 
90 #endif // BITCOIN_NET_PERMISSIONS_H
int flags
Definition: bitcoin-tx.cpp:528
A combination of a network address (CNetAddr) and a (TCP) port.
Definition: netaddress.h:520
NetPermissionFlags m_flags
static void AddFlag(NetPermissionFlags &flags, NetPermissionFlags f)
static void ClearFlag(NetPermissionFlags &flags, NetPermissionFlags f)
ClearFlag is only called with f == NetPermissionFlags::Implicit.
static std::vector< std::string > ToStrings(NetPermissionFlags flags)
static bool HasFlag(NetPermissionFlags flags, NetPermissionFlags f)
static bool TryParse(const std::string &str, NetWhitebindPermissions &output, bilingual_str &error)
static bool TryParse(const std::string &str, NetWhitelistPermissions &output, bilingual_str &error)
bool error(const char *fmt, const Args &... args)
Definition: logging.h:261
static constexpr NetPermissionFlags operator|(NetPermissionFlags a, NetPermissionFlags b)
NetPermissionFlags
const std::vector< std::string > NET_PERMISSIONS_DOC
Bilingual messages:
Definition: translation.h:18
assert(!tx.IsCoinBase())