Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sphinx: accept invalid downstream errors #1137

Merged
merged 2 commits into from
Sep 18, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,14 @@ object Sphinx extends Logging {
* @return an encrypted failure packet that can be sent to the destination node.
*/
def wrap(packet: ByteVector, sharedSecret: ByteVector32): ByteVector = {
require(packet.length == PacketLength, s"invalid error packet length ${packet.length}, must be $PacketLength")
if (packet.length != PacketLength) {
logger.warn(s"invalid error packet length ${packet.length}, must be $PacketLength (malicious or buggy downstream node)")
}
val key = generateKey("ammag", sharedSecret)
val stream = generateStream(key, PacketLength)
logger.debug(s"ammag key: $key")
logger.debug(s"error stream: $stream")
packet xor stream
packet.take(PacketLength).padLeft(PacketLength) xor stream
pm47 marked this conversation as resolved.
Show resolved Hide resolved
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,6 @@ class NormalStateSpec extends TestkitBaseClass with StateTestsHelperMethods {
bob2blockchain.expectMsgType[WatchConfirmed]
}


test("recv RevokeAndAck (one htlc sent)") { f =>
import f._
val sender = TestProbe()
Expand Down Expand Up @@ -1329,6 +1328,25 @@ class NormalStateSpec extends TestkitBaseClass with StateTestsHelperMethods {
alice2blockchain.expectMsgType[WatchConfirmed]
}

test("recv UpdateFailHtlc (invalid onion error length)") { f =>
import f._
val sender = TestProbe()
val (_, htlc) = addHtlc(50000000 msat, alice, bob, alice2bob, bob2alice)
crossSign(alice, bob, alice2bob, bob2alice)
// Bob receives a failure with a completely invalid onion error (missing mac)
sender.send(bob, CMD_FAIL_HTLC(htlc.id, Left(ByteVector.fill(260)(42))))
sender.expectMsg("ok")
val fail = bob2alice.expectMsgType[UpdateFailHtlc]
pm47 marked this conversation as resolved.
Show resolved Hide resolved

// actual test begins
val initialState = alice.stateData.asInstanceOf[DATA_NORMAL]
bob2alice.forward(alice)
awaitCond(alice.stateData == initialState.copy(
commitments = initialState.commitments.copy(remoteChanges = initialState.commitments.remoteChanges.copy(initialState.commitments.remoteChanges.proposed :+ fail))))
// alice won't forward the fail before it is cross-signed
relayerA.expectNoMsg()
}

test("recv CMD_UPDATE_FEE") { f =>
import f._
val sender = TestProbe()
Expand Down
20 changes: 17 additions & 3 deletions eclair-core/src/test/scala/fr/acinq/eclair/crypto/SphinxSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ package fr.acinq.eclair.crypto

import fr.acinq.bitcoin.ByteVector32
import fr.acinq.bitcoin.Crypto.{PrivateKey, PublicKey}
import fr.acinq.eclair.{UInt64, wire}
import fr.acinq.eclair.wire._
import fr.acinq.eclair.{UInt64, wire}
import org.scalatest.FunSuite
import scodec.bits._

import scala.util.Success

/**
* Created by fabrice on 10/01/17.
*/
* Created by fabrice on 10/01/17.
*/
class SphinxSpec extends FunSuite {

import Sphinx._
Expand Down Expand Up @@ -299,6 +299,20 @@ class SphinxSpec extends FunSuite {
}
}

test("intermediate node replies with an invalid onion payload length") {
// The error will not be recoverable by the sender, but we must still forward it.
val sharedSecret = ByteVector32(hex"4242424242424242424242424242424242424242424242424242424242424242")
val errors = Seq(
ByteVector.fill(FailurePacket.PacketLength - MacLength)(13),
ByteVector.fill(FailurePacket.PacketLength + MacLength)(13)
)

for (error <- errors) {
val wrapped = FailurePacket.wrap(error, sharedSecret)
assert(wrapped.length === FailurePacket.PacketLength)
}
}

test("intermediate node replies with a failure message (reference test vector)") {
for (payloads <- Seq(referenceFixedSizePayloads, referenceVariableSizePayloads, variableSizePayloadsFull)) {
// route: origin -> node #0 -> node #1 -> node #2 -> node #3 -> node #4
Expand Down