Skip to content

Commit

Permalink
Fix SSL target name override issue (#84)
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Stone <sstone1@uk.ibm.com>
  • Loading branch information
Simon Stone committed Mar 18, 2021
1 parent 083ae4d commit bb07388
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 12 deletions.
8 changes: 8 additions & 0 deletions internal/pkg/ca/ca.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,14 @@ func (c *CA) APIURL(internal bool) *url.URL {
return c.apiURL
}

// OperationsHostname returns the hostname of the CA.
func (c *CA) OperationsHostname(internal bool) string {
if internal {
return "localhost"
}
return c.operationsURL.Hostname()
}

// OperationsHost returns the host (hostname:port) of the CA.
func (c *CA) OperationsHost(internal bool) string {
if internal {
Expand Down
24 changes: 12 additions & 12 deletions internal/pkg/console/console.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,13 +254,13 @@ func (c *Console) getOrderer(req *http.Request) *jsonOrderer {
APIURL: c.getDynamicURL(req, c.orderer.APIURL(false)),
APIOptions: &jsonOptions{
DefaultAuthority: c.orderer.APIHost(false),
SSLTargetNameOverride: c.orderer.APIHost(false),
SSLTargetNameOverride: c.orderer.APIHostname(false),
RequestTimeout: 300 * 1000,
},
OperationsURL: c.getDynamicURL(req, c.orderer.OperationsURL(false)),
OperationsOptions: &jsonOptions{
DefaultAuthority: c.orderer.OperationsHost(false),
SSLTargetNameOverride: c.orderer.OperationsHost(false),
SSLTargetNameOverride: c.orderer.OperationsHostname(false),
RequestTimeout: 300 * 1000,
},
MSPID: "OrdererMSP",
Expand All @@ -285,19 +285,19 @@ func (c *Console) getPeer(req *http.Request, peer *peer.Peer) *jsonPeer {
APIURL: c.getDynamicURL(req, peer.APIURL(false)),
APIOptions: &jsonOptions{
DefaultAuthority: peer.APIHost(false),
SSLTargetNameOverride: peer.APIHost(false),
SSLTargetNameOverride: peer.APIHostname(false),
RequestTimeout: 300 * 1000,
},
ChaincodeURL: c.getDynamicURL(req, peer.ChaincodeURL(false)),
ChaincodeOptions: &jsonOptions{
DefaultAuthority: peer.ChaincodeHost(false),
SSLTargetNameOverride: peer.ChaincodeHost(false),
SSLTargetNameOverride: peer.ChaincodeHostname(false),
RequestTimeout: 300 * 1000,
},
OperationsURL: c.getDynamicURL(req, peer.OperationsURL(false)),
OperationsOptions: &jsonOptions{
DefaultAuthority: peer.OperationsHost(false),
SSLTargetNameOverride: peer.OperationsHost(false),
SSLTargetNameOverride: peer.OperationsHostname(false),
RequestTimeout: 300 * 1000,
},
MSPID: peer.MSPID(),
Expand Down Expand Up @@ -334,7 +334,7 @@ func (c *Console) getGateway(req *http.Request, peer *peer.Peer) map[string]inte
"url": c.getDynamicURL(req, peer.APIURL(false)),
"grpcOptions": map[string]interface{}{
"grpc.default_authority": peer.APIHost(false),
"grpc.ssl_target_name_override": peer.APIHost(false),
"grpc.ssl_target_name_override": peer.APIHostname(false),
},
}
if tls := peer.TLS(); tls != nil {
Expand Down Expand Up @@ -379,16 +379,16 @@ func (c *Console) getGateway(req *http.Request, peer *peer.Peer) map[string]inte
ca.APIHost(false),
}
c := map[string]interface{}{
ca.APIHost(false): map[string]interface{}{
"url": c.getDynamicURL(req, ca.APIURL(false)),
},
"url": c.getDynamicURL(req, ca.APIURL(false)),
}
if tls := ca.TLS(); tls != nil {
c["tlsCACerts"] = map[string][]string{
"pem": {string(tls.CA().Bytes())},
}
}
result["certificateAuthorities"] = c
result["certificateAuthorities"] = map[string]interface{}{
ca.APIHost(false): c,
}
}
return result
}
Expand All @@ -412,13 +412,13 @@ func (c *Console) getCA(req *http.Request, ca *ca.CA) *jsonCA {
APIURL: c.getDynamicURL(req, ca.APIURL(false)),
APIOptions: &jsonOptions{
DefaultAuthority: ca.APIHost(false),
SSLTargetNameOverride: ca.APIHost(false),
SSLTargetNameOverride: ca.APIHostname(false),
RequestTimeout: 300 * 1000,
},
OperationsURL: c.getDynamicURL(req, ca.OperationsURL(false)),
OperationsOptions: &jsonOptions{
DefaultAuthority: ca.OperationsHost(false),
SSLTargetNameOverride: ca.OperationsHost(false),
SSLTargetNameOverride: ca.OperationsHostname(false),
RequestTimeout: 300 * 1000,
},
MSPID: ca.Organization().MSPID(),
Expand Down
8 changes: 8 additions & 0 deletions internal/pkg/orderer/orderer.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,14 @@ func (o *Orderer) APIURL(internal bool) *url.URL {
return o.apiURL
}

// OperationsHostname returns the hostname of the orderer.
func (o *Orderer) OperationsHostname(internal bool) string {
if internal {
return "localhost"
}
return o.operationsURL.Hostname()
}

// OperationsHost returns the host (hostname:port) of the orderer.
func (o *Orderer) OperationsHost(internal bool) string {
if internal {
Expand Down
16 changes: 16 additions & 0 deletions internal/pkg/peer/peer.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@ func (p *Peer) APIURL(internal bool) *url.URL {
return p.apiURL
}

// ChaincodeHostname returns the hostname of the peer.
func (p *Peer) ChaincodeHostname(internal bool) string {
if internal {
return "localhost"
}
return p.chaincodeURL.Hostname()
}

// ChaincodeHost returns the host (hostname:port) of the peer.
func (p *Peer) ChaincodeHost(internal bool) string {
if internal {
Expand Down Expand Up @@ -142,6 +150,14 @@ func (p *Peer) ChaincodeURL(internal bool) *url.URL {
return p.chaincodeURL
}

// OperationsHostname returns the hostname of the peer.
func (p *Peer) OperationsHostname(internal bool) string {
if internal {
return "localhost"
}
return p.operationsURL.Hostname()
}

// OperationsHost returns the host (hostname:port) of the peer.
func (p *Peer) OperationsHost(internal bool) string {
if internal {
Expand Down

0 comments on commit bb07388

Please sign in to comment.