2019-12-10 17:04:10 +03:00
|
|
|
package sweep
|
|
|
|
|
|
|
|
import (
|
2019-12-10 18:06:45 +03:00
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
|
|
|
|
"github.com/btcsuite/btcd/txscript"
|
|
|
|
"github.com/btcsuite/btcd/wire"
|
2019-12-10 17:04:10 +03:00
|
|
|
"github.com/btcsuite/btcutil"
|
|
|
|
"github.com/btcsuite/btcwallet/wallet/txrules"
|
|
|
|
"github.com/lightningnetwork/lnd/input"
|
2019-12-10 18:06:45 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lnwallet"
|
2019-12-10 17:04:10 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lnwallet/chainfee"
|
|
|
|
)
|
|
|
|
|
|
|
|
// txInputSet is an object that accumulates tx inputs and keeps running counters
|
|
|
|
// on various properties of the tx.
|
|
|
|
type txInputSet struct {
|
|
|
|
// weightEstimate is the (worst case) tx weight with the current set of
|
|
|
|
// inputs.
|
|
|
|
weightEstimate input.TxWeightEstimator
|
|
|
|
|
|
|
|
// inputTotal is the total value of all inputs.
|
|
|
|
inputTotal btcutil.Amount
|
|
|
|
|
|
|
|
// outputValue is the value of the tx output.
|
|
|
|
outputValue btcutil.Amount
|
|
|
|
|
|
|
|
// feePerKW is the fee rate used to calculate the tx fee.
|
|
|
|
feePerKW chainfee.SatPerKWeight
|
|
|
|
|
|
|
|
// inputs is the set of tx inputs.
|
|
|
|
inputs []input.Input
|
|
|
|
|
|
|
|
// dustLimit is the minimum output value of the tx.
|
|
|
|
dustLimit btcutil.Amount
|
|
|
|
|
|
|
|
// maxInputs is the maximum number of inputs that will be accepted in
|
|
|
|
// the set.
|
|
|
|
maxInputs int
|
2019-12-10 18:06:45 +03:00
|
|
|
|
|
|
|
// walletInputTotal is the total value of inputs coming from the wallet.
|
|
|
|
walletInputTotal btcutil.Amount
|
|
|
|
|
|
|
|
// wallet contains wallet functionality required by the input set to
|
|
|
|
// retrieve utxos.
|
|
|
|
wallet Wallet
|
2019-12-10 17:04:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// newTxInputSet constructs a new, empty input set.
|
2019-12-10 18:06:45 +03:00
|
|
|
func newTxInputSet(wallet Wallet, feePerKW,
|
|
|
|
relayFee chainfee.SatPerKWeight, maxInputs int) *txInputSet {
|
2019-12-10 17:04:10 +03:00
|
|
|
|
|
|
|
dustLimit := txrules.GetDustThreshold(
|
|
|
|
input.P2WPKHSize,
|
|
|
|
btcutil.Amount(relayFee.FeePerKVByte()),
|
|
|
|
)
|
|
|
|
|
|
|
|
b := txInputSet{
|
|
|
|
feePerKW: feePerKW,
|
|
|
|
dustLimit: dustLimit,
|
|
|
|
maxInputs: maxInputs,
|
2019-12-10 18:06:45 +03:00
|
|
|
wallet: wallet,
|
2019-12-10 17:04:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add the sweep tx output to the weight estimate.
|
|
|
|
b.weightEstimate.AddP2WKHOutput()
|
|
|
|
|
|
|
|
return &b
|
|
|
|
}
|
|
|
|
|
|
|
|
// dustLimitReached returns true if we've accumulated enough inputs to meet the
|
|
|
|
// dust limit.
|
|
|
|
func (t *txInputSet) dustLimitReached() bool {
|
|
|
|
return t.outputValue >= t.dustLimit
|
|
|
|
}
|
|
|
|
|
|
|
|
// add adds a new input to the set. It returns a bool indicating whether the
|
|
|
|
// input was added to the set. An input is rejected if it decreases the tx
|
|
|
|
// output value after paying fees.
|
2019-12-10 18:06:45 +03:00
|
|
|
func (t *txInputSet) add(input input.Input, fromWallet bool) bool {
|
|
|
|
// Stop if max inputs is reached. Do not count additional wallet inputs,
|
|
|
|
// because we don't know in advance how many we may need.
|
|
|
|
if !fromWallet && len(t.inputs) >= t.maxInputs {
|
2019-12-10 17:04:10 +03:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can ignore error, because it has already been checked when
|
|
|
|
// calculating the yields.
|
|
|
|
size, isNestedP2SH, _ := input.WitnessType().SizeUpperBound()
|
|
|
|
|
|
|
|
// Add weight of this new candidate input to a copy of the weight
|
|
|
|
// estimator.
|
|
|
|
newWeightEstimate := t.weightEstimate
|
|
|
|
if isNestedP2SH {
|
|
|
|
newWeightEstimate.AddNestedP2WSHInput(size)
|
|
|
|
} else {
|
|
|
|
newWeightEstimate.AddWitnessInput(size)
|
|
|
|
}
|
|
|
|
|
|
|
|
value := btcutil.Amount(input.SignDesc().Output.Value)
|
|
|
|
newInputTotal := t.inputTotal + value
|
|
|
|
|
|
|
|
weight := newWeightEstimate.Weight()
|
|
|
|
fee := t.feePerKW.FeeForWeight(int64(weight))
|
|
|
|
|
|
|
|
// Calculate the output value if the current input would be
|
|
|
|
// added to the set.
|
|
|
|
newOutputValue := newInputTotal - fee
|
|
|
|
|
|
|
|
// If adding this input makes the total output value of the set
|
|
|
|
// decrease, this is a negative yield input. We don't add the input to
|
|
|
|
// the set and return the outcome.
|
|
|
|
if newOutputValue <= t.outputValue {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-12-10 18:06:45 +03:00
|
|
|
// If this input comes from the wallet, verify that we still gain
|
|
|
|
// something with this transaction.
|
|
|
|
if fromWallet {
|
|
|
|
// Calculate the total value that we spend in this tx from the
|
|
|
|
// wallet if we'd add this wallet input.
|
|
|
|
newWalletTotal := t.walletInputTotal + value
|
|
|
|
|
|
|
|
// In any case, we don't want to lose money by sweeping. If we
|
|
|
|
// don't get more out of the tx then we put in ourselves, do not
|
|
|
|
// add this wallet input.
|
|
|
|
//
|
|
|
|
// We should only add wallet inputs to get the tx output value
|
|
|
|
// above the dust limit, otherwise we'd only burn into fees.
|
|
|
|
// This is guarded by tryAddWalletInputsIfNeeded.
|
|
|
|
//
|
|
|
|
// TODO(joostjager): Possibly require a max ratio between the
|
|
|
|
// value of the wallet input and what we get out of this
|
|
|
|
// transaction. To prevent attaching and locking a big utxo for
|
|
|
|
// very little benefit.
|
|
|
|
if newWalletTotal >= newOutputValue {
|
|
|
|
log.Debugf("Rejecting wallet input of %v, because it "+
|
|
|
|
"would make a negative yielding transaction "+
|
|
|
|
"(%v)",
|
|
|
|
value, newOutputValue-newWalletTotal)
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// We've decided to add the wallet input. Increment the total
|
|
|
|
// wallet funds that go into this tx.
|
|
|
|
t.walletInputTotal = newWalletTotal
|
|
|
|
}
|
|
|
|
|
2019-12-10 17:04:10 +03:00
|
|
|
// Update running values.
|
|
|
|
t.inputTotal = newInputTotal
|
|
|
|
t.outputValue = newOutputValue
|
|
|
|
t.inputs = append(t.inputs, input)
|
|
|
|
t.weightEstimate = newWeightEstimate
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// addPositiveYieldInputs adds sweepableInputs that have a positive yield to the
|
|
|
|
// input set. This function assumes that the list of inputs is sorted descending
|
|
|
|
// by yield.
|
|
|
|
//
|
|
|
|
// TODO(roasbeef): Consider including some negative yield inputs too to clean
|
|
|
|
// up the utxo set even if it costs us some fees up front. In the spirit of
|
|
|
|
// minimizing any negative externalities we cause for the Bitcoin system as a
|
|
|
|
// whole.
|
|
|
|
func (t *txInputSet) addPositiveYieldInputs(sweepableInputs []txInput) {
|
|
|
|
for _, input := range sweepableInputs {
|
|
|
|
// Try to add the input to the transaction. If that doesn't
|
|
|
|
// succeed because it wouldn't increase the output value,
|
|
|
|
// return. Assuming inputs are sorted by yield, any further
|
|
|
|
// inputs wouldn't increase the output value either.
|
2019-12-10 18:06:45 +03:00
|
|
|
if !t.add(input, false) {
|
2019-12-10 17:04:10 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We managed to add all inputs to the set.
|
|
|
|
}
|
2019-12-10 18:06:45 +03:00
|
|
|
|
|
|
|
// tryAddWalletInputsIfNeeded retrieves utxos from the wallet and tries adding as
|
|
|
|
// many as required to bring the tx output value above the given minimum.
|
|
|
|
func (t *txInputSet) tryAddWalletInputsIfNeeded() error {
|
|
|
|
// If we've already reached the dust limit, no action is needed.
|
|
|
|
if t.dustLimitReached() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve wallet utxos. Only consider confirmed utxos to prevent
|
|
|
|
// problems around RBF rules for unconfirmed inputs.
|
|
|
|
utxos, err := t.wallet.ListUnspentWitness(1, math.MaxInt32)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, utxo := range utxos {
|
|
|
|
input, err := createWalletTxInput(utxo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the wallet input isn't positively-yielding at this fee
|
|
|
|
// rate, skip it.
|
|
|
|
if !t.add(input, true) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return if we've reached the minimum output amount.
|
|
|
|
if t.dustLimitReached() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We were not able to reach the minimum output amount.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// createWalletTxInput converts a wallet utxo into an object that can be added
|
|
|
|
// to the other inputs to sweep.
|
|
|
|
func createWalletTxInput(utxo *lnwallet.Utxo) (input.Input, error) {
|
|
|
|
var witnessType input.WitnessType
|
|
|
|
switch utxo.AddressType {
|
|
|
|
case lnwallet.WitnessPubKey:
|
|
|
|
witnessType = input.WitnessKeyHash
|
|
|
|
case lnwallet.NestedWitnessPubKey:
|
|
|
|
witnessType = input.NestedWitnessKeyHash
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unknown address type %v",
|
|
|
|
utxo.AddressType)
|
|
|
|
}
|
|
|
|
|
|
|
|
signDesc := &input.SignDescriptor{
|
|
|
|
Output: &wire.TxOut{
|
|
|
|
PkScript: utxo.PkScript,
|
|
|
|
Value: int64(utxo.Value),
|
|
|
|
},
|
|
|
|
HashType: txscript.SigHashAll,
|
|
|
|
}
|
|
|
|
|
|
|
|
// A height hint doesn't need to be set, because we don't monitor these
|
|
|
|
// inputs for spend.
|
|
|
|
heightHint := uint32(0)
|
|
|
|
|
|
|
|
return input.NewBaseInput(
|
|
|
|
&utxo.OutPoint, witnessType, signDesc, heightHint,
|
|
|
|
), nil
|
|
|
|
}
|