2017-10-17 04:57:30 +03:00
|
|
|
package routing
|
|
|
|
|
|
|
|
import (
|
2019-03-19 19:09:27 +03:00
|
|
|
"math"
|
2017-10-17 04:57:30 +03:00
|
|
|
"sync"
|
|
|
|
"time"
|
2017-10-18 05:41:46 +03:00
|
|
|
|
2019-06-26 14:00:35 +03:00
|
|
|
"github.com/coreos/bbolt"
|
2019-06-26 10:49:16 +03:00
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
2018-03-27 06:53:46 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
2019-04-05 18:36:11 +03:00
|
|
|
"github.com/lightningnetwork/lnd/routing/route"
|
2017-10-17 04:57:30 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-05-22 12:56:04 +03:00
|
|
|
// DefaultPenaltyHalfLife is the default half-life duration. The
|
2019-03-19 19:09:27 +03:00
|
|
|
// half-life duration defines after how much time a penalized node or
|
|
|
|
// channel is back at 50% probability.
|
2019-05-22 12:56:04 +03:00
|
|
|
DefaultPenaltyHalfLife = time.Hour
|
2019-06-26 09:39:34 +03:00
|
|
|
|
|
|
|
// minSecondChanceInterval is the minimum time required between
|
|
|
|
// second-chance failures.
|
|
|
|
//
|
|
|
|
// If nodes return a channel policy related failure, they may get a
|
|
|
|
// second chance to forward the payment. It could be that the channel
|
|
|
|
// policy that we are aware of is not up to date. This is especially
|
|
|
|
// important in case of mobile apps that are mostly offline.
|
|
|
|
//
|
|
|
|
// However, we don't want to give nodes the option to endlessly return
|
|
|
|
// new channel updates so that we are kept busy trying to route through
|
|
|
|
// that node until the payment loop times out.
|
|
|
|
//
|
|
|
|
// Therefore we only grant a second chance to a node if the previous
|
|
|
|
// second chance is sufficiently long ago. This is what
|
|
|
|
// minSecondChanceInterval defines. If a second policy failure comes in
|
|
|
|
// within that interval, we will apply a penalty.
|
|
|
|
//
|
|
|
|
// Second chances granted are tracked on the level of node pairs. This
|
|
|
|
// means that if a node has multiple channels to the same peer, they
|
|
|
|
// will only get a single second chance to route to that peer again.
|
|
|
|
// Nodes forward non-strict, so it isn't necessary to apply a less
|
|
|
|
// restrictive channel level tracking scheme here.
|
|
|
|
minSecondChanceInterval = time.Minute
|
2019-06-26 14:00:35 +03:00
|
|
|
|
|
|
|
// DefaultMaxMcHistory is the default maximum history size.
|
|
|
|
DefaultMaxMcHistory = 1000
|
2017-10-17 04:57:30 +03:00
|
|
|
)
|
|
|
|
|
2019-05-23 21:05:30 +03:00
|
|
|
// MissionControl contains state which summarizes the past attempts of HTLC
|
2019-03-19 19:09:27 +03:00
|
|
|
// routing by external callers when sending payments throughout the network. It
|
|
|
|
// acts as a shared memory during routing attempts with the goal to optimize the
|
|
|
|
// payment attempt success rate.
|
|
|
|
//
|
|
|
|
// Failed payment attempts are reported to mission control. These reports are
|
|
|
|
// used to track the time of the last node or channel level failure. The time
|
|
|
|
// since the last failure is used to estimate a success probability that is fed
|
|
|
|
// into the path finding process for subsequent payment attempts.
|
2019-05-23 21:05:30 +03:00
|
|
|
type MissionControl struct {
|
2019-07-29 16:10:58 +03:00
|
|
|
// lastPairFailure tracks the last payment failure per node pair.
|
|
|
|
lastPairFailure map[DirectedNodePair]pairFailure
|
|
|
|
|
|
|
|
// lastNodeFailure tracks the last node level failure per node.
|
|
|
|
lastNodeFailure map[route.Vertex]time.Time
|
2017-10-17 04:57:30 +03:00
|
|
|
|
2019-06-26 09:39:34 +03:00
|
|
|
// lastSecondChance tracks the last time a second chance was granted for
|
|
|
|
// a directed node pair.
|
|
|
|
lastSecondChance map[DirectedNodePair]time.Time
|
|
|
|
|
2019-03-19 19:09:27 +03:00
|
|
|
// now is expected to return the current time. It is supplied as an
|
|
|
|
// external function to enable deterministic unit tests.
|
|
|
|
now func() time.Time
|
|
|
|
|
2019-05-22 12:56:04 +03:00
|
|
|
cfg *MissionControlConfig
|
2019-03-19 19:09:27 +03:00
|
|
|
|
2019-06-26 14:00:35 +03:00
|
|
|
store *missionControlStore
|
|
|
|
|
2017-10-17 04:57:30 +03:00
|
|
|
sync.Mutex
|
|
|
|
|
|
|
|
// TODO(roasbeef): further counters, if vertex continually unavailable,
|
|
|
|
// add to another generation
|
|
|
|
|
|
|
|
// TODO(roasbeef): also add favorable metrics for nodes
|
|
|
|
}
|
|
|
|
|
2019-05-22 12:56:04 +03:00
|
|
|
// MissionControlConfig defines parameters that control mission control
|
|
|
|
// behaviour.
|
|
|
|
type MissionControlConfig struct {
|
|
|
|
// PenaltyHalfLife defines after how much time a penalized node or
|
|
|
|
// channel is back at 50% probability.
|
|
|
|
PenaltyHalfLife time.Duration
|
|
|
|
|
|
|
|
// AprioriHopProbability is the assumed success probability of a hop in
|
|
|
|
// a route when no other information is available.
|
|
|
|
AprioriHopProbability float64
|
2019-06-26 14:00:35 +03:00
|
|
|
|
|
|
|
// MaxMcHistory defines the maximum number of payment results that are
|
|
|
|
// held on disk.
|
|
|
|
MaxMcHistory int
|
2019-05-22 12:56:04 +03:00
|
|
|
}
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
// pairFailure describes a payment failure for a node pair.
|
|
|
|
type pairFailure struct {
|
|
|
|
// timestamp is the time when this failure result was obtained.
|
|
|
|
timestamp time.Time
|
2017-10-18 05:41:46 +03:00
|
|
|
|
2019-03-19 19:09:27 +03:00
|
|
|
// minPenalizeAmt is the minimum amount for which to take this failure
|
|
|
|
// into account.
|
|
|
|
minPenalizeAmt lnwire.MilliSatoshi
|
2017-10-18 05:41:46 +03:00
|
|
|
}
|
|
|
|
|
2019-05-10 11:38:31 +03:00
|
|
|
// MissionControlSnapshot contains a snapshot of the current state of mission
|
|
|
|
// control.
|
|
|
|
type MissionControlSnapshot struct {
|
|
|
|
// Nodes contains the per node information of this snapshot.
|
|
|
|
Nodes []MissionControlNodeSnapshot
|
2019-07-29 16:10:58 +03:00
|
|
|
|
|
|
|
// Pairs is a list of channels for which specific information is
|
|
|
|
// logged.
|
|
|
|
Pairs []MissionControlPairSnapshot
|
2019-05-10 11:38:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// MissionControlNodeSnapshot contains a snapshot of the current node state in
|
|
|
|
// mission control.
|
|
|
|
type MissionControlNodeSnapshot struct {
|
|
|
|
// Node pubkey.
|
|
|
|
Node route.Vertex
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
// LastFail is the time of last failure.
|
|
|
|
LastFail time.Time
|
2019-05-10 11:38:31 +03:00
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
// OtherSuccessProb is the success probability for pairs not in
|
|
|
|
// the Pairs slice.
|
|
|
|
OtherSuccessProb float64
|
2019-05-10 11:38:31 +03:00
|
|
|
}
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
// MissionControlPairSnapshot contains a snapshot of the current node pair
|
2019-05-10 11:38:31 +03:00
|
|
|
// state in mission control.
|
2019-07-29 16:10:58 +03:00
|
|
|
type MissionControlPairSnapshot struct {
|
|
|
|
// Pair is the node pair of which the state is described.
|
|
|
|
Pair DirectedNodePair
|
2019-05-10 11:38:31 +03:00
|
|
|
|
|
|
|
// LastFail is the time of last failure.
|
|
|
|
LastFail time.Time
|
|
|
|
|
|
|
|
// MinPenalizeAmt is the minimum amount for which the channel will be
|
|
|
|
// penalized.
|
|
|
|
MinPenalizeAmt lnwire.MilliSatoshi
|
|
|
|
|
|
|
|
// SuccessProb is the success probability estimation for this channel.
|
|
|
|
SuccessProb float64
|
|
|
|
}
|
|
|
|
|
2019-06-26 13:25:23 +03:00
|
|
|
// paymentResult is the information that becomes available when a payment
|
|
|
|
// attempt completes.
|
|
|
|
type paymentResult struct {
|
|
|
|
id uint64
|
|
|
|
timeFwd, timeReply time.Time
|
|
|
|
route *route.Route
|
|
|
|
success bool
|
|
|
|
failureSourceIdx *int
|
|
|
|
failure lnwire.FailureMessage
|
|
|
|
}
|
|
|
|
|
2019-03-19 19:09:27 +03:00
|
|
|
// NewMissionControl returns a new instance of missionControl.
|
2019-06-26 14:00:35 +03:00
|
|
|
func NewMissionControl(db *bbolt.DB, cfg *MissionControlConfig) (
|
|
|
|
*MissionControl, error) {
|
|
|
|
|
2019-05-22 12:56:04 +03:00
|
|
|
log.Debugf("Instantiating mission control with config: "+
|
2019-06-18 19:30:56 +03:00
|
|
|
"PenaltyHalfLife=%v, AprioriHopProbability=%v",
|
|
|
|
cfg.PenaltyHalfLife, cfg.AprioriHopProbability)
|
2017-10-17 04:57:30 +03:00
|
|
|
|
2019-06-26 14:00:35 +03:00
|
|
|
store, err := newMissionControlStore(db, cfg.MaxMcHistory)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mc := &MissionControl{
|
2019-07-29 16:10:58 +03:00
|
|
|
lastPairFailure: make(map[DirectedNodePair]pairFailure),
|
|
|
|
lastNodeFailure: make(map[route.Vertex]time.Time),
|
2019-06-26 09:39:34 +03:00
|
|
|
lastSecondChance: make(map[DirectedNodePair]time.Time),
|
|
|
|
now: time.Now,
|
|
|
|
cfg: cfg,
|
2019-06-26 14:00:35 +03:00
|
|
|
store: store,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := mc.init(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return mc, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// init initializes mission control with historical data.
|
|
|
|
func (m *MissionControl) init() error {
|
|
|
|
log.Debugf("Mission control state reconstruction started")
|
|
|
|
|
|
|
|
start := time.Now()
|
|
|
|
|
|
|
|
results, err := m.store.fetchAll()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, result := range results {
|
|
|
|
m.applyPaymentResult(result)
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
2019-06-26 14:00:35 +03:00
|
|
|
|
|
|
|
log.Debugf("Mission control state reconstruction finished: "+
|
|
|
|
"n=%v, time=%v", len(results), time.Now().Sub(start))
|
|
|
|
|
|
|
|
return nil
|
2019-05-23 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
2019-05-23 21:05:30 +03:00
|
|
|
// ResetHistory resets the history of MissionControl returning it to a state as
|
2017-10-17 04:57:30 +03:00
|
|
|
// if no payment attempts have been made.
|
2019-06-26 14:00:35 +03:00
|
|
|
func (m *MissionControl) ResetHistory() error {
|
2017-10-17 04:57:30 +03:00
|
|
|
m.Lock()
|
2019-03-19 19:09:27 +03:00
|
|
|
defer m.Unlock()
|
|
|
|
|
2019-06-26 14:00:35 +03:00
|
|
|
if err := m.store.clear(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
m.lastPairFailure = make(map[DirectedNodePair]pairFailure)
|
|
|
|
m.lastNodeFailure = make(map[route.Vertex]time.Time)
|
2019-06-26 09:39:34 +03:00
|
|
|
m.lastSecondChance = make(map[DirectedNodePair]time.Time)
|
2019-03-19 19:09:27 +03:00
|
|
|
|
|
|
|
log.Debugf("Mission control history cleared")
|
2019-06-26 14:00:35 +03:00
|
|
|
|
|
|
|
return nil
|
2019-03-19 19:09:27 +03:00
|
|
|
}
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
// GetProbability is expected to return the success probability of a payment
|
2019-03-19 19:09:27 +03:00
|
|
|
// from fromNode along edge.
|
2019-07-29 16:10:58 +03:00
|
|
|
func (m *MissionControl) GetProbability(fromNode, toNode route.Vertex,
|
|
|
|
amt lnwire.MilliSatoshi) float64 {
|
2019-03-19 19:09:27 +03:00
|
|
|
|
|
|
|
m.Lock()
|
|
|
|
defer m.Unlock()
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
return m.getPairProbability(fromNode, toNode, amt)
|
2019-03-19 19:09:27 +03:00
|
|
|
}
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
// getProbAfterFail returns a probability estimate based on a last failure time.
|
|
|
|
func (m *MissionControl) getProbAfterFail(lastFailure time.Time) float64 {
|
|
|
|
if lastFailure.IsZero() {
|
2019-05-22 12:56:04 +03:00
|
|
|
return m.cfg.AprioriHopProbability
|
2019-03-19 19:09:27 +03:00
|
|
|
}
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
timeSinceLastFailure := m.now().Sub(lastFailure)
|
2019-03-19 19:09:27 +03:00
|
|
|
|
|
|
|
// Calculate success probability. It is an exponential curve that brings
|
|
|
|
// the probability down to zero when a failure occurs. From there it
|
|
|
|
// recovers asymptotically back to the a priori probability. The rate at
|
|
|
|
// which this happens is controlled by the penaltyHalfLife parameter.
|
2019-05-22 12:56:04 +03:00
|
|
|
exp := -timeSinceLastFailure.Hours() / m.cfg.PenaltyHalfLife.Hours()
|
|
|
|
probability := m.cfg.AprioriHopProbability * (1 - math.Pow(2, exp))
|
2019-03-19 19:09:27 +03:00
|
|
|
|
|
|
|
return probability
|
|
|
|
}
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
// getPairProbability estimates the probability of successfully
|
|
|
|
// traversing from fromNode to toNode based on historical payment outcomes.
|
|
|
|
func (m *MissionControl) getPairProbability(fromNode,
|
|
|
|
toNode route.Vertex, amt lnwire.MilliSatoshi) float64 {
|
|
|
|
|
|
|
|
// Start by getting the last node level failure. A node failure is
|
|
|
|
// considered a failure that would have affected every edge. Therefore
|
|
|
|
// we insert a node level failure into the history of every channel. If
|
|
|
|
// there is none, lastFail will be zero.
|
|
|
|
lastFail := m.lastNodeFailure[fromNode]
|
|
|
|
|
|
|
|
// Retrieve the last pair outcome.
|
|
|
|
pair := NewDirectedNodePair(fromNode, toNode)
|
|
|
|
lastPairResult, ok := m.lastPairFailure[pair]
|
|
|
|
|
|
|
|
// Only look at the last pair outcome if it happened after the last node
|
|
|
|
// level failure. Otherwise the node level failure is the most recent
|
|
|
|
// and used as the basis for calculation of the probability.
|
|
|
|
if ok && lastPairResult.timestamp.After(lastFail) {
|
|
|
|
// Take into account a minimum penalize amount. For balance
|
|
|
|
// errors, a failure may be reported with such a minimum to
|
|
|
|
// prevent too aggresive penalization. We only take into account
|
|
|
|
// a previous failure if the amount that we currently get the
|
|
|
|
// probability for is greater or equal than the minPenalizeAmt
|
|
|
|
// of the previous failure.
|
|
|
|
if amt >= lastPairResult.minPenalizeAmt {
|
|
|
|
lastFail = lastPairResult.timestamp
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.getProbAfterFail(lastFail)
|
|
|
|
}
|
|
|
|
|
2019-06-26 09:39:34 +03:00
|
|
|
// requestSecondChance checks whether the node fromNode can have a second chance
|
|
|
|
// at providing a channel update for its channel with toNode.
|
|
|
|
func (m *MissionControl) requestSecondChance(timestamp time.Time,
|
|
|
|
fromNode, toNode route.Vertex) bool {
|
|
|
|
|
|
|
|
// Look up previous second chance time.
|
|
|
|
pair := DirectedNodePair{
|
|
|
|
From: fromNode,
|
|
|
|
To: toNode,
|
|
|
|
}
|
|
|
|
lastSecondChance, ok := m.lastSecondChance[pair]
|
|
|
|
|
|
|
|
// If the channel hasn't already be given a second chance or its last
|
|
|
|
// second chance was long ago, we give it another chance.
|
|
|
|
if !ok || timestamp.Sub(lastSecondChance) > minSecondChanceInterval {
|
|
|
|
m.lastSecondChance[pair] = timestamp
|
|
|
|
|
|
|
|
log.Debugf("Second chance granted for %v->%v", fromNode, toNode)
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise penalize the channel, because we don't allow channel
|
|
|
|
// updates that are that frequent. This is to prevent nodes from keeping
|
|
|
|
// us busy by continuously sending new channel updates.
|
|
|
|
log.Debugf("Second chance denied for %v->%v, remaining interval: %v",
|
|
|
|
fromNode, toNode, timestamp.Sub(lastSecondChance))
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-05-10 11:38:31 +03:00
|
|
|
// GetHistorySnapshot takes a snapshot from the current mission control state
|
|
|
|
// and actual probability estimates.
|
|
|
|
func (m *MissionControl) GetHistorySnapshot() *MissionControlSnapshot {
|
|
|
|
m.Lock()
|
|
|
|
defer m.Unlock()
|
|
|
|
|
|
|
|
log.Debugf("Requesting history snapshot from mission control: "+
|
2019-07-29 16:10:58 +03:00
|
|
|
"node_failure_count=%v, pair_result_count=%v",
|
|
|
|
len(m.lastNodeFailure), len(m.lastPairFailure))
|
|
|
|
|
|
|
|
nodes := make([]MissionControlNodeSnapshot, 0, len(m.lastNodeFailure))
|
|
|
|
for v, h := range m.lastNodeFailure {
|
|
|
|
otherProb := m.getPairProbability(v, route.Vertex{}, 0)
|
|
|
|
|
|
|
|
nodes = append(nodes, MissionControlNodeSnapshot{
|
|
|
|
Node: v,
|
|
|
|
LastFail: h,
|
|
|
|
OtherSuccessProb: otherProb,
|
|
|
|
})
|
|
|
|
}
|
2019-05-10 11:38:31 +03:00
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
pairs := make([]MissionControlPairSnapshot, 0, len(m.lastPairFailure))
|
2019-05-10 11:38:31 +03:00
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
for v, h := range m.lastPairFailure {
|
|
|
|
// Show probability assuming amount meets min
|
|
|
|
// penalization amount.
|
|
|
|
prob := m.getPairProbability(v.From, v.To, h.minPenalizeAmt)
|
2019-05-10 11:38:31 +03:00
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
pair := MissionControlPairSnapshot{
|
|
|
|
Pair: v,
|
|
|
|
MinPenalizeAmt: h.minPenalizeAmt,
|
|
|
|
LastFail: h.timestamp,
|
|
|
|
SuccessProb: prob,
|
2019-05-10 11:38:31 +03:00
|
|
|
}
|
|
|
|
|
2019-07-29 16:10:58 +03:00
|
|
|
pairs = append(pairs, pair)
|
2019-05-10 11:38:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
snapshot := MissionControlSnapshot{
|
|
|
|
Nodes: nodes,
|
2019-07-29 16:10:58 +03:00
|
|
|
Pairs: pairs,
|
2019-05-10 11:38:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return &snapshot
|
|
|
|
}
|
2019-06-26 10:49:16 +03:00
|
|
|
|
|
|
|
// ReportPaymentFail reports a failed payment to mission control as input for
|
2019-06-26 12:34:25 +03:00
|
|
|
// future probability estimates. The failureSourceIdx argument indicates the
|
|
|
|
// failure source. If it is nil, the failure source is unknown. This function
|
2019-08-05 13:13:58 +03:00
|
|
|
// returns a reason if this failure is a final failure. In that case no further
|
|
|
|
// payment attempts need to be made.
|
2019-06-26 12:48:59 +03:00
|
|
|
func (m *MissionControl) ReportPaymentFail(paymentID uint64, rt *route.Route,
|
2019-08-05 13:13:58 +03:00
|
|
|
failureSourceIdx *int, failure lnwire.FailureMessage) (
|
|
|
|
*channeldb.FailureReason, error) {
|
2019-06-26 10:49:16 +03:00
|
|
|
|
2019-07-02 12:29:44 +03:00
|
|
|
timestamp := m.now()
|
|
|
|
|
2019-06-26 13:25:23 +03:00
|
|
|
// TODO(joostjager): Use actual payment initiation time for timeFwd.
|
|
|
|
result := &paymentResult{
|
|
|
|
success: false,
|
|
|
|
timeFwd: timestamp,
|
|
|
|
timeReply: timestamp,
|
|
|
|
id: paymentID,
|
|
|
|
failureSourceIdx: failureSourceIdx,
|
|
|
|
failure: failure,
|
|
|
|
route: rt,
|
|
|
|
}
|
|
|
|
|
2019-06-26 14:00:35 +03:00
|
|
|
// Store complete result in database.
|
|
|
|
if err := m.store.AddResult(result); err != nil {
|
2019-08-05 13:13:58 +03:00
|
|
|
return nil, err
|
2019-06-26 14:00:35 +03:00
|
|
|
}
|
|
|
|
|
2019-07-02 12:29:44 +03:00
|
|
|
// Apply result to update mission control state.
|
2019-08-05 13:29:16 +03:00
|
|
|
reason := m.applyPaymentResult(result)
|
2019-08-05 13:13:58 +03:00
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
return reason, nil
|
2019-07-02 12:29:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// applyPaymentResult applies a payment result as input for future probability
|
|
|
|
// estimates. It returns a bool indicating whether this error is a final error
|
|
|
|
// and no further payment attempts need to be made.
|
2019-08-05 13:29:16 +03:00
|
|
|
func (m *MissionControl) applyPaymentResult(
|
|
|
|
result *paymentResult) *channeldb.FailureReason {
|
2019-07-02 12:29:44 +03:00
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
// Interpret result.
|
|
|
|
i := interpretResult(
|
|
|
|
result.route, result.failureSourceIdx, result.failure,
|
2019-07-02 12:29:44 +03:00
|
|
|
)
|
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
// Update mission control state using the interpretation.
|
|
|
|
m.Lock()
|
|
|
|
defer m.Unlock()
|
2019-06-26 10:49:16 +03:00
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
if i.policyFailure != nil {
|
|
|
|
if m.requestSecondChance(
|
|
|
|
result.timeReply,
|
|
|
|
i.policyFailure.From, i.policyFailure.To,
|
|
|
|
) {
|
|
|
|
return nil
|
|
|
|
}
|
2019-06-26 10:49:16 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
if i.nodeFailure != nil {
|
|
|
|
log.Debugf("Reporting node failure to Mission Control: "+
|
|
|
|
"node=%v", *i.nodeFailure)
|
2019-06-26 10:49:16 +03:00
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
m.lastNodeFailure[*i.nodeFailure] = result.timeReply
|
2019-06-26 10:49:16 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
for pair, minPenalizeAmt := range i.pairResults {
|
|
|
|
log.Debugf("Reporting pair failure to Mission Control: "+
|
|
|
|
"pair=%v, minPenalizeAmt=%v", pair, minPenalizeAmt)
|
2019-06-26 10:49:16 +03:00
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
m.lastPairFailure[pair] = pairFailure{
|
|
|
|
minPenalizeAmt: minPenalizeAmt,
|
|
|
|
timestamp: result.timeReply,
|
|
|
|
}
|
2019-06-26 10:49:16 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 13:29:16 +03:00
|
|
|
return i.finalFailureReason
|
2019-06-26 10:49:16 +03:00
|
|
|
}
|