forked from kata-containers/agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
oci.go
112 lines (91 loc) · 2.71 KB
/
oci.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
//
// Copyright (c) 2018 NVIDIA CORPORATION
//
// SPDX-License-Identifier: Apache-2.0
//
package main
import (
"encoding/json"
"errors"
"io/ioutil"
"os"
"path"
"path/filepath"
"github.com/opencontainers/runtime-spec/specs-go"
"github.com/sirupsen/logrus"
)
// OCI config file
const (
ociConfigFile string = "config.json"
ociConfigFileMode os.FileMode = 0444
)
// writeSpecToFile writes the container's OCI spec to "dirname(spec.Root.Path)/config.json"
// This effectively makes the parent directory a valid OCI bundle.
func writeSpecToFile(spec *specs.Spec) error {
bundlePath := filepath.Dir(spec.Root.Path)
configPath := filepath.Join(bundlePath, ociConfigFile)
f, err := os.OpenFile(configPath, os.O_WRONLY|os.O_CREATE, ociConfigFileMode)
if err != nil {
return err
}
defer f.Close()
return json.NewEncoder(f).Encode(spec)
}
// changeToBundlePath changes the cwd to the OCI bundle path defined as
// dirname(spec.Root.Path) and returns the old cwd.
func changeToBundlePath(spec *specs.Spec) (string, error) {
cwd, err := os.Getwd()
if err != nil {
return cwd, err
}
if spec == nil || spec.Root == nil || spec.Root.Path == "" {
return cwd, errors.New("invalid OCI spec")
}
bundlePath := filepath.Dir(spec.Root.Path)
configPath := filepath.Join(bundlePath, ociConfigFile)
// Verify that config.json is present at the root of the bundle path.
if _, err := os.Stat(configPath); err != nil {
return cwd, errors.New("invalid OCI bundle")
}
return cwd, os.Chdir(bundlePath)
}
func isValidHook(file os.FileInfo) (bool, error) {
if file.IsDir() {
return false, errors.New("is a directory")
}
mode := file.Mode()
if (mode & os.ModeSymlink) != 0 {
return false, errors.New("is a symbolic link")
}
perm := mode & os.ModePerm
if (perm & 0111) == 0 {
return false, errors.New("is not executable")
}
return true, nil
}
// findHooks searches guestHookPath for any OCI hooks for a given hookType
func findHooks(guestHookPath, hookType string) (hooksFound []specs.Hook) {
hooksPath := path.Join(guestHookPath, hookType)
files, err := ioutil.ReadDir(hooksPath)
if err != nil {
agentLog.WithError(err).WithField("oci-hook-type", hookType).Info("Skipping hook type")
return
}
for _, file := range files {
name := file.Name()
if ok, err := isValidHook(file); !ok {
agentLog.WithError(err).WithField("oci-hook-name", name).Warn("Skipping hook")
continue
}
agentLog.WithFields(logrus.Fields{
"oci-hook-name": name,
"oci-hook-type": hookType,
}).Info("Adding hook")
hooksFound = append(hooksFound, specs.Hook{
Path: path.Join(hooksPath, name),
Args: []string{name, hookType},
})
}
agentLog.WithField("oci-hook-type", hookType).Infof("Added %d hooks", len(hooksFound))
return
}