mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-03 17:35:51 +00:00
Add jtx, STObject, and RPC support for sig object fields
This commit is contained in:
@@ -244,6 +244,9 @@ public:
|
|||||||
getFieldPathSet(SField const& field) const;
|
getFieldPathSet(SField const& field) const;
|
||||||
STVector256 const&
|
STVector256 const&
|
||||||
getFieldV256(SField const& field) const;
|
getFieldV256(SField const& field) const;
|
||||||
|
// If not found, returns an object constructed with the given field
|
||||||
|
STObject
|
||||||
|
getFieldObject(SField const& field) const;
|
||||||
STArray const&
|
STArray const&
|
||||||
getFieldArray(SField const& field) const;
|
getFieldArray(SField const& field) const;
|
||||||
STCurrency const&
|
STCurrency const&
|
||||||
@@ -390,6 +393,8 @@ public:
|
|||||||
setFieldV256(SField const& field, STVector256 const& v);
|
setFieldV256(SField const& field, STVector256 const& v);
|
||||||
void
|
void
|
||||||
setFieldArray(SField const& field, STArray const& v);
|
setFieldArray(SField const& field, STArray const& v);
|
||||||
|
void
|
||||||
|
setFieldObject(SField const& field, STObject const& v);
|
||||||
|
|
||||||
template <class Tag>
|
template <class Tag>
|
||||||
void
|
void
|
||||||
|
|||||||
@@ -569,6 +569,7 @@ JSS(settle_delay); // out: AccountChannels
|
|||||||
JSS(severity); // in: LogLevel
|
JSS(severity); // in: LogLevel
|
||||||
JSS(shares); // out: VaultInfo
|
JSS(shares); // out: VaultInfo
|
||||||
JSS(signature); // out: NetworkOPs, ChannelAuthorize
|
JSS(signature); // out: NetworkOPs, ChannelAuthorize
|
||||||
|
JSS(signature_target); // in: TransactionSign
|
||||||
JSS(signature_verified); // out: ChannelVerify
|
JSS(signature_verified); // out: ChannelVerify
|
||||||
JSS(signing_key); // out: NetworkOPs
|
JSS(signing_key); // out: NetworkOPs
|
||||||
JSS(signing_keys); // out: ValidatorList
|
JSS(signing_keys); // out: ValidatorList
|
||||||
|
|||||||
@@ -688,6 +688,16 @@ STObject::getFieldV256(SField const& field) const
|
|||||||
return getFieldByConstRef<STVector256>(field, empty);
|
return getFieldByConstRef<STVector256>(field, empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STObject
|
||||||
|
STObject::getFieldObject(SField const& field) const
|
||||||
|
{
|
||||||
|
STObject const empty{field};
|
||||||
|
auto ret = getFieldByConstRef<STObject>(field, empty);
|
||||||
|
if (ret != empty)
|
||||||
|
ret.applyTemplateFromSField(field);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
STArray const&
|
STArray const&
|
||||||
STObject::getFieldArray(SField const& field) const
|
STObject::getFieldArray(SField const& field) const
|
||||||
{
|
{
|
||||||
@@ -833,6 +843,12 @@ STObject::setFieldArray(SField const& field, STArray const& v)
|
|||||||
setFieldUsingAssignment(field, v);
|
setFieldUsingAssignment(field, v);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
STObject::setFieldObject(SField const& field, STObject const& v)
|
||||||
|
{
|
||||||
|
setFieldUsingAssignment(field, v);
|
||||||
|
}
|
||||||
|
|
||||||
Json::Value
|
Json::Value
|
||||||
STObject::getJson(JsonOptions options) const
|
STObject::getJson(JsonOptions options) const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -54,7 +54,11 @@ struct JTx
|
|||||||
bool fill_sig = true;
|
bool fill_sig = true;
|
||||||
bool fill_netid = true;
|
bool fill_netid = true;
|
||||||
std::shared_ptr<STTx const> stx;
|
std::shared_ptr<STTx const> stx;
|
||||||
std::function<void(Env&, JTx&)> signer;
|
// Functions that sign the transaction from the Account
|
||||||
|
std::vector<std::function<void(Env&, JTx&)>> mainSigners;
|
||||||
|
// Functions that sign something else after the mainSigners, such as
|
||||||
|
// sfCounterpartySignature
|
||||||
|
std::vector<std::function<void(Env&, JTx&)>> postSigners;
|
||||||
|
|
||||||
JTx() = default;
|
JTx() = default;
|
||||||
JTx(JTx const&) = default;
|
JTx(JTx const&) = default;
|
||||||
|
|||||||
@@ -615,7 +615,7 @@ create(
|
|||||||
|
|
||||||
} // namespace check
|
} // namespace check
|
||||||
|
|
||||||
static constexpr FeeLevel64 baseFeeLevel{256};
|
static constexpr FeeLevel64 baseFeeLevel{TxQ::baseLevel};
|
||||||
static constexpr FeeLevel64 minEscalationFeeLevel = baseFeeLevel * 500;
|
static constexpr FeeLevel64 minEscalationFeeLevel = baseFeeLevel * 500;
|
||||||
|
|
||||||
template <class Suite>
|
template <class Suite>
|
||||||
|
|||||||
@@ -213,14 +213,16 @@ public:
|
|||||||
|
|
||||||
template <std::integral T>
|
template <std::integral T>
|
||||||
PrettyAmount
|
PrettyAmount
|
||||||
operator()(T v) const
|
operator()(T v, Number::rounding_mode rounding = Number::getround()) const
|
||||||
{
|
{
|
||||||
return operator()(Number(v));
|
return operator()(Number(v), rounding);
|
||||||
}
|
}
|
||||||
|
|
||||||
PrettyAmount
|
PrettyAmount
|
||||||
operator()(Number v) const
|
operator()(Number v, Number::rounding_mode rounding = Number::getround())
|
||||||
|
const
|
||||||
{
|
{
|
||||||
|
NumberRoundModeGuard mg(rounding);
|
||||||
STAmount amount{asset_, v * scale_};
|
STAmount amount{asset_, v * scale_};
|
||||||
return {amount, ""};
|
return {amount, ""};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,6 +34,7 @@
|
|||||||
|
|
||||||
#include <xrpl/basics/Slice.h>
|
#include <xrpl/basics/Slice.h>
|
||||||
#include <xrpl/basics/contract.h>
|
#include <xrpl/basics/contract.h>
|
||||||
|
#include <xrpl/basics/scope.h>
|
||||||
#include <xrpl/json/to_string.h>
|
#include <xrpl/json/to_string.h>
|
||||||
#include <xrpl/net/HTTPClient.h>
|
#include <xrpl/net/HTTPClient.h>
|
||||||
#include <xrpl/protocol/ErrorCodes.h>
|
#include <xrpl/protocol/ErrorCodes.h>
|
||||||
@@ -531,8 +532,22 @@ void
|
|||||||
Env::autofill_sig(JTx& jt)
|
Env::autofill_sig(JTx& jt)
|
||||||
{
|
{
|
||||||
auto& jv = jt.jv;
|
auto& jv = jt.jv;
|
||||||
if (jt.signer)
|
|
||||||
return jt.signer(*this, jt);
|
scope_success success([&]() {
|
||||||
|
// Call all the post-signers after the main signers or autofill are done
|
||||||
|
for (auto const& signer : jt.postSigners)
|
||||||
|
signer(*this, jt);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Call all the main signers
|
||||||
|
if (!jt.mainSigners.empty())
|
||||||
|
{
|
||||||
|
for (auto const& signer : jt.mainSigners)
|
||||||
|
signer(*this, jt);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the sig is still needed, get it here.
|
||||||
if (!jt.fill_sig)
|
if (!jt.fill_sig)
|
||||||
return;
|
return;
|
||||||
auto const account = jv.isMember(sfDelegate.jsonName)
|
auto const account = jv.isMember(sfDelegate.jsonName)
|
||||||
|
|||||||
@@ -507,7 +507,7 @@ MPTTester::getFlags(std::optional<Account> const& holder) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
MPT
|
MPT
|
||||||
MPTTester::operator[](std::string const& name)
|
MPTTester::operator[](std::string const& name) const
|
||||||
{
|
{
|
||||||
return MPT(name, issuanceID());
|
return MPT(name, issuanceID());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -69,8 +69,15 @@ void
|
|||||||
msig::operator()(Env& env, JTx& jt) const
|
msig::operator()(Env& env, JTx& jt) const
|
||||||
{
|
{
|
||||||
auto const mySigners = signers;
|
auto const mySigners = signers;
|
||||||
jt.signer = [mySigners, &env](Env&, JTx& jtx) {
|
auto callback = [subField = subField, mySigners, &env](Env&, JTx& jtx) {
|
||||||
jtx[sfSigningPubKey.getJsonName()] = "";
|
// Where to put the signature. Supports sfCounterPartySignature.
|
||||||
|
auto& sigObject = subField ? jtx[*subField] : jtx.jv;
|
||||||
|
|
||||||
|
// The signing pub key is only required at the top level.
|
||||||
|
if (!subField)
|
||||||
|
sigObject[sfSigningPubKey] = "";
|
||||||
|
else if (sigObject.isNull())
|
||||||
|
sigObject = Json::Value(Json::objectValue);
|
||||||
std::optional<STObject> st;
|
std::optional<STObject> st;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -81,7 +88,7 @@ msig::operator()(Env& env, JTx& jt) const
|
|||||||
env.test.log << pretty(jtx.jv) << std::endl;
|
env.test.log << pretty(jtx.jv) << std::endl;
|
||||||
Rethrow();
|
Rethrow();
|
||||||
}
|
}
|
||||||
auto& js = jtx[sfSigners.getJsonName()];
|
auto& js = sigObject[sfSigners];
|
||||||
for (std::size_t i = 0; i < mySigners.size(); ++i)
|
for (std::size_t i = 0; i < mySigners.size(); ++i)
|
||||||
{
|
{
|
||||||
auto const& e = mySigners[i];
|
auto const& e = mySigners[i];
|
||||||
@@ -96,6 +103,10 @@ msig::operator()(Env& env, JTx& jt) const
|
|||||||
strHex(Slice{sig.data(), sig.size()});
|
strHex(Slice{sig.data(), sig.size()});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
if (!subField)
|
||||||
|
jt.mainSigners.emplace_back(callback);
|
||||||
|
else
|
||||||
|
jt.postSigners.emplace_back(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace jtx
|
} // namespace jtx
|
||||||
|
|||||||
@@ -29,12 +29,22 @@ sig::operator()(Env&, JTx& jt) const
|
|||||||
{
|
{
|
||||||
if (!manual_)
|
if (!manual_)
|
||||||
return;
|
return;
|
||||||
|
if (!subField_)
|
||||||
jt.fill_sig = false;
|
jt.fill_sig = false;
|
||||||
if (account_)
|
if (account_)
|
||||||
{
|
{
|
||||||
// VFALCO Inefficient pre-C++14
|
// VFALCO Inefficient pre-C++14
|
||||||
auto const account = *account_;
|
auto const account = *account_;
|
||||||
jt.signer = [account](Env&, JTx& jtx) { jtx::sign(jtx.jv, account); };
|
auto callback = [subField = subField_, account](Env&, JTx& jtx) {
|
||||||
|
// Where to put the signature. Supports sfCounterPartySignature.
|
||||||
|
auto& sigObject = subField ? jtx[*subField] : jtx.jv;
|
||||||
|
|
||||||
|
jtx::sign(jtx.jv, account, sigObject);
|
||||||
|
};
|
||||||
|
if (!subField_)
|
||||||
|
jt.mainSigners.emplace_back(callback);
|
||||||
|
else
|
||||||
|
jt.postSigners.emplace_back(callback);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -44,14 +44,20 @@ parse(Json::Value const& jv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
sign(Json::Value& jv, Account const& account)
|
sign(Json::Value& jv, Account const& account, Json::Value& sigObject)
|
||||||
{
|
{
|
||||||
jv[jss::SigningPubKey] = strHex(account.pk().slice());
|
sigObject[jss::SigningPubKey] = strHex(account.pk().slice());
|
||||||
Serializer ss;
|
Serializer ss;
|
||||||
ss.add32(HashPrefix::txSign);
|
ss.add32(HashPrefix::txSign);
|
||||||
parse(jv).addWithoutSigningFields(ss);
|
parse(jv).addWithoutSigningFields(ss);
|
||||||
auto const sig = ripple::sign(account.pk(), account.sk(), ss.slice());
|
auto const sig = ripple::sign(account.pk(), account.sk(), ss.slice());
|
||||||
jv[jss::TxnSignature] = strHex(Slice{sig.data(), sig.size()});
|
sigObject[jss::TxnSignature] = strHex(Slice{sig.data(), sig.size()});
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
sign(Json::Value& jv, Account const& account)
|
||||||
|
{
|
||||||
|
sign(jv, account, jv);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|||||||
@@ -235,7 +235,7 @@ public:
|
|||||||
getBalance(Account const& account) const;
|
getBalance(Account const& account) const;
|
||||||
|
|
||||||
MPT
|
MPT
|
||||||
operator[](std::string const& name);
|
operator[](std::string const& name) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
using SLEP = std::shared_ptr<SLE const>;
|
using SLEP = std::shared_ptr<SLE const>;
|
||||||
|
|||||||
@@ -67,18 +67,63 @@ class msig
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
std::vector<Reg> signers;
|
std::vector<Reg> signers;
|
||||||
|
/** Alternative transaction object field in which to place the signer list.
|
||||||
|
*
|
||||||
|
* subField is only supported if an account_ is provided as well.
|
||||||
|
*/
|
||||||
|
SField const* const subField = nullptr;
|
||||||
|
/// Used solely as a convenience placeholder for ctors that do _not_ specify
|
||||||
|
/// a subfield.
|
||||||
|
static constexpr SField* const topLevel = nullptr;
|
||||||
|
|
||||||
msig(std::vector<Reg> signers_) : signers(std::move(signers_))
|
msig(SField const* subField_, std::vector<Reg> signers_)
|
||||||
|
: signers(std::move(signers_)), subField(subField_)
|
||||||
{
|
{
|
||||||
sortSigners(signers);
|
sortSigners(signers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
msig(SField const& subField_, std::vector<Reg> signers_)
|
||||||
|
: msig{&subField_, signers_}
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
msig(std::vector<Reg> signers_) : msig(topLevel, signers_)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
template <class AccountType, class... Accounts>
|
template <class AccountType, class... Accounts>
|
||||||
requires std::convertible_to<AccountType, Reg>
|
requires std::convertible_to<AccountType, Reg>
|
||||||
explicit msig(AccountType&& a0, Accounts&&... aN)
|
explicit msig(SField const* subField_, AccountType&& a0, Accounts&&... aN)
|
||||||
: signers{std::forward<AccountType>(a0), std::forward<Accounts>(aN)...}
|
: msig{
|
||||||
|
subField_,
|
||||||
|
std::vector<Reg>{
|
||||||
|
std::forward<AccountType>(a0),
|
||||||
|
std::forward<Accounts>(aN)...}}
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class AccountType, class... Accounts>
|
||||||
|
requires std::convertible_to<AccountType, Reg>
|
||||||
|
explicit msig(SField const& subField_, AccountType&& a0, Accounts&&... aN)
|
||||||
|
: msig{
|
||||||
|
&subField_,
|
||||||
|
std::vector<Reg>{
|
||||||
|
std::forward<AccountType>(a0),
|
||||||
|
std::forward<Accounts>(aN)...}}
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class AccountType, class... Accounts>
|
||||||
|
requires(
|
||||||
|
std::convertible_to<AccountType, Reg> &&
|
||||||
|
!std::is_same_v<AccountType, SField*>)
|
||||||
|
explicit msig(AccountType&& a0, Accounts&&... aN)
|
||||||
|
: msig{
|
||||||
|
topLevel,
|
||||||
|
std::vector<Reg>{
|
||||||
|
std::forward<AccountType>(a0),
|
||||||
|
std::forward<Accounts>(aN)...}}
|
||||||
{
|
{
|
||||||
sortSigners(signers);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|||||||
@@ -35,7 +35,20 @@ class sig
|
|||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
bool manual_ = true;
|
bool manual_ = true;
|
||||||
|
/** Alternative transaction object field in which to place the signature.
|
||||||
|
*
|
||||||
|
* subField is only supported if an account_ is provided as well.
|
||||||
|
*/
|
||||||
|
SField const* const subField_ = nullptr;
|
||||||
|
/** Account that will generate the signature.
|
||||||
|
*
|
||||||
|
* If not provided, no signature will be added by this helper. See also
|
||||||
|
* Env::autofill_sig.
|
||||||
|
*/
|
||||||
std::optional<Account> account_;
|
std::optional<Account> account_;
|
||||||
|
/// Used solely as a convenience placeholder for ctors that do _not_ specify
|
||||||
|
/// a subfield.
|
||||||
|
static constexpr SField* const topLevel = nullptr;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit sig(autofill_t) : manual_(false)
|
explicit sig(autofill_t) : manual_(false)
|
||||||
@@ -46,7 +59,17 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
explicit sig(Account const& account) : account_(account)
|
explicit sig(SField const* subField, Account const& account)
|
||||||
|
: subField_(subField), account_(account)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
explicit sig(SField const& subField, Account const& account)
|
||||||
|
: sig(&subField, account)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
explicit sig(Account const& account) : sig(topLevel, account)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -51,6 +51,12 @@ struct parse_error : std::logic_error
|
|||||||
STObject
|
STObject
|
||||||
parse(Json::Value const& jv);
|
parse(Json::Value const& jv);
|
||||||
|
|
||||||
|
/** Sign automatically into a specific Json field of the jv object.
|
||||||
|
@note This only works on accounts with multi-signing off.
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
sign(Json::Value& jv, Account const& account, Json::Value& sigObject);
|
||||||
|
|
||||||
/** Sign automatically.
|
/** Sign automatically.
|
||||||
@note This only works on accounts with multi-signing off.
|
@note This only works on accounts with multi-signing off.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -4643,10 +4643,34 @@ static RPCCallTestData const rpcCallTestArray[] = {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
})"},
|
})"},
|
||||||
{"sign: too many arguments.",
|
{"sign: offline flag with signature_target.",
|
||||||
__LINE__,
|
__LINE__,
|
||||||
{"sign", "my_secret", R"({"json_argument":true})", "offline", "extra"},
|
{"sign", "my_secret", R"({"json_argument":true})", "offline", "extra"},
|
||||||
RPCCallTestData::no_exception,
|
RPCCallTestData::no_exception,
|
||||||
|
R"({
|
||||||
|
"method" : "sign",
|
||||||
|
"params" : [
|
||||||
|
{
|
||||||
|
"api_version" : %API_VER%,
|
||||||
|
"offline" : true,
|
||||||
|
"secret" : "my_secret",
|
||||||
|
"signature_target" : "extra",
|
||||||
|
"tx_json" :
|
||||||
|
{
|
||||||
|
"json_argument" : true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})"},
|
||||||
|
{"sign: too many arguments.",
|
||||||
|
__LINE__,
|
||||||
|
{"sign",
|
||||||
|
"my_secret",
|
||||||
|
R"({"json_argument":true})",
|
||||||
|
"offline",
|
||||||
|
"CounterpartySignature",
|
||||||
|
"extra"},
|
||||||
|
RPCCallTestData::no_exception,
|
||||||
R"({
|
R"({
|
||||||
"method" : "sign",
|
"method" : "sign",
|
||||||
"params" : [
|
"params" : [
|
||||||
@@ -4675,7 +4699,7 @@ static RPCCallTestData const rpcCallTestArray[] = {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
})"},
|
})"},
|
||||||
{"sign: invalid final argument.",
|
{"sign: misspelled offline flag interpreted as signature_target.",
|
||||||
__LINE__,
|
__LINE__,
|
||||||
{"sign", "my_secret", R"({"json_argument":true})", "offlin"},
|
{"sign", "my_secret", R"({"json_argument":true})", "offlin"},
|
||||||
RPCCallTestData::no_exception,
|
RPCCallTestData::no_exception,
|
||||||
@@ -4683,9 +4707,13 @@ static RPCCallTestData const rpcCallTestArray[] = {
|
|||||||
"method" : "sign",
|
"method" : "sign",
|
||||||
"params" : [
|
"params" : [
|
||||||
{
|
{
|
||||||
"error" : "invalidParams",
|
"api_version" : %API_VER%,
|
||||||
"error_code" : 31,
|
"secret" : "my_secret",
|
||||||
"error_message" : "Invalid parameters."
|
"signature_target" : "offlin",
|
||||||
|
"tx_json" :
|
||||||
|
{
|
||||||
|
"json_argument" : true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
})"},
|
})"},
|
||||||
@@ -4880,10 +4908,34 @@ static RPCCallTestData const rpcCallTestArray[] = {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
})"},
|
})"},
|
||||||
{"submit: too many arguments.",
|
{"submit: offline flag with signature_target.",
|
||||||
__LINE__,
|
__LINE__,
|
||||||
{"submit", "my_secret", R"({"json_argument":true})", "offline", "extra"},
|
{"submit", "my_secret", R"({"json_argument":true})", "offline", "extra"},
|
||||||
RPCCallTestData::no_exception,
|
RPCCallTestData::no_exception,
|
||||||
|
R"({
|
||||||
|
"method" : "submit",
|
||||||
|
"params" : [
|
||||||
|
{
|
||||||
|
"api_version" : %API_VER%,
|
||||||
|
"offline" : true,
|
||||||
|
"secret" : "my_secret",
|
||||||
|
"signature_target" : "extra",
|
||||||
|
"tx_json" :
|
||||||
|
{
|
||||||
|
"json_argument" : true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})"},
|
||||||
|
{"submit: too many arguments.",
|
||||||
|
__LINE__,
|
||||||
|
{"submit",
|
||||||
|
"my_secret",
|
||||||
|
R"({"json_argument":true})",
|
||||||
|
"offline",
|
||||||
|
"CounterpartySignature",
|
||||||
|
"extra"},
|
||||||
|
RPCCallTestData::no_exception,
|
||||||
R"({
|
R"({
|
||||||
"method" : "submit",
|
"method" : "submit",
|
||||||
"params" : [
|
"params" : [
|
||||||
@@ -4912,7 +4964,7 @@ static RPCCallTestData const rpcCallTestArray[] = {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
})"},
|
})"},
|
||||||
{"submit: last argument not \"offline\".",
|
{"submit: misspelled offline flag interpreted as signature_target.",
|
||||||
__LINE__,
|
__LINE__,
|
||||||
{"submit", "my_secret", R"({"json_argument":true})", "offlne"},
|
{"submit", "my_secret", R"({"json_argument":true})", "offlne"},
|
||||||
RPCCallTestData::no_exception,
|
RPCCallTestData::no_exception,
|
||||||
@@ -4920,9 +4972,13 @@ static RPCCallTestData const rpcCallTestArray[] = {
|
|||||||
"method" : "submit",
|
"method" : "submit",
|
||||||
"params" : [
|
"params" : [
|
||||||
{
|
{
|
||||||
"error" : "invalidParams",
|
"api_version" : %API_VER%,
|
||||||
"error_code" : 31,
|
"secret" : "my_secret",
|
||||||
"error_message" : "Invalid parameters."
|
"signature_target" : "offlne",
|
||||||
|
"tx_json" :
|
||||||
|
{
|
||||||
|
"json_argument" : true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
})"},
|
})"},
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ printHelp(po::options_description const& desc)
|
|||||||
" server_state [counters]\n"
|
" server_state [counters]\n"
|
||||||
" sign <private_key> <tx_json> [offline]\n"
|
" sign <private_key> <tx_json> [offline]\n"
|
||||||
" sign_for <signer_address> <signer_private_key> <tx_json> "
|
" sign_for <signer_address> <signer_private_key> <tx_json> "
|
||||||
"[offline]\n"
|
"[offline] [<signature_field>]\n"
|
||||||
" stop\n"
|
" stop\n"
|
||||||
" simulate [<tx_blob>|<tx_json>] [<binary>]\n"
|
" simulate [<tx_blob>|<tx_json>] [<binary>]\n"
|
||||||
" submit <tx_blob>|[<private_key> <tx_json>]\n"
|
" submit <tx_blob>|[<private_key> <tx_json>]\n"
|
||||||
|
|||||||
@@ -237,6 +237,39 @@ Batch::preflight(PreflightContext const& ctx)
|
|||||||
std::unordered_set<uint256> uniqueHashes;
|
std::unordered_set<uint256> uniqueHashes;
|
||||||
std::unordered_map<AccountID, std::unordered_set<std::uint32_t>>
|
std::unordered_map<AccountID, std::unordered_set<std::uint32_t>>
|
||||||
accountSeqTicket;
|
accountSeqTicket;
|
||||||
|
auto checkSignatureFields = [&parentBatchId, &j = ctx.j](
|
||||||
|
STObject const& sig,
|
||||||
|
uint256 const& hash,
|
||||||
|
char const* label = "") -> NotTEC {
|
||||||
|
if (sig.isFieldPresent(sfTxnSignature))
|
||||||
|
{
|
||||||
|
JLOG(j.debug())
|
||||||
|
<< "BatchTrace[" << parentBatchId << "]: "
|
||||||
|
<< "inner txn " << label << "cannot include TxnSignature. "
|
||||||
|
<< "txID: " << hash;
|
||||||
|
return temBAD_SIGNATURE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sig.isFieldPresent(sfSigners))
|
||||||
|
{
|
||||||
|
JLOG(j.debug())
|
||||||
|
<< "BatchTrace[" << parentBatchId << "]: "
|
||||||
|
<< "inner txn " << label << " cannot include Signers. "
|
||||||
|
<< "txID: " << hash;
|
||||||
|
return temBAD_SIGNER;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!sig.getFieldVL(sfSigningPubKey).empty())
|
||||||
|
{
|
||||||
|
JLOG(j.debug())
|
||||||
|
<< "BatchTrace[" << parentBatchId << "]: "
|
||||||
|
<< "inner txn " << label << " SigningPubKey must be empty. "
|
||||||
|
<< "txID: " << hash;
|
||||||
|
return temBAD_REGKEY;
|
||||||
|
}
|
||||||
|
|
||||||
|
return tesSUCCESS;
|
||||||
|
};
|
||||||
for (STObject rb : rawTxns)
|
for (STObject rb : rawTxns)
|
||||||
{
|
{
|
||||||
STTx const stx = STTx{std::move(rb)};
|
STTx const stx = STTx{std::move(rb)};
|
||||||
@@ -266,29 +299,23 @@ Batch::preflight(PreflightContext const& ctx)
|
|||||||
return temINVALID_FLAG;
|
return temINVALID_FLAG;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stx.isFieldPresent(sfTxnSignature))
|
if (auto const ret = checkSignatureFields(stx, hash))
|
||||||
{
|
return ret;
|
||||||
JLOG(ctx.j.debug()) << "BatchTrace[" << parentBatchId << "]: "
|
|
||||||
<< "inner txn cannot include TxnSignature. "
|
|
||||||
<< "txID: " << hash;
|
|
||||||
return temBAD_SIGNATURE;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stx.isFieldPresent(sfSigners))
|
/* Placeholder for field that will be added by Lending Protocol
|
||||||
|
// Note that the CounterpartySignature is optional, and should not be
|
||||||
|
// included, but if it is, ensure it doesn't contain a signature.
|
||||||
|
if (stx.isFieldPresent(sfCounterpartySignature))
|
||||||
{
|
{
|
||||||
JLOG(ctx.j.debug()) << "BatchTrace[" << parentBatchId << "]: "
|
auto const counterpartySignature =
|
||||||
<< "inner txn cannot include Signers. "
|
stx.getFieldObject(sfCounterpartySignature);
|
||||||
<< "txID: " << hash;
|
if (auto const ret = checkSignatureFields(
|
||||||
return temBAD_SIGNER;
|
counterpartySignature, hash, "counterparty signature "))
|
||||||
}
|
|
||||||
|
|
||||||
if (!stx.getSigningPubKey().empty())
|
|
||||||
{
|
{
|
||||||
JLOG(ctx.j.debug()) << "BatchTrace[" << parentBatchId << "]: "
|
return ret;
|
||||||
<< "inner txn SigningPubKey must be empty. "
|
|
||||||
<< "txID: " << hash;
|
|
||||||
return temBAD_REGKEY;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
auto const innerAccount = stx.getAccountID(sfAccount);
|
auto const innerAccount = stx.getAccountID(sfAccount);
|
||||||
if (auto const preflightResult = ripple::preflight(
|
if (auto const preflightResult = ripple::preflight(
|
||||||
@@ -385,6 +412,13 @@ Batch::preflightSigValidated(PreflightContext const& ctx)
|
|||||||
// inner account to the required signers set.
|
// inner account to the required signers set.
|
||||||
if (innerAccount != outerAccount)
|
if (innerAccount != outerAccount)
|
||||||
requiredSigners.insert(innerAccount);
|
requiredSigners.insert(innerAccount);
|
||||||
|
/* Placeholder for field that will be added by Lending Protocol
|
||||||
|
// Some transactions have a Counterparty, who must also sign the
|
||||||
|
// transaction if they are not the outer account
|
||||||
|
if (auto const counterparty = rb.at(~sfCounterparty);
|
||||||
|
counterparty && counterparty != outerAccount)
|
||||||
|
requiredSigners.insert(*counterparty);
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validation Batch Signers
|
// Validation Batch Signers
|
||||||
|
|||||||
@@ -965,7 +965,16 @@ private:
|
|||||||
Json::Value txJSON;
|
Json::Value txJSON;
|
||||||
Json::Reader reader;
|
Json::Reader reader;
|
||||||
bool const bOffline =
|
bool const bOffline =
|
||||||
3 == jvParams.size() && jvParams[2u].asString() == "offline";
|
jvParams.size() >= 3 && jvParams[2u].asString() == "offline";
|
||||||
|
std::optional<std::string> const field =
|
||||||
|
[&jvParams, bOffline]() -> std::optional<std::string> {
|
||||||
|
if (jvParams.size() < 3)
|
||||||
|
return std::nullopt;
|
||||||
|
if (jvParams.size() < 4 && bOffline)
|
||||||
|
return std::nullopt;
|
||||||
|
Json::UInt index = bOffline ? 3u : 2u;
|
||||||
|
return jvParams[index].asString();
|
||||||
|
}();
|
||||||
|
|
||||||
if (1 == jvParams.size())
|
if (1 == jvParams.size())
|
||||||
{
|
{
|
||||||
@@ -978,7 +987,7 @@ private:
|
|||||||
return jvRequest;
|
return jvRequest;
|
||||||
}
|
}
|
||||||
else if (
|
else if (
|
||||||
(2 == jvParams.size() || bOffline) &&
|
(jvParams.size() >= 2 || bOffline) &&
|
||||||
reader.parse(jvParams[1u].asString(), txJSON))
|
reader.parse(jvParams[1u].asString(), txJSON))
|
||||||
{
|
{
|
||||||
// Signing or submitting tx_json.
|
// Signing or submitting tx_json.
|
||||||
@@ -990,6 +999,9 @@ private:
|
|||||||
if (bOffline)
|
if (bOffline)
|
||||||
jvRequest[jss::offline] = true;
|
jvRequest[jss::offline] = true;
|
||||||
|
|
||||||
|
if (field)
|
||||||
|
jvRequest[jss::signature_target] = *field;
|
||||||
|
|
||||||
return jvRequest;
|
return jvRequest;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1270,11 +1282,11 @@ public:
|
|||||||
{"server_definitions", &RPCParser::parseServerDefinitions, 0, 1},
|
{"server_definitions", &RPCParser::parseServerDefinitions, 0, 1},
|
||||||
{"server_info", &RPCParser::parseServerInfo, 0, 1},
|
{"server_info", &RPCParser::parseServerInfo, 0, 1},
|
||||||
{"server_state", &RPCParser::parseServerInfo, 0, 1},
|
{"server_state", &RPCParser::parseServerInfo, 0, 1},
|
||||||
{"sign", &RPCParser::parseSignSubmit, 2, 3},
|
{"sign", &RPCParser::parseSignSubmit, 2, 4},
|
||||||
{"sign_for", &RPCParser::parseSignFor, 3, 4},
|
{"sign_for", &RPCParser::parseSignFor, 3, 4},
|
||||||
{"stop", &RPCParser::parseAsIs, 0, 0},
|
{"stop", &RPCParser::parseAsIs, 0, 0},
|
||||||
{"simulate", &RPCParser::parseSimulate, 1, 2},
|
{"simulate", &RPCParser::parseSimulate, 1, 2},
|
||||||
{"submit", &RPCParser::parseSignSubmit, 1, 3},
|
{"submit", &RPCParser::parseSignSubmit, 1, 4},
|
||||||
{"submit_multisigned", &RPCParser::parseSubmitMultiSigned, 1, 1},
|
{"submit_multisigned", &RPCParser::parseSubmitMultiSigned, 1, 1},
|
||||||
{"transaction_entry", &RPCParser::parseTransactionEntry, 2, 2},
|
{"transaction_entry", &RPCParser::parseTransactionEntry, 2, 2},
|
||||||
{"tx", &RPCParser::parseTx, 1, 4},
|
{"tx", &RPCParser::parseTx, 1, 4},
|
||||||
|
|||||||
@@ -33,6 +33,7 @@
|
|||||||
#include <xrpl/basics/mulDiv.h>
|
#include <xrpl/basics/mulDiv.h>
|
||||||
#include <xrpl/json/json_writer.h>
|
#include <xrpl/json/json_writer.h>
|
||||||
#include <xrpl/protocol/ErrorCodes.h>
|
#include <xrpl/protocol/ErrorCodes.h>
|
||||||
|
#include <xrpl/protocol/InnerObjectFormats.h>
|
||||||
#include <xrpl/protocol/RPCErr.h>
|
#include <xrpl/protocol/RPCErr.h>
|
||||||
#include <xrpl/protocol/STParsedJSON.h>
|
#include <xrpl/protocol/STParsedJSON.h>
|
||||||
#include <xrpl/protocol/Sign.h>
|
#include <xrpl/protocol/Sign.h>
|
||||||
@@ -54,6 +55,7 @@ private:
|
|||||||
AccountID const* const multiSigningAcctID_;
|
AccountID const* const multiSigningAcctID_;
|
||||||
std::optional<PublicKey> multiSignPublicKey_;
|
std::optional<PublicKey> multiSignPublicKey_;
|
||||||
Buffer multiSignature_;
|
Buffer multiSignature_;
|
||||||
|
std::optional<std::reference_wrapper<SField const>> signatureTarget_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit SigningForParams() : multiSigningAcctID_(nullptr)
|
explicit SigningForParams() : multiSigningAcctID_(nullptr)
|
||||||
@@ -116,12 +118,25 @@ public:
|
|||||||
return multiSignature_;
|
return multiSignature_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::optional<std::reference_wrapper<SField const>> const&
|
||||||
|
getSignatureTarget() const
|
||||||
|
{
|
||||||
|
return signatureTarget_;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
setPublicKey(PublicKey const& multiSignPublicKey)
|
setPublicKey(PublicKey const& multiSignPublicKey)
|
||||||
{
|
{
|
||||||
multiSignPublicKey_ = multiSignPublicKey;
|
multiSignPublicKey_ = multiSignPublicKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
setSignatureTarget(
|
||||||
|
std::optional<std::reference_wrapper<SField const>> const& field)
|
||||||
|
{
|
||||||
|
signatureTarget_ = field;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
moveMultiSignature(Buffer&& multiSignature)
|
moveMultiSignature(Buffer&& multiSignature)
|
||||||
{
|
{
|
||||||
@@ -427,6 +442,29 @@ transactionPreProcessImpl(
|
|||||||
bool const verify =
|
bool const verify =
|
||||||
!(params.isMember(jss::offline) && params[jss::offline].asBool());
|
!(params.isMember(jss::offline) && params[jss::offline].asBool());
|
||||||
|
|
||||||
|
auto const signatureTarget =
|
||||||
|
[¶ms]() -> std::optional<std::reference_wrapper<SField const>> {
|
||||||
|
if (params.isMember(jss::signature_target))
|
||||||
|
return SField::getField(params[jss::signature_target].asString());
|
||||||
|
return std::nullopt;
|
||||||
|
}();
|
||||||
|
|
||||||
|
// Make sure the signature target field is valid, if specified, and save the
|
||||||
|
// template for use later
|
||||||
|
auto const signatureTemplate = signatureTarget
|
||||||
|
? InnerObjectFormats::getInstance().findSOTemplateBySField(
|
||||||
|
*signatureTarget)
|
||||||
|
: nullptr;
|
||||||
|
if (signatureTarget)
|
||||||
|
{
|
||||||
|
if (!signatureTemplate)
|
||||||
|
{ // Invalid target field
|
||||||
|
return RPC::make_error(
|
||||||
|
rpcINVALID_PARAMS, signatureTarget->get().getName());
|
||||||
|
}
|
||||||
|
signingArgs.setSignatureTarget(signatureTarget);
|
||||||
|
}
|
||||||
|
|
||||||
if (!params.isMember(jss::tx_json))
|
if (!params.isMember(jss::tx_json))
|
||||||
return RPC::missing_field_error(jss::tx_json);
|
return RPC::missing_field_error(jss::tx_json);
|
||||||
|
|
||||||
@@ -541,9 +579,10 @@ transactionPreProcessImpl(
|
|||||||
JLOG(j.trace()) << "verify: " << toBase58(calcAccountID(pk)) << " : "
|
JLOG(j.trace()) << "verify: " << toBase58(calcAccountID(pk)) << " : "
|
||||||
<< toBase58(srcAddressID);
|
<< toBase58(srcAddressID);
|
||||||
|
|
||||||
// Don't do this test if multisigning since the account and secret
|
// Don't do this test if multisigning or if the signature is going into
|
||||||
// probably don't belong together in that case.
|
// an alternate field since the account and secret probably don't belong
|
||||||
if (!signingArgs.isMultiSigning())
|
// together in that case.
|
||||||
|
if (!signingArgs.isMultiSigning() && !signatureTarget)
|
||||||
{
|
{
|
||||||
// Make sure the account and secret belong together.
|
// Make sure the account and secret belong together.
|
||||||
if (tx_json.isMember(sfDelegate.jsonName))
|
if (tx_json.isMember(sfDelegate.jsonName))
|
||||||
@@ -598,7 +637,17 @@ transactionPreProcessImpl(
|
|||||||
{
|
{
|
||||||
// If we're generating a multi-signature the SigningPubKey must be
|
// If we're generating a multi-signature the SigningPubKey must be
|
||||||
// empty, otherwise it must be the master account's public key.
|
// empty, otherwise it must be the master account's public key.
|
||||||
parsed.object->setFieldVL(
|
STObject* sigObject = &*parsed.object;
|
||||||
|
if (signatureTarget)
|
||||||
|
{
|
||||||
|
// If the target object doesn't exist, make one.
|
||||||
|
if (!parsed.object->isFieldPresent(*signatureTarget))
|
||||||
|
parsed.object->setFieldObject(
|
||||||
|
*signatureTarget,
|
||||||
|
STObject{*signatureTemplate, *signatureTarget});
|
||||||
|
sigObject = &parsed.object->peekFieldObject(*signatureTarget);
|
||||||
|
}
|
||||||
|
sigObject->setFieldVL(
|
||||||
sfSigningPubKey,
|
sfSigningPubKey,
|
||||||
signingArgs.isMultiSigning() ? Slice(nullptr, 0) : pk.slice());
|
signingArgs.isMultiSigning() ? Slice(nullptr, 0) : pk.slice());
|
||||||
|
|
||||||
@@ -630,7 +679,7 @@ transactionPreProcessImpl(
|
|||||||
}
|
}
|
||||||
else if (signingArgs.isSingleSigning())
|
else if (signingArgs.isSingleSigning())
|
||||||
{
|
{
|
||||||
stTx->sign(pk, sk);
|
stTx->sign(pk, sk, signatureTarget);
|
||||||
}
|
}
|
||||||
|
|
||||||
return transactionPreProcessResult{std::move(stTx)};
|
return transactionPreProcessResult{std::move(stTx)};
|
||||||
@@ -1195,11 +1244,17 @@ transactionSignFor(
|
|||||||
signer.setFieldVL(
|
signer.setFieldVL(
|
||||||
sfSigningPubKey, signForParams.getPublicKey().slice());
|
sfSigningPubKey, signForParams.getPublicKey().slice());
|
||||||
|
|
||||||
|
STObject& sigTarget = [&]() -> STObject& {
|
||||||
|
auto const target = signForParams.getSignatureTarget();
|
||||||
|
if (target)
|
||||||
|
return sttx->peekFieldObject(*target);
|
||||||
|
return *sttx;
|
||||||
|
}();
|
||||||
// If there is not yet a Signers array, make one.
|
// If there is not yet a Signers array, make one.
|
||||||
if (!sttx->isFieldPresent(sfSigners))
|
if (!sigTarget.isFieldPresent(sfSigners))
|
||||||
sttx->setFieldArray(sfSigners, {});
|
sigTarget.setFieldArray(sfSigners, {});
|
||||||
|
|
||||||
auto& signers = sttx->peekFieldArray(sfSigners);
|
auto& signers = sigTarget.peekFieldArray(sfSigners);
|
||||||
signers.emplace_back(std::move(signer));
|
signers.emplace_back(std::move(signer));
|
||||||
|
|
||||||
// The array must be sorted and validated.
|
// The array must be sorted and validated.
|
||||||
|
|||||||
Reference in New Issue
Block a user