-
Notifications
You must be signed in to change notification settings - Fork 937
/
Copy pathutils.go
454 lines (367 loc) · 12.4 KB
/
utils.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
package main
import (
"fmt"
"io"
"net/http"
"os"
"reflect"
"sort"
"strings"
"github.com/canonical/lxd/client"
"github.com/canonical/lxd/lxc/config"
"github.com/canonical/lxd/shared"
"github.com/canonical/lxd/shared/api"
"github.com/canonical/lxd/shared/i18n"
"github.com/canonical/lxd/shared/termios"
)
// Batch operations.
type batchResult struct {
err error
name string
}
func runBatch(names []string, action func(name string) error) []batchResult {
chResult := make(chan batchResult, len(names))
for _, name := range names {
go func(name string) {
chResult <- batchResult{action(name), name}
}(name)
}
results := []batchResult{}
for range names {
results = append(results, <-chResult)
}
return results
}
// getProfileDevices retrieves devices from a list of profiles, if the list is empty the default profile is used.
func getProfileDevices(destRemote lxd.InstanceServer, serverSideProfiles []string) (map[string]map[string]string, error) {
var profiles []string
// If the list of profiles is empty then LXD would apply the default profile on the server side.
if len(serverSideProfiles) == 0 {
profiles = []string{"default"}
} else {
profiles = serverSideProfiles
}
profileDevices := make(map[string]map[string]string)
// Get the effective expanded devices by overlaying each profile's devices in order.
for _, profileName := range profiles {
profile, _, err := destRemote.GetProfile(profileName)
if err != nil {
return nil, fmt.Errorf(i18n.G("Failed loading profile %q: %w"), profileName, err)
}
for deviceName, device := range profile.Devices {
profileDevices[deviceName] = device
}
}
return profileDevices, nil
}
// Add a device to an instance.
func instanceDeviceAdd(client lxd.InstanceServer, name string, devName string, dev map[string]string) error {
// Get the instance entry
inst, etag, err := client.GetInstance(name)
if err != nil {
return err
}
// Check if the device already exists
_, ok := inst.Devices[devName]
if ok {
return fmt.Errorf(i18n.G("Device already exists: %s"), devName)
}
inst.Devices[devName] = dev
op, err := client.UpdateInstance(name, inst.Writable(), etag)
if err != nil {
return err
}
return op.Wait()
}
// Add a device to a profile.
func profileDeviceAdd(client lxd.InstanceServer, name string, devName string, dev map[string]string) error {
// Get the profile entry
profile, profileEtag, err := client.GetProfile(name)
if err != nil {
return err
}
// Check if the device already exists
_, ok := profile.Devices[devName]
if ok {
return fmt.Errorf(i18n.G("Device already exists: %s"), devName)
}
// Add the device to the instance
profile.Devices[devName] = dev
err = client.UpdateProfile(name, profile.Writable(), profileEtag)
if err != nil {
return err
}
return nil
}
// parseDeviceOverrides parses device overrides of the form "<deviceName>,<key>=<value>" into a device map.
// The resulting device map is unlikely to contain valid devices as these are simply values to be overridden.
func parseDeviceOverrides(deviceOverrideArgs []string) (map[string]map[string]string, error) {
deviceMap := map[string]map[string]string{}
for _, entry := range deviceOverrideArgs {
if !strings.Contains(entry, "=") || !strings.Contains(entry, ",") {
return nil, fmt.Errorf(i18n.G("Bad device override syntax, expecting <device>,<key>=<value>: %s"), entry)
}
deviceFields := strings.SplitN(entry, ",", 2)
keyFields := strings.SplitN(deviceFields[1], "=", 2)
if deviceMap[deviceFields[0]] == nil {
deviceMap[deviceFields[0]] = map[string]string{}
}
deviceMap[deviceFields[0]][keyFields[0]] = keyFields[1]
}
return deviceMap, nil
}
// IsAliasesSubset returns true if the first array is completely contained in the second array.
func IsAliasesSubset(a1 []api.ImageAlias, a2 []api.ImageAlias) bool {
set := make(map[string]interface{})
for _, alias := range a2 {
set[alias.Name] = nil
}
for _, alias := range a1 {
_, found := set[alias.Name]
if !found {
return false
}
}
return true
}
// GetCommonAliases returns the common aliases between a list of aliases and all the existing ones.
func GetCommonAliases(client lxd.InstanceServer, aliases ...api.ImageAlias) ([]api.ImageAliasesEntry, error) {
if len(aliases) == 0 {
return nil, nil
}
names := make([]string, len(aliases))
for i, alias := range aliases {
names[i] = alias.Name
}
// 'GetExistingAliases' which is using 'sort.SearchStrings' requires sorted slice
sort.Strings(names)
resp, err := client.GetImageAliases()
if err != nil {
return nil, err
}
return GetExistingAliases(names, resp), nil
}
// Create the specified image aliases, updating those that already exist.
func ensureImageAliases(client lxd.InstanceServer, aliases []api.ImageAlias, fingerprint string) error {
if len(aliases) == 0 {
return nil
}
names := make([]string, len(aliases))
for i, alias := range aliases {
names[i] = alias.Name
}
sort.Strings(names)
resp, err := client.GetImageAliases()
if err != nil {
return err
}
// Delete existing aliases that match provided ones
for _, alias := range GetExistingAliases(names, resp) {
err := client.DeleteImageAlias(alias.Name)
if err != nil {
return fmt.Errorf(i18n.G("Failed to remove alias %s: %w"), alias.Name, err)
}
}
// Create new aliases.
for _, alias := range aliases {
aliasPost := api.ImageAliasesPost{}
aliasPost.Name = alias.Name
aliasPost.Target = fingerprint
err := client.CreateImageAlias(aliasPost)
if err != nil {
return fmt.Errorf(i18n.G("Failed to create alias %s: %w"), alias.Name, err)
}
}
return nil
}
// GetExistingAliases returns the intersection between a list of aliases and all the existing ones.
func GetExistingAliases(aliases []string, allAliases []api.ImageAliasesEntry) []api.ImageAliasesEntry {
existing := []api.ImageAliasesEntry{}
for _, alias := range allAliases {
name := alias.Name
pos := sort.SearchStrings(aliases, name)
if pos < len(aliases) && aliases[pos] == name {
existing = append(existing, alias)
}
}
return existing
}
func getConfig(args ...string) (map[string]string, error) {
if len(args) == 2 && !strings.Contains(args[0], "=") {
if args[1] == "-" && !termios.IsTerminal(getStdinFd()) {
buf, err := io.ReadAll(os.Stdin)
if err != nil {
return nil, fmt.Errorf(i18n.G("Can't read from stdin: %w"), err)
}
args[1] = string(buf[:])
}
return map[string]string{args[0]: args[1]}, nil
}
values := map[string]string{}
for _, arg := range args {
fields := strings.SplitN(arg, "=", 2)
if len(fields) != 2 {
return nil, fmt.Errorf(i18n.G("Invalid key=value configuration: %s"), arg)
}
if fields[1] == "-" && !termios.IsTerminal(getStdinFd()) {
buf, err := io.ReadAll(os.Stdin)
if err != nil {
return nil, fmt.Errorf(i18n.G("Can't read from stdin: %w"), err)
}
fields[1] = string(buf[:])
}
values[fields[0]] = fields[1]
}
return values, nil
}
func usage(name string, args ...string) string {
if len(args) == 0 {
return name
}
return name + " " + args[0]
}
// instancesExist iterates over a list of instances (or snapshots) and checks that they exist.
func instancesExist(resources []remoteResource) error {
for _, resource := range resources {
// Handle snapshots.
if shared.IsSnapshot(resource.name) {
parent, snap, _ := api.GetParentAndSnapshotName(resource.name)
_, _, err := resource.server.GetInstanceSnapshot(parent, snap)
if err != nil {
return fmt.Errorf(i18n.G("Failed checking instance snapshot exists \"%s:%s\": %w"), resource.remote, resource.name, err)
}
continue
}
_, _, err := resource.server.GetInstance(resource.name)
if err != nil {
return fmt.Errorf(i18n.G("Failed checking instance exists \"%s:%s\": %w"), resource.remote, resource.name, err)
}
}
return nil
}
// structHasField checks if specified struct includes field with given name.
func structHasField(typ reflect.Type, field string) bool {
var parent reflect.Type
for i := 0; i < typ.NumField(); i++ {
fieldType := typ.Field(i)
yaml := fieldType.Tag.Get("yaml")
if yaml == ",inline" {
parent = fieldType.Type
}
if yaml == field {
return true
}
}
if parent != nil {
return structHasField(parent, field)
}
return false
}
// getServerSupportedFilters returns two lists: one with filters supported by server and second one with not supported.
func getServerSupportedFilters(filters []string, i interface{}) ([]string, []string) {
supportedFilters := []string{}
unsupportedFilters := []string{}
for _, filter := range filters {
membs := strings.SplitN(filter, "=", 2)
// Only key/value pairs are supported by server side API
// Only keys which are part of struct are supported by server side API
// Multiple values (separated by ',') are not supported by server side API
// Keys with '.' in name are not supported
if len(membs) < 2 || !structHasField(reflect.TypeOf(i), membs[0]) || strings.Contains(membs[1], ",") || strings.Contains(membs[0], ".") {
unsupportedFilters = append(unsupportedFilters, filter)
continue
}
supportedFilters = append(supportedFilters, filter)
}
return supportedFilters, unsupportedFilters
}
// guessImage checks that the image name (provided by the user) is correct given an instance remote and image remote.
func guessImage(conf *config.Config, d lxd.InstanceServer, instRemote string, imgRemote string, imageRef string) (string, string) {
if instRemote != imgRemote {
return imgRemote, imageRef
}
fields := strings.SplitN(imageRef, "/", 2)
_, ok := conf.Remotes[fields[0]]
if !ok {
return imgRemote, imageRef
}
_, _, err := d.GetImageAlias(imageRef)
if err == nil {
return imgRemote, imageRef
}
_, _, err = d.GetImage(imageRef)
if err == nil {
return imgRemote, imageRef
}
if len(fields) == 1 {
fmt.Fprintf(os.Stderr, i18n.G("The local image '%q' couldn't be found, trying '%q:' instead.")+"\n", imageRef, fields[0])
return fields[0], "default"
}
fmt.Fprintf(os.Stderr, i18n.G("The local image '%q' couldn't be found, trying '%q:%q' instead.")+"\n", imageRef, fields[0], fields[1])
return fields[0], fields[1]
}
// getImgInfo returns an image server and image info for the given image name (given by a user)
// an image remote and an instance remote.
func getImgInfo(d lxd.InstanceServer, conf *config.Config, imgRemote string, instRemote string, imageRef string, source *api.InstanceSource) (lxd.ImageServer, *api.Image, error) {
var imgRemoteServer lxd.ImageServer
var imgInfo *api.Image
var err error
// Connect to the image server
if imgRemote == instRemote {
imgRemoteServer = d
} else {
imgRemoteServer, err = conf.GetImageServer(imgRemote)
if err != nil {
return nil, nil, err
}
}
// Optimisation for simplestreams
if conf.Remotes[imgRemote].Protocol == "simplestreams" {
imgInfo = &api.Image{}
imgInfo.Fingerprint = imageRef
imgInfo.Public = true
source.Alias = imageRef
} else {
// Attempt to resolve an image alias
alias, _, err := imgRemoteServer.GetImageAlias(imageRef)
if err == nil {
source.Alias = imageRef
imageRef = alias.Target
}
// Get the image info
imgInfo, _, err = imgRemoteServer.GetImage(imageRef)
if err != nil {
return nil, nil, err
}
}
return imgRemoteServer, imgInfo, nil
}
// newLocationHeaderTransportWrapper returns a new transport wrapper that can be used to inspect the `Location` header
// upon the response of a resource creation request to LXD.
func newLocationHeaderTransportWrapper() (*locationHeaderTransport, func(transport *http.Transport) lxd.HTTPTransporter) {
transporter := &locationHeaderTransport{}
return transporter, func(transport *http.Transport) lxd.HTTPTransporter {
transporter.transport = transport
return transporter
}
}
// locationHeaderTransport implements lxd.HTTPTransporter by wrapping a http.Transport.
type locationHeaderTransport struct {
transport *http.Transport
location string
}
// RoundTrip implements http.RoundTripper for locationHeaderTransport. It extracts the `Location` header from the HTTP
// response for later use. This is useful when the resource is not known in advance (e.g. for auto-allocated IP addresses
// of network forwards and load-balancers).
func (c *locationHeaderTransport) RoundTrip(r *http.Request) (*http.Response, error) {
resp, err := c.transport.RoundTrip(r)
if err != nil {
return nil, err
}
c.location = resp.Header.Get("Location")
return resp, err
}
// Transport returns the underlying transport of cloudInstanceServerTransport (to implement lxd.HTTPTransporter).
func (c *locationHeaderTransport) Transport() *http.Transport {
return c.transport
}