Skip to content

Commit ae488ba

Browse files
laanwjPastaPastaPasta
authored andcommitted
Merge bitcoin#10885: Reject invalid wallets
d84e78e [wallet] Specify wallet name in wallet loading errors (John Newbery) a6da027 Reject invalid wallet files (João Barbosa) 3ef77a0 Reject duplicate wallet filenames (João Barbosa) Pull request description: This PR prevents loading the same wallet more than once in a multi wallet scenario. It also prevents loading with invalid files: non regular files or symlinks. Tree-SHA512: 45bf814096bb788db1c76ff334e679a10686cee7d9c8cd48fe5d924031353ace271f6fb0d4af49a34246d336945515c176920a552be7b9fbe07ab8e00e5f6e5e
1 parent 417d95f commit ae488ba

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

src/wallet/wallet.cpp

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -611,11 +611,26 @@ bool CWallet::Verify()
611611

612612
uiInterface.InitMessage(_("Verifying wallet(s)..."));
613613

614+
// Keep track of each wallet absolute path to detect duplicates.
615+
std::set<fs::path> wallet_paths;
616+
614617
for (const std::string& walletFile : gArgs.GetArgs("-wallet")) {
615618
if (boost::filesystem::path(walletFile).filename() != walletFile) {
616-
return InitError(_("-wallet parameter must only specify a filename (not a path)"));
617-
} else if (SanitizeString(walletFile, SAFE_CHARS_FILENAME) != walletFile) {
618-
return InitError(_("Invalid characters in -wallet filename"));
619+
return InitError(strprintf(_("Error loading wallet %s. -wallet parameter must only specify a filename (not a path)."), walletFile));
620+
}
621+
622+
if (SanitizeString(walletFile, SAFE_CHARS_FILENAME) != walletFile) {
623+
return InitError(strprintf(_("Error loading wallet %s. Invalid characters in -wallet filename."), walletFile));
624+
}
625+
626+
fs::path wallet_path = fs::absolute(walletFile, GetDataDir());
627+
628+
if (fs::exists(wallet_path) && (!fs::is_regular_file(wallet_path) || fs::is_symlink(wallet_path))) {
629+
return InitError(strprintf(_("Error loading wallet %s. -wallet filename must be a regular file."), walletFile));
630+
}
631+
632+
if (!wallet_paths.insert(wallet_path).second) {
633+
return InitError(strprintf(_("Error loading wallet %s. Duplicate -wallet filename specified."), walletFile));
619634
}
620635

621636
std::string strError;

test/functional/multiwallet.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
77
Verify that a bitcoind node can load multiple wallet files
88
"""
9+
import os
10+
911
from test_framework.test_framework import BitcoinTestFramework
1012
from test_framework.util import assert_equal, assert_raises_jsonrpc
1113

@@ -18,6 +20,21 @@ def __init__(self):
1820
self.extra_args = [['-wallet=w1', '-wallet=w2', '-wallet=w3']]
1921

2022
def run_test(self):
23+
self.stop_node(0)
24+
25+
# should not initialize if there are duplicate wallets
26+
self.assert_start_raises_init_error(0, self.options.tmpdir, ['-wallet=w1', '-wallet=w1'], 'Error loading wallet w1. Duplicate -wallet filename specified.')
27+
28+
# should not initialize if wallet file is a directory
29+
os.mkdir(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w11'))
30+
self.assert_start_raises_init_error(0, self.options.tmpdir, ['-wallet=w11'], 'Error loading wallet w11. -wallet filename must be a regular file.')
31+
32+
# should not initialize if wallet file is a symlink
33+
os.symlink(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w1'), os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w12'))
34+
self.assert_start_raises_init_error(0, self.options.tmpdir, ['-wallet=w12'], 'Error loading wallet w12. -wallet filename must be a regular file.')
35+
36+
self.nodes[0] = self.start_node(0, self.options.tmpdir, self.extra_args[0])
37+
2138
w1 = self.nodes[0] / "wallet/w1"
2239
w1.generate(1)
2340

0 commit comments

Comments
 (0)