blob: b60762fa625a18c3dbe5d103de4474ed087b1695 [file] [log] [blame]
/*
*
* Copyright 2020 gRPC authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
// The server demonstrates how to use the credential reloading feature in
// advancedtls to serve mTLS connections from the client.
package main
import (
"context"
"flag"
"fmt"
"log"
"net"
"time"
"google.golang.org/grpc"
"google.golang.org/grpc/security/advancedtls"
"google.golang.org/grpc/security/advancedtls/testdata"
pb "google.golang.org/grpc/examples/helloworld/helloworld"
)
var port = ":50051"
// Intervals that set to monitor the credential updates.
const credRefreshingInterval = 1 * time.Minute
type greeterServer struct {
pb.UnimplementedGreeterServer
}
// sayHello is a simple implementation of the pb.GreeterServer SayHello method.
func (greeterServer) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) {
return &pb.HelloReply{Message: "Hello " + in.Name}, nil
}
func main() {
flag.Parse()
fmt.Printf("server starting on port %s...\n", port)
// TODO(ZhenLian): change function signatures to reflect the changes in
// https://github.com/grpc/grpc-go/pull/3981.
identityOptions := advancedtls.PEMFileProviderOptions{
CertFile: testdata.Path("server_cert_1.pem"),
KeyFile: testdata.Path("server_key_1.pem"),
IdentityInterval: credRefreshingInterval,
}
identityProvider, err := advancedtls.NewPEMFileProvider(identityOptions)
if err != nil {
log.Fatalf("advancedtls.NewPEMFileProvider(%v) failed: %v", identityOptions, err)
}
defer identityProvider.Close()
rootOptions := advancedtls.PEMFileProviderOptions{
TrustFile: testdata.Path("server_trust_cert_1.pem"),
RootInterval: credRefreshingInterval,
}
rootProvider, err := advancedtls.NewPEMFileProvider(rootOptions)
if err != nil {
log.Fatalf("advancedtls.NewPEMFileProvider(%v) failed: %v", rootOptions, err)
}
defer rootProvider.Close()
// Start a server and create a client using advancedtls API with Provider.
options := &advancedtls.ServerOptions{
IdentityOptions: advancedtls.IdentityCertificateOptions{
IdentityProvider: identityProvider,
},
RootOptions: advancedtls.RootCertificateOptions{
RootProvider: rootProvider,
},
RequireClientCert: true,
VerifyPeer: func(params *advancedtls.VerificationFuncParams) (*advancedtls.VerificationResults, error) {
return &advancedtls.VerificationResults{}, nil
},
VType: advancedtls.CertVerification,
}
serverTLSCreds, err := advancedtls.NewServerCreds(options)
if err != nil {
log.Fatalf("advancedtls.NewServerCreds(%v) failed: %v", options, err)
}
s := grpc.NewServer(grpc.Creds(serverTLSCreds))
lis, err := net.Listen("tcp", port)
if err != nil {
log.Fatalf("failed to listen: %v", err)
}
pb.RegisterGreeterServer(s, greeterServer{})
if err := s.Serve(lis); err != nil {
log.Fatalf("failed to serve: %v", err)
}
}