watchtower/lookout/justice_descriptor: adds justice txn creation
This commit is contained in:
parent
bd5ed47ce4
commit
0632520f40
299
watchtower/lookout/justice_descriptor.go
Normal file
299
watchtower/lookout/justice_descriptor.go
Normal file
@ -0,0 +1,299 @@
|
||||
package lookout
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/btcsuite/btcd/blockchain"
|
||||
"github.com/btcsuite/btcd/btcec"
|
||||
"github.com/btcsuite/btcd/txscript"
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/btcsuite/btcutil"
|
||||
"github.com/lightningnetwork/lnd/lnwallet"
|
||||
"github.com/lightningnetwork/lnd/watchtower/blob"
|
||||
"github.com/lightningnetwork/lnd/watchtower/wtdb"
|
||||
)
|
||||
|
||||
var (
|
||||
// ErrOutputNotFound signals that the breached output could not be found
|
||||
// on the commitment transaction.
|
||||
ErrOutputNotFound = errors.New("unable to find output on commit tx")
|
||||
|
||||
// ErrUnknownSweepAddrType signals that client provided an output that
|
||||
// was not p2wkh or p2wsh.
|
||||
ErrUnknownSweepAddrType = errors.New("sweep addr is not p2wkh or p2wsh")
|
||||
)
|
||||
|
||||
// JusticeDescriptor contains the information required to sweep a breached
|
||||
// channel on behalf of a victim. It supports the ability to create the justice
|
||||
// transaction that sweeps the commitments and recover a cut of the channel for
|
||||
// the watcher's eternal vigilance.
|
||||
type JusticeDescriptor struct {
|
||||
// BreachedCommitTx is the commitment transaction that caused the breach
|
||||
// to be detected.
|
||||
BreachedCommitTx *wire.MsgTx
|
||||
|
||||
// SessionInfo contains the contract with the watchtower client and
|
||||
// the prenegotiated terms they agreed to.
|
||||
SessionInfo *wtdb.SessionInfo
|
||||
|
||||
// JusticeKit contains the decrypted blob and information required to
|
||||
// construct the transaction scripts and witnesses.
|
||||
JusticeKit *blob.JusticeKit
|
||||
}
|
||||
|
||||
// breachedInput contains the required information to construct and spend
|
||||
// breached outputs on a commitment transaction.
|
||||
type breachedInput struct {
|
||||
txOut *wire.TxOut
|
||||
outPoint wire.OutPoint
|
||||
witness [][]byte
|
||||
}
|
||||
|
||||
// commitToLocalInput extracts the information required to spend the commit
|
||||
// to-local output.
|
||||
func (p *JusticeDescriptor) commitToLocalInput() (*breachedInput, error) {
|
||||
// Retrieve the to-local witness script from the justice kit.
|
||||
toLocalScript, err := p.JusticeKit.CommitToLocalWitnessScript()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Compute the witness script hash, which will be used to locate the
|
||||
// input on the breaching commitment transaction.
|
||||
toLocalWitnessHash, err := lnwallet.WitnessScriptHash(toLocalScript)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Locate the to-local output on the breaching commitment transaction.
|
||||
toLocalIndex, toLocalTxOut, err := findTxOutByPkScript(
|
||||
p.BreachedCommitTx, toLocalWitnessHash,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Construct the to-local outpoint that will be spent in the justice
|
||||
// transaction.
|
||||
toLocalOutPoint := wire.OutPoint{
|
||||
Hash: p.BreachedCommitTx.TxHash(),
|
||||
Index: toLocalIndex,
|
||||
}
|
||||
|
||||
// Retrieve to-local witness stack, which primarily includes a signature
|
||||
// under the revocation pubkey.
|
||||
witnessStack, err := p.JusticeKit.CommitToLocalRevokeWitnessStack()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &breachedInput{
|
||||
txOut: toLocalTxOut,
|
||||
outPoint: toLocalOutPoint,
|
||||
witness: buildWitness(witnessStack, toLocalScript),
|
||||
}, nil
|
||||
}
|
||||
|
||||
// commitToRemoteInput extracts the information required to spend the commit
|
||||
// to-remote output.
|
||||
func (p *JusticeDescriptor) commitToRemoteInput() (*breachedInput, error) {
|
||||
// Retrieve the to-remote witness script from the justice kit.
|
||||
toRemoteScript, err := p.JusticeKit.CommitToRemoteWitnessScript()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Since the to-remote witness script should just be a regular p2wkh
|
||||
// output, we'll parse it to retrieve the public key.
|
||||
toRemotePubKey, err := btcec.ParsePubKey(toRemoteScript, btcec.S256())
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Compute the witness script hash from the to-remote pubkey, which will
|
||||
// be used to locate the input on the breach commitment transaction.
|
||||
toRemoteScriptHash, err := lnwallet.CommitScriptUnencumbered(
|
||||
toRemotePubKey,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Locate the to-remote output on the breaching commitment transaction.
|
||||
toRemoteIndex, toRemoteTxOut, err := findTxOutByPkScript(
|
||||
p.BreachedCommitTx, toRemoteScriptHash,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Construct the to-remote outpoint which will be spent in the justice
|
||||
// transaction.
|
||||
toRemoteOutPoint := wire.OutPoint{
|
||||
Hash: p.BreachedCommitTx.TxHash(),
|
||||
Index: toRemoteIndex,
|
||||
}
|
||||
|
||||
// Retrieve the to-remote witness stack, which is just a signature under
|
||||
// the to-remote pubkey.
|
||||
witnessStack, err := p.JusticeKit.CommitToRemoteWitnessStack()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &breachedInput{
|
||||
txOut: toRemoteTxOut,
|
||||
outPoint: toRemoteOutPoint,
|
||||
witness: buildWitness(witnessStack, toRemoteScript),
|
||||
}, nil
|
||||
}
|
||||
|
||||
// assembleJusticeTxn accepts the breached inputs recovered from state update
|
||||
// and attempts to construct the justice transaction that sweeps the victims
|
||||
// funds to their wallet and claims the watchtower's reward.
|
||||
func (p *JusticeDescriptor) assembleJusticeTxn(txWeight int64,
|
||||
inputs ...*breachedInput) (*wire.MsgTx, error) {
|
||||
|
||||
justiceTxn := wire.NewMsgTx(2)
|
||||
|
||||
// First, construct add the breached inputs to our justice transaction
|
||||
// and compute the total amount that will be swept.
|
||||
var totalAmt btcutil.Amount
|
||||
for _, input := range inputs {
|
||||
totalAmt += btcutil.Amount(input.txOut.Value)
|
||||
justiceTxn.AddTxIn(&wire.TxIn{
|
||||
PreviousOutPoint: input.outPoint,
|
||||
})
|
||||
}
|
||||
|
||||
// Using the total input amount and the transaction's weight, compute
|
||||
// the sweep and reward amounts. This corresponds to the amount returned
|
||||
// to the victim and the amount paid to the tower, respectively. To do
|
||||
// so, the required transaction fee is subtracted from the total, and
|
||||
// the remaining amount is divided according to the prenegotiated reward
|
||||
// rate from the client's session info.
|
||||
sweepAmt, rewardAmt, err := p.SessionInfo.ComputeSweepOutputs(
|
||||
totalAmt, txWeight,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// TODO(conner): abort/don't add if outputs are dusty
|
||||
|
||||
// Add the sweep and reward outputs to the justice transaction.
|
||||
justiceTxn.AddTxOut(&wire.TxOut{
|
||||
PkScript: p.JusticeKit.SweepAddress[:],
|
||||
Value: int64(sweepAmt),
|
||||
})
|
||||
justiceTxn.AddTxOut(&wire.TxOut{
|
||||
PkScript: p.SessionInfo.RewardAddress,
|
||||
Value: int64(rewardAmt),
|
||||
})
|
||||
|
||||
// TODO(conner): apply and handle BIP69 sort
|
||||
|
||||
btx := btcutil.NewTx(justiceTxn)
|
||||
if err := blockchain.CheckTransactionSanity(btx); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
// Attach each of the provided witnesses to the transaction.
|
||||
for i, input := range inputs {
|
||||
justiceTxn.TxIn[i].Witness = input.witness
|
||||
|
||||
// Validate the reconstructed witnesses to ensure they are valid
|
||||
// for the breached inputs.
|
||||
vm, err := txscript.NewEngine(
|
||||
input.txOut.PkScript, justiceTxn, i,
|
||||
txscript.StandardVerifyFlags,
|
||||
nil, nil, input.txOut.Value,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if err := vm.Execute(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
||||
return justiceTxn, nil
|
||||
}
|
||||
|
||||
// CreateJusticeTxn computes the justice transaction that sweeps a breaching
|
||||
// commitment transaction. The justice transaction is constructed by assembling
|
||||
// the witnesses using data provided by the client in a prior state update.
|
||||
func (p *JusticeDescriptor) CreateJusticeTxn() (*wire.MsgTx, error) {
|
||||
var (
|
||||
sweepInputs = make([]*breachedInput, 0, 2)
|
||||
weightEstimate lnwallet.TxWeightEstimator
|
||||
)
|
||||
|
||||
// Add our reward address to the weight estimate.
|
||||
weightEstimate.AddP2WKHOutput()
|
||||
|
||||
// Add the sweep address's contribution, depending on whether it is a
|
||||
// p2wkh or p2wsh output.
|
||||
switch len(p.JusticeKit.SweepAddress) {
|
||||
case lnwallet.P2WPKHSize:
|
||||
weightEstimate.AddP2WKHOutput()
|
||||
|
||||
case lnwallet.P2WSHSize:
|
||||
weightEstimate.AddP2WSHOutput()
|
||||
|
||||
default:
|
||||
return nil, ErrUnknownSweepAddrType
|
||||
}
|
||||
|
||||
// Assemble the breached to-local output from the justice descriptor and
|
||||
// add it to our weight estimate.
|
||||
toLocalInput, err := p.commitToLocalInput()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
weightEstimate.AddWitnessInput(lnwallet.ToLocalPenaltyWitnessSize)
|
||||
sweepInputs = append(sweepInputs, toLocalInput)
|
||||
|
||||
// If the justice kit specifies that we have to sweep the to-remote
|
||||
// output, we'll also try to assemble the output and add it to weight
|
||||
// estimate if successful.
|
||||
if p.JusticeKit.HasCommitToRemoteOutput() {
|
||||
toRemoteInput, err := p.commitToRemoteInput()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
weightEstimate.AddWitnessInput(lnwallet.P2WKHWitnessSize)
|
||||
sweepInputs = append(sweepInputs, toRemoteInput)
|
||||
}
|
||||
|
||||
// TODO(conner): sweep htlc outputs
|
||||
|
||||
txWeight := int64(weightEstimate.Weight())
|
||||
|
||||
return p.assembleJusticeTxn(txWeight, sweepInputs...)
|
||||
}
|
||||
|
||||
// findTxOutByPkScript searches the given transaction for an output whose
|
||||
// pkscript matches the query. If one is found, the TxOut is returned along with
|
||||
// the index.
|
||||
//
|
||||
// NOTE: The search stops after the first match is found.
|
||||
func findTxOutByPkScript(txn *wire.MsgTx,
|
||||
pkScript []byte) (uint32, *wire.TxOut, error) {
|
||||
|
||||
found, index := lnwallet.FindScriptOutputIndex(txn, pkScript)
|
||||
if !found {
|
||||
return 0, nil, ErrOutputNotFound
|
||||
}
|
||||
|
||||
return index, txn.TxOut[index], nil
|
||||
}
|
||||
|
||||
// buildWitness appends the witness script to a given witness stack.
|
||||
func buildWitness(witnessStack [][]byte, witnessScript []byte) [][]byte {
|
||||
witness := make([][]byte, len(witnessStack)+1)
|
||||
lastIdx := copy(witness, witnessStack)
|
||||
witness[lastIdx] = witnessScript
|
||||
|
||||
return witness
|
||||
}
|
Loading…
Reference in New Issue
Block a user