aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoramadeuszpawlik <apawlik@protonmail.com>2022-05-13 22:29:09 +0200
committeramadeuszpawlik <apawlik@protonmail.com>2022-05-14 10:22:16 +0200
commitada8358ef54aaa04c9182afe115d8046c801bdde (patch)
tree68022c45ccd0fc32fe9d5015bd15d959e7d1ad68
parent225e5b57b2ee2bc1acd7f09c89ccccc15ef8c85f (diff)
downloadbitcoin-ada8358ef54aaa04c9182afe115d8046c801bdde.tar.xz
Sanitize port in `addpeeraddress()`
- Ensures port sanitization in `addpeeraddress()` - Adds test to check for invalid port values
-rw-r--r--src/rpc/net.cpp2
-rwxr-xr-xtest/functional/rpc_net.py4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp
index 09dc8eb3eb..ff714eaf36 100644
--- a/src/rpc/net.cpp
+++ b/src/rpc/net.cpp
@@ -932,7 +932,7 @@ static RPCHelpMan addpeeraddress()
}
const std::string& addr_string{request.params[0].get_str()};
- const uint16_t port{static_cast<uint16_t>(request.params[1].get_int())};
+ const auto port{request.params[1].getInt<uint16_t>()};
const bool tried{request.params[2].isTrue()};
UniValue obj(UniValue::VOBJ);
diff --git a/test/functional/rpc_net.py b/test/functional/rpc_net.py
index 81a3cfee97..ad8ba06824 100755
--- a/test/functional/rpc_net.py
+++ b/test/functional/rpc_net.py
@@ -257,6 +257,10 @@ class NetTest(BitcoinTestFramework):
assert_equal(node.addpeeraddress(address="", port=8333), {"success": False})
assert_equal(node.getnodeaddresses(count=0), [])
+ self.log.debug("Test that adding an address with invalid port fails")
+ assert_raises_rpc_error(-1, "JSON integer out of range", self.nodes[0].addpeeraddress, address="1.2.3.4", port=-1)
+ assert_raises_rpc_error(-1, "JSON integer out of range", self.nodes[0].addpeeraddress,address="1.2.3.4", port=65536)
+
self.log.debug("Test that adding a valid address to the tried table succeeds")
assert_equal(node.addpeeraddress(address="1.2.3.4", tried=True, port=8333), {"success": True})
with node.assert_debug_log(expected_msgs=["CheckAddrman: new 0, tried 1, total 1 started"]):