-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathclient.go
452 lines (381 loc) · 11.7 KB
/
client.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
package rep
import (
"bytes"
"crypto/tls"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"time"
"code.cloudfoundry.org/bbs/models"
"code.cloudfoundry.org/bbs/trace"
"code.cloudfoundry.org/lager/v3"
"code.cloudfoundry.org/tlsconfig"
"github.com/tedsuo/rata"
)
//go:generate counterfeiter -o repfakes/fake_client_factory.go . ClientFactory
type ClientFactory interface {
CreateClient(address, url, traceID string) (Client, error)
}
// capture the behavior described in the comment of this story
// https://www.pivotaltracker.com/story/show/130664747/comments/152863773
type TLSConfig struct {
RequireTLS bool
CertFile, KeyFile, CaCertFile string
ClientCacheSize int // the tls client cache size, 0 means use golang default value
}
// return true if all the certs files are set in the struct, i.e. not ""
func (config *TLSConfig) hasCreds() bool {
return config.CaCertFile != "" &&
config.KeyFile != "" &&
config.CertFile != ""
}
// pick either the old address or the new rep_url depending on the announced
// addresses and the tls config
func (config *TLSConfig) pickURL(address, repURL string) (string, error) {
secure := false
if repURL != "" {
url, err := url.Parse(repURL)
if err != nil {
return "", err
}
if url.Scheme == "https" {
secure = true
}
}
if !config.RequireTLS && !config.hasCreds() {
// cannot use tls
if secure {
return "", errors.New("https scheme not supported since certificates aren't provided")
}
// prefer repURL
if repURL != "" {
return repURL, nil
}
return address, nil
} else if !config.RequireTLS {
// prefer tls but don't require it
if repURL != "" {
return repURL, nil
}
return address, nil
} else {
// must use tls
if !secure {
return "", errors.New("https scheme is required but none of the addresses support it")
}
return repURL, nil
}
}
func (tlsConfig *TLSConfig) modifyTransport(client *http.Client) error {
if !tlsConfig.hasCreds() {
return nil
}
if transport, ok := client.Transport.(*http.Transport); ok {
config, err := tlsconfig.Build(
tlsconfig.WithInternalServiceDefaults(),
tlsconfig.WithIdentityFromFile(tlsConfig.CertFile, tlsConfig.KeyFile),
).Client(tlsconfig.WithAuthorityFromFile(tlsConfig.CaCertFile))
if err != nil {
return err
}
config.ClientSessionCache = tls.NewLRUClientSessionCache(tlsConfig.ClientCacheSize)
transport.TLSClientConfig = config
}
return nil
}
type clientFactory struct {
httpClient *http.Client
stateClient *http.Client
tlsConfig *TLSConfig
}
func NewClientFactory(httpClient, stateClient *http.Client, tlsConfig *TLSConfig) (ClientFactory, error) {
if tlsConfig == nil {
// zero values tls config
tlsConfig = &TLSConfig{}
}
if err := tlsConfig.modifyTransport(httpClient); err != nil {
return nil, err
}
if err := tlsConfig.modifyTransport(stateClient); err != nil {
return nil, err
}
return &clientFactory{
httpClient: httpClient,
stateClient: stateClient,
tlsConfig: tlsConfig,
}, nil
}
func (factory *clientFactory) CreateClient(address, url, traceID string) (Client, error) {
urlToUse, err := factory.tlsConfig.pickURL(address, url)
if err != nil {
return nil, err
}
return newClient(factory.httpClient, factory.stateClient, urlToUse, traceID), nil
}
//go:generate counterfeiter -o repfakes/fake_client.go . Client
type Client interface {
State(logger lager.Logger) (CellState, error)
Perform(logger lager.Logger, work Work) (Work, error)
UpdateLRPInstance(logger lager.Logger, update LRPUpdate) error
StopLRPInstance(logger lager.Logger, key models.ActualLRPKey, instanceKey models.ActualLRPInstanceKey) error
CancelTask(logger lager.Logger, taskGuid string) error
SetStateClient(stateClient *http.Client)
StateClientTimeout() time.Duration
}
//go:generate counterfeiter -o repfakes/fake_sim_client.go . SimClient
type SimClient interface {
Client
Reset() error
}
type client struct {
client *http.Client
stateClient *http.Client
address string
requestGenerator *rata.RequestGenerator
}
func newClient(httpClient, stateClient *http.Client, address string, traceID string) Client {
requestGenerator := rata.NewRequestGenerator(address, Routes)
if traceID != "" {
requestGenerator.Header.Add(trace.RequestIdHeader, traceID)
}
return &client{
client: httpClient,
stateClient: stateClient,
address: address,
requestGenerator: requestGenerator,
}
}
func (c *client) SetStateClient(stateClient *http.Client) {
c.stateClient = stateClient
}
func (c *client) StateClientTimeout() time.Duration {
return c.stateClient.Timeout
}
func (c *client) State(logger lager.Logger) (CellState, error) {
req, err := c.requestGenerator.CreateRequest(StateRoute, nil, nil)
if err != nil {
return CellState{}, err
}
resp, err := c.stateClient.Do(req)
if err != nil {
return CellState{}, err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return CellState{}, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
var state CellState
bs, err := io.ReadAll(resp.Body)
if err != nil {
return CellState{}, err
}
err = json.Unmarshal(bs, &state)
if err != nil {
return CellState{}, err
}
return state, nil
}
func (c *client) Perform(logger lager.Logger, work Work) (Work, error) {
body, err := json.Marshal(work)
if err != nil {
return Work{}, err
}
req, err := c.requestGenerator.CreateRequest(PerformRoute, nil, bytes.NewReader(body))
if err != nil {
return Work{}, err
}
resp, err := c.client.Do(req)
if err != nil {
return Work{}, err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return Work{}, fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
var failedWork Work
err = json.NewDecoder(resp.Body).Decode(&failedWork)
if err != nil {
return Work{}, err
}
return failedWork, nil
}
func (c *client) Reset() error {
req, err := c.requestGenerator.CreateRequest(SimResetRoute, nil, nil)
if err != nil {
return err
}
resp, err := c.client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return fmt.Errorf("unexpected status code: %d", resp.StatusCode)
}
return nil
}
func (c *client) UpdateLRPInstance(
logger lager.Logger,
update LRPUpdate,
) error {
start := time.Now()
loggerCopy := logger
logger = logger.Session("update-lrp", lager.Data{"process-guid": update.ProcessGuid,
"index": update.Index,
"domain": update.Domain,
"instance-guid": update.InstanceGUID,
})
logger.Info("starting")
params := rata.Params{
"process_guid": update.ProcessGuid,
"instance_guid": update.InstanceGUID,
}
body, err := json.Marshal(update)
if err != nil {
logger.Error("marshal-failed", err)
return err
}
req, err := c.requestGenerator.CreateRequest(UpdateLRPInstanceRoute, params, bytes.NewReader(body))
if err != nil {
logger.Error("connection-failed", err)
return err
}
req.Header.Set("Content-Type", "application/json")
resp, err := c.client.Do(req)
if err != nil {
logger.Error("request-failed", err)
return err
}
defer resp.Body.Close()
// We are assuming that a 404 means that the rep has not updated
// yet, but will roll soon. This is for backwards compatibility.
if resp.StatusCode == http.StatusNotFound {
logger.Error("failed-with-status", err, lager.Data{"status-code": resp.StatusCode, "msg": http.StatusText(resp.StatusCode)})
// The v1 UpdateLRPInstance route is only for updating InternalRoutes
// on old versions of rep. This is for backwards compatibility.
if update.InternalRoutes != nil {
update.MetricTags = nil
return c.updateLRPInstanceRoute_r0(loggerCopy, update)
}
return nil
}
if resp.StatusCode != http.StatusAccepted {
err := fmt.Errorf("http error: status code %d (%s)", resp.StatusCode, http.StatusText(resp.StatusCode))
logger.Error("failed-with-status", err, lager.Data{"status-code": resp.StatusCode, "msg": http.StatusText(resp.StatusCode)})
return err
}
logger.Info("completed", lager.Data{"duration": time.Since(start)})
return nil
}
func (c *client) updateLRPInstanceRoute_r0(
logger lager.Logger,
update LRPUpdate) error {
start := time.Now()
logger = logger.Session("update-lrp-r0", lager.Data{"process-guid": update.ProcessGuid,
"index": update.Index,
"domain": update.Domain,
"instance-guid": update.InstanceGUID,
})
logger.Info("starting")
body, err := json.Marshal(update)
if err != nil {
logger.Error("marshal-failed", err)
return err
}
params := rata.Params{
"process_guid": update.ProcessGuid,
"instance_guid": update.InstanceGUID,
}
req, err := c.requestGenerator.CreateRequest(UpdateLRPInstanceRoute_r0, params, bytes.NewReader(body))
if err != nil {
logger.Error("connection-failed", err)
return err
}
req.Header.Set("Content-Type", "application/json")
resp, err := c.client.Do(req)
if err != nil {
logger.Error("request-failed", err)
return err
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusNotFound {
logger.Error("failed-with-status", err, lager.Data{"status-code": resp.StatusCode, "msg": http.StatusText(resp.StatusCode)})
return nil
}
if resp.StatusCode != http.StatusAccepted {
err := fmt.Errorf("http error: status code %d (%s)", resp.StatusCode, http.StatusText(resp.StatusCode))
logger.Error("failed-with-status", err, lager.Data{"status-code": resp.StatusCode, "msg": http.StatusText(resp.StatusCode)})
return err
}
logger.Info("completed", lager.Data{"duration": time.Since(start)})
return nil
}
func (c *client) StopLRPInstance(
logger lager.Logger,
key models.ActualLRPKey,
instanceKey models.ActualLRPInstanceKey,
) error {
start := time.Now()
logger = logger.Session("stop-lrp", lager.Data{"process-guid": key.ProcessGuid,
"index": key.Index,
"domain": key.Domain,
"instance-key": instanceKey,
})
logger.Info("starting")
req, err := c.requestGenerator.CreateRequest(StopLRPInstanceRoute, stopParamsFromLRP(key, instanceKey), nil)
if err != nil {
logger.Error("connection-failed", err)
return err
}
req.Header.Set("Content-Type", "application/json")
resp, err := c.client.Do(req)
if err != nil {
logger.Error("request-failed", err)
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusAccepted {
err := fmt.Errorf("http error: status code %d (%s)", resp.StatusCode, http.StatusText(resp.StatusCode))
logger.Error("failed-with-status", err, lager.Data{"status-code": resp.StatusCode, "msg": http.StatusText(resp.StatusCode)})
return err
}
logger.Info("completed", lager.Data{"duration": time.Since(start)})
return nil
}
func (c *client) CancelTask(logger lager.Logger, taskGuid string) error {
start := time.Now()
logger = logger.Session("cancel-task", lager.Data{"task-guid": taskGuid})
logger.Info("starting")
req, err := c.requestGenerator.CreateRequest(CancelTaskRoute, rata.Params{"task_guid": taskGuid}, nil)
if err != nil {
logger.Error("connection-failed", err)
return err
}
resp, err := c.client.Do(req)
if err != nil {
logger.Error("request-failed", err)
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusAccepted {
err := fmt.Errorf("http error: status code %d (%s)", resp.StatusCode, http.StatusText(resp.StatusCode))
logger.Error("failed-with-status", err, lager.Data{"status-code": resp.StatusCode, "msg": http.StatusText(resp.StatusCode)})
return err
}
logger.Info("completed", lager.Data{"duration": time.Since(start)})
return nil
}
func stopParamsFromLRP(
key models.ActualLRPKey,
instanceKey models.ActualLRPInstanceKey,
) rata.Params {
return rata.Params{
"process_guid": key.ProcessGuid,
"instance_guid": instanceKey.InstanceGuid,
"index": strconv.Itoa(int(key.Index)),
}
}