mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 21:23:27 +01:00
daemon: complain if data dir resides on FAT32 volume (Windows)
This commit is contained in:
parent
77a008f714
commit
a6803231e6
@ -107,6 +107,20 @@ uint16_t parse_public_rpc_port(const po::variables_map &vm)
|
|||||||
return rpc_port;
|
return rpc_port;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
bool isFat32(const wchar_t* root_path)
|
||||||
|
{
|
||||||
|
std::vector<wchar_t> fs(MAX_PATH + 1);
|
||||||
|
if (!::GetVolumeInformationW(root_path, nullptr, 0, nullptr, 0, nullptr, &fs[0], MAX_PATH))
|
||||||
|
{
|
||||||
|
MERROR("Failed to get '" << root_path << "' filesystem name. Error code: " << ::GetLastError());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return wcscmp(L"FAT32", &fs[0]) == 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
int main(int argc, char const * argv[])
|
int main(int argc, char const * argv[])
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
@ -233,6 +247,13 @@ int main(int argc, char const * argv[])
|
|||||||
boost::filesystem::path data_dir = boost::filesystem::absolute(
|
boost::filesystem::path data_dir = boost::filesystem::absolute(
|
||||||
command_line::get_arg(vm, cryptonote::arg_data_dir));
|
command_line::get_arg(vm, cryptonote::arg_data_dir));
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
if (isFat32(data_dir.root_name().c_str()))
|
||||||
|
{
|
||||||
|
MERROR("Data directory resides on FAT32 volume that has 4GiB file size limit, blockchain might get corrupted.");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// FIXME: not sure on windows implementation default, needs further review
|
// FIXME: not sure on windows implementation default, needs further review
|
||||||
//bf::path relative_path_base = daemonizer::get_relative_path_base(vm);
|
//bf::path relative_path_base = daemonizer::get_relative_path_base(vm);
|
||||||
bf::path relative_path_base = data_dir;
|
bf::path relative_path_base = data_dir;
|
||||||
|
Loading…
Reference in New Issue
Block a user