forked from juju/juju
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clouds.go
571 lines (501 loc) · 17 KB
/
clouds.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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
// Copyright 2015 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
// Package cloud provides functionality to parse information
// describing clouds, including regions, supported auth types etc.
package cloud
import (
"fmt"
"io/ioutil"
"os"
"reflect"
"sort"
"strings"
"github.com/juju/errors"
"github.com/juju/utils"
"gopkg.in/yaml.v2"
"github.com/juju/juju/juju/osenv"
"github.com/juju/juju/provider/lxd/lxdnames"
)
//go:generate go run ../generate/filetoconst/filetoconst.go fallbackPublicCloudInfo fallback-public-cloud.yaml fallback_public_cloud.go 2015 cloud
// AuthType is the type of authentication used by the cloud.
type AuthType string
// AuthTypes is defined to allow sorting AuthType slices.
type AuthTypes []AuthType
func (a AuthTypes) Len() int { return len(a) }
func (a AuthTypes) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a AuthTypes) Less(i, j int) bool { return a[i] < a[j] }
const (
// AccessKeyAuthType is an authentication type using a key and secret.
AccessKeyAuthType AuthType = "access-key"
// UserPassAuthType is an authentication type using a username and password.
UserPassAuthType AuthType = "userpass"
// OAuth1AuthType is an authentication type using oauth1.
OAuth1AuthType AuthType = "oauth1"
// OAuth2AuthType is an authentication type using oauth2.
OAuth2AuthType AuthType = "oauth2"
// JSONFileAuthType is an authentication type that takes a path to
// a JSON file.
JSONFileAuthType AuthType = "jsonfile"
// CertificateAuthType is an authentication type using certificates.
CertificateAuthType AuthType = "certificate"
// EmptyAuthType is the authentication type used for providers
// that require no credentials, e.g. "lxd", and "manual".
EmptyAuthType AuthType = "empty"
// AuthTypesKey is the name of the key in a cloud config or cloud schema
// that holds the cloud's auth types.
AuthTypesKey = "auth-types"
// EndpointKey is the name of the key in a cloud config or cloud schema
// that holds the cloud's endpoint url.
EndpointKey = "endpoint"
// RegionsKey is the name of the key in a cloud schema that holds the list
// of regions a cloud supports.
RegionsKey = "regions"
)
// Attrs serves as a map to hold regions specific configuration attributes.
// This serves to reduce confusion over having a nested map, i.e.
// map[string]map[string]interface{}
type Attrs map[string]interface{}
// RegionConfig holds a map of regions and the attributes that serve as the
// region specific configuration options. This allows model inheritance to
// function, providing a place to store configuration for a specific region
// which is passed down to other models under the same controller.
type RegionConfig map[string]Attrs
// Cloud is a cloud definition.
type Cloud struct {
// Name of the cloud.
Name string
// Type is the type of cloud, eg ec2, openstack etc.
// This is one of the provider names registered with
// environs.RegisterProvider.
Type string
// Description describes the type of cloud.
Description string
// AuthTypes are the authentication modes supported by the cloud.
AuthTypes AuthTypes
// Endpoint is the default endpoint for the cloud regions, may be
// overridden by a region.
Endpoint string
// IdentityEndpoint is the default identity endpoint for the cloud
// regions, may be overridden by a region.
IdentityEndpoint string
// StorageEndpoint is the default storage endpoint for the cloud
// regions, may be overridden by a region.
StorageEndpoint string
// Regions are the regions available in the cloud.
//
// Regions is a slice, and not a map, because order is important.
// The first region in the slice is the default region for the
// cloud.
Regions []Region
// Config contains optional cloud-specific configuration to use
// when bootstrapping Juju in this cloud. The cloud configuration
// will be combined with Juju-generated, and user-supplied values;
// user-supplied values taking precedence.
Config map[string]interface{}
// RegionConfig contains optional region specific configuration.
// Like Config above, this will be combined with Juju-generated and user
// supplied values; with user supplied values taking precedence.
RegionConfig RegionConfig
}
// Region is a cloud region.
type Region struct {
// Name is the name of the region.
Name string
// Endpoint is the region's primary endpoint URL.
Endpoint string
// IdentityEndpoint is the region's identity endpoint URL.
// If the cloud/region does not have an identity-specific
// endpoint URL, this will be empty.
IdentityEndpoint string
// StorageEndpoint is the region's storage endpoint URL.
// If the cloud/region does not have a storage-specific
// endpoint URL, this will be empty.
StorageEndpoint string
}
// cloudSet contains cloud definitions, used for marshalling and
// unmarshalling.
type cloudSet struct {
// Clouds is a map of cloud definitions, keyed on cloud name.
Clouds map[string]*cloud `yaml:"clouds"`
}
// cloud is equivalent to Cloud, for marshalling and unmarshalling.
type cloud struct {
Type string `yaml:"type"`
Description string `yaml:"description,omitempty"`
AuthTypes []AuthType `yaml:"auth-types,omitempty,flow"`
Endpoint string `yaml:"endpoint,omitempty"`
IdentityEndpoint string `yaml:"identity-endpoint,omitempty"`
StorageEndpoint string `yaml:"storage-endpoint,omitempty"`
Regions regions `yaml:"regions,omitempty"`
Config map[string]interface{} `yaml:"config,omitempty"`
RegionConfig RegionConfig `yaml:"region-config,omitempty"`
}
// regions is a collection of regions, either as a map and/or
// as a yaml.MapSlice.
//
// When marshalling, we populate the Slice field only. This is
// necessary for us to control the order of map items.
//
// When unmarshalling, we populate both Map and Slice. Map is
// populated to simplify conversion to Region objects. Slice
// is populated so we can identify the first map item, which
// becomes the default region for the cloud.
type regions struct {
Map map[string]*region
Slice yaml.MapSlice
}
// region is equivalent to Region, for marshalling and unmarshalling.
type region struct {
Endpoint string `yaml:"endpoint,omitempty"`
IdentityEndpoint string `yaml:"identity-endpoint,omitempty"`
StorageEndpoint string `yaml:"storage-endpoint,omitempty"`
}
//DefaultLXD is the name of the default lxd cloud.
const DefaultLXD = "localhost"
// BuiltInClouds work out of the box.
var BuiltInClouds = map[string]Cloud{
DefaultLXD: {
Name: DefaultLXD,
Type: lxdnames.ProviderType,
AuthTypes: []AuthType{EmptyAuthType},
Regions: []Region{{Name: lxdnames.DefaultRegion}},
Description: defaultCloudDescription[lxdnames.ProviderType],
},
}
// CloudByName returns the cloud with the specified name.
// If there exists no cloud with the specified name, an
// error satisfying errors.IsNotFound will be returned.
//
// TODO(axw) write unit tests for this.
func CloudByName(name string) (*Cloud, error) {
// Personal clouds take precedence.
personalClouds, err := PersonalCloudMetadata()
if err != nil {
return nil, errors.Trace(err)
}
if cloud, ok := personalClouds[name]; ok {
return &cloud, nil
}
clouds, _, err := PublicCloudMetadata(JujuPublicCloudsPath())
if err != nil {
return nil, errors.Trace(err)
}
if cloud, ok := clouds[name]; ok {
return &cloud, nil
}
if cloud, ok := BuiltInClouds[name]; ok {
return &cloud, nil
}
return nil, errors.NotFoundf("cloud %s", name)
}
// RegionByName finds the region in the given slice with the
// specified name, with case folding.
func RegionByName(regions []Region, name string) (*Region, error) {
for _, region := range regions {
if !strings.EqualFold(region.Name, name) {
continue
}
return ®ion, nil
}
return nil, errors.NewNotFound(nil, fmt.Sprintf(
"region %q not found (expected one of %q)",
name, RegionNames(regions),
))
}
// RegionNames returns a sorted list of the names of the given regions.
func RegionNames(regions []Region) []string {
names := make([]string, len(regions))
for i, region := range regions {
names[i] = region.Name
}
sort.Strings(names)
return names
}
// JujuPublicCloudsPath is the location where public cloud information is
// expected to be found. Requires JUJU_HOME to be set.
func JujuPublicCloudsPath() string {
return osenv.JujuXDGDataHomePath("public-clouds.yaml")
}
// PublicCloudMetadata looks in searchPath for cloud metadata files and if none
// are found, returns the fallback public cloud metadata.
func PublicCloudMetadata(searchPath ...string) (result map[string]Cloud, fallbackUsed bool, err error) {
for _, file := range searchPath {
data, err := ioutil.ReadFile(file)
if err != nil && os.IsNotExist(err) {
continue
}
if err != nil {
return nil, false, errors.Trace(err)
}
clouds, err := ParseCloudMetadata(data)
if err != nil {
return nil, false, errors.Trace(err)
}
return clouds, false, err
}
clouds, err := ParseCloudMetadata([]byte(fallbackPublicCloudInfo))
return clouds, true, err
}
// ParseOneCloud parses the given yaml bytes into a single Cloud metadata.
func ParseOneCloud(data []byte) (Cloud, error) {
c := &cloud{}
if err := yaml.Unmarshal(data, &c); err != nil {
return Cloud{}, errors.Annotate(err, "cannot unmarshal yaml cloud metadata")
}
return cloudFromInternal(c), nil
}
// ParseCloudMetadata parses the given yaml bytes into Clouds metadata.
func ParseCloudMetadata(data []byte) (map[string]Cloud, error) {
var metadata cloudSet
if err := yaml.Unmarshal(data, &metadata); err != nil {
return nil, errors.Annotate(err, "cannot unmarshal yaml cloud metadata")
}
// Translate to the exported type. For each cloud, we store
// the first region for the cloud as its default region.
clouds := make(map[string]Cloud)
for name, cloud := range metadata.Clouds {
details := cloudFromInternal(cloud)
details.Name = name
if details.Description == "" {
var ok bool
if details.Description, ok = defaultCloudDescription[name]; !ok {
details.Description = defaultCloudDescription[cloud.Type]
}
}
clouds[name] = details
}
return clouds, nil
}
var defaultCloudDescription = map[string]string{
"aws": "Amazon Web Services",
"aws-china": "Amazon China",
"aws-gov": "Amazon (USA Government)",
"google": "Google Cloud Platform",
"azure": "Microsoft Azure",
"azure-china": "Microsoft Azure China",
"rackspace": "Rackspace Cloud",
"joyent": "Joyent Cloud",
"cloudsigma": "CloudSigma Cloud",
"lxd": "LXD Container Hypervisor",
"maas": "Metal As A Service",
"openstack": "Openstack Cloud",
}
// WritePublicCloudMetadata marshals to YAML and writes the cloud metadata
// to the public cloud file.
func WritePublicCloudMetadata(cloudsMap map[string]Cloud) error {
data, err := marshalCloudMetadata(cloudsMap)
if err != nil {
return errors.Trace(err)
}
return utils.AtomicWriteFile(JujuPublicCloudsPath(), data, 0600)
}
// IsSameCloudMetadata returns true if both meta and meta2 contain the
// same cloud metadata.
func IsSameCloudMetadata(meta1, meta2 map[string]Cloud) (bool, error) {
// The easiest approach is to simply marshall to YAML and compare.
yaml1, err := marshalCloudMetadata(meta1)
if err != nil {
return false, err
}
yaml2, err := marshalCloudMetadata(meta2)
if err != nil {
return false, err
}
return string(yaml1) == string(yaml2), nil
}
// marshalCloudMetadata marshals the given clouds to YAML.
func marshalCloudMetadata(cloudsMap map[string]Cloud) ([]byte, error) {
clouds := cloudSet{make(map[string]*cloud)}
for name, metadata := range cloudsMap {
clouds.Clouds[name] = cloudToInternal(metadata)
}
data, err := yaml.Marshal(clouds)
if err != nil {
return nil, errors.Annotate(err, "cannot marshal cloud metadata")
}
return data, nil
}
// MarshalCloud marshals a Cloud to an opaque byte array.
func MarshalCloud(cloud Cloud) ([]byte, error) {
return yaml.Marshal(cloudToInternal(cloud))
}
// UnmarshalCloud unmarshals a Cloud from a byte array produced by MarshalCloud.
func UnmarshalCloud(in []byte) (Cloud, error) {
var internal cloud
if err := yaml.Unmarshal(in, &internal); err != nil {
return Cloud{}, errors.Annotate(err, "cannot unmarshal yaml cloud metadata")
}
return cloudFromInternal(&internal), nil
}
func cloudToInternal(in Cloud) *cloud {
var regions regions
for _, r := range in.Regions {
regions.Slice = append(regions.Slice, yaml.MapItem{
r.Name, region{
r.Endpoint,
r.IdentityEndpoint,
r.StorageEndpoint,
},
})
}
return &cloud{
Type: in.Type,
AuthTypes: in.AuthTypes,
Endpoint: in.Endpoint,
IdentityEndpoint: in.IdentityEndpoint,
StorageEndpoint: in.StorageEndpoint,
Regions: regions,
Config: in.Config,
RegionConfig: in.RegionConfig,
}
}
func cloudFromInternal(in *cloud) Cloud {
var regions []Region
if len(in.Regions.Map) > 0 {
for _, item := range in.Regions.Slice {
name := fmt.Sprint(item.Key)
r := in.Regions.Map[name]
if r == nil {
// r will be nil if none of the fields in
// the YAML are set.
regions = append(regions, Region{Name: name})
} else {
regions = append(regions, Region{
name,
r.Endpoint,
r.IdentityEndpoint,
r.StorageEndpoint,
})
}
}
}
meta := Cloud{
Type: in.Type,
AuthTypes: in.AuthTypes,
Endpoint: in.Endpoint,
IdentityEndpoint: in.IdentityEndpoint,
StorageEndpoint: in.StorageEndpoint,
Regions: regions,
Config: in.Config,
RegionConfig: in.RegionConfig,
Description: in.Description,
}
meta.denormaliseMetadata()
return meta
}
// MarshalYAML implements the yaml.Marshaler interface.
func (r regions) MarshalYAML() (interface{}, error) {
return r.Slice, nil
}
// UnmarshalYAML implements the yaml.Unmarshaler interface.
func (r *regions) UnmarshalYAML(f func(interface{}) error) error {
if err := f(&r.Map); err != nil {
return err
}
return f(&r.Slice)
}
// To keep the metadata concise, attributes on the metadata struct which
// have the same value for each item may be moved up to a higher level in
// the tree. denormaliseMetadata descends the tree and fills in any missing
// attributes with values from a higher level.
func (cloud Cloud) denormaliseMetadata() {
for name, region := range cloud.Regions {
r := region
inherit(&r, &cloud)
cloud.Regions[name] = r
}
}
type structTags map[reflect.Type]map[string]int
var tagsForType structTags = make(structTags)
// RegisterStructTags ensures the yaml tags for the given structs are able to be used
// when parsing cloud metadata.
func RegisterStructTags(vals ...interface{}) {
tags := mkTags(vals...)
for k, v := range tags {
tagsForType[k] = v
}
}
func init() {
RegisterStructTags(Cloud{}, Region{})
}
func mkTags(vals ...interface{}) map[reflect.Type]map[string]int {
typeMap := make(map[reflect.Type]map[string]int)
for _, v := range vals {
t := reflect.TypeOf(v)
typeMap[t] = yamlTags(t)
}
return typeMap
}
// yamlTags returns a map from yaml tag to the field index for the string fields in the given type.
func yamlTags(t reflect.Type) map[string]int {
if t.Kind() != reflect.Struct {
panic(errors.Errorf("cannot get yaml tags on type %s", t))
}
tags := make(map[string]int)
for i := 0; i < t.NumField(); i++ {
f := t.Field(i)
if f.Type != reflect.TypeOf("") {
continue
}
if tag := f.Tag.Get("yaml"); tag != "" {
if i := strings.Index(tag, ","); i >= 0 {
tag = tag[0:i]
}
if tag == "-" {
continue
}
if tag != "" {
f.Name = tag
}
}
tags[f.Name] = i
}
return tags
}
// inherit sets any blank fields in dst to their equivalent values in fields in src that have matching json tags.
// The dst parameter must be a pointer to a struct.
func inherit(dst, src interface{}) {
for tag := range tags(dst) {
setFieldByTag(dst, tag, fieldByTag(src, tag), false)
}
}
// tags returns the field offsets for the JSON tags defined by the given value, which must be
// a struct or a pointer to a struct.
func tags(x interface{}) map[string]int {
t := reflect.TypeOf(x)
if t.Kind() == reflect.Ptr {
t = t.Elem()
}
if t.Kind() != reflect.Struct {
panic(errors.Errorf("expected struct, not %s", t))
}
if tagm := tagsForType[t]; tagm != nil {
return tagm
}
panic(errors.Errorf("%s not found in type table", t))
}
// fieldByTag returns the value for the field in x with the given JSON tag, or "" if there is no such field.
func fieldByTag(x interface{}, tag string) string {
tagm := tags(x)
v := reflect.ValueOf(x)
if v.Kind() == reflect.Ptr {
v = v.Elem()
}
if i, ok := tagm[tag]; ok {
return v.Field(i).Interface().(string)
}
return ""
}
// setFieldByTag sets the value for the field in x with the given JSON tag to val.
// The override parameter specifies whether the value will be set even if the original value is non-empty.
func setFieldByTag(x interface{}, tag, val string, override bool) {
i, ok := tags(x)[tag]
if !ok {
return
}
v := reflect.ValueOf(x).Elem()
f := v.Field(i)
if override || f.Interface().(string) == "" {
f.Set(reflect.ValueOf(val))
}
}