-
Notifications
You must be signed in to change notification settings - Fork 2
/
server.go
260 lines (200 loc) · 6.54 KB
/
server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package server
import (
"context"
"crypto/rand"
"crypto/rsa"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"encoding/pem"
"fmt"
"io/ioutil"
"math/big"
"net"
"time"
"github.com/americanas-go/log"
"google.golang.org/grpc"
"google.golang.org/grpc/channelz/service"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/reflection"
)
// Plugin defines a grpc server Plugin function to execute.
type Plugin func(ctx context.Context) []grpc.ServerOption
// Server represents a grpc server.
type Server struct {
server *grpc.Server
serviceRegistrar grpc.ServiceRegistrar
options *Options
}
// NewServer returns a new grpc server with default options.
func NewServer(ctx context.Context, plugins ...Plugin) *Server {
opt, err := NewOptions()
if err != nil {
panic(err)
}
return NewServerWithOptions(ctx, opt, plugins...)
}
// NewServerWithConfigPath returns a new grpc server with options from config path.
func NewServerWithConfigPath(ctx context.Context, path string) (*Server, error) {
options, err := NewOptionsWithPath(path)
if err != nil {
return nil, err
}
return NewServerWithOptions(ctx, options), nil
}
// NewServerWithOptions returns a new grpc server with options.
func NewServerWithOptions(ctx context.Context, opt *Options, plugins ...Plugin) *Server {
logger := log.FromContext(ctx)
var s *grpc.Server
var serverOptions []grpc.ServerOption
if opt.TLS.Enabled {
logger.Debug("configuring tls on grpc server")
var creds credentials.TransportCredentials
certPool := x509.NewCertPool()
if opt.TLS.Type == "FILE" && opt.TLS.File.Cert != "" && opt.TLS.File.CA != "" {
creds = tlsFromFile(ctx, opt, certPool)
} else if opt.TLS.Type == "AUTO" {
creds = autoTLS(ctx, opt, certPool)
} else {
creds = credentials.NewTLS(&tls.Config{
ClientAuth: tls.NoClientCert,
Certificates: []tls.Certificate{},
ClientCAs: certPool,
})
}
serverOptions = append(serverOptions, grpc.Creds(creds))
}
for _, plugin := range plugins {
sopts := plugin(ctx)
if sopts != nil {
serverOptions = append(serverOptions, sopts...)
}
}
serverOptions = append(serverOptions, grpc.MaxConcurrentStreams(uint32(opt.MaxConcurrentStreams)))
serverOptions = append(serverOptions, grpc.InitialConnWindowSize(opt.InitialConnWindowSize))
serverOptions = append(serverOptions, grpc.InitialWindowSize(opt.InitialWindowSize))
s = grpc.NewServer(serverOptions...)
return &Server{
server: s,
options: opt,
}
}
// Server returns the wrapped grpc server instance.
func (s *Server) Server() *grpc.Server {
return s.server
}
// ServiceRegistrar returns grpc service register.
func (s *Server) ServiceRegistrar() grpc.ServiceRegistrar {
return s.server
}
// Serve starts grpc server.
func (s *Server) Serve(ctx context.Context) {
logger := log.FromContext(ctx)
service.RegisterChannelzServiceToServer(s.server)
// Register reflection service on gRPC server.
reflection.Register(s.server)
lis, err := net.Listen("tcp", fmt.Sprintf(":%d", s.options.Port))
if err != nil {
logger.Fatalf("failed to listen: %v", err.Error())
}
logger.Infof("grpc server started on port %v", s.options.Port)
logger.Error(s.server.Serve(lis))
}
// Shutdown stops grpc server gracefully.
func (s *Server) Shutdown(ctx context.Context) {
s.server.GracefulStop()
}
func autoTLS(ctx context.Context, options *Options, certPool *x509.CertPool) credentials.TransportCredentials {
logger := log.FromContext(ctx)
logger.Trace("configuring generated cert and key certificates on grpc server")
var cert, key []byte
var err error
cert, key, err = generateCertificate(options.TLS.Auto.Host)
if err != nil {
logger.Fatal(err.Error())
}
// Load the certificates from disk
var certificate tls.Certificate
certificate, err = tls.X509KeyPair(cert, key)
if err != nil {
logger.Fatalf("could not load server key pair: %s", err.Error())
}
logger.Trace("cert and key certificates loaded")
// Create the TLS credentials
return credentials.NewTLS(&tls.Config{
ClientAuth: tls.NoClientCert,
Certificates: []tls.Certificate{certificate},
ClientCAs: certPool,
})
}
func tlsFromFile(ctx context.Context, options *Options, certPool *x509.CertPool) credentials.TransportCredentials {
logger := log.FromContext(ctx)
logger.Trace("configuring cert and key certificates from files on grpc server")
// Load the certificates from disk
certificate, err := tls.LoadX509KeyPair(options.TLS.File.Cert, options.TLS.File.Key)
if err != nil {
logger.Fatalf("could not load server key pair: %s", err.Error())
}
logger.Trace("cert and key certificates loaded")
if options.TLS.File.CA != "" {
logger.Trace("configuring ca certificate on grpc server")
ca, err := ioutil.ReadFile(options.TLS.File.CA)
if err != nil {
logger.Fatalf("could not read ca certificate: %s", err.Error())
}
// Append the client certificates from the CA
if ok := certPool.AppendCertsFromPEM(ca); !ok {
logger.Fatalf("failed to append client certs")
}
logger.Trace("ca certificate loaded")
}
// Create the TLS credentials
return credentials.NewTLS(&tls.Config{
ClientAuth: tls.NoClientCert,
Certificates: []tls.Certificate{certificate},
ClientCAs: certPool,
})
}
// generateCertificate generates a test certificate and private key based on the given host.
func generateCertificate(host string) ([]byte, []byte, error) {
log.Tracef("generating a certificate and private key based on the given host %s", host)
priv, err := rsa.GenerateKey(rand.Reader, 2048)
if err != nil {
return nil, nil, err
}
serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
if err != nil {
return nil, nil, err
}
cert := &x509.Certificate{
SerialNumber: serialNumber,
Subject: pkix.Name{
Organization: []string{"grpc http server"},
},
NotBefore: time.Now(),
NotAfter: time.Now().Add(365 * 24 * time.Hour),
KeyUsage: x509.KeyUsageCertSign | x509.KeyUsageDigitalSignature,
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth, x509.ExtKeyUsageClientAuth},
SignatureAlgorithm: x509.SHA256WithRSA,
DNSNames: []string{host},
BasicConstraintsValid: true,
IsCA: true,
}
certBytes, err := x509.CreateCertificate(
rand.Reader, cert, cert, &priv.PublicKey, priv,
)
p := pem.EncodeToMemory(
&pem.Block{
Type: "PRIVATE KEY",
Bytes: x509.MarshalPKCS1PrivateKey(priv),
},
)
b := pem.EncodeToMemory(
&pem.Block{
Type: "CERTIFICATE",
Bytes: certBytes,
},
)
return b, p, err
}