forked from containers/virtcontainers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filesystem.go
648 lines (516 loc) · 15.8 KB
/
filesystem.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
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
//
// Copyright (c) 2016 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package virtcontainers
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path/filepath"
)
// podResource is an int representing a pod resource type.
//
// Note that some are specific to the pod itself and others can apply to
// pods and containers.
type podResource int
const (
// configFileType represents a configuration file type
configFileType podResource = iota
// stateFileType represents a state file type
stateFileType
// networkFileType represents a network file type (pod only)
networkFileType
// processFileType represents a process file type
processFileType
// lockFileType represents a lock file type (pod only)
lockFileType
// mountsFileType represents a mount file type
mountsFileType
)
// configFile is the file name used for every JSON pod configuration.
const configFile = "config.json"
// stateFile is the file name storing a pod state.
const stateFile = "state.json"
// networkFile is the file name storing a pod network.
const networkFile = "network.json"
// processFile is the file name storing a container process.
const processFile = "process.json"
// lockFile is the file name locking the usage of a pod.
const lockFileName = "lock"
const mountsFile = "mounts.json"
// dirMode is the permission bits used for creating a directory
const dirMode = os.FileMode(0750)
// storagePathSuffix is the suffix used for all storage paths
const storagePathSuffix = "/virtcontainers/pods"
// configStoragePath is the pod configuration directory.
// It will contain one config.json file for each created pod.
var configStoragePath = filepath.Join("/var/lib", storagePathSuffix)
// runStoragePath is the pod runtime directory.
// It will contain one state.json and one lock file for each created pod.
var runStoragePath = filepath.Join("/run", storagePathSuffix)
// resourceStorage is the virtcontainers resources (configuration, state, etc...)
// storage interface.
// The default resource storage implementation is filesystem.
type resourceStorage interface {
// Create all resources for a pod
createAllResources(pod Pod) error
// Resources URIs functions return both the URI
// for the actual resource and the URI base.
containerURI(podID, containerID string, resource podResource) (string, string, error)
podURI(podID string, resource podResource) (string, string, error)
// Pod resources
storePodResource(podID string, resource podResource, data interface{}) error
deletePodResources(podID string, resources []podResource) error
fetchPodConfig(podID string) (PodConfig, error)
fetchPodState(podID string) (State, error)
fetchPodNetwork(podID string) (NetworkNamespace, error)
storePodNetwork(podID string, networkNS NetworkNamespace) error
// Container resources
storeContainerResource(podID, containerID string, resource podResource, data interface{}) error
deleteContainerResources(podID, containerID string, resources []podResource) error
fetchContainerConfig(podID, containerID string) (ContainerConfig, error)
fetchContainerState(podID, containerID string) (State, error)
fetchContainerProcess(podID, containerID string) (Process, error)
storeContainerProcess(podID, containerID string, process Process) error
fetchContainerMounts(podID, containerID string) ([]Mount, error)
storeContainerMounts(podID, containerID string, mounts []Mount) error
}
// filesystem is a resourceStorage interface implementation for a local filesystem.
type filesystem struct {
}
func (fs *filesystem) createAllResources(pod Pod) (err error) {
for _, resource := range []podResource{stateFileType, configFileType} {
_, path, _ := fs.podURI(pod.id, resource)
err = os.MkdirAll(path, os.ModeDir)
if err != nil {
return err
}
}
for _, container := range pod.containers {
for _, resource := range []podResource{stateFileType, configFileType} {
_, path, _ := fs.containerURI(pod.id, container.id, resource)
err = os.MkdirAll(path, os.ModeDir)
if err != nil {
fs.deletePodResources(pod.id, nil)
return err
}
}
}
podlockFile, _, err := fs.podURI(pod.id, lockFileType)
if err != nil {
fs.deletePodResources(pod.id, nil)
return err
}
_, err = os.Stat(podlockFile)
if err != nil {
lockFile, err := os.Create(podlockFile)
if err != nil {
fs.deletePodResources(pod.id, nil)
return err
}
lockFile.Close()
}
return nil
}
func (fs *filesystem) storeFile(file string, data interface{}) error {
if file == "" {
return errNeedFile
}
f, err := os.Create(file)
if err != nil {
return err
}
defer f.Close()
jsonOut, err := json.Marshal(data)
if err != nil {
return fmt.Errorf("Could not marshall data: %s", err)
}
f.Write(jsonOut)
return nil
}
func (fs *filesystem) fetchFile(file string, data interface{}) error {
if file == "" {
return errNeedFile
}
fileData, err := ioutil.ReadFile(file)
if err != nil {
return err
}
err = json.Unmarshal([]byte(string(fileData)), data)
if err != nil {
return err
}
return nil
}
// resourceNeedsContainerID determines if the specified
// podResource needs a containerID. Since some podResources can
// be used for both pods and containers, it is necessary to specify
// whether the resource is being used in a pod-specific context using
// the podSpecific parameter.
func resourceNeedsContainerID(podSpecific bool, resource podResource) bool {
switch resource {
case lockFileType, networkFileType:
// pod-specific resources
return false
default:
return !podSpecific
}
}
func resourceDir(podSpecific bool, podID, containerID string, resource podResource) (string, error) {
if podID == "" {
return "", errNeedPodID
}
if resourceNeedsContainerID(podSpecific, resource) == true && containerID == "" {
return "", errNeedContainerID
}
var path string
switch resource {
case configFileType:
path = configStoragePath
break
case stateFileType, networkFileType, processFileType, lockFileType, mountsFileType:
path = runStoragePath
break
default:
return "", fmt.Errorf("Invalid pod resource")
}
dirPath := filepath.Join(path, podID, containerID)
return dirPath, nil
}
// If podSpecific is true, the resource is being applied for an empty
// pod (meaning containerID may be blank).
// Note that this function defers determining if containerID can be
// blank to resourceDIR()
func (fs *filesystem) resourceURI(podSpecific bool, podID, containerID string, resource podResource) (string, string, error) {
if podID == "" {
return "", "", errNeedPodID
}
var filename string
dirPath, err := resourceDir(podSpecific, podID, containerID, resource)
if err != nil {
return "", "", err
}
switch resource {
case configFileType:
filename = configFile
break
case stateFileType:
filename = stateFile
case networkFileType:
filename = networkFile
case processFileType:
filename = processFile
case lockFileType:
filename = lockFileName
break
case mountsFileType:
filename = mountsFile
break
default:
return "", "", fmt.Errorf("Invalid pod resource")
}
filePath := filepath.Join(dirPath, filename)
return filePath, dirPath, nil
}
func (fs *filesystem) containerURI(podID, containerID string, resource podResource) (string, string, error) {
if podID == "" {
return "", "", errNeedPodID
}
if containerID == "" {
return "", "", errNeedContainerID
}
return fs.resourceURI(false, podID, containerID, resource)
}
func (fs *filesystem) podURI(podID string, resource podResource) (string, string, error) {
return fs.resourceURI(true, podID, "", resource)
}
// commonResourceChecks performs basic checks common to both setting and
// getting a podResource.
func (fs *filesystem) commonResourceChecks(podSpecific bool, podID, containerID string, resource podResource) error {
if podID == "" {
return errNeedPodID
}
if resourceNeedsContainerID(podSpecific, resource) == true && containerID == "" {
return errNeedContainerID
}
return nil
}
func (fs *filesystem) storeResource(podSpecific bool, podID, containerID string, resource podResource, data interface{}) error {
if err := fs.commonResourceChecks(podSpecific, podID, containerID, resource); err != nil {
return err
}
switch file := data.(type) {
case PodConfig, ContainerConfig:
if resource != configFileType {
return fmt.Errorf("Invalid pod resource")
}
configFile, _, err := fs.resourceURI(podSpecific, podID, containerID, configFileType)
if err != nil {
return err
}
return fs.storeFile(configFile, file)
case State:
if resource != stateFileType {
return fmt.Errorf("Invalid pod resource")
}
stateFile, _, err := fs.resourceURI(podSpecific, podID, containerID, stateFileType)
if err != nil {
return err
}
return fs.storeFile(stateFile, file)
case NetworkNamespace:
if resource != networkFileType {
return fmt.Errorf("Invalid pod resource")
}
// pod only resource
networkFile, _, err := fs.resourceURI(true, podID, containerID, networkFileType)
if err != nil {
return err
}
return fs.storeFile(networkFile, file)
case Process:
if resource != processFileType {
return fmt.Errorf("Invalid pod resource")
}
processFile, _, err := fs.resourceURI(podSpecific, podID, containerID, processFileType)
if err != nil {
return err
}
return fs.storeFile(processFile, file)
case []Mount:
if resource != mountsFileType {
return fmt.Errorf("Invalid pod resource")
}
mountsFile, _, err := fs.resourceURI(podSpecific, podID, containerID, mountsFileType)
if err != nil {
return err
}
return fs.storeFile(mountsFile, file)
default:
return fmt.Errorf("Invalid resource data type")
}
}
func (fs *filesystem) fetchResource(podSpecific bool, podID, containerID string, resource podResource) (interface{}, error) {
if err := fs.commonResourceChecks(podSpecific, podID, containerID, resource); err != nil {
return nil, err
}
path, _, err := fs.resourceURI(podSpecific, podID, containerID, resource)
if err != nil {
return nil, err
}
switch resource {
case configFileType:
if containerID == "" {
config := PodConfig{}
err = fs.fetchFile(path, &config)
if err != nil {
return nil, err
}
return config, nil
}
config := ContainerConfig{}
err = fs.fetchFile(path, &config)
if err != nil {
return nil, err
}
return config, nil
case stateFileType:
state := State{}
err = fs.fetchFile(path, &state)
if err != nil {
return nil, err
}
return state, nil
case networkFileType:
networkNS := NetworkNamespace{}
err = fs.fetchFile(path, &networkNS)
if err != nil {
return nil, err
}
return networkNS, nil
case processFileType:
process := Process{}
err = fs.fetchFile(path, &process)
if err != nil {
return nil, err
}
return process, nil
case mountsFileType:
mounts := []Mount{}
err = fs.fetchFile(path, &mounts)
if err != nil {
return nil, err
}
return mounts, nil
}
return nil, fmt.Errorf("Invalid pod resource")
}
func (fs *filesystem) storePodResource(podID string, resource podResource, data interface{}) error {
return fs.storeResource(true, podID, "", resource, data)
}
func (fs *filesystem) fetchPodConfig(podID string) (PodConfig, error) {
data, err := fs.fetchResource(true, podID, "", configFileType)
if err != nil {
return PodConfig{}, err
}
switch config := data.(type) {
case PodConfig:
return config, nil
}
return PodConfig{}, fmt.Errorf("Unknown config type")
}
func (fs *filesystem) fetchPodState(podID string) (State, error) {
data, err := fs.fetchResource(true, podID, "", stateFileType)
if err != nil {
return State{}, err
}
switch state := data.(type) {
case State:
return state, nil
}
return State{}, fmt.Errorf("Unknown state type")
}
func (fs *filesystem) fetchPodNetwork(podID string) (NetworkNamespace, error) {
data, err := fs.fetchResource(true, podID, "", networkFileType)
if err != nil {
return NetworkNamespace{}, err
}
switch networkNS := data.(type) {
case NetworkNamespace:
return networkNS, nil
}
return NetworkNamespace{}, fmt.Errorf("Unknown network type")
}
func (fs *filesystem) storePodNetwork(podID string, networkNS NetworkNamespace) error {
return fs.storePodResource(podID, networkFileType, networkNS)
}
func (fs *filesystem) deletePodResources(podID string, resources []podResource) error {
if resources == nil {
resources = []podResource{configFileType, stateFileType}
}
for _, resource := range resources {
_, dir, err := fs.podURI(podID, resource)
if err != nil {
return err
}
err = os.RemoveAll(dir)
if err != nil {
return err
}
}
return nil
}
func (fs *filesystem) storeContainerResource(podID, containerID string, resource podResource, data interface{}) error {
if podID == "" {
return errNeedPodID
}
if containerID == "" {
return errNeedContainerID
}
return fs.storeResource(false, podID, containerID, resource, data)
}
func (fs *filesystem) fetchContainerConfig(podID, containerID string) (ContainerConfig, error) {
if podID == "" {
return ContainerConfig{}, errNeedPodID
}
if containerID == "" {
return ContainerConfig{}, errNeedContainerID
}
data, err := fs.fetchResource(false, podID, containerID, configFileType)
if err != nil {
return ContainerConfig{}, err
}
switch config := data.(type) {
case ContainerConfig:
return config, nil
}
return ContainerConfig{}, fmt.Errorf("Unknown config type")
}
func (fs *filesystem) fetchContainerState(podID, containerID string) (State, error) {
if podID == "" {
return State{}, errNeedPodID
}
if containerID == "" {
return State{}, errNeedContainerID
}
data, err := fs.fetchResource(false, podID, containerID, stateFileType)
if err != nil {
return State{}, err
}
switch state := data.(type) {
case State:
return state, nil
}
return State{}, fmt.Errorf("Unknown state type")
}
func (fs *filesystem) fetchContainerProcess(podID, containerID string) (Process, error) {
if podID == "" {
return Process{}, errNeedPodID
}
if containerID == "" {
return Process{}, errNeedContainerID
}
data, err := fs.fetchResource(false, podID, containerID, processFileType)
if err != nil {
return Process{}, err
}
switch process := data.(type) {
case Process:
return process, nil
}
return Process{}, fmt.Errorf("Unknown process type")
}
func (fs *filesystem) storeContainerProcess(podID, containerID string, process Process) error {
return fs.storeContainerResource(podID, containerID, processFileType, process)
}
func (fs *filesystem) fetchContainerMounts(podID, containerID string) ([]Mount, error) {
if podID == "" {
return []Mount{}, errNeedPodID
}
if containerID == "" {
return []Mount{}, errNeedContainerID
}
data, err := fs.fetchResource(false, podID, containerID, mountsFileType)
if err != nil {
return []Mount{}, err
}
switch mounts := data.(type) {
case []Mount:
return mounts, nil
default:
return []Mount{}, fmt.Errorf("Unknown mounts type : [%T]", mounts)
}
}
func (fs *filesystem) storeContainerMounts(podID, containerID string, mounts []Mount) error {
return fs.storeContainerResource(podID, containerID, mountsFileType, mounts)
}
func (fs *filesystem) deleteContainerResources(podID, containerID string, resources []podResource) error {
if resources == nil {
resources = []podResource{configFileType, stateFileType}
}
for _, resource := range resources {
_, dir, err := fs.podURI(podID, resource)
if err != nil {
return err
}
containerDir := filepath.Join(dir, containerID, "/")
err = os.RemoveAll(containerDir)
if err != nil {
return err
}
}
return nil
}