mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
128 lines
4.3 KiB
Go
128 lines
4.3 KiB
Go
package grpc // import "github.com/pomerium/pomerium/internal/grpc"
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"encoding/base64"
|
|
"errors"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/pomerium/pomerium/internal/log"
|
|
"github.com/pomerium/pomerium/internal/telemetry/metrics"
|
|
|
|
"go.opencensus.io/plugin/ocgrpc"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/balancer/roundrobin"
|
|
"google.golang.org/grpc/credentials"
|
|
)
|
|
|
|
const defaultGRPCPort = 443
|
|
|
|
// Options contains options for connecting to a pomerium rpc service.
|
|
type Options struct {
|
|
// Addr is the location of the service. e.g. "service.corp.example:8443"
|
|
Addr *url.URL
|
|
// OverrideCertificateName overrides the server name used to verify the hostname on the
|
|
// returned certificates from the server. gRPC internals also use it to override the virtual
|
|
// hosting name if it is set.
|
|
OverrideCertificateName string
|
|
// CA specifies the base64 encoded TLS certificate authority to use.
|
|
CA string
|
|
// CAFile specifies the TLS certificate authority file to use.
|
|
CAFile string
|
|
// RequestTimeout specifies the timeout for individual RPC calls
|
|
RequestTimeout time.Duration
|
|
// ClientDNSRoundRobin enables or disables DNS resolver based load balancing
|
|
ClientDNSRoundRobin bool
|
|
|
|
// WithInsecure disables transport security for this ClientConn.
|
|
// Note that transport security is required unless WithInsecure is set.
|
|
WithInsecure bool
|
|
}
|
|
|
|
// NewGRPCClientConn returns a new gRPC pomerium service client connection.
|
|
func NewGRPCClientConn(opts *Options) (*grpc.ClientConn, error) {
|
|
if opts.Addr == nil {
|
|
return nil, errors.New("internal/grpc: connection address required")
|
|
}
|
|
connAddr := opts.Addr.Host
|
|
|
|
// no colon exists in the connection string, assume one must be added manually
|
|
if !strings.Contains(connAddr, ":") {
|
|
connAddr = fmt.Sprintf("%s:%d", connAddr, defaultGRPCPort)
|
|
}
|
|
dialOptions := []grpc.DialOption{
|
|
grpc.WithChainUnaryInterceptor(metrics.GRPCClientInterceptor(connAddr), grpcTimeoutInterceptor(opts.RequestTimeout)),
|
|
grpc.WithStatsHandler(&ocgrpc.ClientHandler{}),
|
|
grpc.WithDefaultCallOptions([]grpc.CallOption{grpc.WaitForReady(true)}...),
|
|
}
|
|
|
|
if opts.WithInsecure {
|
|
log.Info().Str("addr", connAddr).Msg("internal/grpc: grpc with insecure")
|
|
dialOptions = append(dialOptions, grpc.WithInsecure())
|
|
} else {
|
|
rootCAs, err := x509.SystemCertPool()
|
|
if err != nil {
|
|
log.Warn().Msg("internal/grpc: failed getting system cert pool making new one")
|
|
rootCAs = x509.NewCertPool()
|
|
}
|
|
if opts.CA != "" || opts.CAFile != "" {
|
|
var ca []byte
|
|
var err error
|
|
if opts.CA != "" {
|
|
ca, err = base64.StdEncoding.DecodeString(opts.CA)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to decode certificate authority: %w", err)
|
|
}
|
|
} else {
|
|
ca, err = ioutil.ReadFile(opts.CAFile)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("certificate authority file %v not readable: %w", opts.CAFile, err)
|
|
}
|
|
}
|
|
if ok := rootCAs.AppendCertsFromPEM(ca); !ok {
|
|
return nil, fmt.Errorf("failed to append CA cert to certPool")
|
|
}
|
|
log.Debug().Msg("internal/grpc: added custom certificate authority")
|
|
}
|
|
|
|
cert := credentials.NewTLS(&tls.Config{RootCAs: rootCAs})
|
|
|
|
// override allowed certificate name string, typically used when doing behind ingress connection
|
|
if opts.OverrideCertificateName != "" {
|
|
log.Debug().Str("cert-override-name", opts.OverrideCertificateName).Msg("internal/grpc: grpc")
|
|
err := cert.OverrideServerName(opts.OverrideCertificateName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
// finally add our credential
|
|
dialOptions = append(dialOptions, grpc.WithTransportCredentials(cert))
|
|
}
|
|
|
|
if opts.ClientDNSRoundRobin {
|
|
dialOptions = append(dialOptions, grpc.WithBalancerName(roundrobin.Name), grpc.WithDisableServiceConfig())
|
|
connAddr = fmt.Sprintf("dns:///%s", connAddr)
|
|
}
|
|
return grpc.Dial(
|
|
connAddr,
|
|
dialOptions...,
|
|
)
|
|
}
|
|
|
|
// grpcTimeoutInterceptor enforces per-RPC request timeouts
|
|
func grpcTimeoutInterceptor(timeout time.Duration) grpc.UnaryClientInterceptor {
|
|
return func(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {
|
|
if timeout <= 0 {
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
|
}
|
|
ctx, cancel := context.WithTimeout(ctx, timeout)
|
|
defer cancel()
|
|
return invoker(ctx, method, req, reply, cc, opts...)
|
|
}
|
|
}
|