forked from sourcegraph/checkup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpchecker.go
303 lines (267 loc) · 9.36 KB
/
httpchecker.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
package checkup
import (
"crypto/x509"
"flag"
"fmt"
"io/ioutil"
"log"
"net"
"net/http"
"strings"
"time"
)
// HTTPChecker implements a Checker for HTTP endpoints.
type HTTPChecker struct {
// Name is the name of the endpoint.
Name string `json:"endpoint_name"`
// URL is the URL of the endpoint.
URL string `json:"endpoint_url"`
// UpStatus is the HTTP status code expected by
// a healthy endpoint. Default is http.StatusOK.
UpStatus int `json:"up_status,omitempty"`
// Cert Expire days warn check
CertExpireNDayCheck int `json:"cert_expire_nday_check,omitempty"`
// ThresholdRTT is the maximum round trip time to
// allow for a healthy endpoint. If non-zero and a
// request takes longer than ThresholdRTT, the
// endpoint will be considered unhealthy. Note that
// this duration includes any in-between network
// latency.
ThresholdRTT time.Duration `json:"threshold_rtt,omitempty"`
// MustContain is a string that the response body
// must contain in order to be considered up.
// NOTE: If set, the entire response body will
// be consumed, which has the potential of using
// lots of memory and slowing down checks if the
// response body is large.
MustContain string `json:"must_contain,omitempty"`
// MustNotContain is a string that the response
// body must NOT contain in order to be considered
// up. If both MustContain and MustNotContain are
// set, they are and-ed together. NOTE: If set,
// the entire response body will be consumed, which
// has the potential of using lots of memory and
// slowing down checks if the response body is large.
MustNotContain string `json:"must_not_contain,omitempty"`
// Attempts is how many requests the client will
// make to the endpoint in a single check.
Attempts int `json:"attempts,omitempty"`
// AttemptSpacing spaces out each attempt in a check
// by this duration to avoid hitting a remote too
// quickly in succession. By default, no waiting
// occurs between attempts.
AttemptSpacing time.Duration `json:"attempt_spacing,omitempty"`
// Client is the http.Client with which to make
// requests. If not set, DefaultHTTPClient is
// used.
Client *http.Client `json:"-"`
// Headers contains headers to added to the request
// that is sent for the check
Headers http.Header `json:"headers,omitempty"`
}
// Check performs checks using c according to its configuration.
// An error is only returned if there is a configuration error.
func (c HTTPChecker) Check() (Result, error) {
if c.Attempts < 1 {
c.Attempts = 1
}
if c.Client == nil {
c.Client = DefaultHTTPClient
}
if c.UpStatus == 0 {
c.UpStatus = http.StatusOK
}
result := Result{Title: c.Name, Endpoint: c.URL, Timestamp: Timestamp()}
req, err := http.NewRequest("GET", c.URL, nil)
if err != nil {
return result, err
}
if c.Headers != nil {
for key, header := range c.Headers {
req.Header.Add(key, strings.Join(header, ", "))
}
}
result.Times = c.doChecks(req)
return c.conclude(result), nil
}
// doChecks executes req using c.Client and returns each attempt.
func (c HTTPChecker) doChecks(req *http.Request) Attempts {
checks := make(Attempts, c.Attempts)
for i := 0; i < c.Attempts; i++ {
start := time.Now()
resp, err := c.Client.Do(req)
checks[i].RTT = time.Since(start)
if err != nil {
checks[i].Error = err.Error()
continue
}
err = c.checkDown(resp)
if err != nil {
checks[i].Error = err.Error()
}
err = c.checkCert(req.Host, resp)
if err != nil {
checks[i].Error = err.Error()
}
resp.Body.Close()
if c.AttemptSpacing > 0 {
time.Sleep(c.AttemptSpacing)
}
}
return checks
}
// conclude takes the data in result from the attempts and
// computes remaining values needed to fill out the result.
// It detects degraded (high-latency) responses and makes
// the conclusion about the result's status.
func (c HTTPChecker) conclude(result Result) Result {
result.ThresholdRTT = c.ThresholdRTT
// Check errors (down)
for i := range result.Times {
if result.Times[i].Error != "" {
result.Down = true
result.Message = result.Times[i].Error
return result
}
}
// Check round trip time (degraded)
if c.ThresholdRTT > 0 {
stats := result.ComputeStats()
if stats.Median > c.ThresholdRTT {
result.Notice = fmt.Sprintf("median round trip time exceeded threshold (%s)", c.ThresholdRTT)
result.Degraded = true
return result
}
}
result.Healthy = true
return result
}
// checkDown checks whether the endpoint is down based on resp and
// the configuration of c. It returns a non-nil error if down.
// Note that it does not check for degraded response.
func (c HTTPChecker) checkDown(resp *http.Response) error {
// Check status code
if resp.StatusCode != c.UpStatus {
return fmt.Errorf("response status %s", resp.Status)
}
// Check response body
if c.MustContain == "" && c.MustNotContain == "" {
return nil
}
bodyBytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
return fmt.Errorf("reading response body: %v", err)
}
body := string(bodyBytes)
if c.MustContain != "" && !strings.Contains(body, c.MustContain) {
return fmt.Errorf("response does not contain '%s'", c.MustContain)
}
if c.MustNotContain != "" && strings.Contains(body, c.MustNotContain) {
return fmt.Errorf("response contains '%s'", c.MustNotContain)
}
return nil
}
// DefaultHTTPClient is used when no other http.Client
// is specified on a HTTPChecker.
var DefaultHTTPClient = &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
Dial: (&net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 0,
}).Dial,
TLSHandshakeTimeout: 30 * time.Second,
ExpectContinueTimeout: 30 * time.Second,
MaxIdleConnsPerHost: 1,
DisableCompression: true,
DisableKeepAlives: true,
ResponseHeaderTimeout: 30 * time.Second,
},
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse
},
Timeout: 30 * time.Second,
}
const (
errExpiringShortly = "%s: ** '%s' (S/N %X) expires in %d hours! **"
errExpiringSoon = "%s: '%s' (S/N %X) expires in roughly %d days."
errSunsetAlg = "%s: '%s' (S/N %X) expires after the sunset date for its signature algorithm '%s'."
)
type sigAlgSunset struct {
name string // Human readable name of signature algorithm
sunsetsAt time.Time // Time the algorithm will be sunset
}
// sunsetSigAlgs is an algorithm to string mapping for signature algorithms
// which have been or are being deprecated. See the following links to learn
// more about SHA1's inclusion on this list.
//
// - https://technet.microsoft.com/en-us/library/security/2880823.aspx
// - http://googleonlinesecurity.blogspot.com/2014/09/gradually-sunsetting-sha-1.html
var sunsetSigAlgs = map[x509.SignatureAlgorithm]sigAlgSunset{
x509.MD2WithRSA: sigAlgSunset{
name: "MD2 with RSA",
sunsetsAt: time.Now(),
},
x509.MD5WithRSA: sigAlgSunset{
name: "MD5 with RSA",
sunsetsAt: time.Now(),
},
x509.SHA1WithRSA: sigAlgSunset{
name: "SHA1 with RSA",
sunsetsAt: time.Date(2017, 1, 1, 0, 0, 0, 0, time.UTC),
},
x509.DSAWithSHA1: sigAlgSunset{
name: "DSA with SHA1",
sunsetsAt: time.Date(2017, 1, 1, 0, 0, 0, 0, time.UTC),
},
x509.ECDSAWithSHA1: sigAlgSunset{
name: "ECDSA with SHA1",
sunsetsAt: time.Date(2017, 1, 1, 0, 0, 0, 0, time.UTC),
},
}
var (
checkSigAlg = flag.Bool("check-sig-alg", true, "Verify that non-root certificates are using a good signature algorithm.")
)
func (c HTTPChecker) checkCert(host string, conn *http.Response) error {
var CertExpireNDayCheck = 1
if c.CertExpireNDayCheck > 0 {
CertExpireNDayCheck = c.CertExpireNDayCheck
}
timeNow := time.Now()
checkedCerts := make(map[string]struct{})
for _, chain := range conn.TLS.VerifiedChains {
for certNum, cert := range chain {
if _, checked := checkedCerts[string(cert.Signature)]; checked {
continue
}
checkedCerts[string(cert.Signature)] = struct{}{}
cErrs := []error{}
// Check the expiration.
if timeNow.AddDate(0, 0, CertExpireNDayCheck).After(cert.NotAfter) {
expiresIn := int64(cert.NotAfter.Sub(timeNow).Hours())
if expiresIn <= 48 {
cErrs = append(cErrs, fmt.Errorf(errExpiringShortly, host, cert.Subject.CommonName, cert.SerialNumber, expiresIn))
log.Printf(errExpiringShortly, host, cert.Subject.CommonName, cert.SerialNumber, expiresIn)
return fmt.Errorf(errExpiringShortly, host, cert.Subject.CommonName, cert.SerialNumber, expiresIn)
} else {
cErrs = append(cErrs, fmt.Errorf(errExpiringSoon, host, cert.Subject.CommonName, cert.SerialNumber, expiresIn/24))
log.Printf(errExpiringSoon, host, cert.Subject.CommonName, cert.SerialNumber, expiresIn/24)
return fmt.Errorf(errExpiringSoon, host, cert.Subject.CommonName, cert.SerialNumber, expiresIn/24)
}
}
// Check the signature algorithm, ignoring the root certificate.
if alg, exists := sunsetSigAlgs[cert.SignatureAlgorithm]; *checkSigAlg && exists && certNum != len(chain)-1 {
if cert.NotAfter.Equal(alg.sunsetsAt) || cert.NotAfter.After(alg.sunsetsAt) {
cErrs = append(cErrs, fmt.Errorf(errSunsetAlg, host, cert.Subject.CommonName, cert.SerialNumber, alg.name))
log.Printf(errSunsetAlg, host, cert.Subject.CommonName, cert.SerialNumber, alg.name)
return fmt.Errorf(errSunsetAlg, host, cert.Subject.CommonName, cert.SerialNumber, alg.name)
}
}
//result.certs = append(result.certs, certErrors{
// commonName: cert.Subject.CommonName,
// errs: cErrs,
//})
}
}
return nil
}