forked from cloudfoundry/rep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconversion_helpers.go
451 lines (386 loc) · 13.7 KB
/
conversion_helpers.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
package rep
import (
"encoding/json"
"errors"
"fmt"
"net/url"
"strconv"
"strings"
"code.cloudfoundry.org/bbs/format"
"code.cloudfoundry.org/bbs/models"
"code.cloudfoundry.org/ecrhelper"
"code.cloudfoundry.org/executor"
"code.cloudfoundry.org/routing-info/internalroutes"
)
const (
LifecycleTag = "lifecycle"
ResultFileTag = "result-file"
DomainTag = "domain"
TaskLifecycle = "task"
LRPLifecycle = "lrp"
ProcessGuidTag = "process-guid"
InstanceGuidTag = "instance-guid"
ProcessIndexTag = "process-index"
VolumeDriversTag = "volume-drivers"
PlacementTagsTag = "placement-tags"
)
var (
ErrContainerMissingTags = errors.New("container is missing tags")
ErrInvalidProcessIndex = errors.New("container does not have a valid process index")
)
func ActualLRPKeyFromTags(tags executor.Tags) (*models.ActualLRPKey, error) {
if tags == nil {
return &models.ActualLRPKey{}, ErrContainerMissingTags
}
processIndex, err := strconv.Atoi(tags[ProcessIndexTag])
if err != nil {
return &models.ActualLRPKey{}, ErrInvalidProcessIndex
}
actualLRPKey := models.NewActualLRPKey(
tags[ProcessGuidTag],
int32(processIndex),
tags[DomainTag],
)
err = actualLRPKey.Validate()
if err != nil {
return &models.ActualLRPKey{}, err
}
return &actualLRPKey, nil
}
func ActualLRPInstanceKeyFromContainer(container executor.Container, cellID string) (*models.ActualLRPInstanceKey, error) {
if container.Tags == nil {
return &models.ActualLRPInstanceKey{}, ErrContainerMissingTags
}
actualLRPInstanceKey := models.NewActualLRPInstanceKey(
container.Tags[InstanceGuidTag],
cellID,
)
err := actualLRPInstanceKey.Validate()
if err != nil {
return &models.ActualLRPInstanceKey{}, err
}
return &actualLRPInstanceKey, nil
}
func ActualLRPNetInfoFromContainer(container executor.Container) (*models.ActualLRPNetInfo, error) {
ports := []*models.PortMapping{}
for _, port := range container.Ports {
ports = append(ports, models.NewPortMappingWithTLSProxy(
uint32(port.HostPort),
uint32(port.ContainerPort),
uint32(port.HostTLSProxyPort),
uint32(port.ContainerTLSProxyPort),
))
}
preferredAddress := models.ActualLRPNetInfo_PreferredAddressHost
if container.AdvertisePreferenceForInstanceAddress {
preferredAddress = models.ActualLRPNetInfo_PreferredAddressInstance
}
actualLRPNetInfo := models.NewActualLRPNetInfo(container.ExternalIP, container.InternalIP, preferredAddress, ports...)
err := actualLRPNetInfo.Validate()
if err != nil {
return nil, err
}
return &actualLRPNetInfo, nil
}
func LRPContainerGuid(processGuid, instanceGuid string) string {
return instanceGuid
}
const (
LayeringModeSingleLayer = "single-layer"
LayeringModeTwoLayer = "two-layer"
)
// ConvertPreloadedRootFS takes in a rootFS URL and a list of image layers and in most cases
// just returns the same rootFS URL and list of image layers.
//
// In the case where all of the following are true:
// - layeringMode == LayeringModeTwoLayer
// - the rootfs URL has a `preloaded` scheme
// - the list of image layers contains at least one image layer that has
// an `exclusive` layer type, `tgz` media type, and a `sha256` digest algorithm.
// then the rootfs URL will be converted to have a `preloaded+layer` scheme and
// a query string that references the first image layer that matches all of those
// restrictions. This image layer will also be removed from the list.
func ConvertPreloadedRootFS(rootFS string, imageLayers []*models.ImageLayer, layeringMode string) (string, []*models.ImageLayer) {
if layeringMode != LayeringModeTwoLayer {
return rootFS, imageLayers
}
if !strings.HasPrefix(rootFS, "preloaded:") {
return rootFS, imageLayers
}
newImageLayers := []*models.ImageLayer{}
var newRootFS string
for _, v := range imageLayers {
isExclusiveLayer := v.GetLayerType() == models.LayerTypeExclusive
isMediaTypeTgz := v.GetMediaType() == models.MediaTypeTgz
isSha256 := v.GetDigestAlgorithm() == models.DigestAlgorithmSha256
suitableLayer := isExclusiveLayer && isMediaTypeTgz && isSha256
if suitableLayer && newRootFS == "" {
rootFSArray := strings.Split(rootFS, ":")
newRootFS = fmt.Sprintf("preloaded+layer:%s?layer=%s&layer_path=%s&layer_digest=%s",
rootFSArray[1],
url.QueryEscape(v.GetUrl()),
url.QueryEscape(v.DestinationPath),
url.QueryEscape(v.DigestValue),
)
continue
}
newImageLayers = append(newImageLayers, v)
}
if newRootFS == "" {
return rootFS, imageLayers
}
return newRootFS, newImageLayers
}
type RunRequestConversionHelper struct {
ECRHelper ecrhelper.ECRHelper
}
func (rrch RunRequestConversionHelper) NewRunRequestFromDesiredLRP(
containerGuid string,
desiredLRP *models.DesiredLRP,
lrpKey *models.ActualLRPKey,
lrpInstanceKey *models.ActualLRPInstanceKey,
stackPathMap StackPathMap,
layeringMode string,
) (executor.RunRequest, error) {
desiredLRPCopy := *desiredLRP
desiredLRP = &desiredLRPCopy
desiredLRP.RootFs, desiredLRP.ImageLayers = ConvertPreloadedRootFS(desiredLRP.RootFs, desiredLRP.ImageLayers, layeringMode)
desiredLRP = desiredLRP.VersionDownTo(format.V2)
mounts, err := convertVolumeMounts(desiredLRP.VolumeMounts)
if err != nil {
return executor.RunRequest{}, err
}
rootFSPath, err := stackPathMap.PathForRootFS(desiredLRP.RootFs)
if err != nil {
return executor.RunRequest{}, err
}
metricTags, err := models.ConvertMetricTags(desiredLRP.MetricTags, map[models.MetricTagValue_DynamicValue]interface{}{
models.MetricTagDynamicValueIndex: lrpKey.Index,
models.MetricTagDynamicValueInstanceGuid: lrpInstanceKey.InstanceGuid,
})
if err != nil {
return executor.RunRequest{}, err
}
username, password, err := rrch.convertCredentials(rootFSPath, desiredLRP.ImageUsername, desiredLRP.ImagePassword)
if err != nil {
return executor.RunRequest{}, err
}
internalRoutes, err := internalroutes.InternalRoutesFromRoutingInfo(*desiredLRP.Routes)
if err != nil {
return executor.RunRequest{}, err
}
runInfo := executor.RunInfo{
RootFSPath: rootFSPath,
CPUWeight: uint(desiredLRP.CpuWeight),
Ports: ConvertPortMappings(desiredLRP.Ports),
InternalRoutes: internalRoutes,
LogConfig: executor.LogConfig{
Guid: desiredLRP.LogGuid,
Index: int(lrpKey.Index),
SourceName: desiredLRP.LogSource,
Tags: metricTags,
},
MetricsConfig: executor.MetricsConfig{
Guid: desiredLRP.MetricsGuid,
Index: int(lrpKey.Index),
Tags: metricTags,
},
StartTimeoutMs: uint(desiredLRP.StartTimeoutMs),
Privileged: desiredLRP.Privileged,
CachedDependencies: ConvertCachedDependencies(desiredLRP.CachedDependencies),
Setup: desiredLRP.Setup,
Action: desiredLRP.Action,
Monitor: desiredLRP.Monitor,
CheckDefinition: desiredLRP.CheckDefinition,
EgressRules: desiredLRP.EgressRules,
Env: append([]executor.EnvironmentVariable{
{Name: "INSTANCE_GUID", Value: lrpInstanceKey.InstanceGuid},
{Name: "INSTANCE_INDEX", Value: strconv.Itoa(int(lrpKey.Index))},
{Name: "CF_INSTANCE_GUID", Value: lrpInstanceKey.InstanceGuid},
{Name: "CF_INSTANCE_INDEX", Value: strconv.Itoa(int(lrpKey.Index))},
}, executor.EnvironmentVariablesFromModel(desiredLRP.EnvironmentVariables)...),
TrustedSystemCertificatesPath: desiredLRP.TrustedSystemCertificatesPath,
VolumeMounts: mounts,
Network: convertNetwork(desiredLRP.Network),
CertificateProperties: convertCertificateProperties(desiredLRP.CertificateProperties),
ImageUsername: username,
ImagePassword: password,
EnableContainerProxy: true,
Sidecars: convertSidecars(desiredLRP.Sidecars),
LogRateLimitBytesPerSecond: convertLogRateLimit(desiredLRP.LogRateLimit),
}
// No need for the envoy proxy if there are no ports. This flag controls the
// step transformation (either prevent or include a run_step to run envoy) as
// well as the proxy config handler to avoid generate the config
// unecessarily.
if len(runInfo.Ports) == 0 {
runInfo.EnableContainerProxy = false
}
tags := executor.Tags{}
return executor.NewRunRequest(containerGuid, &runInfo, tags), nil
}
func (rrch RunRequestConversionHelper) NewRunRequestFromTask(task *models.Task, stackPathMap StackPathMap, layeringMode string) (executor.RunRequest, error) {
taskDefinitionCopy := *task.TaskDefinition
taskCopy := *task
task = &taskCopy
task.TaskDefinition = &taskDefinitionCopy
task.RootFs, task.ImageLayers = ConvertPreloadedRootFS(task.RootFs, task.ImageLayers, layeringMode)
cachedDependencies, setupAction := convertImageLayers(task.TaskDefinition)
mounts, err := convertVolumeMounts(task.VolumeMounts)
if err != nil {
return executor.RunRequest{}, err
}
rootFSPath, err := stackPathMap.PathForRootFS(task.RootFs)
if err != nil {
return executor.RunRequest{}, err
}
username, password, err := rrch.convertCredentials(rootFSPath, task.ImageUsername, task.ImagePassword)
if err != nil {
return executor.RunRequest{}, err
}
tags := executor.Tags{
ResultFileTag: task.ResultFile,
}
runInfo := executor.RunInfo{
RootFSPath: rootFSPath,
CPUWeight: uint(task.CpuWeight),
Privileged: task.Privileged,
LogConfig: executor.LogConfig{
Guid: task.LogGuid,
SourceName: task.LogSource,
},
MetricsConfig: executor.MetricsConfig{
Guid: task.MetricsGuid,
},
CachedDependencies: ConvertCachedDependencies(cachedDependencies),
Action: task.Action,
Setup: setupAction,
Env: executor.EnvironmentVariablesFromModel(task.EnvironmentVariables),
EgressRules: task.EgressRules,
TrustedSystemCertificatesPath: task.TrustedSystemCertificatesPath,
VolumeMounts: mounts,
Network: convertNetwork(task.Network),
CertificateProperties: convertCertificateProperties(task.CertificateProperties),
ImageUsername: username,
ImagePassword: password,
EnableContainerProxy: false,
LogRateLimitBytesPerSecond: convertLogRateLimit(task.LogRateLimit),
}
return executor.NewRunRequest(task.TaskGuid, &runInfo, tags), nil
}
func ConvertCachedDependencies(modelDeps []*models.CachedDependency) []executor.CachedDependency {
execDeps := make([]executor.CachedDependency, len(modelDeps))
for i := range modelDeps {
execDeps[i] = ConvertCachedDependency(modelDeps[i])
}
return execDeps
}
func ConvertCachedDependency(modelDep *models.CachedDependency) executor.CachedDependency {
return executor.CachedDependency{
Name: modelDep.Name,
From: modelDep.From,
To: modelDep.To,
CacheKey: modelDep.CacheKey,
LogSource: modelDep.LogSource,
ChecksumValue: modelDep.ChecksumValue,
ChecksumAlgorithm: modelDep.ChecksumAlgorithm,
}
}
func convertImageLayers(t *models.TaskDefinition) ([]*models.CachedDependency, *models.Action) {
layers := models.ImageLayers(t.ImageLayers)
cachedDependencies := append(layers.ToCachedDependencies(), t.CachedDependencies...)
action := layers.ToDownloadActions(t.LegacyDownloadUser, nil)
return cachedDependencies, action
}
func (rrch RunRequestConversionHelper) convertCredentials(rootFS string, username string, password string) (string, string, error) {
isECRRepo, err := rrch.ECRHelper.IsECRRepo(rootFS)
if err != nil {
return "", "", err
}
if !isECRRepo {
return username, password, nil
}
username, password, err = rrch.ECRHelper.GetECRCredentials(rootFS, username, password)
if err != nil {
return "", "", fmt.Errorf("failed to get ECR credentials: %s", err.Error())
}
return username, password, nil
}
func convertVolumeMounts(volumeMounts []*models.VolumeMount) ([]executor.VolumeMount, error) {
execMnts := make([]executor.VolumeMount, len(volumeMounts))
for i := range volumeMounts {
var err error
execMnts[i], err = convertVolumeMount(volumeMounts[i])
if err != nil {
return nil, err
}
}
return execMnts, nil
}
func convertVolumeMount(volumeMnt *models.VolumeMount) (executor.VolumeMount, error) {
var config map[string]interface{}
if len(volumeMnt.Shared.MountConfig) > 0 {
err := json.Unmarshal([]byte(volumeMnt.Shared.MountConfig), &config)
if err != nil {
return executor.VolumeMount{}, err
}
}
var mode executor.BindMountMode
switch volumeMnt.Mode {
case "r":
mode = executor.BindMountModeRO
case "rw":
mode = executor.BindMountModeRW
default:
return executor.VolumeMount{}, errors.New("unrecognized volume mount mode")
}
return executor.VolumeMount{
Driver: volumeMnt.Driver,
VolumeId: volumeMnt.Shared.VolumeId,
ContainerPath: volumeMnt.ContainerDir,
Mode: mode,
Config: config,
}, nil
}
func convertNetwork(network *models.Network) *executor.Network {
if network == nil {
return nil
}
return &executor.Network{
Properties: network.Properties,
}
}
func convertCertificateProperties(props *models.CertificateProperties) executor.CertificateProperties {
if props == nil {
return executor.CertificateProperties{}
}
return executor.CertificateProperties{
OrganizationalUnit: props.OrganizationalUnit,
}
}
func convertSidecars(sidecars []*models.Sidecar) []executor.Sidecar {
es := []executor.Sidecar{}
for _, sidecar := range sidecars {
es = append(es, executor.Sidecar{
Action: sidecar.Action,
MemoryMB: sidecar.MemoryMb,
DiskMB: sidecar.DiskMb,
})
}
return es
}
func convertLogRateLimit(logRateLimit *models.LogRateLimit) int64 {
if logRateLimit == nil {
return -1
}
return logRateLimit.BytesPerSecond
}
func ConvertPortMappings(containerPorts []uint32) []executor.PortMapping {
out := []executor.PortMapping{}
for _, port := range containerPorts {
out = append(out, executor.PortMapping{
ContainerPort: uint16(port),
})
}
return out
}