2017-05-01 17:46:53 +03:00
|
|
|
package htlcswitch
|
|
|
|
|
|
|
|
import (
|
2017-06-17 00:38:42 +03:00
|
|
|
"encoding/binary"
|
2017-05-02 22:01:46 +03:00
|
|
|
"io"
|
2017-05-01 17:46:53 +03:00
|
|
|
|
2018-07-31 10:17:17 +03:00
|
|
|
"github.com/btcsuite/btcd/btcec"
|
2017-05-02 23:57:13 +03:00
|
|
|
"github.com/lightningnetwork/lightning-onion"
|
2017-06-17 00:38:42 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
2017-05-01 17:46:53 +03:00
|
|
|
)
|
|
|
|
|
2017-06-17 00:26:50 +03:00
|
|
|
// NetworkHop indicates the blockchain network that is intended to be the next
|
2018-02-07 06:11:11 +03:00
|
|
|
// hop for a forwarded HTLC. The existence of this field within the
|
2017-06-17 00:26:50 +03:00
|
|
|
// ForwardingInfo struct enables the ability for HTLC to cross chain-boundaries
|
|
|
|
// at will.
|
|
|
|
type NetworkHop uint8
|
2017-05-01 17:46:53 +03:00
|
|
|
|
2017-06-17 00:26:50 +03:00
|
|
|
const (
|
|
|
|
// BitcoinHop denotes that an HTLC is to be forwarded along the Bitcoin
|
|
|
|
// link with the specified short channel ID.
|
|
|
|
BitcoinHop NetworkHop = iota
|
|
|
|
|
|
|
|
// LitecoinHop denotes that an HTLC is to be forwarded along the
|
|
|
|
// Litecoin link with the specified short channel ID.
|
|
|
|
LitecoinHop
|
|
|
|
)
|
2017-05-01 17:46:53 +03:00
|
|
|
|
2017-06-17 00:26:50 +03:00
|
|
|
// String returns the string representation of the target NetworkHop.
|
|
|
|
func (c NetworkHop) String() string {
|
|
|
|
switch c {
|
|
|
|
case BitcoinHop:
|
|
|
|
return "Bitcoin"
|
|
|
|
case LitecoinHop:
|
|
|
|
return "Litecoin"
|
|
|
|
default:
|
|
|
|
return "Kekcoin"
|
|
|
|
}
|
2017-05-01 17:46:53 +03:00
|
|
|
}
|
|
|
|
|
2017-06-17 00:26:50 +03:00
|
|
|
var (
|
|
|
|
// exitHop is a special "hop" which denotes that an incoming HTLC is
|
|
|
|
// meant to pay finally to the receiving node.
|
|
|
|
exitHop lnwire.ShortChannelID
|
2018-01-16 11:36:14 +03:00
|
|
|
|
|
|
|
// sourceHop is a sentinel value denoting that an incoming HTLC is
|
|
|
|
// initiated by our own switch.
|
|
|
|
sourceHop lnwire.ShortChannelID
|
2017-06-17 00:26:50 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// ForwardingInfo contains all the information that is necessary to forward and
|
|
|
|
// incoming HTLC to the next hop encoded within a valid HopIterator instance.
|
|
|
|
// Forwarding links are to use this information to authenticate the information
|
|
|
|
// received within the incoming HTLC, to ensure that the prior hop didn't
|
|
|
|
// tamper with the end-to-end routing information at all.
|
|
|
|
type ForwardingInfo struct {
|
|
|
|
// Network is the target blockchain network that the HTLC will travel
|
|
|
|
// over next.
|
|
|
|
Network NetworkHop
|
|
|
|
|
|
|
|
// NextHop is the channel ID of the next hop. The received HTLC should
|
|
|
|
// be forwarded to this particular channel in order to continue the
|
|
|
|
// end-to-end route.
|
|
|
|
NextHop lnwire.ShortChannelID
|
|
|
|
|
2017-08-22 09:36:43 +03:00
|
|
|
// AmountToForward is the amount of milli-satoshis that the receiving
|
|
|
|
// node should forward to the next hop.
|
|
|
|
AmountToForward lnwire.MilliSatoshi
|
2017-06-17 00:26:50 +03:00
|
|
|
|
|
|
|
// OutgoingCTLV is the specified value of the CTLV timelock to be used
|
|
|
|
// in the outgoing HTLC.
|
|
|
|
OutgoingCTLV uint32
|
|
|
|
|
|
|
|
// TODO(roasbeef): modify sphinx logic to not just discard the
|
|
|
|
// remaining bytes, instead should include the rest as excess
|
2017-05-01 17:46:53 +03:00
|
|
|
}
|
2017-05-02 22:01:46 +03:00
|
|
|
|
2017-06-17 00:29:38 +03:00
|
|
|
// HopIterator is an interface that abstracts away the routing information
|
|
|
|
// included in HTLC's which includes the entirety of the payment path of an
|
|
|
|
// HTLC. This interface provides two basic method which carry out: how to
|
|
|
|
// interpret the forwarding information encoded within the HTLC packet, and hop
|
|
|
|
// to encode the forwarding information for the _next_ hop.
|
2017-05-02 22:01:46 +03:00
|
|
|
type HopIterator interface {
|
2017-06-17 00:29:38 +03:00
|
|
|
// ForwardingInstructions returns the set of fields that detail exactly
|
|
|
|
// _how_ this hop should forward the HTLC to the next hop.
|
|
|
|
// Additionally, the information encoded within the returned
|
|
|
|
// ForwardingInfo is to be used by each hop to authenticate the
|
|
|
|
// information given to it by the prior hop.
|
|
|
|
ForwardingInstructions() ForwardingInfo
|
|
|
|
|
|
|
|
// EncodeNextHop encodes the onion packet destined for the next hop
|
|
|
|
// into the passed io.Writer.
|
|
|
|
EncodeNextHop(w io.Writer) error
|
2018-01-16 11:36:14 +03:00
|
|
|
|
|
|
|
// ExtractErrorEncrypter returns the ErrorEncrypter needed for this hop,
|
|
|
|
// along with a failure code to signal if the decoding was successful.
|
|
|
|
ExtractErrorEncrypter(ErrorEncrypterExtracter) (ErrorEncrypter,
|
|
|
|
lnwire.FailCode)
|
2017-05-02 22:01:46 +03:00
|
|
|
}
|
2017-05-02 23:57:13 +03:00
|
|
|
|
|
|
|
// sphinxHopIterator is the Sphinx implementation of hop iterator which uses
|
2017-06-17 00:29:38 +03:00
|
|
|
// onion routing to encode the payment route in such a way so that node might
|
|
|
|
// see only the next hop in the route..
|
2017-05-02 23:57:13 +03:00
|
|
|
type sphinxHopIterator struct {
|
2018-01-16 11:36:14 +03:00
|
|
|
// ogPacket is the original packet from which the processed packet is
|
|
|
|
// derived.
|
|
|
|
ogPacket *sphinx.OnionPacket
|
2017-06-17 00:29:38 +03:00
|
|
|
|
|
|
|
// processedPacket is the outcome of processing an onion packet. It
|
|
|
|
// includes the information required to properly forward the packet to
|
|
|
|
// the next hop.
|
|
|
|
processedPacket *sphinx.ProcessedPacket
|
2017-05-02 23:57:13 +03:00
|
|
|
}
|
|
|
|
|
2018-01-16 11:36:14 +03:00
|
|
|
// makeSphinxHopIterator converts a processed packet returned from a sphinx
|
|
|
|
// router and converts it into an hop iterator for usage in the link.
|
|
|
|
func makeSphinxHopIterator(ogPacket *sphinx.OnionPacket,
|
|
|
|
packet *sphinx.ProcessedPacket) *sphinxHopIterator {
|
|
|
|
|
|
|
|
return &sphinxHopIterator{
|
|
|
|
ogPacket: ogPacket,
|
|
|
|
processedPacket: packet,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-17 00:29:38 +03:00
|
|
|
// A compile time check to ensure sphinxHopIterator implements the HopIterator
|
2017-05-02 23:57:13 +03:00
|
|
|
// interface.
|
|
|
|
var _ HopIterator = (*sphinxHopIterator)(nil)
|
|
|
|
|
|
|
|
// Encode encodes iterator and writes it to the writer.
|
2017-06-17 00:29:38 +03:00
|
|
|
//
|
2017-05-02 23:57:13 +03:00
|
|
|
// NOTE: Part of the HopIterator interface.
|
2017-06-17 00:29:38 +03:00
|
|
|
func (r *sphinxHopIterator) EncodeNextHop(w io.Writer) error {
|
2018-01-16 11:36:14 +03:00
|
|
|
return r.processedPacket.NextPacket.Encode(w)
|
2017-05-02 23:57:13 +03:00
|
|
|
}
|
|
|
|
|
2017-06-17 00:29:38 +03:00
|
|
|
// ForwardingInstructions returns the set of fields that detail exactly _how_
|
|
|
|
// this hop should forward the HTLC to the next hop. Additionally, the
|
|
|
|
// information encoded within the returned ForwardingInfo is to be used by each
|
|
|
|
// hop to authenticate the information given to it by the prior hop.
|
|
|
|
//
|
2017-05-02 23:57:13 +03:00
|
|
|
// NOTE: Part of the HopIterator interface.
|
2017-06-17 00:29:38 +03:00
|
|
|
func (r *sphinxHopIterator) ForwardingInstructions() ForwardingInfo {
|
|
|
|
fwdInst := r.processedPacket.ForwardingInstructions
|
2017-05-02 23:57:13 +03:00
|
|
|
|
2017-06-17 00:29:38 +03:00
|
|
|
var nextHop lnwire.ShortChannelID
|
|
|
|
switch r.processedPacket.Action {
|
2017-05-02 23:57:13 +03:00
|
|
|
case sphinx.ExitNode:
|
2017-06-17 00:29:38 +03:00
|
|
|
nextHop = exitHop
|
2017-05-02 23:57:13 +03:00
|
|
|
case sphinx.MoreHops:
|
2017-06-17 00:29:38 +03:00
|
|
|
s := binary.BigEndian.Uint64(fwdInst.NextAddress[:])
|
|
|
|
nextHop = lnwire.NewShortChanIDFromInt(s)
|
2017-05-02 23:57:13 +03:00
|
|
|
}
|
|
|
|
|
2017-06-17 00:29:38 +03:00
|
|
|
return ForwardingInfo{
|
|
|
|
Network: BitcoinHop,
|
|
|
|
NextHop: nextHop,
|
2017-08-22 09:36:43 +03:00
|
|
|
AmountToForward: lnwire.MilliSatoshi(fwdInst.ForwardAmount),
|
2017-06-17 00:29:38 +03:00
|
|
|
OutgoingCTLV: fwdInst.OutgoingCltv,
|
|
|
|
}
|
2017-05-02 23:57:13 +03:00
|
|
|
}
|
|
|
|
|
2018-01-16 11:36:14 +03:00
|
|
|
// ExtractErrorEncrypter decodes and returns the ErrorEncrypter for this hop,
|
|
|
|
// along with a failure code to signal if the decoding was successful. The
|
|
|
|
// ErrorEncrypter is used to encrypt errors back to the sender in the event that
|
|
|
|
// a payment fails.
|
|
|
|
//
|
|
|
|
// NOTE: Part of the HopIterator interface.
|
|
|
|
func (r *sphinxHopIterator) ExtractErrorEncrypter(
|
|
|
|
extracter ErrorEncrypterExtracter) (ErrorEncrypter, lnwire.FailCode) {
|
|
|
|
|
2018-03-12 23:37:00 +03:00
|
|
|
return extracter(r.ogPacket.EphemeralKey)
|
2018-01-16 11:36:14 +03:00
|
|
|
}
|
|
|
|
|
2017-06-29 16:40:45 +03:00
|
|
|
// OnionProcessor is responsible for keeping all sphinx dependent parts inside
|
2017-05-02 23:57:13 +03:00
|
|
|
// and expose only decoding function. With such approach we give freedom for
|
2017-06-17 00:29:38 +03:00
|
|
|
// subsystems which wants to decode sphinx path to not be dependable from
|
|
|
|
// sphinx at all.
|
2017-05-02 23:57:13 +03:00
|
|
|
//
|
|
|
|
// NOTE: The reason for keeping decoder separated from hop iterator is too
|
|
|
|
// maintain the hop iterator abstraction. Without it the structures which using
|
2017-06-17 00:29:38 +03:00
|
|
|
// the hop iterator should contain sphinx router which makes their creations in
|
|
|
|
// tests dependent from the sphinx internal parts.
|
2017-06-29 16:40:45 +03:00
|
|
|
type OnionProcessor struct {
|
2017-05-02 23:57:13 +03:00
|
|
|
router *sphinx.Router
|
|
|
|
}
|
|
|
|
|
2017-06-29 16:40:45 +03:00
|
|
|
// NewOnionProcessor creates new instance of decoder.
|
|
|
|
func NewOnionProcessor(router *sphinx.Router) *OnionProcessor {
|
|
|
|
return &OnionProcessor{router}
|
2017-05-02 23:57:13 +03:00
|
|
|
}
|
|
|
|
|
2018-01-16 11:36:14 +03:00
|
|
|
// Start spins up the onion processor's sphinx router.
|
|
|
|
func (p *OnionProcessor) Start() error {
|
|
|
|
return p.router.Start()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop shutsdown the onion processor's sphinx router.
|
|
|
|
func (p *OnionProcessor) Stop() error {
|
|
|
|
p.router.Stop()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-29 16:40:45 +03:00
|
|
|
// DecodeHopIterator attempts to decode a valid sphinx packet from the passed io.Reader
|
2017-06-17 00:29:38 +03:00
|
|
|
// instance using the rHash as the associated data when checking the relevant
|
|
|
|
// MACs during the decoding process.
|
2018-01-16 11:36:14 +03:00
|
|
|
func (p *OnionProcessor) DecodeHopIterator(r io.Reader, rHash []byte,
|
|
|
|
incomingCltv uint32) (HopIterator, lnwire.FailCode) {
|
2017-09-12 19:10:30 +03:00
|
|
|
|
2017-05-02 23:57:13 +03:00
|
|
|
onionPkt := &sphinx.OnionPacket{}
|
|
|
|
if err := onionPkt.Decode(r); err != nil {
|
2017-09-12 19:10:30 +03:00
|
|
|
switch err {
|
|
|
|
case sphinx.ErrInvalidOnionVersion:
|
|
|
|
return nil, lnwire.CodeInvalidOnionVersion
|
|
|
|
case sphinx.ErrInvalidOnionKey:
|
|
|
|
return nil, lnwire.CodeInvalidOnionKey
|
|
|
|
default:
|
2017-12-11 02:52:26 +03:00
|
|
|
log.Errorf("unable to decode onion packet: %v", err)
|
2018-01-09 04:50:19 +03:00
|
|
|
return nil, lnwire.CodeInvalidOnionKey
|
2017-09-12 19:10:30 +03:00
|
|
|
}
|
2017-05-02 23:57:13 +03:00
|
|
|
}
|
|
|
|
|
2017-06-17 00:29:38 +03:00
|
|
|
// Attempt to process the Sphinx packet. We include the payment hash of
|
|
|
|
// the HTLC as it's authenticated within the Sphinx packet itself as
|
|
|
|
// associated data in order to thwart attempts a replay attacks. In the
|
|
|
|
// case of a replay, an attacker is *forced* to use the same payment
|
|
|
|
// hash twice, thereby losing their money entirely.
|
2018-01-16 11:36:14 +03:00
|
|
|
sphinxPacket, err := p.router.ProcessOnionPacket(
|
|
|
|
onionPkt, rHash, incomingCltv,
|
|
|
|
)
|
2017-05-02 23:57:13 +03:00
|
|
|
if err != nil {
|
2017-06-29 16:40:45 +03:00
|
|
|
switch err {
|
|
|
|
case sphinx.ErrInvalidOnionVersion:
|
|
|
|
return nil, lnwire.CodeInvalidOnionVersion
|
|
|
|
case sphinx.ErrInvalidOnionHMAC:
|
|
|
|
return nil, lnwire.CodeInvalidOnionHmac
|
|
|
|
case sphinx.ErrInvalidOnionKey:
|
|
|
|
return nil, lnwire.CodeInvalidOnionKey
|
|
|
|
default:
|
2017-12-11 02:52:26 +03:00
|
|
|
log.Errorf("unable to process onion packet: %v", err)
|
2018-01-09 04:50:19 +03:00
|
|
|
return nil, lnwire.CodeInvalidOnionKey
|
2017-06-29 16:40:45 +03:00
|
|
|
}
|
2017-05-02 23:57:13 +03:00
|
|
|
}
|
|
|
|
|
2018-01-16 11:36:14 +03:00
|
|
|
return makeSphinxHopIterator(onionPkt, sphinxPacket), lnwire.CodeNone
|
2017-06-29 16:40:45 +03:00
|
|
|
}
|
|
|
|
|
2018-01-16 11:36:14 +03:00
|
|
|
// DecodeHopIteratorRequest encapsulates all date necessary to process an onion
|
|
|
|
// packet, perform sphinx replay detection, and schedule the entry for garbage
|
|
|
|
// collection.
|
|
|
|
type DecodeHopIteratorRequest struct {
|
|
|
|
OnionReader io.Reader
|
|
|
|
RHash []byte
|
|
|
|
IncomingCltv uint32
|
|
|
|
}
|
2017-10-11 05:36:52 +03:00
|
|
|
|
2018-01-16 11:36:14 +03:00
|
|
|
// DecodeHopIteratorResponse encapsulates the outcome of a batched sphinx onion
|
|
|
|
// processing.
|
|
|
|
type DecodeHopIteratorResponse struct {
|
|
|
|
HopIterator HopIterator
|
|
|
|
FailCode lnwire.FailCode
|
|
|
|
}
|
|
|
|
|
|
|
|
// Result returns the (HopIterator, lnwire.FailCode) tuple, which should
|
|
|
|
// correspond to the index of a particular DecodeHopIteratorRequest.
|
|
|
|
//
|
|
|
|
// NOTE: The HopIterator should be considered invalid if the fail code is
|
|
|
|
// anything but lnwire.CodeNone.
|
|
|
|
func (r *DecodeHopIteratorResponse) Result() (HopIterator, lnwire.FailCode) {
|
|
|
|
return r.HopIterator, r.FailCode
|
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeHopIterators performs batched decoding and validation of incoming
|
|
|
|
// sphinx packets. For the same `id`, this method will return the same iterators
|
|
|
|
// and failcodes upon subsequent invocations.
|
|
|
|
//
|
|
|
|
// NOTE: In order for the responses to be valid, the caller must guarantee that
|
|
|
|
// the presented readers and rhashes *NEVER* deviate across invocations for the
|
|
|
|
// same id.
|
|
|
|
func (p *OnionProcessor) DecodeHopIterators(id []byte,
|
|
|
|
reqs []DecodeHopIteratorRequest) ([]DecodeHopIteratorResponse, error) {
|
|
|
|
|
|
|
|
var (
|
|
|
|
batchSize = len(reqs)
|
|
|
|
onionPkts = make([]sphinx.OnionPacket, batchSize)
|
|
|
|
resps = make([]DecodeHopIteratorResponse, batchSize)
|
|
|
|
)
|
|
|
|
|
|
|
|
tx := p.router.BeginTxn(id, batchSize)
|
|
|
|
|
|
|
|
for i, req := range reqs {
|
|
|
|
onionPkt := &onionPkts[i]
|
|
|
|
resp := &resps[i]
|
|
|
|
|
|
|
|
err := onionPkt.Decode(req.OnionReader)
|
2017-09-12 19:10:30 +03:00
|
|
|
switch err {
|
2018-01-16 11:36:14 +03:00
|
|
|
case nil:
|
|
|
|
// success
|
|
|
|
|
2017-09-12 19:10:30 +03:00
|
|
|
case sphinx.ErrInvalidOnionVersion:
|
2018-01-16 11:36:14 +03:00
|
|
|
resp.FailCode = lnwire.CodeInvalidOnionVersion
|
|
|
|
continue
|
|
|
|
|
2017-09-12 19:10:30 +03:00
|
|
|
case sphinx.ErrInvalidOnionKey:
|
2018-01-16 11:36:14 +03:00
|
|
|
resp.FailCode = lnwire.CodeInvalidOnionKey
|
|
|
|
continue
|
|
|
|
|
2017-09-12 19:10:30 +03:00
|
|
|
default:
|
2017-12-11 02:52:26 +03:00
|
|
|
log.Errorf("unable to decode onion packet: %v", err)
|
2018-01-16 11:36:14 +03:00
|
|
|
resp.FailCode = lnwire.CodeInvalidOnionKey
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
err = tx.ProcessOnionPacket(
|
|
|
|
uint16(i), onionPkt, req.RHash, req.IncomingCltv,
|
|
|
|
)
|
|
|
|
switch err {
|
|
|
|
case nil:
|
|
|
|
// success
|
|
|
|
|
|
|
|
case sphinx.ErrInvalidOnionVersion:
|
|
|
|
resp.FailCode = lnwire.CodeInvalidOnionVersion
|
|
|
|
continue
|
|
|
|
|
|
|
|
case sphinx.ErrInvalidOnionHMAC:
|
|
|
|
resp.FailCode = lnwire.CodeInvalidOnionHmac
|
|
|
|
continue
|
|
|
|
|
|
|
|
case sphinx.ErrInvalidOnionKey:
|
|
|
|
resp.FailCode = lnwire.CodeInvalidOnionKey
|
|
|
|
continue
|
|
|
|
|
|
|
|
default:
|
|
|
|
log.Errorf("unable to process onion packet: %v", err)
|
|
|
|
resp.FailCode = lnwire.CodeInvalidOnionKey
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// With that batch created, we will now attempt to write the shared
|
|
|
|
// secrets to disk. This operation will returns the set of indices that
|
|
|
|
// were detected as replays, and the computed sphinx packets for all
|
|
|
|
// indices that did not fail the above loop. Only indices that are not
|
|
|
|
// in the replay set should be considered valid, as they are
|
|
|
|
// opportunistically computed.
|
|
|
|
packets, replays, err := tx.Commit()
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("unable to process onion packet batch %x: %v",
|
|
|
|
id, err)
|
|
|
|
|
|
|
|
// If we failed to commit the batch to the secret share log, we
|
|
|
|
// will mark all not-yet-failed channels with a temporary
|
|
|
|
// channel failure and exit since we cannot proceed.
|
|
|
|
for i := range resps {
|
|
|
|
resp := &resps[i]
|
|
|
|
|
|
|
|
// Skip any indexes that already failed onion decoding.
|
|
|
|
if resp.FailCode != lnwire.CodeNone {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Errorf("unable to process onion packet %x-%v",
|
|
|
|
id, i)
|
|
|
|
resp.FailCode = lnwire.CodeTemporaryChannelFailure
|
2017-09-12 19:10:30 +03:00
|
|
|
}
|
2018-01-16 11:36:14 +03:00
|
|
|
|
|
|
|
// TODO(conner): return real errors to caller so link can fail?
|
|
|
|
return resps, err
|
2017-06-29 16:40:45 +03:00
|
|
|
}
|
|
|
|
|
2018-01-16 11:36:14 +03:00
|
|
|
// Otherwise, the commit was successful. Now we will post process any
|
|
|
|
// remaining packets, additionally failing any that were included in the
|
|
|
|
// replay set.
|
|
|
|
for i := range resps {
|
|
|
|
resp := &resps[i]
|
|
|
|
|
|
|
|
// Skip any indexes that already failed onion decoding.
|
|
|
|
if resp.FailCode != lnwire.CodeNone {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this index is contained in the replay set, mark it with a
|
|
|
|
// temporary channel failure error code. We infer that the
|
|
|
|
// offending error was due to a replayed packet because this
|
|
|
|
// index was found in the replay set.
|
|
|
|
if replays.Contains(uint16(i)) {
|
|
|
|
log.Errorf("unable to process onion packet: %v",
|
|
|
|
sphinx.ErrReplayedPacket)
|
|
|
|
resp.FailCode = lnwire.CodeTemporaryChannelFailure
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, construct a hop iterator from our processed sphinx
|
|
|
|
// packet, simultaneously caching the original onion packet.
|
|
|
|
resp.HopIterator = makeSphinxHopIterator(&onionPkts[i], &packets[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
return resps, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExtractErrorEncrypter takes an io.Reader which should contain the onion
|
|
|
|
// packet as original received by a forwarding node and creates an
|
|
|
|
// ErrorEncrypter instance using the derived shared secret. In the case that en
|
|
|
|
// error occurs, a lnwire failure code detailing the parsing failure will be
|
|
|
|
// returned.
|
2018-03-12 23:37:00 +03:00
|
|
|
func (p *OnionProcessor) ExtractErrorEncrypter(ephemeralKey *btcec.PublicKey) (
|
2018-01-16 11:36:14 +03:00
|
|
|
ErrorEncrypter, lnwire.FailCode) {
|
|
|
|
|
2018-03-12 23:37:00 +03:00
|
|
|
onionObfuscator, err := sphinx.NewOnionErrorEncrypter(
|
|
|
|
p.router, ephemeralKey,
|
|
|
|
)
|
2017-06-29 16:40:45 +03:00
|
|
|
if err != nil {
|
|
|
|
switch err {
|
|
|
|
case sphinx.ErrInvalidOnionVersion:
|
|
|
|
return nil, lnwire.CodeInvalidOnionVersion
|
|
|
|
case sphinx.ErrInvalidOnionHMAC:
|
|
|
|
return nil, lnwire.CodeInvalidOnionHmac
|
|
|
|
case sphinx.ErrInvalidOnionKey:
|
|
|
|
return nil, lnwire.CodeInvalidOnionKey
|
|
|
|
default:
|
2017-12-11 02:52:26 +03:00
|
|
|
log.Errorf("unable to process onion packet: %v", err)
|
2018-01-09 04:50:19 +03:00
|
|
|
return nil, lnwire.CodeInvalidOnionKey
|
2017-06-29 16:40:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-11 05:36:52 +03:00
|
|
|
return &SphinxErrorEncrypter{
|
|
|
|
OnionErrorEncrypter: onionObfuscator,
|
2018-03-12 23:37:00 +03:00
|
|
|
EphemeralKey: ephemeralKey,
|
2017-06-29 16:40:45 +03:00
|
|
|
}, lnwire.CodeNone
|
2017-05-02 23:57:13 +03:00
|
|
|
}
|