Skip to content

Commit

Permalink
Improve error message for invalid consenter cert (#2587)
Browse files Browse the repository at this point in the history
When channel config had an invalid consenter cert, the error message did not indicate which cert was being verified.
The error message now indicates that a consenter cert is invalid, and which consenter cert is invalid.

Signed-off-by: David Enyeart <enyeart@us.ibm.com>
  • Loading branch information
denyeart authored May 13, 2021
1 parent 5e1e590 commit dbf7eb1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions integration/raft/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,9 @@ var _ = Describe("EndToEnd reconfiguration and onboarding", func() {
newConsenterCert, err := x509.ParseCertificate(newConsenterCertPem.Bytes)
Expect(err).NotTo(HaveOccurred())

newConsenterHost := "127.0.0.1"
newConsenterPort := uint32(network.OrdererPort(orderer3, nwo.ListenPort))

current, updated := consenterAdder(
network,
peer,
Expand All @@ -411,13 +414,13 @@ var _ = Describe("EndToEnd reconfiguration and onboarding", func() {
etcdraft.Consenter{
ServerTlsCert: client.Cert,
ClientTlsCert: client.Cert,
Host: "127.0.0.1",
Port: uint32(network.OrdererPort(orderer3, nwo.ListenPort)),
Host: newConsenterHost,
Port: newConsenterPort,
},
)
sess = nwo.UpdateOrdererConfigSession(network, orderer, network.SystemChannel.Name, current, updated, peer, orderer)
Eventually(sess, network.EventuallyTimeout).Should(gexec.Exit(1))
Expect(sess.Err).To(gbytes.Say(fmt.Sprintf("BAD_REQUEST -- error applying config update to existing channel 'systemchannel': consensus metadata update for channel config update is invalid: invalid new config metadata: verifying tls client cert with serial number %d: x509: certificate signed by unknown authority", newConsenterCert.SerialNumber)))
Expect(sess.Err).To(gbytes.Say(fmt.Sprintf("BAD_REQUEST -- error applying config update to existing channel 'systemchannel': consensus metadata update for channel config update is invalid: invalid new config metadata: consenter %s:%d has invalid certificate: verifying tls client cert with serial number %d: x509: certificate signed by unknown authority", newConsenterHost, newConsenterPort, newConsenterCert.SerialNumber)))
})
})

Expand Down
2 changes: 1 addition & 1 deletion orderer/consensus/etcdraft/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ func VerifyConfigMetadata(metadata *etcdraft.ConfigMetadata, verifyOpts x509.Ver
return errors.Errorf("metadata has nil consenter")
}
if err := validateConsenterTLSCerts(consenter, verifyOpts, true); err != nil {
return err
return errors.WithMessagef(err, "consenter %s:%d has invalid certificate", consenter.Host, consenter.Port)
}
}

Expand Down

0 comments on commit dbf7eb1

Please sign in to comment.