2020-07-20 17:48:30 +00:00
|
|
|
package full
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-08-06 22:10:55 +00:00
|
|
|
"math"
|
2020-08-13 16:57:06 +00:00
|
|
|
"math/rand"
|
2020-08-01 07:40:11 +00:00
|
|
|
"sort"
|
2020-07-20 17:48:30 +00:00
|
|
|
|
2020-08-19 21:25:58 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
2020-07-20 17:48:30 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2020-07-22 15:46:13 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/messagepool"
|
2020-07-20 17:48:30 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/stmgr"
|
|
|
|
"github.com/filecoin-project/lotus/chain/store"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-08-01 19:50:03 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
2020-09-03 11:49:50 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
2020-08-01 19:50:03 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi/big"
|
2020-08-20 19:14:12 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
2020-07-20 17:48:30 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/runtime/exitcode"
|
2020-08-01 19:50:03 +00:00
|
|
|
|
2020-07-20 17:48:30 +00:00
|
|
|
"go.uber.org/fx"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
)
|
|
|
|
|
|
|
|
type GasAPI struct {
|
|
|
|
fx.In
|
|
|
|
Stmgr *stmgr.StateManager
|
2020-08-01 07:40:11 +00:00
|
|
|
Chain *store.ChainStore
|
2020-07-22 15:46:13 +00:00
|
|
|
Mpool *messagepool.MessagePool
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
|
|
|
|
2020-08-13 16:57:06 +00:00
|
|
|
const MinGasPremium = 100e3
|
2020-08-07 18:09:50 +00:00
|
|
|
const MaxSpendOnFeeDenom = 100
|
2020-08-06 22:10:55 +00:00
|
|
|
|
2020-08-07 18:09:50 +00:00
|
|
|
func (a *GasAPI) GasEstimateFeeCap(ctx context.Context, msg *types.Message, maxqueueblks int64,
|
2020-08-06 22:10:55 +00:00
|
|
|
tsk types.TipSetKey) (types.BigInt, error) {
|
|
|
|
ts := a.Chain.GetHeaviestTipSet()
|
|
|
|
|
|
|
|
parentBaseFee := ts.Blocks()[0].ParentBaseFee
|
2020-08-07 22:41:57 +00:00
|
|
|
increaseFactor := math.Pow(1.+1./float64(build.BaseFeeMaxChangeDenom), float64(maxqueueblks))
|
2020-08-07 18:09:50 +00:00
|
|
|
|
|
|
|
feeInFuture := types.BigMul(parentBaseFee, types.NewInt(uint64(increaseFactor*(1<<8))))
|
2020-09-03 11:49:50 +00:00
|
|
|
out := types.BigDiv(feeInFuture, types.NewInt(1<<8))
|
2020-08-06 22:10:55 +00:00
|
|
|
|
2020-09-01 18:34:53 +00:00
|
|
|
if msg.GasPremium != types.EmptyInt {
|
|
|
|
out = types.BigAdd(out, msg.GasPremium)
|
|
|
|
}
|
|
|
|
|
2020-08-06 22:10:55 +00:00
|
|
|
return out, nil
|
|
|
|
}
|
2020-07-20 17:48:30 +00:00
|
|
|
|
2020-08-11 05:10:12 +00:00
|
|
|
func (a *GasAPI) GasEstimateGasPremium(ctx context.Context, nblocksincl uint64,
|
2020-08-06 22:10:55 +00:00
|
|
|
sender address.Address, gaslimit int64, _ types.TipSetKey) (types.BigInt, error) {
|
2020-07-20 17:48:30 +00:00
|
|
|
|
2020-08-01 07:40:11 +00:00
|
|
|
if nblocksincl == 0 {
|
|
|
|
nblocksincl = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
type gasMeta struct {
|
|
|
|
price big.Int
|
2020-08-07 16:35:14 +00:00
|
|
|
limit int64
|
2020-08-01 07:40:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var prices []gasMeta
|
|
|
|
var blocks int
|
|
|
|
|
|
|
|
ts := a.Chain.GetHeaviestTipSet()
|
2020-08-01 07:40:25 +00:00
|
|
|
for i := uint64(0); i < nblocksincl*2; i++ {
|
2020-08-18 01:54:49 +00:00
|
|
|
if ts.Height() == 0 {
|
2020-08-01 07:40:11 +00:00
|
|
|
break // genesis
|
|
|
|
}
|
|
|
|
|
2020-08-01 07:40:25 +00:00
|
|
|
pts, err := a.Chain.LoadTipSet(ts.Parents())
|
2020-08-01 07:40:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return types.BigInt{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
blocks += len(pts.Blocks())
|
|
|
|
|
|
|
|
msgs, err := a.Chain.MessagesForTipset(pts)
|
|
|
|
if err != nil {
|
|
|
|
return types.BigInt{}, xerrors.Errorf("loading messages: %w", err)
|
|
|
|
}
|
2020-08-07 16:35:14 +00:00
|
|
|
for _, msg := range msgs {
|
2020-08-01 07:40:11 +00:00
|
|
|
prices = append(prices, gasMeta{
|
2020-08-06 21:08:42 +00:00
|
|
|
price: msg.VMMessage().GasPremium,
|
2020-08-07 16:35:14 +00:00
|
|
|
limit: msg.VMMessage().GasLimit,
|
2020-08-01 07:40:11 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
ts = pts
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Slice(prices, func(i, j int) bool {
|
|
|
|
// sort desc by price
|
|
|
|
return prices[i].price.GreaterThan(prices[j].price)
|
|
|
|
})
|
|
|
|
|
2020-08-07 16:35:14 +00:00
|
|
|
at := build.BlockGasTarget * int64(blocks) / 2
|
2020-08-31 16:12:06 +00:00
|
|
|
prev1, prev2 := big.Zero(), big.Zero()
|
2020-08-01 07:40:11 +00:00
|
|
|
for _, price := range prices {
|
2020-08-31 16:12:06 +00:00
|
|
|
prev1, prev2 = price.price, prev1
|
2020-08-07 16:35:14 +00:00
|
|
|
at -= price.limit
|
2020-08-01 07:40:11 +00:00
|
|
|
if at > 0 {
|
|
|
|
continue
|
|
|
|
}
|
2020-08-31 16:12:06 +00:00
|
|
|
}
|
2020-08-01 07:40:11 +00:00
|
|
|
|
2020-08-31 16:12:06 +00:00
|
|
|
premium := prev1
|
2020-08-31 22:53:14 +00:00
|
|
|
if prev2.Sign() != 0 {
|
2020-08-31 16:12:06 +00:00
|
|
|
premium = big.Div(types.BigAdd(prev1, prev2), types.NewInt(2))
|
2020-08-01 07:40:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-31 16:12:06 +00:00
|
|
|
if types.BigCmp(premium, types.NewInt(MinGasPremium)) < 0 {
|
2020-08-13 16:57:06 +00:00
|
|
|
switch nblocksincl {
|
|
|
|
case 1:
|
|
|
|
premium = types.NewInt(2 * MinGasPremium)
|
|
|
|
case 2:
|
|
|
|
premium = types.NewInt(1.5 * MinGasPremium)
|
|
|
|
default:
|
|
|
|
premium = types.NewInt(MinGasPremium)
|
|
|
|
}
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
2020-08-13 16:57:06 +00:00
|
|
|
|
2020-08-13 17:27:31 +00:00
|
|
|
// add some noise to normalize behaviour of message selection
|
2020-08-13 16:57:06 +00:00
|
|
|
const precision = 32
|
|
|
|
// mean 1, stddev 0.005 => 95% within +-1%
|
|
|
|
noise := 1 + rand.NormFloat64()*0.005
|
2020-08-31 16:12:06 +00:00
|
|
|
premium = types.BigMul(premium, types.NewInt(uint64(noise*(1<<precision))+1))
|
2020-08-13 16:57:06 +00:00
|
|
|
premium = types.BigDiv(premium, types.NewInt(1<<precision))
|
|
|
|
return premium, nil
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 15:46:13 +00:00
|
|
|
func (a *GasAPI) GasEstimateGasLimit(ctx context.Context, msgIn *types.Message, _ types.TipSetKey) (int64, error) {
|
2020-07-20 17:48:30 +00:00
|
|
|
|
2020-07-20 19:41:05 +00:00
|
|
|
msg := *msgIn
|
2020-07-20 17:48:30 +00:00
|
|
|
msg.GasLimit = build.BlockGasLimit
|
2020-08-07 13:03:55 +00:00
|
|
|
msg.GasFeeCap = types.NewInt(uint64(build.MinimumBaseFee) + 1)
|
2020-08-06 19:28:47 +00:00
|
|
|
msg.GasPremium = types.NewInt(1)
|
2020-07-20 17:48:30 +00:00
|
|
|
|
2020-08-01 07:40:11 +00:00
|
|
|
currTs := a.Chain.GetHeaviestTipSet()
|
2020-07-22 15:46:13 +00:00
|
|
|
fromA, err := a.Stmgr.ResolveToKeyAddress(ctx, msgIn.From, currTs)
|
2020-07-20 17:48:30 +00:00
|
|
|
if err != nil {
|
2020-07-22 15:46:13 +00:00
|
|
|
return -1, xerrors.Errorf("getting key address: %w", err)
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 15:46:13 +00:00
|
|
|
pending, ts := a.Mpool.PendingFor(fromA)
|
|
|
|
priorMsgs := make([]types.ChainMsg, 0, len(pending))
|
|
|
|
for _, m := range pending {
|
|
|
|
priorMsgs = append(priorMsgs, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := a.Stmgr.CallWithGas(ctx, &msg, priorMsgs, ts)
|
2020-07-20 18:33:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return -1, xerrors.Errorf("CallWithGas failed: %w", err)
|
|
|
|
}
|
2020-07-20 17:48:30 +00:00
|
|
|
if res.MsgRct.ExitCode != exitcode.Ok {
|
2020-07-20 18:33:15 +00:00
|
|
|
return -1, xerrors.Errorf("message execution failed: exit %s, reason: %s", res.MsgRct.ExitCode, res.Error)
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 19:14:12 +00:00
|
|
|
// Special case for PaymentChannel collect, which is deleting actor
|
|
|
|
var act types.Actor
|
2020-08-20 22:16:48 +00:00
|
|
|
err = a.Stmgr.WithParentState(ts, a.Stmgr.WithActor(msg.To, stmgr.GetActor(&act)))
|
2020-08-20 19:14:12 +00:00
|
|
|
if err != nil {
|
|
|
|
_ = err
|
|
|
|
// somewhat ignore it as it can happen and we just want to detect
|
|
|
|
// an existing PaymentChannel actor
|
|
|
|
return res.MsgRct.GasUsed, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !act.Code.Equals(builtin.PaymentChannelActorCodeID) {
|
|
|
|
return res.MsgRct.GasUsed, nil
|
|
|
|
}
|
|
|
|
if msgIn.Method != builtin.MethodsPaych.Collect {
|
|
|
|
return res.MsgRct.GasUsed, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// return GasUsed without the refund for DestoryActor
|
|
|
|
return res.MsgRct.GasUsed + 76e3, nil
|
2020-07-20 17:48:30 +00:00
|
|
|
}
|
2020-08-19 21:25:58 +00:00
|
|
|
|
|
|
|
func (a *GasAPI) GasEstimateMessageGas(ctx context.Context, msg *types.Message, spec *api.MessageSendSpec, _ types.TipSetKey) (*types.Message, error) {
|
|
|
|
if msg.GasLimit == 0 {
|
|
|
|
gasLimit, err := a.GasEstimateGasLimit(ctx, msg, types.TipSetKey{})
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("estimating gas used: %w", err)
|
|
|
|
}
|
|
|
|
msg.GasLimit = int64(float64(gasLimit) * a.Mpool.GetConfig().GasLimitOverestimation)
|
|
|
|
}
|
|
|
|
|
|
|
|
if msg.GasPremium == types.EmptyInt || types.BigCmp(msg.GasPremium, types.NewInt(0)) == 0 {
|
|
|
|
gasPremium, err := a.GasEstimateGasPremium(ctx, 2, msg.From, msg.GasLimit, types.TipSetKey{})
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("estimating gas price: %w", err)
|
|
|
|
}
|
|
|
|
msg.GasPremium = gasPremium
|
|
|
|
}
|
|
|
|
|
|
|
|
if msg.GasFeeCap == types.EmptyInt || types.BigCmp(msg.GasFeeCap, types.NewInt(0)) == 0 {
|
|
|
|
feeCap, err := a.GasEstimateFeeCap(ctx, msg, 10, types.EmptyTSK)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("estimating fee cap: %w", err)
|
|
|
|
}
|
2020-09-01 18:34:53 +00:00
|
|
|
msg.GasFeeCap = feeCap
|
2020-08-19 21:25:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
capGasFee(msg, spec.Get().MaxFee)
|
|
|
|
|
|
|
|
return msg, nil
|
|
|
|
}
|
2020-09-03 11:49:50 +00:00
|
|
|
|
|
|
|
func capGasFee(msg *types.Message, maxFee abi.TokenAmount) {
|
|
|
|
if maxFee.Equals(big.Zero()) {
|
|
|
|
maxFee = types.NewInt(build.FilecoinPrecision / 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
gl := types.NewInt(uint64(msg.GasLimit))
|
|
|
|
totalFee := types.BigMul(msg.GasFeeCap, gl)
|
|
|
|
|
|
|
|
if totalFee.LessThanEqual(maxFee) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
msg.GasFeeCap = big.Div(maxFee, gl)
|
2020-09-04 13:42:12 +00:00
|
|
|
msg.GasPremium = big.Min(msg.GasFeeCap, msg.GasPremium) // cap premium at FeeCap
|
2020-09-03 11:49:50 +00:00
|
|
|
}
|