2018-01-17 06:44:45 +03:00
|
|
|
package contractcourt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
2019-09-11 16:53:00 +03:00
|
|
|
"errors"
|
2019-10-30 13:32:27 +03:00
|
|
|
"fmt"
|
2018-01-17 06:44:45 +03:00
|
|
|
"io"
|
2019-11-01 14:23:48 +03:00
|
|
|
|
|
|
|
"github.com/btcsuite/btcd/wire"
|
2019-10-30 13:32:27 +03:00
|
|
|
"github.com/btcsuite/btclog"
|
|
|
|
"github.com/lightningnetwork/lnd/build"
|
2019-11-01 14:23:48 +03:00
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
2018-01-17 06:44:45 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
endian = binary.BigEndian
|
|
|
|
)
|
|
|
|
|
2018-10-18 02:27:11 +03:00
|
|
|
const (
|
|
|
|
// sweepConfTarget is the default number of blocks that we'll use as a
|
|
|
|
// confirmation target when sweeping.
|
|
|
|
sweepConfTarget = 6
|
2020-12-09 14:24:03 +03:00
|
|
|
|
|
|
|
// secondLevelConfTarget is the confirmation target we'll use when
|
|
|
|
// adding fees to our second-level HTLC transactions.
|
|
|
|
secondLevelConfTarget = 6
|
2018-10-18 02:27:11 +03:00
|
|
|
)
|
|
|
|
|
2018-01-17 06:44:45 +03:00
|
|
|
// ContractResolver is an interface which packages a state machine which is
|
|
|
|
// able to carry out the necessary steps required to fully resolve a Bitcoin
|
|
|
|
// contract on-chain. Resolvers are fully encodable to ensure callers are able
|
|
|
|
// to persist them properly. A resolver may produce another resolver in the
|
|
|
|
// case that claiming an HTLC is a multi-stage process. In this case, we may
|
|
|
|
// partially resolve the contract, then persist, and set up for an additional
|
|
|
|
// resolution.
|
|
|
|
type ContractResolver interface {
|
|
|
|
// ResolverKey returns an identifier which should be globally unique
|
|
|
|
// for this particular resolver within the chain the original contract
|
|
|
|
// resides within.
|
|
|
|
ResolverKey() []byte
|
|
|
|
|
|
|
|
// Resolve instructs the contract resolver to resolve the output
|
|
|
|
// on-chain. Once the output has been *fully* resolved, the function
|
|
|
|
// should return immediately with a nil ContractResolver value for the
|
|
|
|
// first return value. In the case that the contract requires further
|
|
|
|
// resolution, then another resolve is returned.
|
|
|
|
//
|
|
|
|
// NOTE: This function MUST be run as a goroutine.
|
|
|
|
Resolve() (ContractResolver, error)
|
|
|
|
|
|
|
|
// IsResolved returns true if the stored state in the resolve is fully
|
|
|
|
// resolved. In this case the target output can be forgotten.
|
|
|
|
IsResolved() bool
|
|
|
|
|
|
|
|
// Encode writes an encoded version of the ContractResolver into the
|
|
|
|
// passed Writer.
|
|
|
|
Encode(w io.Writer) error
|
|
|
|
|
|
|
|
// Stop signals the resolver to cancel any current resolution
|
|
|
|
// processes, and suspend.
|
|
|
|
Stop()
|
|
|
|
}
|
|
|
|
|
2019-11-01 14:23:48 +03:00
|
|
|
// htlcContractResolver is the required interface for htlc resolvers.
|
|
|
|
type htlcContractResolver interface {
|
|
|
|
ContractResolver
|
|
|
|
|
|
|
|
// HtlcPoint returns the htlc's outpoint on the commitment tx.
|
|
|
|
HtlcPoint() wire.OutPoint
|
|
|
|
|
|
|
|
// Supplement adds additional information to the resolver that is
|
|
|
|
// required before Resolve() is called.
|
|
|
|
Supplement(htlc channeldb.HTLC)
|
|
|
|
}
|
|
|
|
|
2018-09-07 17:05:57 +03:00
|
|
|
// reportingContractResolver is a ContractResolver that also exposes a report on
|
|
|
|
// the resolution state of the contract.
|
|
|
|
type reportingContractResolver interface {
|
|
|
|
ContractResolver
|
|
|
|
|
|
|
|
report() *ContractReport
|
|
|
|
}
|
|
|
|
|
2019-11-06 15:16:50 +03:00
|
|
|
// ResolverConfig contains the externally supplied configuration items that are
|
|
|
|
// required by a ContractResolver implementation.
|
|
|
|
type ResolverConfig struct {
|
2018-02-07 06:11:11 +03:00
|
|
|
// ChannelArbitratorConfig contains all the interfaces and closures
|
2018-01-17 06:44:45 +03:00
|
|
|
// required for the resolver to interact with outside sub-systems.
|
|
|
|
ChannelArbitratorConfig
|
|
|
|
|
|
|
|
// Checkpoint allows a resolver to check point its state. This function
|
|
|
|
// should write the state of the resolver to persistent storage, and
|
2020-07-07 20:49:51 +03:00
|
|
|
// return a non-nil error upon success. It takes a resolver report,
|
|
|
|
// which contains information about the outcome and should be written
|
|
|
|
// to disk if non-nil.
|
|
|
|
Checkpoint func(ContractResolver, ...*channeldb.ResolverReport) error
|
2019-11-06 15:16:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// contractResolverKit is meant to be used as a mix-in struct to be embedded within a
|
|
|
|
// given ContractResolver implementation. It contains all the common items that
|
|
|
|
// a resolver requires to carry out its duties.
|
|
|
|
type contractResolverKit struct {
|
|
|
|
ResolverConfig
|
2018-01-17 06:44:45 +03:00
|
|
|
|
2019-10-30 13:32:27 +03:00
|
|
|
log btclog.Logger
|
|
|
|
|
2019-11-06 15:31:13 +03:00
|
|
|
quit chan struct{}
|
2018-01-17 06:44:45 +03:00
|
|
|
}
|
2019-09-11 16:53:00 +03:00
|
|
|
|
2019-11-06 15:16:50 +03:00
|
|
|
// newContractResolverKit instantiates the mix-in struct.
|
|
|
|
func newContractResolverKit(cfg ResolverConfig) *contractResolverKit {
|
|
|
|
return &contractResolverKit{
|
|
|
|
ResolverConfig: cfg,
|
|
|
|
quit: make(chan struct{}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-30 13:32:27 +03:00
|
|
|
// initLogger initializes the resolver-specific logger.
|
|
|
|
func (r *contractResolverKit) initLogger(resolver ContractResolver) {
|
|
|
|
logPrefix := fmt.Sprintf("%T(%v):", resolver, r.ChanPoint)
|
|
|
|
r.log = build.NewPrefixLog(logPrefix, log)
|
|
|
|
}
|
|
|
|
|
2019-09-11 16:53:00 +03:00
|
|
|
var (
|
|
|
|
// errResolverShuttingDown is returned when the resolver stops
|
|
|
|
// progressing because it received the quit signal.
|
|
|
|
errResolverShuttingDown = errors.New("resolver shutting down")
|
|
|
|
)
|