LCOV - code coverage report
Current view: top level - src/util - fs_helpers.cpp (source / functions) Hit Total Coverage
Test: fuzz_coverage.info Lines: 1 91 1.1 %
Date: 2024-01-03 14:57:27 Functions: 0 13 0.0 %
Branches: 0 98 0.0 %

           Branch data     Line data    Source code
       1                 :            : // Copyright (c) 2009-2010 Satoshi Nakamoto
       2                 :            : // Copyright (c) 2009-2023 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 <util/fs_helpers.h>
       7                 :            : 
       8                 :            : #if defined(HAVE_CONFIG_H)
       9                 :            : #include <config/bitcoin-config.h>
      10                 :            : #endif
      11                 :            : 
      12                 :            : #include <logging.h>
      13                 :            : #include <sync.h>
      14                 :            : #include <util/fs.h>
      15                 :            : #include <util/syserror.h>
      16                 :            : 
      17                 :            : #include <cerrno>
      18                 :            : #include <fstream>
      19                 :            : #include <map>
      20                 :            : #include <memory>
      21                 :            : #include <string>
      22                 :            : #include <system_error>
      23                 :            : #include <utility>
      24                 :            : 
      25                 :            : #ifndef WIN32
      26                 :            : // for posix_fallocate, in configure.ac we check if it is present after this
      27                 :            : #ifdef __linux__
      28                 :            : 
      29                 :            : #ifdef _POSIX_C_SOURCE
      30                 :            : #undef _POSIX_C_SOURCE
      31                 :            : #endif
      32                 :            : 
      33                 :            : #define _POSIX_C_SOURCE 200112L
      34                 :            : 
      35                 :            : #endif // __linux__
      36                 :            : 
      37                 :            : #include <fcntl.h>
      38                 :            : #include <sys/resource.h>
      39                 :            : #include <unistd.h>
      40                 :            : #else
      41                 :            : #include <io.h> /* For _get_osfhandle, _chsize */
      42                 :            : #include <shlobj.h> /* For SHGetSpecialFolderPathW */
      43                 :            : #endif // WIN32
      44                 :            : 
      45                 :            : /** Mutex to protect dir_locks. */
      46                 :            : static GlobalMutex cs_dir_locks;
      47                 :            : /** A map that contains all the currently held directory locks. After
      48                 :            :  * successful locking, these will be held here until the global destructor
      49                 :            :  * cleans them up and thus automatically unlocks them, or ReleaseDirectoryLocks
      50                 :            :  * is called.
      51                 :            :  */
      52                 :          2 : static std::map<std::string, std::unique_ptr<fsbridge::FileLock>> dir_locks GUARDED_BY(cs_dir_locks);
      53                 :            : namespace util {
      54                 :          0 : LockResult LockDirectory(const fs::path& directory, const fs::path& lockfile_name, bool probe_only)
      55                 :            : {
      56                 :          0 :     LOCK(cs_dir_locks);
      57 [ #  # ][ #  # ]:          0 :     fs::path pathLockFile = directory / lockfile_name;
      58                 :            : 
      59                 :            :     // If a lock for this directory already exists in the map, don't try to re-lock it
      60 [ #  # ][ #  # ]:          0 :     if (dir_locks.count(fs::PathToString(pathLockFile))) {
                 [ #  # ]
      61                 :          0 :         return LockResult::Success;
      62                 :            :     }
      63                 :            : 
      64                 :            :     // Create empty lock file if it doesn't exist.
      65 [ #  # ][ #  # ]:          0 :     if (auto created{fsbridge::fopen(pathLockFile, "a")}) {
      66         [ #  # ]:          0 :         std::fclose(created);
      67                 :          0 :     } else {
      68                 :          0 :         return LockResult::ErrorWrite;
      69                 :            :     }
      70         [ #  # ]:          0 :     auto lock = std::make_unique<fsbridge::FileLock>(pathLockFile);
      71 [ #  # ][ #  # ]:          0 :     if (!lock->TryLock()) {
      72 [ #  # ][ #  # ]:          0 :         error("Error while attempting to lock directory %s: %s", fs::PathToString(directory), lock->GetReason());
                 [ #  # ]
      73                 :          0 :         return LockResult::ErrorLock;
      74                 :            :     }
      75         [ #  # ]:          0 :     if (!probe_only) {
      76                 :            :         // Lock successful and we're not just probing, put it into the map
      77 [ #  # ][ #  # ]:          0 :         dir_locks.emplace(fs::PathToString(pathLockFile), std::move(lock));
      78                 :          0 :     }
      79                 :          0 :     return LockResult::Success;
      80                 :          0 : }
      81                 :            : } // namespace util
      82                 :          0 : void UnlockDirectory(const fs::path& directory, const fs::path& lockfile_name)
      83                 :            : {
      84                 :          0 :     LOCK(cs_dir_locks);
      85 [ #  # ][ #  # ]:          0 :     dir_locks.erase(fs::PathToString(directory / lockfile_name));
         [ #  # ][ #  # ]
      86                 :          0 : }
      87                 :            : 
      88                 :          0 : void ReleaseDirectoryLocks()
      89                 :            : {
      90                 :          0 :     LOCK(cs_dir_locks);
      91                 :          0 :     dir_locks.clear();
      92                 :          0 : }
      93                 :            : 
      94                 :          0 : bool CheckDiskSpace(const fs::path& dir, uint64_t additional_bytes)
      95                 :            : {
      96                 :          0 :     constexpr uint64_t min_disk_space = 52428800; // 50 MiB
      97                 :            : 
      98                 :          0 :     uint64_t free_bytes_available = fs::space(dir).available;
      99                 :          0 :     return free_bytes_available >= min_disk_space + additional_bytes;
     100                 :            : }
     101                 :            : 
     102                 :          0 : std::streampos GetFileSize(const char* path, std::streamsize max)
     103                 :            : {
     104                 :          0 :     std::ifstream file{path, std::ios::binary};
     105         [ #  # ]:          0 :     file.ignore(max);
     106 [ #  # ][ #  # ]:          0 :     return file.gcount();
     107                 :          0 : }
     108                 :            : 
     109                 :          0 : bool FileCommit(FILE* file)
     110                 :            : {
     111         [ #  # ]:          0 :     if (fflush(file) != 0) { // harmless if redundantly called
     112 [ #  # ][ #  # ]:          0 :         LogPrintf("fflush failed: %s\n", SysErrorString(errno));
         [ #  # ][ #  # ]
     113                 :          0 :         return false;
     114                 :            :     }
     115                 :            : #ifdef WIN32
     116                 :            :     HANDLE hFile = (HANDLE)_get_osfhandle(_fileno(file));
     117                 :            :     if (FlushFileBuffers(hFile) == 0) {
     118                 :            :         LogPrintf("FlushFileBuffers failed: %s\n", Win32ErrorString(GetLastError()));
     119                 :            :         return false;
     120                 :            :     }
     121                 :            : #elif defined(MAC_OSX) && defined(F_FULLFSYNC)
     122                 :            :     if (fcntl(fileno(file), F_FULLFSYNC, 0) == -1) { // Manpage says "value other than -1" is returned on success
     123                 :            :         LogPrintf("fcntl F_FULLFSYNC failed: %s\n", SysErrorString(errno));
     124                 :            :         return false;
     125                 :            :     }
     126                 :            : #elif HAVE_FDATASYNC
     127 [ #  # ][ #  # ]:          0 :     if (fdatasync(fileno(file)) != 0 && errno != EINVAL) { // Ignore EINVAL for filesystems that don't support sync
     128 [ #  # ][ #  # ]:          0 :         LogPrintf("fdatasync failed: %s\n", SysErrorString(errno));
         [ #  # ][ #  # ]
     129                 :          0 :         return false;
     130                 :            :     }
     131                 :            : #else
     132                 :            :     if (fsync(fileno(file)) != 0 && errno != EINVAL) {
     133                 :            :         LogPrintf("fsync failed: %s\n", SysErrorString(errno));
     134                 :            :         return false;
     135                 :            :     }
     136                 :            : #endif
     137                 :          0 :     return true;
     138                 :          0 : }
     139                 :            : 
     140                 :          0 : void DirectoryCommit(const fs::path& dirname)
     141                 :            : {
     142                 :            : #ifndef WIN32
     143                 :          0 :     FILE* file = fsbridge::fopen(dirname, "r");
     144         [ #  # ]:          0 :     if (file) {
     145                 :          0 :         fsync(fileno(file));
     146                 :          0 :         fclose(file);
     147                 :          0 :     }
     148                 :            : #endif
     149                 :          0 : }
     150                 :            : 
     151                 :          0 : bool TruncateFile(FILE* file, unsigned int length)
     152                 :            : {
     153                 :            : #if defined(WIN32)
     154                 :            :     return _chsize(_fileno(file), length) == 0;
     155                 :            : #else
     156                 :          0 :     return ftruncate(fileno(file), length) == 0;
     157                 :            : #endif
     158                 :            : }
     159                 :            : 
     160                 :            : /**
     161                 :            :  * this function tries to raise the file descriptor limit to the requested number.
     162                 :            :  * It returns the actual file descriptor limit (which may be more or less than nMinFD)
     163                 :            :  */
     164                 :          0 : int RaiseFileDescriptorLimit(int nMinFD)
     165                 :            : {
     166                 :            : #if defined(WIN32)
     167                 :            :     return 2048;
     168                 :            : #else
     169                 :            :     struct rlimit limitFD;
     170         [ #  # ]:          0 :     if (getrlimit(RLIMIT_NOFILE, &limitFD) != -1) {
     171         [ #  # ]:          0 :         if (limitFD.rlim_cur < (rlim_t)nMinFD) {
     172                 :          0 :             limitFD.rlim_cur = nMinFD;
     173         [ #  # ]:          0 :             if (limitFD.rlim_cur > limitFD.rlim_max)
     174                 :          0 :                 limitFD.rlim_cur = limitFD.rlim_max;
     175                 :          0 :             setrlimit(RLIMIT_NOFILE, &limitFD);
     176                 :          0 :             getrlimit(RLIMIT_NOFILE, &limitFD);
     177                 :          0 :         }
     178                 :          0 :         return limitFD.rlim_cur;
     179                 :            :     }
     180                 :          0 :     return nMinFD; // getrlimit failed, assume it's fine
     181                 :            : #endif
     182                 :          0 : }
     183                 :            : 
     184                 :            : /**
     185                 :            :  * this function tries to make a particular range of a file allocated (corresponding to disk space)
     186                 :            :  * it is advisory, and the range specified in the arguments will never contain live data
     187                 :            :  */
     188                 :          0 : void AllocateFileRange(FILE* file, unsigned int offset, unsigned int length)
     189                 :            : {
     190                 :            : #if defined(WIN32)
     191                 :            :     // Windows-specific version
     192                 :            :     HANDLE hFile = (HANDLE)_get_osfhandle(_fileno(file));
     193                 :            :     LARGE_INTEGER nFileSize;
     194                 :            :     int64_t nEndPos = (int64_t)offset + length;
     195                 :            :     nFileSize.u.LowPart = nEndPos & 0xFFFFFFFF;
     196                 :            :     nFileSize.u.HighPart = nEndPos >> 32;
     197                 :            :     SetFilePointerEx(hFile, nFileSize, 0, FILE_BEGIN);
     198                 :            :     SetEndOfFile(hFile);
     199                 :            : #elif defined(MAC_OSX)
     200                 :            :     // OSX specific version
     201                 :            :     // NOTE: Contrary to other OS versions, the OSX version assumes that
     202                 :            :     // NOTE: offset is the size of the file.
     203                 :            :     fstore_t fst;
     204                 :            :     fst.fst_flags = F_ALLOCATECONTIG;
     205                 :            :     fst.fst_posmode = F_PEOFPOSMODE;
     206                 :            :     fst.fst_offset = 0;
     207                 :            :     fst.fst_length = length; // mac os fst_length takes the # of free bytes to allocate, not desired file size
     208                 :            :     fst.fst_bytesalloc = 0;
     209                 :            :     if (fcntl(fileno(file), F_PREALLOCATE, &fst) == -1) {
     210                 :            :         fst.fst_flags = F_ALLOCATEALL;
     211                 :            :         fcntl(fileno(file), F_PREALLOCATE, &fst);
     212                 :            :     }
     213                 :            :     ftruncate(fileno(file), static_cast<off_t>(offset) + length);
     214                 :            : #else
     215                 :            : #if defined(HAVE_POSIX_FALLOCATE)
     216                 :            :     // Version using posix_fallocate
     217                 :          0 :     off_t nEndPos = (off_t)offset + length;
     218         [ #  # ]:          0 :     if (0 == posix_fallocate(fileno(file), 0, nEndPos)) return;
     219                 :            : #endif
     220                 :            :     // Fallback version
     221                 :            :     // TODO: just write one byte per block
     222                 :            :     static const char buf[65536] = {};
     223         [ #  # ]:          0 :     if (fseek(file, offset, SEEK_SET)) {
     224                 :          0 :         return;
     225                 :            :     }
     226         [ #  # ]:          0 :     while (length > 0) {
     227                 :          0 :         unsigned int now = 65536;
     228         [ #  # ]:          0 :         if (length < now)
     229                 :          0 :             now = length;
     230                 :          0 :         fwrite(buf, 1, now, file); // allowed to fail; this function is advisory anyway
     231                 :          0 :         length -= now;
     232                 :            :     }
     233                 :            : #endif
     234                 :          0 : }
     235                 :            : 
     236                 :            : #ifdef WIN32
     237                 :            : fs::path GetSpecialFolderPath(int nFolder, bool fCreate)
     238                 :            : {
     239                 :            :     WCHAR pszPath[MAX_PATH] = L"";
     240                 :            : 
     241                 :            :     if (SHGetSpecialFolderPathW(nullptr, pszPath, nFolder, fCreate)) {
     242                 :            :         return fs::path(pszPath);
     243                 :            :     }
     244                 :            : 
     245                 :            :     LogPrintf("SHGetSpecialFolderPathW() failed, could not obtain requested path.\n");
     246                 :            :     return fs::path("");
     247                 :            : }
     248                 :            : #endif
     249                 :            : 
     250                 :          0 : bool RenameOver(fs::path src, fs::path dest)
     251                 :            : {
     252                 :            : #ifdef __MINGW64__
     253                 :            :     // This is a workaround for a bug in libstdc++ which
     254                 :            :     // implements fs::rename with _wrename function.
     255                 :            :     // This bug has been fixed in upstream:
     256                 :            :     //  - GCC 10.3: 8dd1c1085587c9f8a21bb5e588dfe1e8cdbba79e
     257                 :            :     //  - GCC 11.1: 1dfd95f0a0ca1d9e6cbc00e6cbfd1fa20a98f312
     258                 :            :     // For more details see the commits mentioned above.
     259                 :            :     return MoveFileExW(src.wstring().c_str(), dest.wstring().c_str(),
     260                 :            :                        MOVEFILE_REPLACE_EXISTING) != 0;
     261                 :            : #else
     262                 :          0 :     std::error_code error;
     263                 :          0 :     fs::rename(src, dest, error);
     264                 :          0 :     return !error;
     265                 :            : #endif
     266                 :            : }
     267                 :            : 
     268                 :            : /**
     269                 :            :  * Ignores exceptions thrown by create_directories if the requested directory exists.
     270                 :            :  * Specifically handles case where path p exists, but it wasn't possible for the user to
     271                 :            :  * write to the parent directory.
     272                 :            :  */
     273                 :          0 : bool TryCreateDirectories(const fs::path& p)
     274                 :            : {
     275                 :            :     try {
     276         [ #  # ]:          0 :         return fs::create_directories(p);
     277         [ #  # ]:          0 :     } catch (const fs::filesystem_error&) {
     278 [ #  # ][ #  # ]:          0 :         if (!fs::exists(p) || !fs::is_directory(p))
     279         [ #  # ]:          0 :             throw;
     280         [ #  # ]:          0 :     }
     281                 :            : 
     282                 :            :     // create_directories didn't create the directory, it had to have existed already
     283                 :          0 :     return false;
     284                 :          0 : }

Generated by: LCOV version 1.14