Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-2022 The Bitcoin Core developers
3 : : // Distributed under the MIT software license, see the accompanying
4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 : :
6 : : #include <banman.h>
7 : :
8 : : #include <common/system.h>
9 : : #include <logging.h>
10 : : #include <netaddress.h>
11 : : #include <node/interface_ui.h>
12 : : #include <sync.h>
13 : : #include <util/time.h>
14 : : #include <util/translation.h>
15 : :
16 : :
17 : 2674 : BanMan::BanMan(fs::path ban_file, CClientUIInterface* client_interface, int64_t default_ban_time)
18 [ + - + - ]: 5348 : : m_client_interface(client_interface), m_ban_db(std::move(ban_file)), m_default_ban_time(default_ban_time)
19 : : {
20 [ + - ]: 2674 : LoadBanlist();
21 [ + - ]: 2674 : DumpBanlist();
22 : 2674 : }
23 : :
24 : 2674 : BanMan::~BanMan()
25 : : {
26 : 2674 : DumpBanlist();
27 : 2674 : }
28 : :
29 : 2674 : void BanMan::LoadBanlist()
30 : : {
31 : 2674 : LOCK(m_banned_mutex);
32 : :
33 [ - + - - : 2674 : if (m_client_interface) m_client_interface->InitMessage(_("Loading banlist…").translated);
- - ]
34 : :
35 : 2674 : const auto start{SteadyClock::now()};
36 [ + - + + ]: 2674 : if (m_ban_db.Read(m_banned)) {
37 [ + - ]: 1479 : SweepBanned(); // sweep out unused entries
38 : :
39 [ + - - + : 1479 : LogDebug(BCLog::NET, "Loaded %d banned node addresses/subnets %dms\n", m_banned.size(),
- - ]
40 : : Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
41 : : } else {
42 [ + - ]: 1195 : LogPrintf("Recreating the banlist database\n");
43 [ + - ]: 1195 : m_banned = {};
44 : 1195 : m_is_dirty = true;
45 : : }
46 : 2674 : }
47 : :
48 : 27505 : void BanMan::DumpBanlist()
49 : : {
50 [ + + + - ]: 27505 : static Mutex dump_mutex;
51 : 27505 : LOCK(dump_mutex);
52 : :
53 [ + - ]: 27505 : banmap_t banmap;
54 : 27505 : {
55 [ + - ]: 27505 : LOCK(m_banned_mutex);
56 [ + - ]: 27505 : SweepBanned();
57 [ + + + - ]: 27505 : if (!m_is_dirty) return;
58 [ + - ]: 21464 : banmap = m_banned;
59 [ + - ]: 21464 : m_is_dirty = false;
60 : 6041 : }
61 : :
62 : 21464 : const auto start{SteadyClock::now()};
63 [ + - + + ]: 21464 : if (!m_ban_db.Write(banmap)) {
64 [ + - ]: 5327 : LOCK(m_banned_mutex);
65 [ + - ]: 5327 : m_is_dirty = true;
66 : 5327 : }
67 : :
68 [ + - + + : 21464 : LogDebug(BCLog::NET, "Flushed %d banned node addresses/subnets to disk %dms\n", banmap.size(),
+ - ]
69 : : Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
70 [ + - + - ]: 55010 : }
71 : :
72 : 2266 : void BanMan::ClearBanned()
73 : : {
74 : 2266 : {
75 : 2266 : LOCK(m_banned_mutex);
76 : 2266 : m_banned.clear();
77 [ + - ]: 2266 : m_is_dirty = true;
78 : 2266 : }
79 : 2266 : DumpBanlist(); //store banlist to disk
80 [ - + ]: 2266 : if (m_client_interface) m_client_interface->BannedListChanged();
81 : 2266 : }
82 : :
83 : 131854 : bool BanMan::IsDiscouraged(const CNetAddr& net_addr)
84 : : {
85 : 131854 : LOCK(m_banned_mutex);
86 [ + - + - : 131854 : return m_discouraged.contains(net_addr.GetAddrBytes());
+ - ]
87 : 131854 : }
88 : :
89 : 135765 : bool BanMan::IsBanned(const CNetAddr& net_addr)
90 : : {
91 : 135765 : auto current_time = GetTime();
92 : 135765 : LOCK(m_banned_mutex);
93 [ + + ]: 173261 : for (const auto& it : m_banned) {
94 : 38681 : CSubNet sub_net = it.first;
95 : 38681 : CBanEntry ban_entry = it.second;
96 : :
97 [ + + + - : 38681 : if (current_time < ban_entry.nBanUntil && sub_net.Match(net_addr)) {
+ + ]
98 : 1185 : return true;
99 : : }
100 : 38681 : }
101 : : return false;
102 : 135765 : }
103 : :
104 : 2077 : bool BanMan::IsBanned(const CSubNet& sub_net)
105 : : {
106 : 2077 : auto current_time = GetTime();
107 : 2077 : LOCK(m_banned_mutex);
108 [ + - ]: 2077 : banmap_t::iterator i = m_banned.find(sub_net);
109 [ + + ]: 2077 : if (i != m_banned.end()) {
110 [ + + ]: 864 : CBanEntry ban_entry = (*i).second;
111 [ + + ]: 864 : if (current_time < ban_entry.nBanUntil) {
112 : 534 : return true;
113 : : }
114 : : }
115 : : return false;
116 : 2077 : }
117 : :
118 : 9175 : void BanMan::Ban(const CNetAddr& net_addr, int64_t ban_time_offset, bool since_unix_epoch)
119 : : {
120 : 9175 : CSubNet sub_net(net_addr);
121 [ + - ]: 9175 : Ban(sub_net, ban_time_offset, since_unix_epoch);
122 : 9175 : }
123 : :
124 : 5714 : void BanMan::Discourage(const CNetAddr& net_addr)
125 : : {
126 : 5714 : LOCK(m_banned_mutex);
127 [ + - + - : 11428 : m_discouraged.insert(net_addr.GetAddrBytes());
+ - ]
128 : 5714 : }
129 : :
130 : 20758 : void BanMan::Ban(const CSubNet& sub_net, int64_t ban_time_offset, bool since_unix_epoch)
131 : : {
132 [ + + ]: 20758 : CBanEntry ban_entry(GetTime());
133 : :
134 : 20758 : int64_t normalized_ban_time_offset = ban_time_offset;
135 : 20758 : bool normalized_since_unix_epoch = since_unix_epoch;
136 [ + + ]: 20758 : if (ban_time_offset <= 0) {
137 : 20186 : normalized_ban_time_offset = m_default_ban_time;
138 : 20186 : normalized_since_unix_epoch = false;
139 : : }
140 [ + + ]: 20758 : ban_entry.nBanUntil = (normalized_since_unix_epoch ? 0 : GetTime()) + normalized_ban_time_offset;
141 : :
142 : 20758 : {
143 : 20758 : LOCK(m_banned_mutex);
144 [ + - + + ]: 20758 : if (m_banned[sub_net].nBanUntil < ban_entry.nBanUntil) {
145 [ + - ]: 13854 : m_banned[sub_net] = ban_entry;
146 [ + - ]: 13854 : m_is_dirty = true;
147 : : } else
148 [ + - ]: 6904 : return;
149 : 6904 : }
150 [ - + ]: 13854 : if (m_client_interface) m_client_interface->BannedListChanged();
151 : :
152 : : //store banlist to disk immediately
153 : 13854 : DumpBanlist();
154 : : }
155 : :
156 : 4849 : bool BanMan::Unban(const CNetAddr& net_addr)
157 : : {
158 : 4849 : CSubNet sub_net(net_addr);
159 [ + - ]: 4849 : return Unban(sub_net);
160 : 4849 : }
161 : :
162 : 5453 : bool BanMan::Unban(const CSubNet& sub_net)
163 : : {
164 : 5453 : {
165 : 5453 : LOCK(m_banned_mutex);
166 [ + - + + : 5453 : if (m_banned.erase(sub_net) == 0) return false;
+ - ]
167 [ + - ]: 668 : m_is_dirty = true;
168 : 4785 : }
169 [ - + ]: 668 : if (m_client_interface) m_client_interface->BannedListChanged();
170 : 668 : DumpBanlist(); //store banlist to disk immediately
171 : 668 : return true;
172 : : }
173 : :
174 : 12779 : void BanMan::GetBanned(banmap_t& banmap)
175 : : {
176 : 12779 : LOCK(m_banned_mutex);
177 : : // Sweep the banlist so expired bans are not returned
178 [ + - ]: 12779 : SweepBanned();
179 [ + - + - ]: 12779 : banmap = m_banned; //create a thread safe copy
180 : 12779 : }
181 : :
182 : 41763 : void BanMan::SweepBanned()
183 : : {
184 : 41763 : AssertLockHeld(m_banned_mutex);
185 : :
186 : 41763 : int64_t now = GetTime();
187 : 41763 : bool notify_ui = false;
188 : 41763 : banmap_t::iterator it = m_banned.begin();
189 [ + + ]: 934295 : while (it != m_banned.end()) {
190 : 892532 : CSubNet sub_net = (*it).first;
191 [ + - ]: 892532 : CBanEntry ban_entry = (*it).second;
192 [ + - + + : 892532 : if (!sub_net.IsValid() || now > ban_entry.nBanUntil) {
+ + ]
193 : 6015 : m_banned.erase(it++);
194 : 6015 : m_is_dirty = true;
195 : 6015 : notify_ui = true;
196 [ + - - + : 6015 : LogDebug(BCLog::NET, "Removed banned node address/subnet: %s\n", sub_net.ToString());
- - - - ]
197 : : } else {
198 : 886517 : ++it;
199 : : }
200 : 892532 : }
201 : :
202 : : // update UI
203 [ + + - + ]: 41763 : if (notify_ui && m_client_interface) {
204 : 0 : m_client_interface->BannedListChanged();
205 : : }
206 : 41763 : }
|