LCOV - code coverage report
Current view: top level - src - banman.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 99.2 % 130 129
Test Date: 2024-12-02 12:23:29 Functions: 100.0 % 15 15
Branches: 59.5 % 158 94

             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                 :        2761 : BanMan::BanMan(fs::path ban_file, CClientUIInterface* client_interface, int64_t default_ban_time)
      18   [ +  -  +  - ]:        5522 :     : m_client_interface(client_interface), m_ban_db(std::move(ban_file)), m_default_ban_time(default_ban_time)
      19                 :             : {
      20         [ +  - ]:        2761 :     LoadBanlist();
      21         [ +  - ]:        2761 :     DumpBanlist();
      22                 :        2761 : }
      23                 :             : 
      24                 :        2761 : BanMan::~BanMan()
      25                 :             : {
      26                 :        2761 :     DumpBanlist();
      27                 :        2761 : }
      28                 :             : 
      29                 :        2761 : void BanMan::LoadBanlist()
      30                 :             : {
      31                 :        2761 :     LOCK(m_banned_mutex);
      32                 :             : 
      33   [ -  +  -  -  :        2761 :     if (m_client_interface) m_client_interface->InitMessage(_("Loading banlist…").translated);
                   -  - ]
      34                 :             : 
      35                 :        2761 :     const auto start{SteadyClock::now()};
      36   [ +  -  +  + ]:        2761 :     if (m_ban_db.Read(m_banned)) {
      37         [ +  - ]:        1528 :         SweepBanned(); // sweep out unused entries
      38                 :             : 
      39   [ +  -  -  +  :        1528 :         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         [ +  - ]:        1233 :         LogPrintf("Recreating the banlist database\n");
      43         [ +  - ]:        1233 :         m_banned = {};
      44                 :        1233 :         m_is_dirty = true;
      45                 :             :     }
      46                 :        2761 : }
      47                 :             : 
      48                 :       27957 : void BanMan::DumpBanlist()
      49                 :             : {
      50   [ +  +  +  - ]:       27957 :     static Mutex dump_mutex;
      51                 :       27957 :     LOCK(dump_mutex);
      52                 :             : 
      53         [ +  - ]:       27957 :     banmap_t banmap;
      54                 :       27957 :     {
      55         [ +  - ]:       27957 :         LOCK(m_banned_mutex);
      56         [ +  - ]:       27957 :         SweepBanned();
      57   [ +  +  +  - ]:       27957 :         if (!m_is_dirty) return;
      58         [ +  - ]:       21732 :         banmap = m_banned;
      59         [ +  - ]:       21732 :         m_is_dirty = false;
      60                 :        6225 :     }
      61                 :             : 
      62                 :       21732 :     const auto start{SteadyClock::now()};
      63   [ +  -  +  + ]:       21732 :     if (!m_ban_db.Write(banmap)) {
      64         [ +  - ]:        5327 :         LOCK(m_banned_mutex);
      65         [ +  - ]:        5327 :         m_is_dirty = true;
      66                 :        5327 :     }
      67                 :             : 
      68   [ +  -  +  +  :       21732 :     LogDebug(BCLog::NET, "Flushed %d banned node addresses/subnets to disk  %dms\n", banmap.size(),
                   +  - ]
      69                 :             :              Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
      70   [ +  -  +  - ]:       55914 : }
      71                 :             : 
      72                 :        2273 : void BanMan::ClearBanned()
      73                 :             : {
      74                 :        2273 :     {
      75                 :        2273 :         LOCK(m_banned_mutex);
      76                 :        2273 :         m_banned.clear();
      77         [ +  - ]:        2273 :         m_is_dirty = true;
      78                 :        2273 :     }
      79                 :        2273 :     DumpBanlist(); //store banlist to disk
      80         [ -  + ]:        2273 :     if (m_client_interface) m_client_interface->BannedListChanged();
      81                 :        2273 : }
      82                 :             : 
      83                 :      151546 : bool BanMan::IsDiscouraged(const CNetAddr& net_addr)
      84                 :             : {
      85                 :      151546 :     LOCK(m_banned_mutex);
      86   [ +  -  +  -  :      151546 :     return m_discouraged.contains(net_addr.GetAddrBytes());
                   +  - ]
      87                 :      151546 : }
      88                 :             : 
      89                 :      136566 : bool BanMan::IsBanned(const CNetAddr& net_addr)
      90                 :             : {
      91                 :      136566 :     auto current_time = GetTime();
      92                 :      136566 :     LOCK(m_banned_mutex);
      93         [ +  + ]:      174987 :     for (const auto& it : m_banned) {
      94                 :       39606 :         CSubNet sub_net = it.first;
      95                 :       39606 :         CBanEntry ban_entry = it.second;
      96                 :             : 
      97   [ +  +  +  -  :       39606 :         if (current_time < ban_entry.nBanUntil && sub_net.Match(net_addr)) {
                   +  + ]
      98                 :        1185 :             return true;
      99                 :             :         }
     100                 :       39606 :     }
     101                 :             :     return false;
     102                 :      136566 : }
     103                 :             : 
     104                 :        2096 : bool BanMan::IsBanned(const CSubNet& sub_net)
     105                 :             : {
     106                 :        2096 :     auto current_time = GetTime();
     107                 :        2096 :     LOCK(m_banned_mutex);
     108         [ +  - ]:        2096 :     banmap_t::iterator i = m_banned.find(sub_net);
     109         [ +  + ]:        2096 :     if (i != m_banned.end()) {
     110         [ +  + ]:         868 :         CBanEntry ban_entry = (*i).second;
     111         [ +  + ]:         868 :         if (current_time < ban_entry.nBanUntil) {
     112                 :         538 :             return true;
     113                 :             :         }
     114                 :             :     }
     115                 :             :     return false;
     116                 :        2096 : }
     117                 :             : 
     118                 :        9426 : void BanMan::Ban(const CNetAddr& net_addr, int64_t ban_time_offset, bool since_unix_epoch)
     119                 :             : {
     120                 :        9426 :     CSubNet sub_net(net_addr);
     121         [ +  - ]:        9426 :     Ban(sub_net, ban_time_offset, since_unix_epoch);
     122                 :        9426 : }
     123                 :             : 
     124                 :        5775 : void BanMan::Discourage(const CNetAddr& net_addr)
     125                 :             : {
     126                 :        5775 :     LOCK(m_banned_mutex);
     127   [ +  -  +  -  :       11550 :     m_discouraged.insert(net_addr.GetAddrBytes());
                   +  - ]
     128                 :        5775 : }
     129                 :             : 
     130                 :       22025 : void BanMan::Ban(const CSubNet& sub_net, int64_t ban_time_offset, bool since_unix_epoch)
     131                 :             : {
     132         [ +  + ]:       22025 :     CBanEntry ban_entry(GetTime());
     133                 :             : 
     134                 :       22025 :     int64_t normalized_ban_time_offset = ban_time_offset;
     135                 :       22025 :     bool normalized_since_unix_epoch = since_unix_epoch;
     136         [ +  + ]:       22025 :     if (ban_time_offset <= 0) {
     137                 :       21280 :         normalized_ban_time_offset = m_default_ban_time;
     138                 :       21280 :         normalized_since_unix_epoch = false;
     139                 :             :     }
     140         [ +  + ]:       22025 :     ban_entry.nBanUntil = (normalized_since_unix_epoch ? 0 : GetTime()) + normalized_ban_time_offset;
     141                 :             : 
     142                 :       22025 :     {
     143                 :       22025 :         LOCK(m_banned_mutex);
     144   [ +  -  +  + ]:       22025 :         if (m_banned[sub_net].nBanUntil < ban_entry.nBanUntil) {
     145         [ +  - ]:       14037 :             m_banned[sub_net] = ban_entry;
     146         [ +  - ]:       14037 :             m_is_dirty = true;
     147                 :             :         } else
     148         [ +  - ]:        7988 :             return;
     149                 :        7988 :     }
     150         [ -  + ]:       14037 :     if (m_client_interface) m_client_interface->BannedListChanged();
     151                 :             : 
     152                 :             :     //store banlist to disk immediately
     153                 :       14037 :     DumpBanlist();
     154                 :             : }
     155                 :             : 
     156                 :        5093 : bool BanMan::Unban(const CNetAddr& net_addr)
     157                 :             : {
     158                 :        5093 :     CSubNet sub_net(net_addr);
     159         [ +  - ]:        5093 :     return Unban(sub_net);
     160                 :        5093 : }
     161                 :             : 
     162                 :        5716 : bool BanMan::Unban(const CSubNet& sub_net)
     163                 :             : {
     164                 :        5716 :     {
     165                 :        5716 :         LOCK(m_banned_mutex);
     166   [ +  -  +  +  :        5716 :         if (m_banned.erase(sub_net) == 0) return false;
                   +  - ]
     167         [ +  - ]:         700 :         m_is_dirty = true;
     168                 :        5016 :     }
     169         [ -  + ]:         700 :     if (m_client_interface) m_client_interface->BannedListChanged();
     170                 :         700 :     DumpBanlist(); //store banlist to disk immediately
     171                 :         700 :     return true;
     172                 :             : }
     173                 :             : 
     174                 :       12999 : void BanMan::GetBanned(banmap_t& banmap)
     175                 :             : {
     176                 :       12999 :     LOCK(m_banned_mutex);
     177                 :             :     // Sweep the banlist so expired bans are not returned
     178         [ +  - ]:       12999 :     SweepBanned();
     179   [ +  -  +  - ]:       12999 :     banmap = m_banned; //create a thread safe copy
     180                 :       12999 : }
     181                 :             : 
     182                 :       42484 : void BanMan::SweepBanned()
     183                 :             : {
     184                 :       42484 :     AssertLockHeld(m_banned_mutex);
     185                 :             : 
     186                 :       42484 :     int64_t now = GetTime();
     187                 :       42484 :     bool notify_ui = false;
     188                 :       42484 :     banmap_t::iterator it = m_banned.begin();
     189         [ +  + ]:      945840 :     while (it != m_banned.end()) {
     190                 :      903356 :         CSubNet sub_net = (*it).first;
     191         [ +  - ]:      903356 :         CBanEntry ban_entry = (*it).second;
     192   [ +  -  +  +  :      903356 :         if (!sub_net.IsValid() || now > ban_entry.nBanUntil) {
                   +  + ]
     193                 :        6173 :             m_banned.erase(it++);
     194                 :        6173 :             m_is_dirty = true;
     195                 :        6173 :             notify_ui = true;
     196   [ +  -  -  +  :        6173 :             LogDebug(BCLog::NET, "Removed banned node address/subnet: %s\n", sub_net.ToString());
             -  -  -  - ]
     197                 :             :         } else {
     198                 :      897183 :             ++it;
     199                 :             :         }
     200                 :      903356 :     }
     201                 :             : 
     202                 :             :     // update UI
     203   [ +  +  -  + ]:       42484 :     if (notify_ui && m_client_interface) {
     204                 :           0 :         m_client_interface->BannedListChanged();
     205                 :             :     }
     206                 :       42484 : }
        

Generated by: LCOV version 2.0-1