mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Improve directory insertion & deletion (RIPD-1353, RIPD-1488):
This commit introduces the "SortedDirectories" amendment, which addresses two distinct issues: First, it corrects a technical flaw that could, in some edge cases, prevent an empty intermediate page from being deleted. Second, it sorts directory entries within a page (other than order book page entries, which remain strictly FIFO). This makes insert operations deterministic, instead of pseudo-random and reliant on temporal ordering. Lastly, it removes the ability to perform a "soft delete" where the page number of the item to delete need not be known if the item is in the first 20 pages, and enforces a maximum limit to the number of pages that a directory can span.
This commit is contained in:
@@ -15,69 +15,431 @@
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#include <BeastConfig.h>
|
||||
#include <test/jtx.h>
|
||||
#include <ripple/beast/xor_shift_engine.h>
|
||||
#include <ripple/ledger/BookDirs.h>
|
||||
#include <ripple/ledger/Directory.h>
|
||||
#include <ripple/ledger/Sandbox.h>
|
||||
#include <ripple/protocol/Feature.h>
|
||||
#include <ripple/protocol/JsonFields.h>
|
||||
#include <ripple/protocol/Protocol.h>
|
||||
#include <test/jtx.h>
|
||||
#include <algorithm>
|
||||
|
||||
namespace ripple {
|
||||
namespace test {
|
||||
|
||||
struct Directory_test : public beast::unit_test::suite
|
||||
{
|
||||
void testDirectory()
|
||||
// Map [0-15576] into a a unique 3 letter currency code
|
||||
std::string
|
||||
currcode (std::size_t i)
|
||||
{
|
||||
// There are only 17576 possible combinations
|
||||
BEAST_EXPECT (i < 17577);
|
||||
|
||||
std::string code;
|
||||
|
||||
for (int j = 0; j != 3; ++j)
|
||||
{
|
||||
code.push_back ('A' + (i % 26));
|
||||
i /= 26;
|
||||
}
|
||||
|
||||
return code;
|
||||
}
|
||||
|
||||
// Insert n empty pages, numbered [0, ... n - 1], in the
|
||||
// specified directory:
|
||||
void
|
||||
makePages(
|
||||
Sandbox& sb,
|
||||
uint256 const& base,
|
||||
std::uint64_t n)
|
||||
{
|
||||
for (std::uint64_t i = 0; i < n; ++i)
|
||||
{
|
||||
auto p = std::make_shared<SLE>(keylet::page(base, i));
|
||||
|
||||
p->setFieldV256 (sfIndexes, STVector256{});
|
||||
|
||||
if (i + 1 == n)
|
||||
p->setFieldU64 (sfIndexNext, 0);
|
||||
else
|
||||
p->setFieldU64 (sfIndexNext, i + 1);
|
||||
|
||||
if (i == 0)
|
||||
p->setFieldU64 (sfIndexPrevious, n - 1);
|
||||
else
|
||||
p->setFieldU64 (sfIndexPrevious, i - 1);
|
||||
|
||||
sb.insert (p);
|
||||
}
|
||||
}
|
||||
|
||||
void testDirectoryOrdering()
|
||||
{
|
||||
using namespace jtx;
|
||||
Env env(*this);
|
||||
|
||||
auto gw = Account("gw");
|
||||
auto USD = gw["USD"];
|
||||
auto alice = Account("alice");
|
||||
auto bob = Account("bob");
|
||||
|
||||
{
|
||||
auto dir = Dir(*env.current(),
|
||||
keylet::ownerDir(Account("alice")));
|
||||
BEAST_EXPECT(std::begin(dir) == std::end(dir));
|
||||
BEAST_EXPECT(std::end(dir) == dir.find(uint256(), uint256()));
|
||||
testcase ("Directory Ordering (without 'SortedDirectories' amendment");
|
||||
|
||||
Env env(*this, all_features_except(featureSortedDirectories));
|
||||
env.fund(XRP(10000000), alice, bob, gw);
|
||||
|
||||
// Insert 400 offers from Alice, then one from Bob:
|
||||
for (std::size_t i = 1; i <= 400; ++i)
|
||||
env(offer(alice, USD(10), XRP(10)));
|
||||
|
||||
// Check Alice's directory: it should contain one
|
||||
// entry for each offer she added. Within each
|
||||
// page, the entries should be in sorted order.
|
||||
{
|
||||
auto dir = Dir(*env.current(),
|
||||
keylet::ownerDir(alice));
|
||||
|
||||
std::uint32_t lastSeq = 1;
|
||||
|
||||
// Check that the orders are sequential by checking
|
||||
// that their sequence numbers are:
|
||||
for (auto iter = dir.begin(); iter != std::end(dir); ++iter) {
|
||||
BEAST_EXPECT(++lastSeq == (*iter)->getFieldU32(sfSequence));
|
||||
}
|
||||
BEAST_EXPECT(lastSeq != 1);
|
||||
}
|
||||
}
|
||||
|
||||
env.fund(XRP(10000), "alice", "bob", gw);
|
||||
|
||||
auto i = 10;
|
||||
for (; i <= 400; i += 10)
|
||||
env(offer("alice", USD(i), XRP(10)));
|
||||
env(offer("bob", USD(500), XRP(10)));
|
||||
|
||||
{
|
||||
auto dir = Dir(*env.current(),
|
||||
keylet::ownerDir(Account("bob")));
|
||||
BEAST_EXPECT(std::begin(dir)->get()->
|
||||
getFieldAmount(sfTakerPays) == USD(500));
|
||||
testcase ("Directory Ordering (with 'SortedDirectories' amendment)");
|
||||
|
||||
Env env(*this, with_features(featureSortedDirectories));
|
||||
env.fund(XRP(10000000), alice, gw);
|
||||
|
||||
for (std::size_t i = 1; i <= 400; ++i)
|
||||
env(offer(alice, USD(i), XRP(i)));
|
||||
env.close();
|
||||
|
||||
// Check Alice's directory: it should contain one
|
||||
// entry for each offer she added, and, within each
|
||||
// page the entries should be in sorted order.
|
||||
{
|
||||
auto const view = env.closed();
|
||||
|
||||
std::uint64_t page = 0;
|
||||
|
||||
do
|
||||
{
|
||||
auto p = view->read(keylet::page(keylet::ownerDir(alice), page));
|
||||
|
||||
// Ensure that the entries in the page are sorted
|
||||
auto const& v = p->getFieldV256(sfIndexes);
|
||||
BEAST_EXPECT (std::is_sorted(v.begin(), v.end()));
|
||||
|
||||
// Ensure that the page contains the correct orders by
|
||||
// calculating which sequence numbers belong here.
|
||||
std::uint32_t minSeq = 2 + (page * dirNodeMaxEntries);
|
||||
std::uint32_t maxSeq = minSeq + dirNodeMaxEntries;
|
||||
|
||||
for (auto const& e : v)
|
||||
{
|
||||
auto c = view->read(keylet::child(e));
|
||||
BEAST_EXPECT(c);
|
||||
BEAST_EXPECT(c->getFieldU32(sfSequence) >= minSeq);
|
||||
BEAST_EXPECT(c->getFieldU32(sfSequence) < maxSeq);
|
||||
}
|
||||
|
||||
page = p->getFieldU64(sfIndexNext);
|
||||
} while (page != 0);
|
||||
}
|
||||
|
||||
// Now check the orderbook: it should be in the order we placed
|
||||
// the offers.
|
||||
auto book = BookDirs(*env.current(),
|
||||
Book({xrpIssue(), USD.issue()}));
|
||||
int count = 1;
|
||||
|
||||
for (auto const& offer : book)
|
||||
{
|
||||
count++;
|
||||
BEAST_EXPECT(offer->getFieldAmount(sfTakerPays) == USD(count));
|
||||
BEAST_EXPECT(offer->getFieldAmount(sfTakerGets) == XRP(count));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
testDirIsEmpty()
|
||||
{
|
||||
testcase ("dirIsEmpty");
|
||||
|
||||
using namespace jtx;
|
||||
auto const alice = Account("alice");
|
||||
auto const bob = Account("bob");
|
||||
auto const charlie = Account ("charlie");
|
||||
auto const gw = Account ("gw");
|
||||
|
||||
beast::xor_shift_engine eng;
|
||||
|
||||
Env env(*this, with_features(featureSortedDirectories, featureMultiSign));
|
||||
|
||||
env.fund(XRP(1000000), alice, charlie, gw);
|
||||
env.close();
|
||||
|
||||
// alice should have an empty directory.
|
||||
BEAST_EXPECT(dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
|
||||
// Give alice a signer list, then there will be stuff in the directory.
|
||||
env(signers(alice, 1, { { bob, 1} }));
|
||||
env.close();
|
||||
BEAST_EXPECT(! dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
|
||||
env(signers(alice, jtx::none));
|
||||
env.close();
|
||||
BEAST_EXPECT(dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
|
||||
std::vector<IOU> const currencies = [this,&eng,&gw]()
|
||||
{
|
||||
std::vector<IOU> c;
|
||||
|
||||
c.reserve((2 * dirNodeMaxEntries) + 3);
|
||||
|
||||
while (c.size() != c.capacity())
|
||||
c.push_back(gw[currcode(c.size())]);
|
||||
|
||||
return c;
|
||||
}();
|
||||
|
||||
// First, Alices creates a lot of trustlines, and then
|
||||
// deletes them in a different order:
|
||||
{
|
||||
auto cl = currencies;
|
||||
|
||||
for (auto const& c : cl)
|
||||
{
|
||||
env(trust(alice, c(50)));
|
||||
env.close();
|
||||
}
|
||||
|
||||
BEAST_EXPECT(! dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
|
||||
std::shuffle (cl.begin(), cl.end(), eng);
|
||||
|
||||
for (auto const& c : cl)
|
||||
{
|
||||
env(trust(alice, c(0)));
|
||||
env.close();
|
||||
}
|
||||
|
||||
BEAST_EXPECT(dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
}
|
||||
|
||||
auto dir = Dir(*env.current(),
|
||||
keylet::ownerDir(Account("alice")));
|
||||
i = 0;
|
||||
for (auto const& e : dir)
|
||||
BEAST_EXPECT(e->getFieldAmount(sfTakerPays) == USD(i += 10));
|
||||
// Now, Alice creates offers to buy currency, creating
|
||||
// implicit trust lines.
|
||||
{
|
||||
auto cl = currencies;
|
||||
|
||||
BEAST_EXPECT(std::begin(dir) != std::end(dir));
|
||||
BEAST_EXPECT(std::end(dir) ==
|
||||
dir.find(std::begin(dir).page().key,
|
||||
uint256()));
|
||||
BEAST_EXPECT(std::begin(dir) ==
|
||||
dir.find(std::begin(dir).page().key,
|
||||
std::begin(dir).index()));
|
||||
auto entry = std::next(std::begin(dir), 32);
|
||||
auto it = dir.find(entry.page().key, entry.index());
|
||||
BEAST_EXPECT(it != std::end(dir));
|
||||
BEAST_EXPECT((*it)->getFieldAmount(sfTakerPays) == USD(330));
|
||||
BEAST_EXPECT(dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
|
||||
for (auto c : currencies)
|
||||
{
|
||||
env(trust(charlie, c(50)));
|
||||
env.close();
|
||||
env(pay(gw, charlie, c(50)));
|
||||
env.close();
|
||||
env(offer(alice, c(50), XRP(50)));
|
||||
env.close();
|
||||
}
|
||||
|
||||
BEAST_EXPECT(! dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
|
||||
// Now fill the offers in a random order. Offer
|
||||
// entries will drop, and be replaced by trust
|
||||
// lines that are implicitly created.
|
||||
std::shuffle (cl.begin(), cl.end(), eng);
|
||||
|
||||
for (auto const& c : cl)
|
||||
{
|
||||
env(offer(charlie, XRP(50), c(50)));
|
||||
env.close();
|
||||
}
|
||||
BEAST_EXPECT(! dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
// Finally, Alice now sends the funds back to
|
||||
// Charlie. The implicitly created trust lines
|
||||
// should drop away:
|
||||
std::shuffle (cl.begin(), cl.end(), eng);
|
||||
|
||||
for (auto const& c : cl)
|
||||
{
|
||||
env(pay(alice, charlie, c(50)));
|
||||
env.close();
|
||||
}
|
||||
|
||||
BEAST_EXPECT(dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
testRipd1353()
|
||||
{
|
||||
testcase("RIPD-1353 Empty Offer Directories");
|
||||
|
||||
using namespace jtx;
|
||||
Env env(*this, with_features(featureSortedDirectories));
|
||||
|
||||
auto const gw = Account{"gateway"};
|
||||
auto const alice = Account{"alice"};
|
||||
auto const USD = gw["USD"];
|
||||
|
||||
env.fund(XRP(10000), alice, gw);
|
||||
env.trust(USD(1000), alice);
|
||||
env(pay(gw, alice, USD(1000)));
|
||||
|
||||
auto const firstOfferSeq = env.seq(alice);
|
||||
|
||||
// Fill up three pages of offers
|
||||
for (int i = 0; i < 3; ++i)
|
||||
for (int j = 0; j < dirNodeMaxEntries; ++j)
|
||||
env(offer(alice, XRP(1), USD(1)));
|
||||
env.close();
|
||||
|
||||
// remove all the offers. Remove the middle page last
|
||||
for (auto page : {0, 2, 1})
|
||||
{
|
||||
for (int i = 0; i < dirNodeMaxEntries; ++i)
|
||||
{
|
||||
Json::Value cancelOffer;
|
||||
cancelOffer[jss::Account] = alice.human();
|
||||
cancelOffer[jss::OfferSequence] =
|
||||
Json::UInt(firstOfferSeq + page * dirNodeMaxEntries + i);
|
||||
cancelOffer[jss::TransactionType] = "OfferCancel";
|
||||
env(cancelOffer);
|
||||
env.close();
|
||||
}
|
||||
}
|
||||
|
||||
// All the offers have been cancelled, so the book
|
||||
// should have no entries and be empty:
|
||||
{
|
||||
Sandbox sb(env.closed().get(), tapNONE);
|
||||
uint256 const bookBase = getBookBase({xrpIssue(), USD.issue()});
|
||||
|
||||
BEAST_EXPECT(dirIsEmpty (sb, keylet::page(bookBase)));
|
||||
BEAST_EXPECT (!sb.succ(bookBase, getQualityNext(bookBase)));
|
||||
}
|
||||
|
||||
// Alice returns the USD she has to the gateway
|
||||
// and removes her trust line. Her owner directory
|
||||
// should now be empty:
|
||||
{
|
||||
env.trust(USD(0), alice);
|
||||
env(pay(alice, gw, alice["USD"](1000)));
|
||||
env.close();
|
||||
BEAST_EXPECT(dirIsEmpty (*env.closed(), keylet::ownerDir(alice)));
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
testEmptyChain()
|
||||
{
|
||||
testcase("Empty Chain on Delete");
|
||||
|
||||
using namespace jtx;
|
||||
Env env(*this, with_features(featureSortedDirectories));
|
||||
|
||||
auto const gw = Account{"gateway"};
|
||||
auto const alice = Account{"alice"};
|
||||
auto const USD = gw["USD"];
|
||||
|
||||
env.fund(XRP(10000), alice);
|
||||
env.close();
|
||||
|
||||
uint256 base;
|
||||
base.SetHex("fb71c9aa3310141da4b01d6c744a98286af2d72ab5448d5adc0910ca0c910880");
|
||||
|
||||
uint256 item;
|
||||
item.SetHex("bad0f021aa3b2f6754a8fe82a5779730aa0bbbab82f17201ef24900efc2c7312");
|
||||
|
||||
{
|
||||
// Create a chain of three pages:
|
||||
Sandbox sb(env.closed().get(), tapNONE);
|
||||
makePages (sb, base, 3);
|
||||
|
||||
// Insert an item in the middle page:
|
||||
{
|
||||
auto p = sb.peek (keylet::page(base, 1));
|
||||
BEAST_EXPECT(p);
|
||||
|
||||
STVector256 v;
|
||||
v.push_back (item);
|
||||
p->setFieldV256 (sfIndexes, v);
|
||||
sb.update(p);
|
||||
}
|
||||
|
||||
// Now, try to delete the item from the middle
|
||||
// page. This should cause all pages to be deleted:
|
||||
BEAST_EXPECT (sb.dirRemove (keylet::page(base, 0), 1, keylet::unchecked(item), false));
|
||||
BEAST_EXPECT (!sb.peek(keylet::page(base, 2)));
|
||||
BEAST_EXPECT (!sb.peek(keylet::page(base, 1)));
|
||||
BEAST_EXPECT (!sb.peek(keylet::page(base, 0)));
|
||||
}
|
||||
|
||||
{
|
||||
// Create a chain of four pages:
|
||||
Sandbox sb(env.closed().get(), tapNONE);
|
||||
makePages (sb, base, 4);
|
||||
|
||||
// Now add items on pages 1 and 2:
|
||||
{
|
||||
auto p1 = sb.peek (keylet::page(base, 1));
|
||||
BEAST_EXPECT(p1);
|
||||
|
||||
STVector256 v1;
|
||||
v1.push_back (~item);
|
||||
p1->setFieldV256 (sfIndexes, v1);
|
||||
sb.update(p1);
|
||||
|
||||
auto p2 = sb.peek (keylet::page(base, 2));
|
||||
BEAST_EXPECT(p2);
|
||||
|
||||
STVector256 v2;
|
||||
v2.push_back (item);
|
||||
p2->setFieldV256 (sfIndexes, v2);
|
||||
sb.update(p2);
|
||||
}
|
||||
|
||||
// Now, try to delete the item from page 2.
|
||||
// This should cause pages 2 and 3 to be
|
||||
// deleted:
|
||||
BEAST_EXPECT (sb.dirRemove (keylet::page(base, 0), 2, keylet::unchecked(item), false));
|
||||
BEAST_EXPECT (!sb.peek(keylet::page(base, 3)));
|
||||
BEAST_EXPECT (!sb.peek(keylet::page(base, 2)));
|
||||
|
||||
auto p1 = sb.peek(keylet::page(base, 1));
|
||||
BEAST_EXPECT (p1);
|
||||
BEAST_EXPECT (p1->getFieldU64 (sfIndexNext) == 0);
|
||||
BEAST_EXPECT (p1->getFieldU64 (sfIndexPrevious) == 0);
|
||||
|
||||
auto p0 = sb.peek(keylet::page(base, 0));
|
||||
BEAST_EXPECT (p0);
|
||||
BEAST_EXPECT (p0->getFieldU64 (sfIndexNext) == 1);
|
||||
BEAST_EXPECT (p0->getFieldU64 (sfIndexPrevious) == 1);
|
||||
}
|
||||
}
|
||||
|
||||
void run() override
|
||||
{
|
||||
testDirectory();
|
||||
testDirectoryOrdering();
|
||||
testDirIsEmpty();
|
||||
testRipd1353();
|
||||
testEmptyChain();
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE(Directory,ledger,ripple);
|
||||
|
||||
} // test
|
||||
} // ripple
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user