mirror of
https://github.com/corda/corda.git
synced 2024-12-22 06:17:55 +00:00
Revert "Merged in validating-notary (pull request #123)"
This reverts commitd9f4e4da2e
, reversing changes made to654dc3f60a
.
This commit is contained in:
parent
d9f4e4da2e
commit
e64145991e
@ -97,7 +97,7 @@ object TwoPartyTradeProtocol {
|
|||||||
@Suspendable
|
@Suspendable
|
||||||
private fun getNotarySignature(stx: SignedTransaction): DigitalSignature.LegallyIdentifiable {
|
private fun getNotarySignature(stx: SignedTransaction): DigitalSignature.LegallyIdentifiable {
|
||||||
progressTracker.currentStep = NOTARY
|
progressTracker.currentStep = NOTARY
|
||||||
return subProtocol(NotaryProtocol.Client(stx.tx))
|
return subProtocol(NotaryProtocol(stx.tx))
|
||||||
}
|
}
|
||||||
|
|
||||||
@Suspendable
|
@Suspendable
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2016 Distributed Ledger Group LLC. Distributed as Licensed Company IP to DLG Group Members
|
||||||
|
* pursuant to the August 7, 2015 Advisory Services Agreement and subject to the Company IP License terms
|
||||||
|
* set forth therein.
|
||||||
|
*
|
||||||
|
* All other rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
package com.r3corda.core.node.services
|
package com.r3corda.core.node.services
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -21,8 +29,6 @@ abstract class ServiceType(val id: String) {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
fun isSubTypeOf(superType: ServiceType) = (id == superType.id) || id.startsWith(superType.id + ".")
|
|
||||||
|
|
||||||
override fun hashCode(): Int = id.hashCode()
|
override fun hashCode(): Int = id.hashCode()
|
||||||
override fun toString(): String = id.toString()
|
override fun toString(): String = id.toString()
|
||||||
}
|
}
|
@ -1,41 +1,32 @@
|
|||||||
package com.r3corda.protocols
|
package com.r3corda.protocols
|
||||||
|
|
||||||
import co.paralleluniverse.fibers.Suspendable
|
import co.paralleluniverse.fibers.Suspendable
|
||||||
|
import com.r3corda.core.crypto.Party
|
||||||
import com.r3corda.core.contracts.TimestampCommand
|
import com.r3corda.core.contracts.TimestampCommand
|
||||||
import com.r3corda.core.contracts.WireTransaction
|
import com.r3corda.core.contracts.WireTransaction
|
||||||
import com.r3corda.core.crypto.DigitalSignature
|
import com.r3corda.core.crypto.DigitalSignature
|
||||||
import com.r3corda.core.crypto.Party
|
|
||||||
import com.r3corda.core.crypto.SignedData
|
import com.r3corda.core.crypto.SignedData
|
||||||
import com.r3corda.core.crypto.signWithECDSA
|
|
||||||
import com.r3corda.core.messaging.SingleMessageRecipient
|
import com.r3corda.core.messaging.SingleMessageRecipient
|
||||||
import com.r3corda.core.node.NodeInfo
|
import com.r3corda.core.node.NodeInfo
|
||||||
import com.r3corda.core.node.services.TimestampChecker
|
|
||||||
import com.r3corda.core.node.services.UniquenessException
|
|
||||||
import com.r3corda.core.node.services.UniquenessProvider
|
import com.r3corda.core.node.services.UniquenessProvider
|
||||||
import com.r3corda.core.noneOrSingle
|
|
||||||
import com.r3corda.core.protocols.ProtocolLogic
|
import com.r3corda.core.protocols.ProtocolLogic
|
||||||
import com.r3corda.core.random63BitValue
|
import com.r3corda.core.random63BitValue
|
||||||
import com.r3corda.core.serialization.SerializedBytes
|
import com.r3corda.core.serialization.SerializedBytes
|
||||||
import com.r3corda.core.serialization.deserialize
|
|
||||||
import com.r3corda.core.serialization.serialize
|
|
||||||
import com.r3corda.core.utilities.ProgressTracker
|
import com.r3corda.core.utilities.ProgressTracker
|
||||||
import com.r3corda.core.utilities.UntrustworthyData
|
import com.r3corda.core.utilities.UntrustworthyData
|
||||||
import java.security.PublicKey
|
import java.security.PublicKey
|
||||||
|
|
||||||
object NotaryProtocol {
|
/**
|
||||||
val TOPIC = "platform.notary.request"
|
|
||||||
val TOPIC_INITIATE = "platform.notary.initiate"
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A protocol to be used for obtaining a signature from a [NotaryService] ascertaining the transaction
|
* A protocol to be used for obtaining a signature from a [NotaryService] ascertaining the transaction
|
||||||
* timestamp is correct and none of its inputs have been used in another completed transaction
|
* timestamp is correct and none of its inputs have been used in another completed transaction
|
||||||
*
|
*
|
||||||
* @throws NotaryException in case the any of the inputs to the transaction have been consumed
|
* @throws NotaryException in case the any of the inputs to the transaction have been consumed
|
||||||
* by another transaction or the timestamp is invalid
|
* by another transaction or the timestamp is invalid
|
||||||
*/
|
*/
|
||||||
class Client(private val wtx: WireTransaction,
|
class NotaryProtocol(private val wtx: WireTransaction,
|
||||||
override val progressTracker: ProgressTracker = Client.tracker()) : ProtocolLogic<DigitalSignature.LegallyIdentifiable>() {
|
override val progressTracker: ProgressTracker = NotaryProtocol.tracker()) : ProtocolLogic<DigitalSignature.LegallyIdentifiable>() {
|
||||||
companion object {
|
companion object {
|
||||||
|
val TOPIC = "platform.notary.request"
|
||||||
|
|
||||||
object REQUESTING : ProgressTracker.Step("Requesting signature by Notary service")
|
object REQUESTING : ProgressTracker.Step("Requesting signature by Notary service")
|
||||||
|
|
||||||
@ -51,14 +42,9 @@ object NotaryProtocol {
|
|||||||
progressTracker.currentStep = REQUESTING
|
progressTracker.currentStep = REQUESTING
|
||||||
notaryNode = findNotaryNode()
|
notaryNode = findNotaryNode()
|
||||||
|
|
||||||
val sendSessionID = random63BitValue()
|
val sessionID = random63BitValue()
|
||||||
val receiveSessionID = random63BitValue()
|
val request = SignRequest(wtx.serialized, serviceHub.storageService.myLegalIdentity, serviceHub.networkService.myAddress, sessionID)
|
||||||
|
val response = sendAndReceive<Result>(TOPIC, notaryNode.address, 0, sessionID, request)
|
||||||
val handshake = Handshake(serviceHub.networkService.myAddress, sendSessionID, receiveSessionID)
|
|
||||||
sendAndReceive<Unit>(TOPIC_INITIATE, notaryNode.address, 0, receiveSessionID, handshake)
|
|
||||||
|
|
||||||
val request = SignRequest(wtx.serialized, serviceHub.storageService.myLegalIdentity)
|
|
||||||
val response = sendAndReceive<Result>(TOPIC, notaryNode.address, sendSessionID, receiveSessionID, request)
|
|
||||||
|
|
||||||
val notaryResult = validateResponse(response)
|
val notaryResult = validateResponse(response)
|
||||||
return notaryResult.sig ?: throw NotaryException(notaryResult.error!!)
|
return notaryResult.sig ?: throw NotaryException(notaryResult.error!!)
|
||||||
@ -98,94 +84,12 @@ object NotaryProtocol {
|
|||||||
val notaryNode = serviceHub.networkMapCache.getNodeByPublicKey(notaryKey)
|
val notaryNode = serviceHub.networkMapCache.getNodeByPublicKey(notaryKey)
|
||||||
return notaryNode ?: throw IllegalStateException("No Notary node can be found with the specified public key")
|
return notaryNode ?: throw IllegalStateException("No Notary node can be found with the specified public key")
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks that the timestamp command is valid (if present) and commits the input state, or returns a conflict
|
|
||||||
* if any of the input states have been previously committed.
|
|
||||||
*
|
|
||||||
* Extend this class, overriding _beforeCommit_ to add custom transaction processing/validation logic.
|
|
||||||
*
|
|
||||||
* TODO: the notary service should only be able to see timestamp commands and inputs
|
|
||||||
*/
|
|
||||||
open class Service(val otherSide: SingleMessageRecipient,
|
|
||||||
val sendSessionID: Long,
|
|
||||||
val receiveSessionID: Long,
|
|
||||||
val timestampChecker: TimestampChecker,
|
|
||||||
val uniquenessProvider: UniquenessProvider) : ProtocolLogic<Unit>() {
|
|
||||||
@Suspendable
|
|
||||||
override fun call() {
|
|
||||||
val request = receive<SignRequest>(TOPIC, receiveSessionID).validate { it }
|
|
||||||
val txBits = request.txBits
|
|
||||||
val reqIdentity = request.callerIdentity
|
|
||||||
|
|
||||||
val wtx = txBits.deserialize()
|
|
||||||
val result: Result
|
|
||||||
try {
|
|
||||||
validateTimestamp(wtx)
|
|
||||||
beforeCommit(wtx, reqIdentity)
|
|
||||||
commitInputStates(wtx, reqIdentity)
|
|
||||||
|
|
||||||
val sig = sign(txBits)
|
|
||||||
result = Result.noError(sig)
|
|
||||||
|
|
||||||
} catch(e: NotaryException) {
|
|
||||||
result = Result.withError(e.error)
|
|
||||||
}
|
|
||||||
|
|
||||||
send(TOPIC, otherSide, sendSessionID, result)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun validateTimestamp(tx: WireTransaction) {
|
|
||||||
val timestampCmd = try {
|
|
||||||
tx.commands.noneOrSingle { it.value is TimestampCommand } ?: return
|
|
||||||
} catch (e: IllegalArgumentException) {
|
|
||||||
throw NotaryException(NotaryError.MoreThanOneTimestamp())
|
|
||||||
}
|
|
||||||
val myIdentity = serviceHub.storageService.myLegalIdentity
|
|
||||||
if (!timestampCmd.signers.contains(myIdentity.owningKey))
|
|
||||||
throw NotaryException(NotaryError.NotForMe())
|
|
||||||
if (!timestampChecker.isValid(timestampCmd.value as TimestampCommand))
|
|
||||||
throw NotaryException(NotaryError.TimestampInvalid())
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* No pre-commit processing is done. Transaction is not checked for contract-validity, as that would require fully
|
|
||||||
* resolving it into a [TransactionForVerification], for which the caller would have to reveal the whole transaction
|
|
||||||
* history chain.
|
|
||||||
* As a result, the Notary _will commit invalid transactions_ as well, but as it also records the identity of
|
|
||||||
* the caller, it is possible to raise a dispute and verify the validity of the transaction and subsequently
|
|
||||||
* undo the commit of the input states (the exact mechanism still needs to be worked out)
|
|
||||||
*/
|
|
||||||
@Suspendable
|
|
||||||
open fun beforeCommit(wtx: WireTransaction, reqIdentity: Party) {
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun commitInputStates(tx: WireTransaction, reqIdentity: Party) {
|
|
||||||
try {
|
|
||||||
uniquenessProvider.commit(tx, reqIdentity)
|
|
||||||
} catch (e: UniquenessException) {
|
|
||||||
val conflictData = e.error.serialize()
|
|
||||||
val signedConflict = SignedData(conflictData, sign(conflictData))
|
|
||||||
throw NotaryException(NotaryError.Conflict(tx, signedConflict))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun <T : Any> sign(bits: SerializedBytes<T>): DigitalSignature.LegallyIdentifiable {
|
|
||||||
val mySigningKey = serviceHub.storageService.myLegalIdentityKey
|
|
||||||
val myIdentity = serviceHub.storageService.myLegalIdentity
|
|
||||||
return mySigningKey.signWithECDSA(bits, myIdentity)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class Handshake(
|
|
||||||
replyTo: SingleMessageRecipient,
|
|
||||||
val sendSessionID: Long,
|
|
||||||
sessionID: Long) : AbstractRequestMessage(replyTo, sessionID)
|
|
||||||
|
|
||||||
/** TODO: The caller must authenticate instead of just specifying its identity */
|
/** TODO: The caller must authenticate instead of just specifying its identity */
|
||||||
class SignRequest(val txBits: SerializedBytes<WireTransaction>,
|
class SignRequest(val txBits: SerializedBytes<WireTransaction>,
|
||||||
val callerIdentity: Party)
|
val callerIdentity: Party,
|
||||||
|
replyTo: SingleMessageRecipient,
|
||||||
|
sessionID: Long) : AbstractRequestMessage(replyTo, sessionID)
|
||||||
|
|
||||||
data class Result private constructor(val sig: DigitalSignature.LegallyIdentifiable?, val error: NotaryError?) {
|
data class Result private constructor(val sig: DigitalSignature.LegallyIdentifiable?, val error: NotaryError?) {
|
||||||
companion object {
|
companion object {
|
||||||
@ -193,24 +97,6 @@ object NotaryProtocol {
|
|||||||
fun noError(sig: DigitalSignature.LegallyIdentifiable) = Result(sig, null)
|
fun noError(sig: DigitalSignature.LegallyIdentifiable) = Result(sig, null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Factory {
|
|
||||||
fun create(otherSide: SingleMessageRecipient,
|
|
||||||
sendSessionID: Long,
|
|
||||||
receiveSessionID: Long,
|
|
||||||
timestampChecker: TimestampChecker,
|
|
||||||
uniquenessProvider: UniquenessProvider): Service
|
|
||||||
}
|
|
||||||
|
|
||||||
object DefaultFactory : Factory {
|
|
||||||
override fun create(otherSide: SingleMessageRecipient,
|
|
||||||
sendSessionID: Long,
|
|
||||||
receiveSessionID: Long,
|
|
||||||
timestampChecker: TimestampChecker,
|
|
||||||
uniquenessProvider: UniquenessProvider): Service {
|
|
||||||
return Service(otherSide, sendSessionID, receiveSessionID, timestampChecker, uniquenessProvider)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class NotaryException(val error: NotaryError) : Exception() {
|
class NotaryException(val error: NotaryError) : Exception() {
|
||||||
@ -229,6 +115,4 @@ sealed class NotaryError {
|
|||||||
|
|
||||||
/** Thrown if the time specified in the timestamp command is outside the allowed tolerance */
|
/** Thrown if the time specified in the timestamp command is outside the allowed tolerance */
|
||||||
class TimestampInvalid : NotaryError()
|
class TimestampInvalid : NotaryError()
|
||||||
|
|
||||||
class TransactionInvalid : NotaryError()
|
|
||||||
}
|
}
|
@ -1,6 +1,7 @@
|
|||||||
package com.r3corda.protocols
|
package com.r3corda.protocols
|
||||||
|
|
||||||
import co.paralleluniverse.fibers.Suspendable
|
import co.paralleluniverse.fibers.Suspendable
|
||||||
|
import com.r3corda.core.*
|
||||||
import com.r3corda.core.contracts.*
|
import com.r3corda.core.contracts.*
|
||||||
import com.r3corda.core.crypto.SecureHash
|
import com.r3corda.core.crypto.SecureHash
|
||||||
import com.r3corda.core.messaging.SingleMessageRecipient
|
import com.r3corda.core.messaging.SingleMessageRecipient
|
||||||
|
@ -158,7 +158,7 @@ object TwoPartyDealProtocol {
|
|||||||
@Suspendable
|
@Suspendable
|
||||||
private fun getNotarySignature(stx: SignedTransaction): DigitalSignature.LegallyIdentifiable {
|
private fun getNotarySignature(stx: SignedTransaction): DigitalSignature.LegallyIdentifiable {
|
||||||
progressTracker.currentStep = NOTARY
|
progressTracker.currentStep = NOTARY
|
||||||
return subProtocol(NotaryProtocol.Client(stx.tx))
|
return subProtocol(NotaryProtocol(stx.tx))
|
||||||
}
|
}
|
||||||
|
|
||||||
open fun signWithOurKey(partialTX: SignedTransaction): DigitalSignature.WithKey {
|
open fun signWithOurKey(partialTX: SignedTransaction): DigitalSignature.WithKey {
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
package com.r3corda.protocols
|
|
||||||
|
|
||||||
import co.paralleluniverse.fibers.Suspendable
|
|
||||||
import com.r3corda.core.contracts.TransactionVerificationException
|
|
||||||
import com.r3corda.core.contracts.WireTransaction
|
|
||||||
import com.r3corda.core.contracts.toLedgerTransaction
|
|
||||||
import com.r3corda.core.crypto.Party
|
|
||||||
import com.r3corda.core.messaging.SingleMessageRecipient
|
|
||||||
import com.r3corda.core.node.services.TimestampChecker
|
|
||||||
import com.r3corda.core.node.services.UniquenessProvider
|
|
||||||
import java.security.SignatureException
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A notary commit protocol that makes sure a given transaction is valid before committing it. This does mean that the calling
|
|
||||||
* party has to reveal the whole transaction history; however, we avoid complex conflict resolution logic where a party
|
|
||||||
* has its input states "blocked" by a transaction from another party, and needs to establish whether that transaction was
|
|
||||||
* indeed valid
|
|
||||||
*/
|
|
||||||
class ValidatingNotaryProtocol(otherSide: SingleMessageRecipient,
|
|
||||||
sessionIdForSend: Long,
|
|
||||||
sessionIdForReceive: Long,
|
|
||||||
timestampChecker: TimestampChecker,
|
|
||||||
uniquenessProvider: UniquenessProvider) : NotaryProtocol.Service(otherSide, sessionIdForSend, sessionIdForReceive, timestampChecker, uniquenessProvider) {
|
|
||||||
@Suspendable
|
|
||||||
override fun beforeCommit(wtx: WireTransaction, reqIdentity: Party) {
|
|
||||||
try {
|
|
||||||
validateDependencies(reqIdentity, wtx)
|
|
||||||
checkContractValid(wtx)
|
|
||||||
} catch (e: Exception) {
|
|
||||||
when (e) {
|
|
||||||
is TransactionVerificationException,
|
|
||||||
is SignatureException -> throw NotaryException(NotaryError.TransactionInvalid())
|
|
||||||
else -> throw e
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun checkContractValid(wtx: WireTransaction) {
|
|
||||||
val ltx = wtx.toLedgerTransaction(serviceHub.identityService, serviceHub.storageService.attachments)
|
|
||||||
serviceHub.verifyTransaction(ltx)
|
|
||||||
}
|
|
||||||
|
|
||||||
@Suspendable
|
|
||||||
private fun validateDependencies(reqIdentity: Party, wtx: WireTransaction) {
|
|
||||||
val otherSide = serviceHub.networkMapCache.getNodeByPublicKey(reqIdentity.owningKey)!!.address
|
|
||||||
subProtocol(ResolveTransactionsProtocol(wtx, otherSide))
|
|
||||||
}
|
|
||||||
}
|
|
@ -35,8 +35,7 @@ import com.r3corda.node.services.persistence.StorageServiceImpl
|
|||||||
import com.r3corda.node.services.statemachine.StateMachineManager
|
import com.r3corda.node.services.statemachine.StateMachineManager
|
||||||
import com.r3corda.node.services.transactions.InMemoryUniquenessProvider
|
import com.r3corda.node.services.transactions.InMemoryUniquenessProvider
|
||||||
import com.r3corda.node.services.transactions.NotaryService
|
import com.r3corda.node.services.transactions.NotaryService
|
||||||
import com.r3corda.node.services.transactions.SimpleNotaryService
|
import com.r3corda.node.services.transactions.TimestampChecker
|
||||||
import com.r3corda.node.services.transactions.ValidatingNotaryService
|
|
||||||
import com.r3corda.node.services.wallet.NodeWalletService
|
import com.r3corda.node.services.wallet.NodeWalletService
|
||||||
import com.r3corda.node.utilities.AddOrRemove
|
import com.r3corda.node.utilities.AddOrRemove
|
||||||
import com.r3corda.node.utilities.AffinityExecutor
|
import com.r3corda.node.utilities.AffinityExecutor
|
||||||
@ -131,14 +130,16 @@ abstract class AbstractNode(val dir: Path, val configuration: NodeConfiguration,
|
|||||||
keyManagement = E2ETestKeyManagementService()
|
keyManagement = E2ETestKeyManagementService()
|
||||||
makeInterestRatesOracleService()
|
makeInterestRatesOracleService()
|
||||||
api = APIServerImpl(this)
|
api = APIServerImpl(this)
|
||||||
|
|
||||||
|
// Build services we're advertising
|
||||||
|
if (NetworkMapService.Type in info.advertisedServices) makeNetworkMapService()
|
||||||
|
if (NotaryService.Type in info.advertisedServices) makeNotaryService()
|
||||||
|
|
||||||
identity = makeIdentityService()
|
identity = makeIdentityService()
|
||||||
|
|
||||||
// This object doesn't need to be referenced from this class because it registers handlers on the network
|
// This object doesn't need to be referenced from this class because it registers handlers on the network
|
||||||
// service and so that keeps it from being collected.
|
// service and so that keeps it from being collected.
|
||||||
DataVendingService(net, storage)
|
DataVendingService(net, storage)
|
||||||
|
|
||||||
buildAdvertisedServices()
|
|
||||||
|
|
||||||
startMessagingService()
|
startMessagingService()
|
||||||
networkMapRegistrationFuture = registerWithNetworkMap()
|
networkMapRegistrationFuture = registerWithNetworkMap()
|
||||||
isPreviousCheckpointsPresent = checkpointStorage.checkpoints.any()
|
isPreviousCheckpointsPresent = checkpointStorage.checkpoints.any()
|
||||||
@ -146,15 +147,6 @@ abstract class AbstractNode(val dir: Path, val configuration: NodeConfiguration,
|
|||||||
started = true
|
started = true
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun buildAdvertisedServices() {
|
|
||||||
val serviceTypes = info.advertisedServices
|
|
||||||
if (NetworkMapService.Type in serviceTypes) makeNetworkMapService()
|
|
||||||
|
|
||||||
val notaryServiceType = serviceTypes.singleOrNull { it.isSubTypeOf(NotaryService.Type) }
|
|
||||||
if (notaryServiceType != null) makeNotaryService(notaryServiceType)
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register this node with the network map cache, and load network map from a remote service (and register for
|
* Register this node with the network map cache, and load network map from a remote service (and register for
|
||||||
* updates) if one has been supplied.
|
* updates) if one has been supplied.
|
||||||
@ -208,15 +200,10 @@ abstract class AbstractNode(val dir: Path, val configuration: NodeConfiguration,
|
|||||||
inNodeNetworkMapService = InMemoryNetworkMapService(net, reg, services.networkMapCache)
|
inNodeNetworkMapService = InMemoryNetworkMapService(net, reg, services.networkMapCache)
|
||||||
}
|
}
|
||||||
|
|
||||||
open protected fun makeNotaryService(type: ServiceType) {
|
open protected fun makeNotaryService() {
|
||||||
val uniquenessProvider = InMemoryUniquenessProvider()
|
val uniquenessProvider = InMemoryUniquenessProvider()
|
||||||
val timestampChecker = TimestampChecker(platformClock, 30.seconds)
|
val timestampChecker = TimestampChecker(platformClock, 30.seconds)
|
||||||
|
inNodeNotaryService = NotaryService(net, storage.myLegalIdentity, storage.myLegalIdentityKey, uniquenessProvider, timestampChecker)
|
||||||
inNodeNotaryService = when (type) {
|
|
||||||
is SimpleNotaryService.Type -> SimpleNotaryService(smm, net, timestampChecker, uniquenessProvider)
|
|
||||||
is ValidatingNotaryService.Type -> ValidatingNotaryService(smm, net, timestampChecker, uniquenessProvider)
|
|
||||||
else -> null
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lateinit var interestRatesService: NodeInterestRates.Service
|
lateinit var interestRatesService: NodeInterestRates.Service
|
||||||
@ -259,7 +246,7 @@ abstract class AbstractNode(val dir: Path, val configuration: NodeConfiguration,
|
|||||||
val checkpointStorage = PerFileCheckpointStorage(dir.resolve("checkpoints"))
|
val checkpointStorage = PerFileCheckpointStorage(dir.resolve("checkpoints"))
|
||||||
_servicesThatAcceptUploads += attachments
|
_servicesThatAcceptUploads += attachments
|
||||||
val (identity, keypair) = obtainKeyPair(dir)
|
val (identity, keypair) = obtainKeyPair(dir)
|
||||||
return Pair(constructStorageService(attachments, keypair, identity), checkpointStorage)
|
return Pair(constructStorageService(attachments, keypair, identity),checkpointStorage)
|
||||||
}
|
}
|
||||||
|
|
||||||
protected open fun constructStorageService(attachments: NodeAttachmentService, keypair: KeyPair, identity: Party) =
|
protected open fun constructStorageService(attachments: NodeAttachmentService, keypair: KeyPair, identity: Party) =
|
||||||
|
@ -16,7 +16,7 @@ import com.r3corda.node.serialization.NodeClock
|
|||||||
import com.r3corda.node.services.config.NodeConfiguration
|
import com.r3corda.node.services.config.NodeConfiguration
|
||||||
import com.r3corda.node.services.network.InMemoryMessagingNetwork
|
import com.r3corda.node.services.network.InMemoryMessagingNetwork
|
||||||
import com.r3corda.node.services.network.NetworkMapService
|
import com.r3corda.node.services.network.NetworkMapService
|
||||||
import com.r3corda.node.services.transactions.SimpleNotaryService
|
import com.r3corda.node.services.transactions.NotaryService
|
||||||
import com.r3corda.node.utilities.AffinityExecutor
|
import com.r3corda.node.utilities.AffinityExecutor
|
||||||
import org.slf4j.Logger
|
import org.slf4j.Logger
|
||||||
import java.nio.file.Files
|
import java.nio.file.Files
|
||||||
@ -149,12 +149,12 @@ class MockNetwork(private val threadPerNode: Boolean = false,
|
|||||||
fun createTwoNodes(nodeFactory: Factory = defaultFactory, notaryKeyPair: KeyPair? = null): Pair<MockNode, MockNode> {
|
fun createTwoNodes(nodeFactory: Factory = defaultFactory, notaryKeyPair: KeyPair? = null): Pair<MockNode, MockNode> {
|
||||||
require(nodes.isEmpty())
|
require(nodes.isEmpty())
|
||||||
return Pair(
|
return Pair(
|
||||||
createNode(null, -1, nodeFactory, true, null, notaryKeyPair, NetworkMapService.Type, SimpleNotaryService.Type),
|
createNode(null, -1, nodeFactory, true, null, notaryKeyPair, NetworkMapService.Type, NotaryService.Type),
|
||||||
createNode(nodes[0].info, -1, nodeFactory, true, null)
|
createNode(nodes[0].info, -1, nodeFactory, true, null)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun createNotaryNode(legalName: String? = null, keyPair: KeyPair? = null) = createNode(null, -1, defaultFactory, true, legalName, keyPair, NetworkMapService.Type, SimpleNotaryService.Type)
|
fun createNotaryNode(legalName: String? = null, keyPair: KeyPair? = null) = createNode(null, -1, defaultFactory, true, legalName, keyPair, NetworkMapService.Type, NotaryService.Type)
|
||||||
fun createPartyNode(networkMapAddr: NodeInfo, legalName: String? = null, keyPair: KeyPair? = null) = createNode(networkMapAddr, -1, defaultFactory, true, legalName, keyPair)
|
fun createPartyNode(networkMapAddr: NodeInfo, legalName: String? = null, keyPair: KeyPair? = null) = createNode(networkMapAddr, -1, defaultFactory, true, legalName, keyPair)
|
||||||
|
|
||||||
fun addressToNode(address: SingleMessageRecipient): MockNode = nodes.single { it.net.myAddress == address }
|
fun addressToNode(address: SingleMessageRecipient): MockNode = nodes.single { it.net.myAddress == address }
|
||||||
|
@ -9,11 +9,11 @@ import com.r3corda.core.node.services.ServiceType
|
|||||||
import com.r3corda.core.protocols.ProtocolLogic
|
import com.r3corda.core.protocols.ProtocolLogic
|
||||||
import com.r3corda.core.then
|
import com.r3corda.core.then
|
||||||
import com.r3corda.core.utilities.ProgressTracker
|
import com.r3corda.core.utilities.ProgressTracker
|
||||||
|
import com.r3corda.node.services.transactions.NotaryService
|
||||||
import com.r3corda.node.services.clientapi.NodeInterestRates
|
import com.r3corda.node.services.clientapi.NodeInterestRates
|
||||||
import com.r3corda.node.services.config.NodeConfiguration
|
import com.r3corda.node.services.config.NodeConfiguration
|
||||||
import com.r3corda.node.services.network.InMemoryMessagingNetwork
|
import com.r3corda.node.services.network.InMemoryMessagingNetwork
|
||||||
import com.r3corda.node.services.network.NetworkMapService
|
import com.r3corda.node.services.network.NetworkMapService
|
||||||
import com.r3corda.node.services.transactions.SimpleNotaryService
|
|
||||||
import rx.Observable
|
import rx.Observable
|
||||||
import rx.subjects.PublishSubject
|
import rx.subjects.PublishSubject
|
||||||
import java.nio.file.Path
|
import java.nio.file.Path
|
||||||
@ -82,7 +82,7 @@ abstract class Simulation(val runAsync: Boolean,
|
|||||||
object NotaryNodeFactory : MockNetwork.Factory {
|
object NotaryNodeFactory : MockNetwork.Factory {
|
||||||
override fun create(dir: Path, config: NodeConfiguration, network: MockNetwork, networkMapAddr: NodeInfo?,
|
override fun create(dir: Path, config: NodeConfiguration, network: MockNetwork, networkMapAddr: NodeInfo?,
|
||||||
advertisedServices: Set<ServiceType>, id: Int, keyPair: KeyPair?): MockNetwork.MockNode {
|
advertisedServices: Set<ServiceType>, id: Int, keyPair: KeyPair?): MockNetwork.MockNode {
|
||||||
require(advertisedServices.contains(SimpleNotaryService.Type))
|
require(advertisedServices.contains(NotaryService.Type))
|
||||||
val cfg = object : NodeConfiguration {
|
val cfg = object : NodeConfiguration {
|
||||||
override val myLegalName: String = "Notary Service"
|
override val myLegalName: String = "Notary Service"
|
||||||
override val exportJMXto: String = ""
|
override val exportJMXto: String = ""
|
||||||
@ -134,7 +134,7 @@ abstract class Simulation(val runAsync: Boolean,
|
|||||||
val networkMap: SimulatedNode
|
val networkMap: SimulatedNode
|
||||||
= network.createNode(null, nodeFactory = NetworkMapNodeFactory, advertisedServices = NetworkMapService.Type) as SimulatedNode
|
= network.createNode(null, nodeFactory = NetworkMapNodeFactory, advertisedServices = NetworkMapService.Type) as SimulatedNode
|
||||||
val notary: SimulatedNode
|
val notary: SimulatedNode
|
||||||
= network.createNode(networkMap.info, nodeFactory = NotaryNodeFactory, advertisedServices = SimpleNotaryService.Type) as SimulatedNode
|
= network.createNode(networkMap.info, nodeFactory = NotaryNodeFactory, advertisedServices = NotaryService.Type) as SimulatedNode
|
||||||
val regulators: List<SimulatedNode> = listOf(network.createNode(networkMap.info, start = false, nodeFactory = RegulatorFactory) as SimulatedNode)
|
val regulators: List<SimulatedNode> = listOf(network.createNode(networkMap.info, start = false, nodeFactory = RegulatorFactory) as SimulatedNode)
|
||||||
val ratesOracle: SimulatedNode
|
val ratesOracle: SimulatedNode
|
||||||
= network.createNode(networkMap.info, start = false, nodeFactory = RatesOracleFactory, advertisedServices = NodeInterestRates.Type) as SimulatedNode
|
= network.createNode(networkMap.info, start = false, nodeFactory = RatesOracleFactory, advertisedServices = NodeInterestRates.Type) as SimulatedNode
|
||||||
|
@ -1,29 +1,20 @@
|
|||||||
package com.r3corda.node.internal.testing
|
@file:Suppress("UNUSED_PARAMETER")
|
||||||
|
|
||||||
|
package com.r3corda.node.testutils
|
||||||
|
|
||||||
import com.r3corda.contracts.DummyContract
|
import com.r3corda.contracts.DummyContract
|
||||||
import com.r3corda.core.contracts.StateRef
|
import com.r3corda.core.contracts.StateRef
|
||||||
import com.r3corda.core.crypto.Party
|
import com.r3corda.core.crypto.Party
|
||||||
import com.r3corda.core.seconds
|
|
||||||
import com.r3corda.core.testing.DUMMY_NOTARY
|
import com.r3corda.core.testing.DUMMY_NOTARY
|
||||||
import com.r3corda.core.testing.DUMMY_NOTARY_KEY
|
import com.r3corda.core.testing.DUMMY_NOTARY_KEY
|
||||||
import com.r3corda.node.internal.AbstractNode
|
import com.r3corda.node.internal.AbstractNode
|
||||||
import java.time.Instant
|
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
fun issueState(node: AbstractNode, notary: Party = DUMMY_NOTARY): StateRef {
|
fun issueState(node: AbstractNode, notary: Party = DUMMY_NOTARY): StateRef {
|
||||||
val tx = DummyContract().generateInitial(node.info.identity.ref(0), Random().nextInt(), notary)
|
val tx = DummyContract().generateInitial(node.info.identity.ref(0), Random().nextInt(), DUMMY_NOTARY)
|
||||||
tx.signWith(node.storage.myLegalIdentityKey)
|
tx.signWith(node.storage.myLegalIdentityKey)
|
||||||
tx.signWith(DUMMY_NOTARY_KEY)
|
tx.signWith(DUMMY_NOTARY_KEY)
|
||||||
val stx = tx.toSignedTransaction()
|
val stx = tx.toSignedTransaction()
|
||||||
node.services.recordTransactions(listOf(stx))
|
node.services.recordTransactions(listOf(stx))
|
||||||
return StateRef(stx.id, 0)
|
return StateRef(stx.id, 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun issueInvalidState(node: AbstractNode, notary: Party = DUMMY_NOTARY): StateRef {
|
|
||||||
val tx = DummyContract().generateInitial(node.info.identity.ref(0), Random().nextInt(), notary)
|
|
||||||
tx.setTime(Instant.now(), notary, 30.seconds)
|
|
||||||
tx.signWith(node.storage.myLegalIdentityKey)
|
|
||||||
val stx = tx.toSignedTransaction(false)
|
|
||||||
node.services.recordTransactions(listOf(stx))
|
|
||||||
return StateRef(stx.id, 0)
|
|
||||||
}
|
|
||||||
|
@ -47,7 +47,7 @@ open class InMemoryNetworkMapCache() : SingletonSerializeAsToken(), NetworkMapCa
|
|||||||
protected var registeredNodes = Collections.synchronizedMap(HashMap<Party, NodeInfo>())
|
protected var registeredNodes = Collections.synchronizedMap(HashMap<Party, NodeInfo>())
|
||||||
|
|
||||||
override fun get() = registeredNodes.map { it.value }
|
override fun get() = registeredNodes.map { it.value }
|
||||||
override fun get(serviceType: ServiceType) = registeredNodes.filterValues { it.advertisedServices.any { it.isSubTypeOf(serviceType) } }.map { it.value }
|
override fun get(serviceType: ServiceType) = registeredNodes.filterValues { it.advertisedServices.contains(serviceType) }.map { it.value }
|
||||||
override fun getRecommended(type: ServiceType, contract: Contract, vararg party: Party): NodeInfo? = get(type).firstOrNull()
|
override fun getRecommended(type: ServiceType, contract: Contract, vararg party: Party): NodeInfo? = get(type).firstOrNull()
|
||||||
override fun getNodeByLegalName(name: String) = get().singleOrNull { it.identity.name == name }
|
override fun getNodeByLegalName(name: String) = get().singleOrNull { it.identity.name == name }
|
||||||
override fun getNodeByPublicKey(publicKey: PublicKey) = get().singleOrNull { it.identity.owningKey == publicKey }
|
override fun getNodeByPublicKey(publicKey: PublicKey) = get().singleOrNull { it.identity.owningKey == publicKey }
|
||||||
|
@ -1,46 +1,100 @@
|
|||||||
package com.r3corda.node.services.transactions
|
package com.r3corda.node.services.transactions
|
||||||
|
|
||||||
|
import com.r3corda.core.contracts.TimestampCommand
|
||||||
|
import com.r3corda.core.contracts.WireTransaction
|
||||||
|
import com.r3corda.core.crypto.DigitalSignature
|
||||||
|
import com.r3corda.core.crypto.Party
|
||||||
|
import com.r3corda.core.crypto.SignedData
|
||||||
|
import com.r3corda.core.crypto.signWithECDSA
|
||||||
import com.r3corda.core.messaging.MessagingService
|
import com.r3corda.core.messaging.MessagingService
|
||||||
import com.r3corda.core.messaging.SingleMessageRecipient
|
|
||||||
import com.r3corda.core.node.services.ServiceType
|
import com.r3corda.core.node.services.ServiceType
|
||||||
import com.r3corda.core.node.services.TimestampChecker
|
import com.r3corda.core.node.services.UniquenessException
|
||||||
import com.r3corda.core.node.services.UniquenessProvider
|
import com.r3corda.core.node.services.UniquenessProvider
|
||||||
|
import com.r3corda.core.noneOrSingle
|
||||||
|
import com.r3corda.core.serialization.SerializedBytes
|
||||||
|
import com.r3corda.core.serialization.deserialize
|
||||||
|
import com.r3corda.core.serialization.serialize
|
||||||
|
import com.r3corda.core.utilities.loggerFor
|
||||||
import com.r3corda.node.services.api.AbstractNodeService
|
import com.r3corda.node.services.api.AbstractNodeService
|
||||||
import com.r3corda.node.services.statemachine.StateMachineManager
|
import com.r3corda.protocols.NotaryError
|
||||||
|
import com.r3corda.protocols.NotaryException
|
||||||
import com.r3corda.protocols.NotaryProtocol
|
import com.r3corda.protocols.NotaryProtocol
|
||||||
|
import java.security.KeyPair
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A Notary service acts as the final signer of a transaction ensuring two things:
|
* A Notary service acts as the final signer of a transaction ensuring two things:
|
||||||
* - The (optional) timestamp of the transaction is valid
|
* - The (optional) timestamp of the transaction is valid
|
||||||
* - None of the referenced input states have previously been consumed by a transaction signed by this Notary
|
* - None of the referenced input states have previously been consumed by a transaction signed by this Notary
|
||||||
*
|
*
|
||||||
* A transaction has to be signed by a Notary to be considered valid (except for output-only transactions without a timestamp).
|
* A transaction has to be signed by a Notary to be considered valid (except for output-only transactions w/o a timestamp)
|
||||||
*
|
|
||||||
* This is the base implementation that can be customised with specific Notary transaction commit protocol
|
|
||||||
*/
|
*/
|
||||||
abstract class NotaryService(val smm: StateMachineManager,
|
class NotaryService(net: MessagingService,
|
||||||
net: MessagingService,
|
val identity: Party,
|
||||||
val timestampChecker: TimestampChecker,
|
val signingKey: KeyPair,
|
||||||
val uniquenessProvider: UniquenessProvider) : AbstractNodeService(net) {
|
val uniquenessProvider: UniquenessProvider,
|
||||||
|
val timestampChecker: TimestampChecker) : AbstractNodeService(net) {
|
||||||
object Type : ServiceType("corda.notary")
|
object Type : ServiceType("corda.notary")
|
||||||
|
|
||||||
abstract val logger: org.slf4j.Logger
|
private val logger = loggerFor<NotaryService>()
|
||||||
|
|
||||||
/** Implement a factory that specifies the transaction commit protocol for the notary service to use */
|
|
||||||
abstract val protocolFactory: NotaryProtocol.Factory
|
|
||||||
|
|
||||||
init {
|
init {
|
||||||
addMessageHandler(NotaryProtocol.TOPIC_INITIATE,
|
check(identity.owningKey == signingKey.public)
|
||||||
{ req: NotaryProtocol.Handshake -> processRequest(req) }
|
addMessageHandler(NotaryProtocol.TOPIC,
|
||||||
|
{ req: NotaryProtocol.SignRequest -> processRequest(req.txBits, req.callerIdentity) },
|
||||||
|
{ message, e -> logger.error("Exception during notary service request processing", e) }
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun processRequest(req: NotaryProtocol.Handshake) {
|
/**
|
||||||
val protocol = protocolFactory.create(req.replyTo as SingleMessageRecipient,
|
* Checks that the timestamp command is valid (if present) and commits the input state, or returns a conflict
|
||||||
req.sessionID!!,
|
* if any of the input states have been previously committed
|
||||||
req.sendSessionID,
|
*
|
||||||
timestampChecker,
|
* Note that the transaction is not checked for contract-validity, as that would require fully resolving it
|
||||||
uniquenessProvider)
|
* into a [TransactionForVerification], for which the caller would have to reveal the whole transaction history chain.
|
||||||
smm.add(NotaryProtocol.TOPIC, protocol)
|
* As a result, the Notary _will commit invalid transactions_ as well, but as it also records the identity of
|
||||||
|
* the caller, it is possible to raise a dispute and verify the validity of the transaction and subsequently
|
||||||
|
* undo the commit of the input states (the exact mechanism still needs to be worked out)
|
||||||
|
*
|
||||||
|
* TODO: the notary service should only be able to see timestamp commands and inputs
|
||||||
|
*/
|
||||||
|
fun processRequest(txBits: SerializedBytes<WireTransaction>, reqIdentity: Party): NotaryProtocol.Result {
|
||||||
|
val wtx = txBits.deserialize()
|
||||||
|
try {
|
||||||
|
validateTimestamp(wtx)
|
||||||
|
commitInputStates(wtx, reqIdentity)
|
||||||
|
} catch(e: NotaryException) {
|
||||||
|
return NotaryProtocol.Result.withError(e.error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val sig = sign(txBits)
|
||||||
|
return NotaryProtocol.Result.noError(sig)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun validateTimestamp(tx: WireTransaction) {
|
||||||
|
val timestampCmd = try {
|
||||||
|
tx.commands.noneOrSingle { it.value is TimestampCommand } ?: return
|
||||||
|
} catch (e: IllegalArgumentException) {
|
||||||
|
throw NotaryException(NotaryError.MoreThanOneTimestamp())
|
||||||
|
}
|
||||||
|
if (!timestampCmd.signers.contains(identity.owningKey))
|
||||||
|
throw NotaryException(NotaryError.NotForMe())
|
||||||
|
if (!timestampChecker.isValid(timestampCmd.value as TimestampCommand))
|
||||||
|
throw NotaryException(NotaryError.TimestampInvalid())
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun commitInputStates(tx: WireTransaction, reqIdentity: Party) {
|
||||||
|
try {
|
||||||
|
uniquenessProvider.commit(tx, reqIdentity)
|
||||||
|
} catch (e: UniquenessException) {
|
||||||
|
val conflictData = e.error.serialize()
|
||||||
|
val signedConflict = SignedData(conflictData, sign(conflictData))
|
||||||
|
throw NotaryException(NotaryError.Conflict(tx, signedConflict))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun <T : Any> sign(bits: SerializedBytes<T>): DigitalSignature.LegallyIdentifiable {
|
||||||
|
return signingKey.signWithECDSA(bits, identity)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
package com.r3corda.node.services.transactions
|
|
||||||
|
|
||||||
import com.r3corda.core.messaging.MessagingService
|
|
||||||
import com.r3corda.core.node.services.ServiceType
|
|
||||||
import com.r3corda.core.node.services.TimestampChecker
|
|
||||||
import com.r3corda.core.node.services.UniquenessProvider
|
|
||||||
import com.r3corda.core.utilities.loggerFor
|
|
||||||
import com.r3corda.node.services.statemachine.StateMachineManager
|
|
||||||
import com.r3corda.protocols.NotaryProtocol
|
|
||||||
|
|
||||||
/** A simple Notary service that does not perform transaction validation */
|
|
||||||
class SimpleNotaryService(
|
|
||||||
smm: StateMachineManager,
|
|
||||||
net: MessagingService,
|
|
||||||
timestampChecker: TimestampChecker,
|
|
||||||
uniquenessProvider: UniquenessProvider) : NotaryService(smm, net, timestampChecker, uniquenessProvider) {
|
|
||||||
object Type : ServiceType("corda.notary.simple")
|
|
||||||
|
|
||||||
override val logger = loggerFor<SimpleNotaryService>()
|
|
||||||
|
|
||||||
override val protocolFactory = NotaryProtocol.DefaultFactory
|
|
||||||
}
|
|
@ -1,4 +1,4 @@
|
|||||||
package com.r3corda.core.node.services
|
package com.r3corda.node.services.transactions
|
||||||
|
|
||||||
import com.r3corda.core.contracts.TimestampCommand
|
import com.r3corda.core.contracts.TimestampCommand
|
||||||
import com.r3corda.core.seconds
|
import com.r3corda.core.seconds
|
||||||
@ -9,7 +9,7 @@ import java.time.Duration
|
|||||||
/**
|
/**
|
||||||
* Checks if the given timestamp falls within the allowed tolerance interval
|
* Checks if the given timestamp falls within the allowed tolerance interval
|
||||||
*/
|
*/
|
||||||
class TimestampChecker(val clock: Clock = Clock.systemUTC(),
|
class TimestampChecker(val clock: Clock = Clock.systemDefaultZone(),
|
||||||
val tolerance: Duration = 30.seconds) {
|
val tolerance: Duration = 30.seconds) {
|
||||||
fun isValid(timestampCommand: TimestampCommand): Boolean {
|
fun isValid(timestampCommand: TimestampCommand): Boolean {
|
||||||
val before = timestampCommand.before
|
val before = timestampCommand.before
|
@ -1,33 +0,0 @@
|
|||||||
package com.r3corda.node.services.transactions
|
|
||||||
|
|
||||||
import com.r3corda.core.messaging.MessagingService
|
|
||||||
import com.r3corda.core.messaging.SingleMessageRecipient
|
|
||||||
import com.r3corda.core.node.services.ServiceType
|
|
||||||
import com.r3corda.core.node.services.TimestampChecker
|
|
||||||
import com.r3corda.core.node.services.UniquenessProvider
|
|
||||||
import com.r3corda.core.utilities.loggerFor
|
|
||||||
import com.r3corda.node.services.statemachine.StateMachineManager
|
|
||||||
import com.r3corda.protocols.NotaryProtocol
|
|
||||||
import com.r3corda.protocols.ValidatingNotaryProtocol
|
|
||||||
|
|
||||||
/** A Notary service that validates the transaction chain of he submitted transaction before committing it */
|
|
||||||
class ValidatingNotaryService(
|
|
||||||
smm: StateMachineManager,
|
|
||||||
net: MessagingService,
|
|
||||||
timestampChecker: TimestampChecker,
|
|
||||||
uniquenessProvider: UniquenessProvider
|
|
||||||
) : NotaryService(smm, net, timestampChecker, uniquenessProvider) {
|
|
||||||
object Type : ServiceType("corda.notary.validating")
|
|
||||||
|
|
||||||
override val logger = loggerFor<ValidatingNotaryService>()
|
|
||||||
|
|
||||||
override val protocolFactory = object : NotaryProtocol.Factory {
|
|
||||||
override fun create(otherSide: SingleMessageRecipient,
|
|
||||||
sendSessionID: Long,
|
|
||||||
receiveSessionID: Long,
|
|
||||||
timestampChecker: TimestampChecker,
|
|
||||||
uniquenessProvider: UniquenessProvider): NotaryProtocol.Service {
|
|
||||||
return ValidatingNotaryProtocol(otherSide, sendSessionID, receiveSessionID, timestampChecker, uniquenessProvider)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -12,11 +12,11 @@ import com.r3corda.node.internal.testing.MockNetwork
|
|||||||
import com.r3corda.node.services.config.NodeConfiguration
|
import com.r3corda.node.services.config.NodeConfiguration
|
||||||
import com.r3corda.node.services.network.NetworkMapService
|
import com.r3corda.node.services.network.NetworkMapService
|
||||||
import com.r3corda.node.services.persistence.NodeAttachmentService
|
import com.r3corda.node.services.persistence.NodeAttachmentService
|
||||||
import com.r3corda.node.services.transactions.SimpleNotaryService
|
import com.r3corda.node.services.transactions.NotaryService
|
||||||
import com.r3corda.protocols.FetchAttachmentsProtocol
|
|
||||||
import com.r3corda.protocols.FetchDataProtocol
|
|
||||||
import org.junit.Before
|
import org.junit.Before
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
|
import com.r3corda.protocols.FetchAttachmentsProtocol
|
||||||
|
import com.r3corda.protocols.FetchDataProtocol
|
||||||
import java.io.ByteArrayInputStream
|
import java.io.ByteArrayInputStream
|
||||||
import java.io.ByteArrayOutputStream
|
import java.io.ByteArrayOutputStream
|
||||||
import java.nio.ByteBuffer
|
import java.nio.ByteBuffer
|
||||||
@ -100,7 +100,7 @@ class AttachmentTests {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, true, null, null, NetworkMapService.Type, SimpleNotaryService.Type)
|
}, true, null, null, NetworkMapService.Type, NotaryService.Type)
|
||||||
val n1 = network.createNode(n0.info)
|
val n1 = network.createNode(n0.info)
|
||||||
|
|
||||||
// Insert an attachment into node zero's store directly.
|
// Insert an attachment into node zero's store directly.
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
package com.r3corda.node.services
|
package com.r3corda.node.services
|
||||||
|
|
||||||
import com.r3corda.core.contracts.TimestampCommand
|
|
||||||
import com.r3corda.core.contracts.TransactionBuilder
|
import com.r3corda.core.contracts.TransactionBuilder
|
||||||
import com.r3corda.core.seconds
|
import com.r3corda.core.seconds
|
||||||
import com.r3corda.core.testing.DUMMY_NOTARY
|
import com.r3corda.core.testing.DUMMY_NOTARY
|
||||||
import com.r3corda.core.testing.DUMMY_NOTARY_KEY
|
import com.r3corda.core.testing.DUMMY_NOTARY_KEY
|
||||||
import com.r3corda.node.internal.testing.MockNetwork
|
import com.r3corda.node.internal.testing.MockNetwork
|
||||||
import com.r3corda.node.internal.testing.issueState
|
import com.r3corda.node.testutils.issueState
|
||||||
import com.r3corda.node.services.network.NetworkMapService
|
import org.junit.Before
|
||||||
import com.r3corda.node.services.transactions.SimpleNotaryService
|
import org.junit.Test
|
||||||
import com.r3corda.protocols.NotaryError
|
import com.r3corda.protocols.NotaryError
|
||||||
import com.r3corda.protocols.NotaryException
|
import com.r3corda.protocols.NotaryException
|
||||||
import com.r3corda.protocols.NotaryProtocol
|
import com.r3corda.protocols.NotaryProtocol
|
||||||
import org.junit.Before
|
|
||||||
import org.junit.Test
|
|
||||||
import java.time.Instant
|
import java.time.Instant
|
||||||
import java.util.concurrent.ExecutionException
|
import java.util.concurrent.ExecutionException
|
||||||
import kotlin.test.assertEquals
|
import kotlin.test.assertEquals
|
||||||
@ -25,14 +22,12 @@ class NotaryServiceTests {
|
|||||||
lateinit var notaryNode: MockNetwork.MockNode
|
lateinit var notaryNode: MockNetwork.MockNode
|
||||||
lateinit var clientNode: MockNetwork.MockNode
|
lateinit var clientNode: MockNetwork.MockNode
|
||||||
|
|
||||||
@Before fun setup() {
|
@Before
|
||||||
|
fun setup() {
|
||||||
|
// TODO: Move into MockNetwork
|
||||||
net = MockNetwork()
|
net = MockNetwork()
|
||||||
notaryNode = net.createNode(
|
notaryNode = net.createNotaryNode(DUMMY_NOTARY.name, DUMMY_NOTARY_KEY)
|
||||||
legalName = DUMMY_NOTARY.name,
|
clientNode = net.createPartyNode(networkMapAddr = notaryNode.info)
|
||||||
keyPair = DUMMY_NOTARY_KEY,
|
|
||||||
advertisedServices = *arrayOf(NetworkMapService.Type, SimpleNotaryService.Type)
|
|
||||||
)
|
|
||||||
clientNode = net.createNode(networkMapAddress = notaryNode.info)
|
|
||||||
net.runNetwork() // Clear network map registration messages
|
net.runNetwork() // Clear network map registration messages
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -40,9 +35,9 @@ class NotaryServiceTests {
|
|||||||
val inputState = issueState(clientNode)
|
val inputState = issueState(clientNode)
|
||||||
val tx = TransactionBuilder().withItems(inputState)
|
val tx = TransactionBuilder().withItems(inputState)
|
||||||
tx.setTime(Instant.now(), DUMMY_NOTARY, 30.seconds)
|
tx.setTime(Instant.now(), DUMMY_NOTARY, 30.seconds)
|
||||||
val wtx = tx.toWireTransaction()
|
var wtx = tx.toWireTransaction()
|
||||||
|
|
||||||
val protocol = NotaryProtocol.Client(wtx)
|
val protocol = NotaryProtocol(wtx, NotaryProtocol.Companion.tracker())
|
||||||
val future = clientNode.smm.add(NotaryProtocol.TOPIC, protocol)
|
val future = clientNode.smm.add(NotaryProtocol.TOPIC, protocol)
|
||||||
net.runNetwork()
|
net.runNetwork()
|
||||||
|
|
||||||
@ -54,7 +49,7 @@ class NotaryServiceTests {
|
|||||||
val inputState = issueState(clientNode)
|
val inputState = issueState(clientNode)
|
||||||
val wtx = TransactionBuilder().withItems(inputState).toWireTransaction()
|
val wtx = TransactionBuilder().withItems(inputState).toWireTransaction()
|
||||||
|
|
||||||
val protocol = NotaryProtocol.Client(wtx)
|
val protocol = NotaryProtocol(wtx, NotaryProtocol.Companion.tracker())
|
||||||
val future = clientNode.smm.add(NotaryProtocol.TOPIC, protocol)
|
val future = clientNode.smm.add(NotaryProtocol.TOPIC, protocol)
|
||||||
net.runNetwork()
|
net.runNetwork()
|
||||||
|
|
||||||
@ -66,9 +61,9 @@ class NotaryServiceTests {
|
|||||||
val inputState = issueState(clientNode)
|
val inputState = issueState(clientNode)
|
||||||
val tx = TransactionBuilder().withItems(inputState)
|
val tx = TransactionBuilder().withItems(inputState)
|
||||||
tx.setTime(Instant.now().plusSeconds(3600), DUMMY_NOTARY, 30.seconds)
|
tx.setTime(Instant.now().plusSeconds(3600), DUMMY_NOTARY, 30.seconds)
|
||||||
val wtx = tx.toWireTransaction()
|
var wtx = tx.toWireTransaction()
|
||||||
|
|
||||||
val protocol = NotaryProtocol.Client(wtx)
|
val protocol = NotaryProtocol(wtx, NotaryProtocol.Companion.tracker())
|
||||||
val future = clientNode.smm.add(NotaryProtocol.TOPIC, protocol)
|
val future = clientNode.smm.add(NotaryProtocol.TOPIC, protocol)
|
||||||
net.runNetwork()
|
net.runNetwork()
|
||||||
|
|
||||||
@ -77,32 +72,14 @@ class NotaryServiceTests {
|
|||||||
assertTrue(error is NotaryError.TimestampInvalid)
|
assertTrue(error is NotaryError.TimestampInvalid)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test fun `should report error for transaction with more than one timestamp`() {
|
|
||||||
val inputState = issueState(clientNode)
|
|
||||||
val tx = TransactionBuilder().withItems(inputState)
|
|
||||||
val timestamp = TimestampCommand(Instant.now(), 30.seconds)
|
|
||||||
tx.addCommand(timestamp, DUMMY_NOTARY.owningKey)
|
|
||||||
tx.addCommand(timestamp, DUMMY_NOTARY.owningKey)
|
|
||||||
val wtx = tx.toWireTransaction()
|
|
||||||
|
|
||||||
val protocol = NotaryProtocol.Client(wtx)
|
|
||||||
val future = clientNode.smm.add(NotaryProtocol.TOPIC, protocol)
|
|
||||||
net.runNetwork()
|
|
||||||
|
|
||||||
val ex = assertFailsWith(ExecutionException::class) { future.get() }
|
|
||||||
val error = (ex.cause as NotaryException).error
|
|
||||||
assertTrue(error is NotaryError.MoreThanOneTimestamp)
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test fun `should report conflict for a duplicate transaction`() {
|
@Test fun `should report conflict for a duplicate transaction`() {
|
||||||
val inputState = issueState(clientNode)
|
val inputState = issueState(clientNode)
|
||||||
val wtx = TransactionBuilder().withItems(inputState).toWireTransaction()
|
val wtx = TransactionBuilder().withItems(inputState).toWireTransaction()
|
||||||
|
|
||||||
val firstSpend = NotaryProtocol.Client(wtx)
|
val firstSpend = NotaryProtocol(wtx)
|
||||||
val secondSpend = NotaryProtocol.Client(wtx)
|
val secondSpend = NotaryProtocol(wtx)
|
||||||
clientNode.smm.add("${NotaryProtocol.TOPIC}.first", firstSpend)
|
clientNode.smm.add("${NotaryProtocol.TOPIC}.first", firstSpend)
|
||||||
val future = clientNode.smm.add("${NotaryProtocol.TOPIC}.second", secondSpend)
|
val future = clientNode.smm.add("${NotaryProtocol.TOPIC}.second", secondSpend)
|
||||||
|
|
||||||
net.runNetwork()
|
net.runNetwork()
|
||||||
|
|
||||||
val ex = assertFailsWith(ExecutionException::class) { future.get() }
|
val ex = assertFailsWith(ExecutionException::class) { future.get() }
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package com.r3corda.node.services
|
package com.r3corda.node.services
|
||||||
|
|
||||||
import com.r3corda.core.contracts.TimestampCommand
|
import com.r3corda.core.contracts.TimestampCommand
|
||||||
import com.r3corda.core.node.services.TimestampChecker
|
|
||||||
import com.r3corda.core.seconds
|
import com.r3corda.core.seconds
|
||||||
|
import com.r3corda.node.services.transactions.TimestampChecker
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
import java.time.Clock
|
import java.time.Clock
|
||||||
import java.time.Instant
|
import java.time.Instant
|
||||||
|
@ -1,47 +0,0 @@
|
|||||||
package com.r3corda.node.services
|
|
||||||
|
|
||||||
import com.r3corda.core.contracts.TransactionBuilder
|
|
||||||
import com.r3corda.core.testing.DUMMY_NOTARY
|
|
||||||
import com.r3corda.core.testing.DUMMY_NOTARY_KEY
|
|
||||||
import com.r3corda.node.internal.testing.MockNetwork
|
|
||||||
import com.r3corda.node.internal.testing.issueInvalidState
|
|
||||||
import com.r3corda.node.services.network.NetworkMapService
|
|
||||||
import com.r3corda.node.services.transactions.ValidatingNotaryService
|
|
||||||
import com.r3corda.protocols.NotaryError
|
|
||||||
import com.r3corda.protocols.NotaryException
|
|
||||||
import com.r3corda.protocols.NotaryProtocol
|
|
||||||
import org.junit.Before
|
|
||||||
import org.junit.Test
|
|
||||||
import java.util.concurrent.ExecutionException
|
|
||||||
import kotlin.test.assertFailsWith
|
|
||||||
import kotlin.test.assertTrue
|
|
||||||
|
|
||||||
class ValidatingNotaryServiceTests {
|
|
||||||
lateinit var net: MockNetwork
|
|
||||||
lateinit var notaryNode: MockNetwork.MockNode
|
|
||||||
lateinit var clientNode: MockNetwork.MockNode
|
|
||||||
|
|
||||||
@Before fun setup() {
|
|
||||||
net = MockNetwork()
|
|
||||||
notaryNode = net.createNode(
|
|
||||||
legalName = DUMMY_NOTARY.name,
|
|
||||||
keyPair = DUMMY_NOTARY_KEY,
|
|
||||||
advertisedServices = *arrayOf(NetworkMapService.Type, ValidatingNotaryService.Type)
|
|
||||||
)
|
|
||||||
clientNode = net.createNode(networkMapAddress = notaryNode.info)
|
|
||||||
net.runNetwork() // Clear network map registration messages
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test fun `should report error for invalid transaction dependency`() {
|
|
||||||
val inputState = issueInvalidState(clientNode)
|
|
||||||
val wtx = TransactionBuilder().withItems(inputState).toWireTransaction()
|
|
||||||
|
|
||||||
val protocol = NotaryProtocol.Client(wtx)
|
|
||||||
val future = clientNode.smm.add(NotaryProtocol.TOPIC, protocol)
|
|
||||||
net.runNetwork()
|
|
||||||
|
|
||||||
val ex = assertFailsWith(ExecutionException::class) { future.get() }
|
|
||||||
val notaryError = (ex.cause as NotaryException).error
|
|
||||||
assertTrue(notaryError is NotaryError.TransactionInvalid, "Received wrong Notary error")
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,24 +1,24 @@
|
|||||||
package com.r3corda.demos
|
package com.r3corda.demos
|
||||||
|
|
||||||
import com.google.common.net.HostAndPort
|
import com.google.common.net.HostAndPort
|
||||||
|
import com.typesafe.config.ConfigFactory
|
||||||
import com.r3corda.core.crypto.Party
|
import com.r3corda.core.crypto.Party
|
||||||
import com.r3corda.core.logElapsedTime
|
import com.r3corda.core.logElapsedTime
|
||||||
|
import com.r3corda.node.internal.Node
|
||||||
|
import com.r3corda.node.services.config.NodeConfiguration
|
||||||
|
import com.r3corda.node.services.config.NodeConfigurationFromConfig
|
||||||
import com.r3corda.core.node.NodeInfo
|
import com.r3corda.core.node.NodeInfo
|
||||||
|
import com.r3corda.node.services.network.NetworkMapService
|
||||||
|
import com.r3corda.node.services.clientapi.NodeInterestRates
|
||||||
|
import com.r3corda.node.services.transactions.NotaryService
|
||||||
import com.r3corda.core.node.services.ServiceType
|
import com.r3corda.core.node.services.ServiceType
|
||||||
|
import com.r3corda.node.services.messaging.ArtemisMessagingService
|
||||||
import com.r3corda.core.serialization.deserialize
|
import com.r3corda.core.serialization.deserialize
|
||||||
import com.r3corda.core.utilities.BriefLogFormatter
|
import com.r3corda.core.utilities.BriefLogFormatter
|
||||||
import com.r3corda.demos.api.InterestRateSwapAPI
|
import com.r3corda.demos.api.InterestRateSwapAPI
|
||||||
import com.r3corda.demos.protocols.AutoOfferProtocol
|
import com.r3corda.demos.protocols.AutoOfferProtocol
|
||||||
import com.r3corda.demos.protocols.ExitServerProtocol
|
import com.r3corda.demos.protocols.ExitServerProtocol
|
||||||
import com.r3corda.demos.protocols.UpdateBusinessDayProtocol
|
import com.r3corda.demos.protocols.UpdateBusinessDayProtocol
|
||||||
import com.r3corda.node.internal.Node
|
|
||||||
import com.r3corda.node.services.clientapi.NodeInterestRates
|
|
||||||
import com.r3corda.node.services.config.NodeConfiguration
|
|
||||||
import com.r3corda.node.services.config.NodeConfigurationFromConfig
|
|
||||||
import com.r3corda.node.services.messaging.ArtemisMessagingService
|
|
||||||
import com.r3corda.node.services.network.NetworkMapService
|
|
||||||
import com.r3corda.node.services.transactions.SimpleNotaryService
|
|
||||||
import com.typesafe.config.ConfigFactory
|
|
||||||
import joptsimple.OptionParser
|
import joptsimple.OptionParser
|
||||||
import java.nio.file.Files
|
import java.nio.file.Files
|
||||||
import java.nio.file.Path
|
import java.nio.file.Path
|
||||||
@ -65,12 +65,12 @@ fun main(args: Array<String>) {
|
|||||||
|
|
||||||
val networkMapId = if (options.valueOf(networkMapNetAddr).equals(options.valueOf(networkAddressArg))) {
|
val networkMapId = if (options.valueOf(networkMapNetAddr).equals(options.valueOf(networkAddressArg))) {
|
||||||
// This node provides network map and notary services
|
// This node provides network map and notary services
|
||||||
advertisedServices = setOf(NetworkMapService.Type, SimpleNotaryService.Type)
|
advertisedServices = setOf(NetworkMapService.Type, NotaryService.Type)
|
||||||
null
|
null
|
||||||
} else {
|
} else {
|
||||||
advertisedServices = setOf(NodeInterestRates.Type)
|
advertisedServices = setOf(NodeInterestRates.Type)
|
||||||
try {
|
try {
|
||||||
nodeInfo(options.valueOf(networkMapNetAddr), options.valueOf(networkMapIdentityFile), setOf(NetworkMapService.Type, SimpleNotaryService.Type))
|
nodeInfo(options.valueOf(networkMapNetAddr), options.valueOf(networkMapIdentityFile), setOf(NetworkMapService.Type, NotaryService.Type))
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ import com.r3corda.node.services.config.NodeConfigurationFromConfig
|
|||||||
import com.r3corda.node.services.messaging.ArtemisMessagingService
|
import com.r3corda.node.services.messaging.ArtemisMessagingService
|
||||||
import com.r3corda.node.services.network.NetworkMapService
|
import com.r3corda.node.services.network.NetworkMapService
|
||||||
import com.r3corda.node.services.persistence.NodeAttachmentService
|
import com.r3corda.node.services.persistence.NodeAttachmentService
|
||||||
import com.r3corda.node.services.transactions.SimpleNotaryService
|
import com.r3corda.node.services.transactions.NotaryService
|
||||||
import com.r3corda.node.services.wallet.NodeWalletService
|
import com.r3corda.node.services.wallet.NodeWalletService
|
||||||
import com.r3corda.node.utilities.ANSIProgressRenderer
|
import com.r3corda.node.utilities.ANSIProgressRenderer
|
||||||
import com.r3corda.protocols.NotaryProtocol
|
import com.r3corda.protocols.NotaryProtocol
|
||||||
@ -114,7 +114,7 @@ fun main(args: Array<String>) {
|
|||||||
// the map is not very helpful, but we need one anyway. So just make the buyer side run the network map as it's
|
// the map is not very helpful, but we need one anyway. So just make the buyer side run the network map as it's
|
||||||
// the side that sticks around waiting for the seller.
|
// the side that sticks around waiting for the seller.
|
||||||
val networkMapId = if (role == Role.BUYER) {
|
val networkMapId = if (role == Role.BUYER) {
|
||||||
advertisedServices = setOf(NetworkMapService.Type, SimpleNotaryService.Type)
|
advertisedServices = setOf(NetworkMapService.Type, NotaryService.Type)
|
||||||
null
|
null
|
||||||
} else {
|
} else {
|
||||||
// In a real system, the identity file of the network map would be shipped with the server software, and there'd
|
// In a real system, the identity file of the network map would be shipped with the server software, and there'd
|
||||||
@ -350,7 +350,7 @@ class TraderDemoProtocolSeller(val myAddress: HostAndPort,
|
|||||||
tx.signWith(keyPair)
|
tx.signWith(keyPair)
|
||||||
|
|
||||||
// Get the notary to sign it, thus committing the outputs.
|
// Get the notary to sign it, thus committing the outputs.
|
||||||
val notarySig = subProtocol(NotaryProtocol.Client(tx.toWireTransaction()))
|
val notarySig = subProtocol(NotaryProtocol(tx.toWireTransaction()))
|
||||||
tx.addSignatureUnchecked(notarySig)
|
tx.addSignatureUnchecked(notarySig)
|
||||||
|
|
||||||
// Commit it to local storage.
|
// Commit it to local storage.
|
||||||
@ -365,7 +365,7 @@ class TraderDemoProtocolSeller(val myAddress: HostAndPort,
|
|||||||
val builder = TransactionBuilder()
|
val builder = TransactionBuilder()
|
||||||
CommercialPaper().generateMove(builder, issuance.tx.outRef(0), ownedBy)
|
CommercialPaper().generateMove(builder, issuance.tx.outRef(0), ownedBy)
|
||||||
builder.signWith(keyPair)
|
builder.signWith(keyPair)
|
||||||
builder.addSignatureUnchecked(subProtocol(NotaryProtocol.Client(builder.toWireTransaction())))
|
builder.addSignatureUnchecked(subProtocol(NotaryProtocol(builder.toWireTransaction())))
|
||||||
val tx = builder.toSignedTransaction(true)
|
val tx = builder.toSignedTransaction(true)
|
||||||
serviceHub.recordTransactions(listOf(tx))
|
serviceHub.recordTransactions(listOf(tx))
|
||||||
tx
|
tx
|
||||||
|
Loading…
Reference in New Issue
Block a user