From d6bc551a713193620b2a907fa23e99471ac2d237 Mon Sep 17 00:00:00 2001 From: Brian McMichael Date: Wed, 17 Mar 2021 12:38:13 -0400 Subject: [PATCH 1/2] Consider liquidation price on take --- src/clip.sol | 7 ++-- src/test/clip.t.sol | 87 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 92 insertions(+), 2 deletions(-) diff --git a/src/clip.sol b/src/clip.sol index 51d72129..ce9ba85e 100644 --- a/src/clip.sol +++ b/src/clip.sol @@ -201,6 +201,9 @@ contract Clipper { function rdiv(uint256 x, uint256 y) internal pure returns (uint256 z) { z = mul(x, RAY) / y; } + function max(uint x, uint y) internal pure returns (uint z) { + return x >= y ? x : y; + } // --- Auction --- @@ -212,7 +215,7 @@ contract Clipper { function getPrice() internal returns (uint256 price) { (PipLike pip, ) = spotter.ilks(ilk); (bytes32 val, bool has) = pip.peek(); - require(has, "Clipper/invalid-price"); + require(has && uint256(val) > 0, "Clipper/invalid-price"); price = rdiv(mul(uint256(val), BLN), spotter.par()); } @@ -248,7 +251,7 @@ contract Clipper { sales[id].tic = uint96(block.timestamp); uint256 top; - top = rmul(getPrice(), buf); + top = max(rmul(getPrice(), buf), tab / lot); require(top > 0, "Clipper/zero-top-price"); sales[id].top = top; diff --git a/src/test/clip.t.sol b/src/test/clip.t.sol index 873d26a0..3bdac401 100644 --- a/src/test/clip.t.sol +++ b/src/test/clip.t.sol @@ -505,6 +505,92 @@ contract ClipperTest is DSTest { assertEq(vat.dai(bob), rad(1000 ether) + rad(100 ether) + tab * 0.02 ether / WAD); // Paid (tip + due * chip) amount of DAI for calling bark() } + function test_low_osm_price_kick() public { + uint256 pos; + uint256 tab; + uint256 lot; + address usr; + uint96 tic; + uint256 top; + uint256 ink; + uint256 art; + + clip.file("tip", rad(100 ether)); // Flat fee of 100 DAI + clip.file("chip", 0); // No linear increase + + assertEq(clip.kicks(), 0); + (pos, tab, lot, usr, tic, top) = clip.sales(1); + assertEq(pos, 0); + assertEq(tab, 0); + assertEq(lot, 0); + assertEq(usr, address(0)); + assertEq(uint256(tic), 0); + assertEq(top, 0); + assertEq(vat.gem(ilk, me), 960 ether); + assertEq(vat.dai(ali), rad(1000 ether)); + (ink, art) = vat.urns(ilk, me); + assertEq(ink, 40 ether); + assertEq(art, 100 ether); + + Guy(ali).bark(dog, ilk, me, address(ali)); + + assertEq(clip.kicks(), 1); + (pos, tab, lot, usr, tic, top) = clip.sales(1); + assertEq(pos, 0); + assertEq(tab, rad(110 ether)); + assertEq(lot, 40 ether); + assertEq(usr, me); + assertEq(uint256(tic), now); + assertEq(top, ray(4 ether)); + assertEq(vat.gem(ilk, me), 960 ether); + assertEq(vat.dai(ali), rad(1100 ether)); // Paid "tip" amount of DAI for calling bark() + (ink, art) = vat.urns(ilk, me); + assertEq(ink, 0 ether); + assertEq(art, 0 ether); + + pip.poke(bytes32(goldPrice)); // Spot = $2.5 + spot.poke(ilk); // Now safe + + hevm.warp(startTime + 100); + vat.frob(ilk, me, me, me, 40 ether, 100 ether); + + pip.poke(bytes32(uint256(1))); // Spot = 1 wei attack + spot.poke(ilk); // Now unsafe + + (pos, tab, lot, usr, tic, top) = clip.sales(2); + assertEq(pos, 0); + assertEq(tab, 0); + assertEq(lot, 0); + assertEq(usr, address(0)); + assertEq(uint256(tic), 0); + assertEq(top, 0); + assertEq(vat.gem(ilk, me), 920 ether); + + clip.file(bytes32("buf"), ray(1.25 ether)); // 25% Initial price buffer + + clip.file("tip", rad(100 ether)); // Flat fee of 100 DAI + clip.file("chip", 0.02 ether); // Linear increase of 2% of tab + + assertEq(vat.dai(bob), rad(1000 ether)); + + Guy(bob).bark(dog, ilk, me, address(bob)); + + assertEq(clip.kicks(), 2); + (pos, tab, lot, usr, tic, top) = clip.sales(2); + assertEq(pos, 1); + assertEq(tab, rad(110 ether)); + assertEq(lot, 40 ether); + assertEq(usr, me); + assertEq(uint256(tic), now); + assertEq(top, ray(2.75 ether)); // Starting amount protected by imputed price in attack + assertEq(vat.gem(ilk, me), 920 ether); + (ink, art) = vat.urns(ilk, me); + assertEq(ink, 0 ether); + assertEq(art, 0 ether); + + assertEq(vat.dai(bob), rad(1000 ether) + rad(100 ether) + tab * 0.02 ether / WAD); // Paid (tip + due * chip) amount of DAI for calling bark() + } + function testFail_kick_zero_price() public { pip.poke(bytes32(0)); dog.bark(ilk, me, address(this)); @@ -1581,4 +1667,5 @@ contract ClipperTest is DSTest { data: "" }); } + } From 2daaa4260956b6dcca3d15cbc2bbd29fb66a3c3d Mon Sep 17 00:00:00 2001 From: Brian McMichael Date: Wed, 17 Mar 2021 12:48:23 -0400 Subject: [PATCH 2/2] Update comment --- src/clip.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clip.sol b/src/clip.sol index ce9ba85e..f3d542b8 100644 --- a/src/clip.sol +++ b/src/clip.sol @@ -223,7 +223,7 @@ contract Clipper { // note: trusts the caller to transfer collateral to the contract // The starting price `top` is obtained as follows: // - // top = val * buf / par + // top = max( val * buf / par , tab / lot ) // // Where `val` is the collateral's unitary value in USD, `buf` is a // multiplicative factor to increase the starting price, and `par` is a