forked from grpc-ecosystem/grpc-health-probe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
260 lines (240 loc) · 8.51 KB
/
main.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
// Copyright 2018 Google LLC
//
// 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.
package main
import (
"context"
"crypto/tls"
"crypto/x509"
"flag"
"fmt"
"io/ioutil"
"log"
"os"
"os/signal"
"time"
healthpb "github.com/ori-edge/oge-apis/pkg/apis"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/status"
)
var (
flAddr string
flService string
flUserAgent string
flConnTimeout time.Duration
flRPCTimeout time.Duration
flTLS bool
flTLSNoVerify bool
flTLSCACert string
flTLSClientCert string
flTLSClientKey string
flTLSServerName string
flVerbose bool
flGZIP bool
)
const (
// StatusInvalidArguments indicates specified invalid arguments.
StatusInvalidArguments = 1
// StatusConnectionFailure indicates connection failed.
StatusConnectionFailure = 2
// StatusRPCFailure indicates rpc failed.
StatusRPCFailure = 3
// StatusUnhealthy indicates rpc succeeded but indicates unhealthy service.
StatusUnhealthy = 4
)
func init() {
flagSet := flag.NewFlagSet("", flag.ContinueOnError)
log.SetFlags(0)
flagSet.StringVar(&flAddr, "addr", "", "(required) tcp host:port to connect")
flagSet.StringVar(&flService, "service", "", "service name to check (default: \"\")")
flagSet.StringVar(&flUserAgent, "user-agent", "grpc_health_probe", "user-agent header value of health check requests")
// timeouts
flagSet.DurationVar(&flConnTimeout, "connect-timeout", time.Second, "timeout for establishing connection")
flagSet.DurationVar(&flRPCTimeout, "rpc-timeout", time.Second, "timeout for health check rpc")
// tls settings
flagSet.BoolVar(&flTLS, "tls", false, "use TLS (default: false, INSECURE plaintext transport)")
flagSet.BoolVar(&flTLSNoVerify, "tls-no-verify", false, "(with -tls) don't verify the certificate (INSECURE) presented by the server (default: false)")
flagSet.StringVar(&flTLSCACert, "tls-ca-cert", "", "(with -tls, optional) file containing trusted certificates for verifying server")
flagSet.StringVar(&flTLSClientCert, "tls-client-cert", "", "(with -tls, optional) client certificate for authenticating to the server (requires -tls-client-key)")
flagSet.StringVar(&flTLSClientKey, "tls-client-key", "", "(with -tls) client private key for authenticating to the server (requires -tls-client-cert)")
flagSet.StringVar(&flTLSServerName, "tls-server-name", "", "(with -tls) override the hostname used to verify the server certificate")
flagSet.BoolVar(&flVerbose, "v", false, "verbose logs")
flagSet.BoolVar(&flGZIP, "gzip", false, "use GZIPCompressor for requests and GZIPDecompressor for response (default: false)")
err := flagSet.Parse(os.Args[1:])
if err != nil {
os.Exit(StatusInvalidArguments)
}
argError := func(s string, v ...interface{}) {
log.Printf("error: "+s, v...)
os.Exit(StatusInvalidArguments)
}
if flAddr == "" {
argError("-addr not specified")
}
if flConnTimeout <= 0 {
argError("-connect-timeout must be greater than zero (specified: %v)", flConnTimeout)
}
if flRPCTimeout <= 0 {
argError("-rpc-timeout must be greater than zero (specified: %v)", flRPCTimeout)
}
if !flTLS && flTLSNoVerify {
argError("specified -tls-no-verify without specifying -tls")
}
if !flTLS && flTLSCACert != "" {
argError("specified -tls-ca-cert without specifying -tls")
}
if !flTLS && flTLSClientCert != "" {
argError("specified -tls-client-cert without specifying -tls")
}
if !flTLS && flTLSServerName != "" {
argError("specified -tls-server-name without specifying -tls")
}
if flTLSClientCert != "" && flTLSClientKey == "" {
argError("specified -tls-client-cert without specifying -tls-client-key")
}
if flTLSClientCert == "" && flTLSClientKey != "" {
argError("specified -tls-client-key without specifying -tls-client-cert")
}
if flTLSNoVerify && flTLSCACert != "" {
argError("cannot specify -tls-ca-cert with -tls-no-verify (CA cert would not be used)")
}
if flTLSNoVerify && flTLSServerName != "" {
argError("cannot specify -tls-server-name with -tls-no-verify (server name would not be used)")
}
if flVerbose {
log.Printf("parsed options:")
log.Printf("> addr=%s conn_timeout=%v rpc_timeout=%v", flAddr, flConnTimeout, flRPCTimeout)
log.Printf("> tls=%v", flTLS)
if flTLS {
log.Printf(" > no-verify=%v ", flTLSNoVerify)
log.Printf(" > ca-cert=%s", flTLSCACert)
log.Printf(" > client-cert=%s", flTLSClientCert)
log.Printf(" > client-key=%s", flTLSClientKey)
log.Printf(" > server-name=%s", flTLSServerName)
}
}
}
func buildCredentials(skipVerify bool, caCerts, clientCert, clientKey, serverName string) (credentials.TransportCredentials, error) {
var cfg tls.Config
if clientCert != "" && clientKey != "" {
keyPair, err := tls.LoadX509KeyPair(clientCert, clientKey)
if err != nil {
return nil, fmt.Errorf("failed to load tls client cert/key pair. error=%v", err)
}
cfg.Certificates = []tls.Certificate{keyPair}
}
if skipVerify {
cfg.InsecureSkipVerify = true
} else if caCerts != "" {
// override system roots
rootCAs := x509.NewCertPool()
pem, err := ioutil.ReadFile(caCerts)
if err != nil {
return nil, fmt.Errorf("failed to load root CA certificates from file (%s) error=%v", caCerts, err)
}
if !rootCAs.AppendCertsFromPEM(pem) {
return nil, fmt.Errorf("no root CA certs parsed from file %s", caCerts)
}
cfg.RootCAs = rootCAs
}
if serverName != "" {
cfg.ServerName = serverName
}
return credentials.NewTLS(&cfg), nil
}
func main() {
retcode := 0
defer func() { os.Exit(retcode) }()
ctx, cancel := context.WithCancel(context.Background())
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
go func() {
sig := <-c
if sig == os.Interrupt {
log.Printf("cancellation received")
cancel()
return
}
}()
opts := []grpc.DialOption{
grpc.WithUserAgent(flUserAgent),
grpc.WithBlock(),
}
if flTLS {
creds, err := buildCredentials(flTLSNoVerify, flTLSCACert, flTLSClientCert, flTLSClientKey, flTLSServerName)
if err != nil {
log.Printf("failed to initialize tls credentials. error=%v", err)
retcode = StatusInvalidArguments
return
}
opts = append(opts, grpc.WithTransportCredentials(creds))
} else {
opts = append(opts, grpc.WithInsecure())
}
if flGZIP {
opts = append(opts,
grpc.WithCompressor(grpc.NewGZIPCompressor()),
grpc.WithDecompressor(grpc.NewGZIPDecompressor()),
)
}
if flVerbose {
log.Print("establishing connection")
}
connStart := time.Now()
dialCtx, dialCancel := context.WithTimeout(ctx, flConnTimeout)
defer dialCancel()
conn, err := grpc.DialContext(dialCtx, flAddr, opts...)
if err != nil {
if err == context.DeadlineExceeded {
log.Printf("timeout: failed to connect service %q within %v", flAddr, flConnTimeout)
} else {
log.Printf("error: failed to connect service at %q: %+v", flAddr, err)
}
retcode = StatusConnectionFailure
return
}
connDuration := time.Since(connStart)
defer conn.Close()
if flVerbose {
log.Printf("connection established (took %v)", connDuration)
}
rpcStart := time.Now()
rpcCtx, rpcCancel := context.WithTimeout(ctx, flRPCTimeout)
defer rpcCancel()
resp, err := healthpb.NewHealthClient(conn).Check(rpcCtx,
&healthpb.HealthCheckRequest{
Service: flService})
if err != nil {
if stat, ok := status.FromError(err); ok && stat.Code() == codes.Unimplemented {
log.Printf("error: this server does not implement the grpc health protocol (grpc.health.v1.Health): %s", stat.Message())
} else if stat, ok := status.FromError(err); ok && stat.Code() == codes.DeadlineExceeded {
log.Printf("timeout: health rpc did not complete within %v", flRPCTimeout)
} else {
log.Printf("error: health rpc failed: %+v", err)
}
retcode = StatusRPCFailure
return
}
rpcDuration := time.Since(rpcStart)
if resp.GetStatus() != healthpb.HealthCheckResponse_SERVING {
log.Printf("service unhealthy (responded with %q)", resp.GetStatus().String())
retcode = StatusUnhealthy
return
}
if flVerbose {
log.Printf("time elapsed: connect=%v rpc=%v", connDuration, rpcDuration)
}
log.Printf("status: %v", resp.GetStatus().String())
}