LCOV - code coverage report
Current view: top level - src/support/allocators - secure.h (source / functions) Hit Total Coverage
Test: coverage.lcov Lines: 14 16 87.5 %
Date: 2021-06-29 14:35:33 Functions: 13 13 100.0 %
Legend: Modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed

Not modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed
Branches: 6 12 50.0 %

           Branch data     Line data    Source code
#       1                 :            : // Copyright (c) 2009-2010 Satoshi Nakamoto
#       2                 :            : // Copyright (c) 2009-2019 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                 :            : #ifndef BITCOIN_SUPPORT_ALLOCATORS_SECURE_H
#       7                 :            : #define BITCOIN_SUPPORT_ALLOCATORS_SECURE_H
#       8                 :            : 
#       9                 :            : #include <support/lockedpool.h>
#      10                 :            : #include <support/cleanse.h>
#      11                 :            : 
#      12                 :            : #include <string>
#      13                 :            : 
#      14                 :            : //
#      15                 :            : // Allocator that locks its contents from being paged
#      16                 :            : // out of memory and clears its contents before deletion.
#      17                 :            : //
#      18                 :            : template <typename T>
#      19                 :            : struct secure_allocator : public std::allocator<T> {
#      20                 :            :     // MSVC8 default copy constructor is broken
#      21                 :            :     typedef std::allocator<T> base;
#      22                 :            :     typedef typename base::size_type size_type;
#      23                 :            :     typedef typename base::difference_type difference_type;
#      24                 :            :     typedef typename base::pointer pointer;
#      25                 :            :     typedef typename base::const_pointer const_pointer;
#      26                 :            :     typedef typename base::reference reference;
#      27                 :            :     typedef typename base::const_reference const_reference;
#      28                 :            :     typedef typename base::value_type value_type;
#      29                 :    1747086 :     secure_allocator() noexcept {}
#      30                 :     206685 :     secure_allocator(const secure_allocator& a) noexcept : base(a) {}
#      31                 :            :     template <typename U>
#      32                 :            :     secure_allocator(const secure_allocator<U>& a) noexcept : base(a)
#      33                 :            :     {
#      34                 :            :     }
#      35                 :    1953123 :     ~secure_allocator() noexcept {}
#      36                 :            :     template <typename _Other>
#      37                 :            :     struct rebind {
#      38                 :            :         typedef secure_allocator<_Other> other;
#      39                 :            :     };
#      40                 :            : 
#      41                 :            :     T* allocate(std::size_t n, const void* hint = 0)
#      42                 :    1846927 :     {
#      43                 :    1846927 :         T* allocation = static_cast<T*>(LockedPoolManager::Instance().alloc(sizeof(T) * n));
#      44 [ -  + ][ -  + ]:    1846927 :         if (!allocation) {
#                 [ -  + ]
#      45                 :          0 :             throw std::bad_alloc();
#      46                 :          0 :         }
#      47                 :    1846927 :         return allocation;
#      48                 :    1846927 :     }
#      49                 :            : 
#      50                 :            :     void deallocate(T* p, std::size_t n)
#      51                 :    1846237 :     {
#      52 [ +  - ][ +  - ]:    1846237 :         if (p != nullptr) {
#                 [ +  - ]
#      53                 :    1846237 :             memory_cleanse(p, sizeof(T) * n);
#      54                 :    1846237 :         }
#      55                 :    1846237 :         LockedPoolManager::Instance().free(p);
#      56                 :    1846237 :     }
#      57                 :            : };
#      58                 :            : 
#      59                 :            : // This is exactly like std::string, but with a custom allocator.
#      60                 :            : typedef std::basic_string<char, std::char_traits<char>, secure_allocator<char> > SecureString;
#      61                 :            : 
#      62                 :            : #endif // BITCOIN_SUPPORT_ALLOCATORS_SECURE_H

Generated by: LCOV version 1.14