1#include <xrpld/rpc/Context.h>
2#include <xrpld/rpc/GRPCHandlers.h>
3#include <xrpld/rpc/detail/RPCLedgerHelpers.h>
4#include <xrpld/rpc/handlers/LedgerEntryHelpers.h>
6#include <xrpl/basics/StringUtilities.h>
7#include <xrpl/basics/strHex.h>
8#include <xrpl/beast/core/LexicalCast.h>
9#include <xrpl/json/json_errors.h>
10#include <xrpl/ledger/CredentialHelpers.h>
11#include <xrpl/ledger/ReadView.h>
12#include <xrpl/protocol/ErrorCodes.h>
13#include <xrpl/protocol/Indexes.h>
14#include <xrpl/protocol/LedgerFormats.h>
15#include <xrpl/protocol/RPCErr.h>
16#include <xrpl/protocol/STXChainBridge.h>
17#include <xrpl/protocol/jss.h>
21static Expected<uint256, Json::Value>
25 std::string const& expectedType =
"hex string or object")
27 if (
auto const uNodeIndex = LedgerEntryHelpers::parse<uint256>(params))
32 "malformedRequest", fieldName, expectedType);
35static Expected<uint256, Json::Value>
41static Expected<uint256, Json::Value>
44 if (
auto const account = LedgerEntryHelpers::parse<AccountID>(params))
50 "malformedAddress", fieldName,
"AccountID");
53static Expected<uint256, Json::Value>
59static Expected<uint256, Json::Value>
67 if (
auto const value =
86static Expected<uint256, Json::Value>
94 if (params[jss::bridge].isString())
105 params, jss::bridge_account,
"malformedBridgeAccount");
111 if (account.value() != bridge->door(chainType))
117static Expected<uint256, Json::Value>
123static Expected<uint256, Json::Value>
132 cred, jss::subject,
"malformedRequest");
137 cred, jss::issuer,
"malformedRequest");
143 jss::credential_type,
150 *subject, *issuer,
Slice(credType->data(), credType->size()))
154static Expected<uint256, Json::Value>
163 params, jss::account,
"malformedAddress");
168 params, jss::authorize,
"malformedAddress");
175static Expected<STArray, Json::Value>
181 "malformedAuthorizedCredentials",
182 jss::authorized_credentials,
190 "malformedAuthorizedCredentials",
191 "Invalid field '" +
std::string(jss::authorized_credentials) +
192 "', array too long."));
198 "malformedAuthorizedCredentials",
199 "Invalid field '" +
std::string(jss::authorized_credentials) +
203 STArray arr(sfAuthorizeCredentials, n);
204 for (
auto const& jo : jv)
209 "malformedAuthorizedCredentials",
210 jss::authorized_credentials,
216 {jss::issuer, jss::credential_type},
217 "malformedAuthorizedCredentials");
224 jo, jss::issuer,
"malformedAuthorizedCredentials");
230 jss::credential_type,
232 "malformedAuthorizedCredentials");
238 credential.setFieldVL(sfCredentialType, *credentialType);
245static Expected<uint256, Json::Value>
253 if ((dp.
isMember(jss::authorized) ==
254 dp.
isMember(jss::authorized_credentials)))
258 "Must have exactly one of `authorized` and "
259 "`authorized_credentials`.");
272 LedgerEntryHelpers::parse<AccountID>(dp[jss::authorized]))
277 "malformedAuthorized", jss::authorized,
"AccountID");
280 auto const& ac(dp[jss::authorized_credentials]);
282 if (!arr.has_value())
290 "malformedAuthorizedCredentials",
291 jss::authorized_credentials,
298static Expected<uint256, Json::Value>
301 auto const account = LedgerEntryHelpers::parse<AccountID>(params);
305 "malformedAddress", fieldName,
"AccountID");
311static Expected<uint256, Json::Value>
321 if (params.
isMember(jss::sub_index) &&
323 params[jss::sub_index].
isBool()))
326 "malformedRequest", jss::sub_index,
"number");
333 "Must have exactly one of `owner` and `dir_root` fields.");
340 if (
auto const uDirRoot =
341 LedgerEntryHelpers::parse<uint256>(params[jss::dir_root]))
347 "malformedDirRoot", jss::dir_root,
"hash");
353 LedgerEntryHelpers::parse<AccountID>(params[jss::owner]);
357 "malformedAddress", jss::owner,
"AccountID");
366static Expected<uint256, Json::Value>
375 params, jss::owner,
"malformedOwner");
386static Expected<uint256, Json::Value>
392static Expected<uint256, Json::Value>
398static Expected<uint256, Json::Value>
407 params, jss::mpt_issuance_id,
"malformedMPTIssuanceID");
412 params, jss::account,
"malformedAccount");
419static Expected<uint256, Json::Value>
424 auto const mptIssuanceID = LedgerEntryHelpers::parse<uint192>(params);
427 "malformedMPTokenIssuance", fieldName,
"Hash192");
432static Expected<uint256, Json::Value>
438static Expected<uint256, Json::Value>
444static Expected<uint256, Json::Value>
450static Expected<uint256, Json::Value>
459 params, jss::account,
"malformedAddress");
464 params, jss::seq,
"malformedRequest");
471static Expected<uint256, Json::Value>
480 params, jss::account,
"malformedAccount");
485 params, jss::oracle_document_id,
"malformedDocumentID");
492static Expected<uint256, Json::Value>
498static Expected<uint256, Json::Value>
511 "malformedRequest", fieldName,
"hex string or object");
515 pd, jss::account,
"malformedAddress");
527static Expected<uint256, Json::Value>
540 jvRippleState, {jss::currency, jss::accounts});
546 if (!jvRippleState[jss::accounts].isArray() ||
547 jvRippleState[jss::accounts].size() != 2)
550 "malformedRequest", jss::accounts,
"length-2 array of Accounts");
554 LedgerEntryHelpers::parse<AccountID>(jvRippleState[jss::accounts][0u]);
556 LedgerEntryHelpers::parse<AccountID>(jvRippleState[jss::accounts][1u]);
560 "malformedAddress", jss::accounts,
"array of Accounts");
565 "malformedRequest",
"Cannot have a trustline to self.");
568 if (!jvRippleState[jss::currency].isString() ||
569 jvRippleState[jss::currency] ==
"" ||
570 !
to_currency(uCurrency, jvRippleState[jss::currency].asString()))
573 "malformedCurrency", jss::currency,
"Currency");
579static Expected<uint256, Json::Value>
585static Expected<uint256, Json::Value>
594 params, jss::account,
"malformedAddress");
599 params, jss::ticket_seq,
"malformedRequest");
606static Expected<uint256, Json::Value>
615 params, jss::owner,
"malformedOwner");
620 params, jss::seq,
"malformedRequest");
627static Expected<uint256, Json::Value>
642 claim_id, jss::xchain_owned_claim_id,
"malformedXChainOwnedClaimID");
652static Expected<uint256, Json::Value>
668 jss::xchain_owned_create_account_claim_id,
669 "malformedXChainOwnedCreateAccountClaimID");
699#pragma push_macro("LEDGER_ENTRY")
702#define LEDGER_ENTRY(tag, value, name, rpcName, fields) \
703 {jss::rpcName, parse##name, tag},
705#include <xrpl/protocol/detail/ledger_entries.macro>
708#pragma pop_macro("LEDGER_ENTRY")
715 auto hasMoreThanOneMember = [&]() {
718 for (
auto const& ledgerEntry : ledgerEntryParsers)
730 if (hasMoreThanOneMember)
747 for (
auto const& ledgerEntry : ledgerEntryParsers)
751 expectedType = ledgerEntry.expectedType;
756 Json::Value const& params = ledgerEntry.fieldName == jss::bridge
758 : context.
params[ledgerEntry.fieldName];
760 ledgerEntry.parseFunction(params, ledgerEntry.fieldName);
762 return result.error();
764 uNodeIndex = result.value();
773 jvResult[jss::error] =
"unknownOption";
798 bool bNodeBinary =
false;
808 if ((expectedType !=
ltANY) && (expectedType != sleNode->getType()))
820 jvResult[jss::index] =
to_string(uNodeIndex);
825 jvResult[jss::index] =
to_string(uNodeIndex);
835 org::xrpl::rpc::v1::GetLedgerEntryRequest& request = context.
params;
836 org::xrpl::rpc::v1::GetLedgerEntryResponse response;
837 grpc::Status status = grpc::Status::OK;
842 grpc::Status errorStatus;
845 errorStatus = grpc::Status(
846 grpc::StatusCode::INVALID_ARGUMENT, status.message());
851 grpc::Status(grpc::StatusCode::NOT_FOUND, status.message());
853 return {response, errorStatus};
859 grpc::Status errorStatus{
860 grpc::StatusCode::INVALID_ARGUMENT,
"index malformed"};
861 return {response, errorStatus};
867 grpc::Status errorStatus{
868 grpc::StatusCode::NOT_FOUND,
"object not found"};
869 return {response, errorStatus};
875 auto& stateObject = *response.mutable_ledger_object();
877 stateObject.set_key(request.key());
878 *(response.mutable_ledger()) = request.ledger();
879 return {response, status};
Lightweight wrapper to tag static string.
UInt size() const
Number of values in array or object.
bool isMember(char const *key) const
Return true if the object has a member named key.
Value get(UInt index, Value const &defaultValue) const
If the array contains at least index+1 elements, returns the element value, otherwise returns default...
bool isConvertibleTo(ValueType other) const
void push_back(STObject const &object)
static STObject makeInnerObject(SField const &name)
static ChainType srcChain(bool wasLockingChainSend)
Blob const & peekData() const
An immutable linear range of bytes.
static std::optional< base_uint > fromVoidChecked(T const &from)
@ uintValue
unsigned integer value
Expected< STXChainBridge, Json::Value > parseBridgeFields(Json::Value const ¶ms)
Unexpected< Json::Value > malformedError(std::string const &err, std::string const &message)
Unexpected< Json::Value > invalidFieldError(std::string const &err, Json::StaticString const field, std::string const &type)
Unexpected< Json::Value > missingFieldError(Json::StaticString const field, std::optional< std::string > err=std::nullopt)
Expected< bool, Json::Value > hasRequired(Json::Value const ¶ms, std::initializer_list< Json::StaticString > fields, std::optional< std::string > err=std::nullopt)
Expected< AccountID, Json::Value > requiredAccountID(Json::Value const ¶ms, Json::StaticString const fieldName, std::string const &err)
Expected< std::uint32_t, Json::Value > requiredUInt32(Json::Value const ¶ms, Json::StaticString const fieldName, std::string const &err)
Expected< uint192, Json::Value > requiredUInt192(Json::Value const ¶ms, Json::StaticString const fieldName, std::string const &err)
Expected< Blob, Json::Value > requiredHexBlob(Json::Value const ¶ms, Json::StaticString const fieldName, std::size_t maxLength, std::string const &err)
Status ledgerFromRequest(T &ledger, GRPCContext< R > &context)
Json::Value make_error(error_code_i code)
Returns a new json object that reflects the error code.
Json::Value make_param_error(std::string const &message)
Returns a new json object that indicates invalid parameters.
Status lookupLedger(std::shared_ptr< ReadView const > &ledger, JsonContext &context, Json::Value &result)
Look up a ledger from a request and fill a Json::Result with the data representing a ledger.
std::set< std::pair< AccountID, Slice > > makeSorted(STArray const &credentials)
Keylet mptoken(MPTID const &issuanceID, AccountID const &holder) noexcept
Keylet oracle(AccountID const &account, std::uint32_t const &documentID) noexcept
Keylet delegate(AccountID const &account, AccountID const &authorizedAccount) noexcept
A keylet for Delegate object.
Keylet permissionedDomain(AccountID const &account, std::uint32_t seq) noexcept
Keylet amm(Asset const &issue1, Asset const &issue2) noexcept
AMM entry.
Keylet line(AccountID const &id0, AccountID const &id1, Currency const ¤cy) noexcept
The index of a trust line for a given currency.
Keylet mptIssuance(std::uint32_t seq, AccountID const &issuer) noexcept
Keylet xChainClaimID(STXChainBridge const &bridge, std::uint64_t seq)
Keylet did(AccountID const &account) noexcept
Keylet credential(AccountID const &subject, AccountID const &issuer, Slice const &credType) noexcept
Keylet vault(AccountID const &owner, std::uint32_t seq) noexcept
Keylet account(AccountID const &id) noexcept
AccountID root.
Keylet page(uint256 const &root, std::uint64_t index=0) noexcept
A page in a directory.
Keylet unchecked(uint256 const &key) noexcept
Any ledger entry.
Keylet escrow(AccountID const &src, std::uint32_t seq) noexcept
An escrow entry.
Keylet bridge(STXChainBridge const &bridge, STXChainBridge::ChainType chainType)
Keylet ownerDir(AccountID const &id) noexcept
The root page of an account's directory.
Keylet xChainCreateAccountClaimID(STXChainBridge const &bridge, std::uint64_t seq)
Keylet offer(AccountID const &id, std::uint32_t seq) noexcept
An offer from an account.
Keylet depositPreauth(AccountID const &owner, AccountID const &preauthorized) noexcept
A DepositPreauth.
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
static Expected< uint256, Json::Value > parseOracle(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseCredential(Json::Value const &cred, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseFeeSettings(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseXChainOwnedClaimID(Json::Value const &claim_id, Json::StaticString const fieldName)
Json::Value doLedgerEntry(RPC::JsonContext &)
static Expected< uint256, Json::Value > parsePayChannel(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseNFTokenOffer(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseCheck(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseEscrow(Json::Value const ¶ms, Json::StaticString const fieldName)
@ rpcUNEXPECTED_LEDGER_TYPE
static Expected< uint256, Json::Value > parseXChainOwnedCreateAccountClaimID(Json::Value const &claim_id, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseIndex(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseDelegate(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseDepositPreauth(Json::Value const &dp, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseSignerList(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parsePermissionedDomain(Json::Value const &pd, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseBridge(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseAMM(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseMPToken(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< STArray, Json::Value > parseAuthorizeCredentials(Json::Value const &jv)
Issue issueFromJson(Json::Value const &v)
std::string strHex(FwdIt begin, FwdIt end)
std::size_t constexpr maxCredentialsArraySize
The maximum number of credentials can be passed in array.
std::pair< org::xrpl::rpc::v1::GetLedgerEntryResponse, grpc::Status > doLedgerEntryGrpc(RPC::GRPCContext< org::xrpl::rpc::v1::GetLedgerEntryRequest > &context)
std::size_t constexpr maxCredentialTypeLength
The maximum length of a CredentialType inside a Credential.
static Expected< uint256, Json::Value > parseOffer(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseNegativeUNL(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseVault(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseMPTokenIssuance(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseNFTokenPage(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseDirectoryNode(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseAmendments(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseAccountRoot(Json::Value const ¶ms, Json::StaticString const fieldName)
uint256 getTicketIndex(AccountID const &account, std::uint32_t uSequence)
static Expected< uint256, Json::Value > parseTicket(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseObjectID(Json::Value const ¶ms, Json::StaticString const fieldName, std::string const &expectedType="hex string or object")
std::string to_string(base_uint< Bits, Tag > const &a)
LedgerEntryType
Identifiers for on-ledger objects.
@ ltANY
A special type, matching any ledger entry type.
Expected< uint256, Json::Value >(*)(Json::Value const &, Json::StaticString const) FunctionType
static Expected< uint256, Json::Value > parseLedgerHashes(Json::Value const ¶ms, Json::StaticString const fieldName)
@ credential
Credentials signature.
static Expected< uint256, Json::Value > parseDID(Json::Value const ¶ms, Json::StaticString const fieldName)
static Expected< uint256, Json::Value > parseRippleState(Json::Value const &jvRippleState, Json::StaticString const fieldName)
static bool authorized(Port const &port, std::map< std::string, std::string > const &h)
bool to_currency(Currency &, std::string const &)
Tries to convert a string to a Currency, returns true on success.
A pair of SHAMap key and LedgerEntryType.
LedgerEntryType expectedType
Json::StaticString fieldName
FunctionType parseFunction